├── .gitignore ├── LICENSE ├── README.md ├── data └── snips │ ├── dev.tsv │ ├── test.tsv │ └── train.tsv └── intent_recognition.ipynb /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | .eggs/ 17 | lib/ 18 | lib64/ 19 | parts/ 20 | sdist/ 21 | var/ 22 | wheels/ 23 | pip-wheel-metadata/ 24 | share/python-wheels/ 25 | *.egg-info/ 26 | .installed.cfg 27 | *.egg 28 | MANIFEST 29 | 30 | # PyInstaller 31 | # Usually these files are written by a python script from a template 32 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 33 | *.manifest 34 | *.spec 35 | 36 | # Installer logs 37 | pip-log.txt 38 | pip-delete-this-directory.txt 39 | 40 | # Unit test / coverage reports 41 | htmlcov/ 42 | .tox/ 43 | .nox/ 44 | .coverage 45 | .coverage.* 46 | .cache 47 | nosetests.xml 48 | coverage.xml 49 | *.cover 50 | *.py,cover 51 | .hypothesis/ 52 | .pytest_cache/ 53 | 54 | # Translations 55 | *.mo 56 | *.pot 57 | 58 | # Django stuff: 59 | *.log 60 | local_settings.py 61 | db.sqlite3 62 | db.sqlite3-journal 63 | 64 | # Flask stuff: 65 | instance/ 66 | .webassets-cache 67 | 68 | # Scrapy stuff: 69 | .scrapy 70 | 71 | # Sphinx documentation 72 | docs/_build/ 73 | 74 | # PyBuilder 75 | target/ 76 | 77 | # Jupyter Notebook 78 | .ipynb_checkpoints 79 | 80 | # IPython 81 | profile_default/ 82 | ipython_config.py 83 | 84 | # pyenv 85 | .python-version 86 | 87 | # pipenv 88 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 89 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 90 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 91 | # install all needed dependencies. 92 | #Pipfile.lock 93 | 94 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow 95 | __pypackages__/ 96 | 97 | # Celery stuff 98 | celerybeat-schedule 99 | celerybeat.pid 100 | 101 | # SageMath parsed files 102 | *.sage.py 103 | 104 | # Environments 105 | .env 106 | .venv 107 | env/ 108 | venv/ 109 | ENV/ 110 | env.bak/ 111 | venv.bak/ 112 | 113 | # Spyder project settings 114 | .spyderproject 115 | .spyproject 116 | 117 | # Rope project settings 118 | .ropeproject 119 | 120 | # mkdocs documentation 121 | /site 122 | 123 | # mypy 124 | .mypy_cache/ 125 | .dmypy.json 126 | dmypy.json 127 | 128 | # Pyre type checker 129 | .pyre/ 130 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Intent-Recognition-Using-BERT 2 | 3 | ## Intent Recognition 4 | Voice user interfaces (e.g. Amazon Alexa, chatbots, and social robots) are becoming an essential part of everyday life. For these systems to carry out effective dialogue, they must be able to determine the intent behind a user’s spoken utterance. Intent recognition is the task of taking a written or spoken input, and determining which of several classes it matches in order to best respond or guide the interaction. Effective intent recognition is essential to building many kinds of conversational technologies, from chatbots, to automated phone systems, to social robots. In repository an intent recognition model was built, and experiment on how the amount of training data used effects performance was carried out. 5 | 6 | ## The Snips Dataset 7 | For our intent recognition model, we'll use the Snips dataset, which was collected through crowdsourcing for the Snips personal voice assistant. 8 | There are 7 unique intent classes for the training set, on a variety of topics including playing music, restaurant reservations, and getting the weather (e.g. ‘Book an Italian place with a parking for my grand father and I’ and ‘Which movie theater is playing The Good Will Hunting nearby?’). 9 | The training set contains 13,084 utterances, and separate validation and test sets that contain 700 utterances each. 10 | 11 | 12 | ## BERT 13 | For our intent recognition model, we'll use BERT, which is a transformer-based model that has been pre-trained on an enormous amount of English data. Through this pre-training, BERT learns to represent language very effectively, and can then be fine-tuned for a specific task. It is possible to train an entire model end-to-end starting from random model weights, but with BERT, we will start with the pre-trained weights, and then do additional training to adapt BERT to our intent recognition task. 14 | 15 | To learn about BERT in more detail, you should watch this [video](https://www.youtube.com/watch?v=xI0HHN5XKDo). 16 | Don't worry if BERT's architecture feels too complex, the key things to takeaway are how it is pre-trained, and how we can fine-tune it for our application. 17 | 18 | Before BERT was introduced in 2018, most machine learning models for NLP were trained from scratch. Since then, huge success has been found in many NLP applications by fine-tuning pre-trained models like BERT instead. The other most well-known models that are used in this way are the GPT models (GPT, GPT2, GPT3, and GPT Neo). 19 | 20 | We'll use a fantastic package called [Hugging Face](https://huggingface.co/) for our BERT model. Hugging Face has tons of pre-trained BERT models for different applications, among many other great models and datasets. Specifically, we'll be using the [BERT Base Uncased model](https://huggingface.co/bert-base-uncased), which contains 110M parameters, and is pre-trained on both the BookCorpus (800M words) and on English Wikipedia (2,500M words). 21 | -------------------------------------------------------------------------------- /data/snips/dev.tsv: -------------------------------------------------------------------------------- 1 | AddToPlaylist i d like to have this track onto my classical relaxations playlist O O O O O O B-music_item O B-playlist_owner B-playlist I-playlist O 2 | AddToPlaylist add the album to my flow español playlist O O B-music_item O B-playlist_owner B-playlist I-playlist O 3 | AddToPlaylist add digging now to my young at heart playlist O B-playlist I-playlist O B-playlist_owner B-entity_name I-entity_name I-entity_name O 4 | AddToPlaylist add this song by too poetic to my piano ballads playlist O O B-music_item O B-artist I-artist O B-playlist_owner B-playlist I-playlist O 5 | AddToPlaylist add this album to old school death metal O O B-music_item O B-playlist I-playlist I-playlist I-playlist 6 | AddToPlaylist i need to add baro ferret to the urban hits under my name O O O O B-artist I-artist O O B-playlist I-playlist O B-playlist_owner O 7 | AddToPlaylist add the album to the might and myth power metal playlist O O B-music_item O O B-playlist I-playlist I-playlist I-playlist I-playlist O 8 | AddToPlaylist to the travelling playlist please add this david gahan song O O B-playlist O O O O B-artist I-artist B-music_item 9 | AddToPlaylist please add some pete townshend to my playlist fiesta hits con lali O O O B-artist I-artist O B-playlist_owner O B-playlist I-playlist I-playlist I-playlist 10 | AddToPlaylist i d like for kasey chambers s tune to be an addition to my chips and salsa playlist O O O O B-artist I-artist O B-music_item O O O O O B-playlist_owner B-playlist I-playlist I-playlist O 11 | AddToPlaylist add recalled to life to this is alejandro fernández O B-entity_name I-entity_name I-entity_name O B-playlist I-playlist I-playlist I-playlist 12 | AddToPlaylist add nuba to my metal party playlist O B-entity_name O B-playlist_owner B-playlist I-playlist O 13 | AddToPlaylist add jo stafford music to the workout twerkout playlist O B-artist I-artist O O O B-playlist I-playlist O 14 | AddToPlaylist put jean philippe goncalves onto my running to rock 170 to 190 bpm O B-artist I-artist I-artist O B-playlist_owner B-playlist I-playlist I-playlist I-playlist I-playlist I-playlist I-playlist 15 | AddToPlaylist add the song virales de siempre by the cary brothers to my gym playlist O O B-music_item B-playlist I-playlist I-playlist O O B-artist I-artist O B-playlist_owner O O 16 | AddToPlaylist onto jerry s classical moments in movies please add the album O B-playlist_owner I-playlist_owner B-playlist I-playlist I-playlist I-playlist O O O B-music_item 17 | AddToPlaylist add beyond the valley of 1984 in playlist folk music at the gaslight café O B-entity_name I-entity_name I-entity_name I-entity_name I-entity_name O O B-playlist I-playlist I-playlist I-playlist I-playlist I-playlist 18 | AddToPlaylist add jerry calliste jr to my te quiero playlist O B-artist I-artist I-artist O B-playlist_owner B-playlist I-playlist O 19 | AddToPlaylist add porter wagoner to the the sleep machine waterscapes playlist O B-artist I-artist O O B-playlist I-playlist I-playlist I-playlist O 20 | AddToPlaylist add the artist mike to the sexy as folk playlist O O B-music_item B-artist O O B-playlist I-playlist I-playlist O 21 | AddToPlaylist add brazilian flag anthem to top 100 alternative tracks on spotify O B-entity_name I-entity_name I-entity_name O B-playlist I-playlist I-playlist I-playlist I-playlist I-playlist 22 | AddToPlaylist add andy hunter to my evening commute playlist O B-artist I-artist O B-playlist_owner B-playlist I-playlist O 23 | AddToPlaylist put petar georgiev kalica onto the old school hip hop playlist O B-artist I-artist I-artist O O B-playlist I-playlist I-playlist I-playlist O 24 | AddToPlaylist can you add larry heard to my laundry playlist O O O B-artist I-artist O B-playlist_owner B-playlist O 25 | AddToPlaylist put vandemataram srinivas s track onto hiphop hot 50 O B-artist I-artist O B-music_item O B-playlist I-playlist I-playlist 26 | AddToPlaylist add millie corretjer to the rhythm playlist O B-artist I-artist O B-playlist I-playlist O 27 | AddToPlaylist add give us rest to my 70s smash hits playlist O B-entity_name I-entity_name I-entity_name O B-playlist_owner B-playlist I-playlist I-playlist O 28 | AddToPlaylist add this track to my hands up playlist O O B-music_item O B-playlist_owner B-playlist I-playlist O 29 | AddToPlaylist i d like for you to add bobby brown to my enamorándose playlist O O O O O O O B-artist I-artist O B-playlist_owner B-playlist O 30 | AddToPlaylist add jonathan sprout album to my this is miranda lambert playlist O B-artist I-artist B-music_item O B-playlist_owner B-playlist I-playlist I-playlist I-playlist O 31 | AddToPlaylist add ireland in the junior eurovision song contest 2015 to my jazzy dinner playlist O B-entity_name I-entity_name I-entity_name I-entity_name I-entity_name I-entity_name I-entity_name I-entity_name O B-playlist_owner B-playlist I-playlist O 32 | AddToPlaylist add the album to the the sweet suite playlist O O B-music_item O O B-playlist I-playlist I-playlist O 33 | AddToPlaylist add sarah slean to my playlist mellowed out gaming O B-artist I-artist O B-playlist_owner O B-playlist I-playlist I-playlist 34 | AddToPlaylist add this album to the spanish beat playlist O O B-music_item O O B-playlist I-playlist O 35 | AddToPlaylist add lofty fake anagram to the la mejor música de bso playlist O B-entity_name I-entity_name I-entity_name O O B-playlist I-playlist I-playlist I-playlist I-playlist O 36 | AddToPlaylist add the track to the work playlist O O B-music_item O O B-playlist O 37 | AddToPlaylist add a song to this is racionais mc s O O B-music_item O B-playlist I-playlist I-playlist I-playlist I-playlist 38 | AddToPlaylist add track in my playlist called hands up O B-music_item O B-playlist_owner O O B-playlist I-playlist 39 | AddToPlaylist can you put this song from yutaka ozaki onto my this is miles davis playlist O O O O B-music_item O B-artist I-artist O B-playlist_owner B-playlist I-playlist I-playlist I-playlist O 40 | AddToPlaylist add a track to playlist cena con amigos O O B-music_item O O B-playlist I-playlist I-playlist 41 | AddToPlaylist add the famous flower of serving-men to my evening acoustic playlist O B-entity_name I-entity_name I-entity_name I-entity_name I-entity_name O B-playlist_owner B-playlist I-playlist O 42 | AddToPlaylist add a song to indie hipster O O B-music_item O B-playlist I-playlist 43 | AddToPlaylist add the 40 cal tune to the laundry playlist O O B-artist I-artist B-music_item O O B-playlist O 44 | AddToPlaylist add the album to my perfect concentration playlist O O B-music_item O B-playlist_owner B-playlist I-playlist O 45 | AddToPlaylist add the matt murphy tune to the flow español playlist O O B-artist I-artist B-music_item O O B-playlist I-playlist O 46 | AddToPlaylist add a very cellular song to masters of metal playlist O B-entity_name I-entity_name I-entity_name I-entity_name O B-playlist I-playlist I-playlist O 47 | AddToPlaylist can i put this tune onto my sin estrés playlist O O O O B-music_item O B-playlist_owner B-playlist I-playlist O 48 | AddToPlaylist i d like to add jordan rudess onto the divertido para niños playlist O O O O O B-artist I-artist O O B-playlist I-playlist I-playlist O 49 | AddToPlaylist add kent james to the disney soundtrack O B-artist I-artist O O B-playlist O 50 | AddToPlaylist add the artist adam deibert to my perfect concentration playlist O O B-music_item B-artist I-artist O B-playlist_owner B-playlist I-playlist O 51 | AddToPlaylist can you put the artist giovanni giacomo gastoldi onto the chill out music playlist O O O O B-music_item B-artist I-artist I-artist O O B-playlist I-playlist I-playlist O 52 | AddToPlaylist add the album to the hot 50 playlist O O B-music_item O O B-playlist I-playlist O 53 | AddToPlaylist add the artist pete murray to my relaxing playlist O O B-music_item B-artist I-artist O B-playlist_owner B-playlist O 54 | AddToPlaylist add the track to the drum & breaks playlist O O B-music_item O O B-playlist I-playlist I-playlist O 55 | AddToPlaylist for my fantastic workout can you add sara bareilles O B-playlist_owner B-playlist I-playlist O O O B-artist I-artist 56 | AddToPlaylist add the boy george track to the emo forever playlist O O B-artist I-artist B-music_item O O B-playlist I-playlist O 57 | AddToPlaylist add ted heath to the road trip playlist O B-artist I-artist O O B-playlist I-playlist O 58 | AddToPlaylist can you add last of the ghetto astronauts to the playlist called black sabbath the dio years O O O B-entity_name I-entity_name I-entity_name I-entity_name I-entity_name O O O O B-playlist I-playlist I-playlist I-playlist I-playlist 59 | AddToPlaylist add this artist to showstopper being mary jane O O B-music_item O B-playlist I-playlist I-playlist I-playlist 60 | AddToPlaylist put the artist onto top latin alternative O O B-music_item O B-playlist I-playlist I-playlist 61 | AddToPlaylist add michael wittig music to country icon playlist O B-artist I-artist O O B-playlist I-playlist O 62 | AddToPlaylist add highway patrolman in my playlist this is al green O B-entity_name I-entity_name O B-playlist_owner O B-playlist I-playlist I-playlist I-playlist 63 | AddToPlaylist add richard mcnamara newest song to the just smile playlist O B-artist I-artist O B-music_item O O B-playlist I-playlist O 64 | AddToPlaylist add annesley malewana album to playlist indietronic O B-artist I-artist B-music_item O O B-playlist 65 | AddToPlaylist add the artist to my dishwashing playlist O O B-music_item O B-playlist_owner B-playlist O 66 | AddToPlaylist add this artist to fairy tales playlist O O B-music_item O B-playlist I-playlist O 67 | AddToPlaylist add muzika za decu to my crash course playlist O B-entity_name I-entity_name I-entity_name O B-playlist_owner B-playlist I-playlist O 68 | AddToPlaylist add a derek watkins tune to this is johnny cash O O B-artist I-artist B-music_item O B-playlist I-playlist I-playlist I-playlist 69 | AddToPlaylist add our little corner of the world music from gilmore girls to my the funny thing about football is playlist O B-entity_name I-entity_name I-entity_name I-entity_name I-entity_name I-entity_name I-entity_name I-entity_name I-entity_name I-entity_name O B-playlist_owner B-playlist I-playlist I-playlist I-playlist I-playlist I-playlist O 70 | AddToPlaylist add the current track to my this is tchaikovsky playlist O O O B-music_item O B-playlist_owner B-playlist I-playlist I-playlist O 71 | AddToPlaylist put abe laboriel onto the escapada playlist O B-artist I-artist O O B-playlist O 72 | AddToPlaylist add abacab to beryl s party on fridays playlist O B-entity_name O B-playlist_owner I-playlist_owner B-playlist I-playlist I-playlist O 73 | AddToPlaylist please add this track by paul mcguigan to the deep house playlist O O O B-music_item O B-artist I-artist O O B-playlist I-playlist O 74 | AddToPlaylist can you add the current tune to my calm before the storm playlist O O O O O B-music_item O B-playlist_owner B-playlist I-playlist I-playlist I-playlist O 75 | AddToPlaylist please add the image of you to my playlist crate diggers anonymous O O B-entity_name I-entity_name I-entity_name I-entity_name O B-playlist_owner O B-playlist I-playlist I-playlist 76 | AddToPlaylist add a track to jazzy dinner O O B-music_item O B-playlist I-playlist 77 | AddToPlaylist add the album to the hipster soul playlist O O B-music_item O O B-playlist I-playlist O 78 | AddToPlaylist add this tune to my sleepify playlist O O B-music_item O B-playlist_owner B-playlist O 79 | AddToPlaylist add jack white to my playlist this is shakira O B-artist I-artist O B-playlist_owner O B-playlist I-playlist I-playlist 80 | AddToPlaylist add tommy johnson to the metalsucks playlist O B-artist I-artist O B-playlist I-playlist I-playlist 81 | AddToPlaylist add the chris clark tune to my women of the blues playlist O O B-artist I-artist B-music_item O B-playlist_owner B-playlist I-playlist I-playlist I-playlist O 82 | AddToPlaylist add an artist to jukebox boogie rhythm & blues O O B-music_item O B-playlist I-playlist I-playlist I-playlist I-playlist 83 | AddToPlaylist add this artist to my electronic bliss playlist O O B-music_item O B-playlist_owner B-playlist I-playlist O 84 | AddToPlaylist i need to add to my infinite indie folk list the works of rahim shah O O O O O B-playlist_owner B-playlist I-playlist I-playlist O O O O B-artist I-artist 85 | AddToPlaylist add martin barre to my punk unplugged playlist O B-artist I-artist O B-playlist_owner B-playlist I-playlist O 86 | AddToPlaylist add tierney sutton to my novedades viernes sudamérica playlist O B-artist I-artist O B-playlist_owner B-playlist I-playlist I-playlist O 87 | AddToPlaylist add this tune to dorthy s 80 s party playlist O O B-music_item O B-playlist_owner I-playlist_owner B-playlist I-playlist I-playlist O 88 | AddToPlaylist a very cellular song needs to be added to my masters of metal playlist B-entity_name I-entity_name I-entity_name I-entity_name O O O O O B-playlist_owner B-playlist I-playlist I-playlist O 89 | AddToPlaylist add toyan to my epic gaming playlist O B-artist O B-playlist_owner B-playlist I-playlist O 90 | AddToPlaylist add the song to the mac n cheese playlist O O B-music_item O O B-playlist I-playlist I-playlist O 91 | AddToPlaylist add this artist to my spotlight on country 2016 playlist O O B-music_item O B-playlist_owner B-playlist I-playlist I-playlist I-playlist O 92 | AddToPlaylist add a song to my playlist madden nfl 16 O O B-music_item O B-playlist_owner O B-playlist I-playlist I-playlist 93 | AddToPlaylist add emilie autumn to my nação reggae playlist O B-artist I-artist O B-playlist_owner B-playlist I-playlist O 94 | AddToPlaylist add farhad darya songs in virales de siempre O B-artist I-artist O O B-playlist I-playlist I-playlist 95 | AddToPlaylist add a song in my all out 60s O O B-music_item O B-playlist_owner B-playlist I-playlist I-playlist 96 | AddToPlaylist add we have a theme song to my house afterwork playlist O B-entity_name I-entity_name I-entity_name I-entity_name I-entity_name O B-playlist_owner B-playlist I-playlist O 97 | AddToPlaylist add the song to my we everywhere playlist O O B-music_item O B-playlist_owner B-playlist I-playlist O 98 | AddToPlaylist add roel van velzen to my party of the century playlist O B-artist I-artist I-artist O B-playlist_owner B-playlist I-playlist I-playlist I-playlist O 99 | AddToPlaylist add the artist to the political punks playlist O O B-music_item O O B-playlist I-playlist O 100 | AddToPlaylist add the album to my club hits playlist O O B-music_item O B-playlist_owner B-playlist I-playlist O 101 | BookRestaurant book a reservation for my babies and i O O O O B-party_size_description I-party_size_description I-party_size_description I-party_size_description 102 | BookRestaurant book a reservation for a restaurant not far from ma O O O O O B-restaurant_type B-spatial_relation I-spatial_relation O B-state 103 | BookRestaurant i would like to book a restaurant in tanzania that is within walking distance for my mom and i O O O O O O B-restaurant_type O B-country O O B-spatial_relation I-spatial_relation I-spatial_relation O B-party_size_description I-party_size_description I-party_size_description I-party_size_description 104 | BookRestaurant book a reservation for an oyster bar O O O O O B-restaurant_type I-restaurant_type 105 | BookRestaurant book a reservation for 6 people for a creole tavern in montenegro O O O O B-party_size_number O O O B-cuisine B-restaurant_type O B-country 106 | BookRestaurant i need a table in sacaton at a gluten free restaurant O O O O O B-city O O B-cuisine I-cuisine B-restaurant_type 107 | BookRestaurant book sot for me and my grandfather nearby west reading O O O B-party_size_description I-party_size_description I-party_size_description I-party_size_description B-spatial_relation B-poi I-poi 108 | BookRestaurant book me and my nieces a reservation for a seafood restaurant in cle elum ne on ascension day O B-party_size_description I-party_size_description I-party_size_description I-party_size_description O O O O B-served_dish B-restaurant_type O B-city I-city B-state O B-timeRange I-timeRange 109 | BookRestaurant book spot for two at city tavern O O O B-party_size_number O B-restaurant_name I-restaurant_name 110 | BookRestaurant i want to book a brasserie for 3 people in netherlands antilles O O O O O B-restaurant_type O B-party_size_number O O B-country I-country 111 | BookRestaurant book me a reservation for the best bistro O O O O O O B-sort B-restaurant_type 112 | BookRestaurant book the best table in tanzania for 5 people at a diner O O B-sort O O B-country O B-party_size_number O O O B-restaurant_type 113 | BookRestaurant i want to book a joint in a spa O O O O O B-restaurant_type O O B-facility 114 | BookRestaurant book a gastropub that serves turkish food for 4 people O O B-restaurant_type O O B-cuisine O O B-party_size_number O 115 | BookRestaurant book spot for 7 at an indoor restaurant in mp now O O O B-party_size_number O O B-facility B-restaurant_type O B-state B-timeRange 116 | BookRestaurant book a table in fiji for zero a m O O O O B-country O B-timeRange I-timeRange I-timeRange 117 | BookRestaurant i want to book a restaurant for five people in sri lanka O O O O O B-restaurant_type O B-party_size_number O O B-country I-country 118 | BookRestaurant i need a table for 5 at a highly rated gastropub in concord mn O O O O O B-party_size_number O O B-sort I-sort B-restaurant_type O B-city B-state 119 | BookRestaurant i want to book oregon electric station in north city O O O O B-restaurant_name I-restaurant_name I-restaurant_name O B-city I-city 120 | BookRestaurant i need a table for 4 please confirm the reservation O O O O O B-party_size_number O O O O 121 | BookRestaurant book a popular restaurant for 5 people O O B-sort B-restaurant_type O B-party_size_number O 122 | BookRestaurant i want to book a joint close by the naomi s hostel for a meal for 8 people O O O O O B-restaurant_type B-spatial_relation I-spatial_relation O B-poi I-poi I-poi O O B-timeRange O B-party_size_number O 123 | BookRestaurant i want to eat a delicatessen in thirteen hours that serves eastern european food O O O O O B-restaurant_type B-timeRange I-timeRange I-timeRange O O B-cuisine I-cuisine O 124 | BookRestaurant book a reservation for nine people at a bakery in nunez O O O O B-party_size_number O O O B-restaurant_type O B-city 125 | BookRestaurant book a reservation at tavern for noodle O O O O B-restaurant_type O B-served_dish 126 | BookRestaurant book spot for 4 in somalia O O O B-party_size_number O B-country 127 | BookRestaurant i want to book albany pump station in buckholts washington now for a party of 9 O O O O B-restaurant_name I-restaurant_name I-restaurant_name O B-city B-state B-timeRange O O O O B-party_size_number 128 | BookRestaurant i want to book a taverna in archer city for this spring for nine people O O O O O B-restaurant_type O B-city I-city O B-timeRange I-timeRange O B-party_size_number O 129 | BookRestaurant i want to book a top-rated brasserie for 7 people O O O O O B-sort B-restaurant_type O B-party_size_number O 130 | BookRestaurant book a reservation for 8 people in wardville kansas O O O O B-party_size_number O O B-city B-state 131 | BookRestaurant table for breadline cafe in minnesota next friday O O B-restaurant_name I-restaurant_name O B-state B-timeRange I-timeRange 132 | BookRestaurant i want to book a restaurant in niger for seven people O O O O O B-restaurant_type O B-country O B-party_size_number O 133 | BookRestaurant book spot for 9 O O O B-party_size_number 134 | BookRestaurant book me a reservation for a pub in cormorant for a party of nine O O O O O O B-restaurant_type O B-city O O O O B-party_size_number 135 | BookRestaurant book spot for my nieces and i at a tea house O O O B-party_size_description I-party_size_description I-party_size_description I-party_size_description O O B-restaurant_type I-restaurant_type 136 | BookRestaurant i want to book a jewish restaurant in gambia O O O O O B-cuisine B-restaurant_type O B-country 137 | BookRestaurant book a reservation for the dome edinburgh close to brooklawn O O O O B-restaurant_name I-restaurant_name I-restaurant_name B-spatial_relation O B-poi 138 | BookRestaurant book spot for 1 at town of ramsgate in merit O O O B-party_size_number O B-restaurant_name I-restaurant_name I-restaurant_name O B-city 139 | BookRestaurant book a spot for me and kathrine at smithville O O O O B-party_size_description I-party_size_description I-party_size_description O B-city 140 | BookRestaurant i want to book a restaurant for my father in law and i in buckner a year from now O O O O O B-restaurant_type O B-party_size_description I-party_size_description I-party_size_description I-party_size_description I-party_size_description I-party_size_description O B-city B-timeRange I-timeRange I-timeRange I-timeRange 141 | BookRestaurant book a restaurant reservation in 6 weeks O O B-restaurant_type O B-timeRange I-timeRange I-timeRange 142 | BookRestaurant book a reservation for a bar with a spa nearby id O O O O O B-restaurant_type O O B-facility B-spatial_relation B-state 143 | BookRestaurant book spot for four at cliff house san francisco in martinique O O O B-party_size_number O B-restaurant_name I-restaurant_name I-restaurant_name I-restaurant_name O B-country 144 | BookRestaurant i need a table for 4 in saint helena at settha palace hotel O O O O O B-party_size_number O B-country I-country O B-restaurant_name I-restaurant_name I-restaurant_name 145 | BookRestaurant i want to book a restaurant in frenier 12 years from now for 4 people O O O O O B-restaurant_type O B-city B-timeRange I-timeRange I-timeRange I-timeRange O B-party_size_number O 146 | BookRestaurant book seven in neighboring moorpark O B-party_size_number O B-spatial_relation B-city 147 | BookRestaurant i want to eat by five pm in ne for a six people O O O O O B-timeRange I-timeRange O B-state O O B-party_size_number O 148 | BookRestaurant i want to book tupelo honey cafe in new jersey for five people O O O O B-restaurant_name I-restaurant_name I-restaurant_name O B-state I-state O B-party_size_number O 149 | BookRestaurant book a reservation for two at mickies dairy bar in weedsport O O O O B-party_size_number O B-restaurant_name I-restaurant_name I-restaurant_name O B-city 150 | BookRestaurant book a table at a fried chicken restaurant O O O O O B-restaurant_name I-restaurant_name I-restaurant_name 151 | BookRestaurant book spot for mavis sheila and i in syria at elevenses O O O B-party_size_description I-party_size_description I-party_size_description I-party_size_description O B-country O B-timeRange 152 | BookRestaurant can you book me a table at windows on the world in cokeville mi O O O O O O O B-restaurant_name I-restaurant_name I-restaurant_name I-restaurant_name O B-city B-state 153 | BookRestaurant book me a table for 5 this year at cherwell boathouse O O O O O B-party_size_number B-timeRange I-timeRange O B-restaurant_name I-restaurant_name 154 | BookRestaurant book spot for six at 8 pm at a coffeehouse in ne that serves hog fry O O O B-party_size_number O B-timeRange I-timeRange O O B-restaurant_type O B-state O O B-served_dish I-served_dish 155 | BookRestaurant i want to book a restaurant close-by in inman for five people O O O O O B-restaurant_type B-spatial_relation O B-city O B-party_size_number O 156 | BookRestaurant i need a table at eddie s attic in nevada for one O O O O O B-restaurant_name I-restaurant_name I-restaurant_name O B-state O B-party_size_number 157 | BookRestaurant book a reservation for an osteria restaurant for 4 people on november 4 O O O O O B-restaurant_type O O B-party_size_number O O B-timeRange I-timeRange 158 | BookRestaurant i want to book a top-rated restaurant close by in la for me rebecca and loraine on 2/6/2020 O O O O O B-sort B-restaurant_type B-spatial_relation O O B-state O B-party_size_description I-party_size_description I-party_size_description I-party_size_description O B-timeRange 159 | BookRestaurant book a reservation for 1 at a diner in wi O O O O B-party_size_number O O B-restaurant_type O B-state 160 | BookRestaurant book a reservation for 5 people at the top-rated brasserie restaurant O O O O B-party_size_number O O O B-sort B-restaurant_type O 161 | BookRestaurant book a table on 1/20/2023 for 5 people in mh O O O O B-timeRange O B-party_size_number O O B-state 162 | BookRestaurant book a table near pat s college O O O B-spatial_relation B-poi I-poi I-poi 163 | BookRestaurant i want to book a steakhouse in vimy ridge O O O O O B-restaurant_type O B-city I-city 164 | BookRestaurant i want a table at james d conrey house in urbank california O O O O O B-restaurant_name I-restaurant_name I-restaurant_name I-restaurant_name O B-city B-state 165 | BookRestaurant like to book a seat in monaco for the yankee doodle coffee shop O O O O O O B-country O O B-restaurant_name I-restaurant_name I-restaurant_name I-restaurant_name 166 | BookRestaurant i want to book a table in a restaurant in bouvet island O O O O O O O O B-restaurant_type O B-country I-country 167 | BookRestaurant i would like to book a restaurant for souvlaki cuisine in the state of ne O O O O O O B-restaurant_type O B-cuisine O O O O O B-state 168 | BookRestaurant book a reservation for 10 people at an oyster bar with a pool within the same area of cowansburg for 10 pm O O O O B-party_size_number O O O B-restaurant_type I-restaurant_type O O B-facility B-spatial_relation I-spatial_relation I-spatial_relation I-spatial_relation O B-city O B-timeRange I-timeRange 169 | BookRestaurant book a reservation for velma ana and rebecca for an american pizzeria at 5 am in ma O O O O B-party_size_description I-party_size_description I-party_size_description I-party_size_description O O B-cuisine B-restaurant_type O B-timeRange I-timeRange O B-state 170 | BookRestaurant book a spot for 4 in oklahoma at south street diner O O O O B-party_size_number O B-state O B-restaurant_name I-restaurant_name I-restaurant_name 171 | BookRestaurant book a reservation for my mommy and i at a restaurant in central african republic O O O O B-party_size_description I-party_size_description I-party_size_description I-party_size_description O O B-restaurant_type O B-country I-country I-country 172 | BookRestaurant book a reservation for five people for a tatar taverna in sargents O O O O B-party_size_number O O O B-cuisine B-restaurant_type O B-city 173 | BookRestaurant phyllis ward and veronica need a table at a restaurant in 152 days B-party_size_description I-party_size_description I-party_size_description I-party_size_description O O O O O B-restaurant_type B-timeRange I-timeRange I-timeRange 174 | BookRestaurant book a reservation for ten at a restaurant in ohio O O O O B-party_size_number O O B-restaurant_type O B-state 175 | BookRestaurant i want to book a tea house that serves salade far from here at midnight in panama for two people O O O O O B-restaurant_type I-restaurant_type O O B-served_dish B-spatial_relation O O O B-timeRange O B-country O B-party_size_number O 176 | BookRestaurant i want to book a food truck for seven people in the republic of the congo O O O O O B-restaurant_type I-restaurant_type O B-party_size_number O O O B-country I-country I-country I-country 177 | BookRestaurant i want to book a restaurant for ten people O O O O O B-restaurant_type O B-party_size_number O 178 | BookRestaurant lets eat near oakfield 17 seconds from now at ted peters famous smoked fish O O B-spatial_relation B-city B-timeRange I-timeRange I-timeRange I-timeRange O B-restaurant_name I-restaurant_name I-restaurant_name I-restaurant_name I-restaurant_name 179 | BookRestaurant book sot for 7 at a restaurant that serves european in stringtown on feb the 28th 2034 O O O B-party_size_number O O B-restaurant_type O O B-cuisine O B-city O B-timeRange I-timeRange I-timeRange I-timeRange 180 | BookRestaurant book a restaurant for six at an outdoor cafe in åland O O B-restaurant_type O B-party_size_number O O B-facility O O B-country 181 | BookRestaurant book a table for 12 am at our step mother s secondary residence within walking distance for one O O O O B-timeRange I-timeRange O B-poi I-poi I-poi I-poi I-poi I-poi B-spatial_relation I-spatial_relation I-spatial_relation O B-party_size_number 182 | BookRestaurant please book me a table at a pizzeria with a parking facility in ghana O O O O O O O B-restaurant_type O O B-facility O O B-country 183 | BookRestaurant book spot for four at a indoor pub within the same area of louisiana in one minute O O O B-party_size_number O O B-facility B-restaurant_type B-spatial_relation I-spatial_relation I-spatial_relation I-spatial_relation O B-state B-timeRange I-timeRange I-timeRange 184 | BookRestaurant please book me a restaurant O O O O B-restaurant_type 185 | BookRestaurant book a reservation for me and my step brother at amt coffee in lakemoor O O O O B-party_size_description I-party_size_description I-party_size_description I-party_size_description I-party_size_description O B-restaurant_name I-restaurant_name O B-city 186 | BookRestaurant i want to book a churrascaria in romeoville at ten a m for four people O O O O O B-restaurant_type O B-city O B-timeRange I-timeRange I-timeRange O B-party_size_number O 187 | BookRestaurant table for 5 a m at baker s keyboard lounge O O B-timeRange I-timeRange I-timeRange O B-restaurant_name I-restaurant_name I-restaurant_name I-restaurant_name 188 | BookRestaurant please book me a table at a bistro which serves lorna doone O O O O O O O B-restaurant_type O O B-served_dish I-served_dish 189 | BookRestaurant i want to book a restaurant for six people in wagstaff ak O O O O O B-restaurant_type O B-party_size_number O O B-city B-state 190 | BookRestaurant i would like to book a highly rated restaurant for a party of ten O O O O O O B-sort I-sort B-restaurant_type O O O O B-party_size_number 191 | BookRestaurant i want to book a sundanese gastropub nearby in texas for 3 people on 5/20/2025 O O O O O B-cuisine B-restaurant_type B-spatial_relation O B-state O B-party_size_number O O B-timeRange 192 | BookRestaurant book a party of five at seagoville for 06:42 O O O O B-party_size_number O B-city O B-timeRange 193 | BookRestaurant book spot for 9 at thurmont O O O B-party_size_number O B-city 194 | BookRestaurant i want to book a restaurant in sixteen seconds for 5 people in gold point montana O O O O O B-restaurant_type B-timeRange I-timeRange I-timeRange O B-party_size_number O O B-city I-city B-state 195 | BookRestaurant i want to eat in ramona O O O O O B-city 196 | BookRestaurant book a party at their campus within the same area for churrascaria O O O O B-poi I-poi B-spatial_relation I-spatial_relation I-spatial_relation I-spatial_relation O B-restaurant_type 197 | BookRestaurant book me a reservation for a party of 3 at a pub in northern mariana islands O O O O O O O O B-party_size_number O O B-restaurant_type O B-country I-country I-country 198 | BookRestaurant i want to book a bougatsa restaurant in next year nearby penn for three people O O O O O B-cuisine B-restaurant_type O B-timeRange I-timeRange B-spatial_relation B-city O B-party_size_number O 199 | BookRestaurant book a reservation for nine people at the best pub nearby tangier in six months O O O O B-party_size_number O O O B-sort B-restaurant_type B-spatial_relation B-city B-timeRange I-timeRange I-timeRange 200 | BookRestaurant need a table somewhere in quarryville 14 hours from now O O O O O B-city B-timeRange I-timeRange I-timeRange I-timeRange 201 | GetWeather what will the weather be faraway from here O O O O O B-spatial_relation O B-current_location 202 | GetWeather will there be fog in tahquamenon falls state park O O O B-condition_description O B-geographic_poi I-geographic_poi I-geographic_poi I-geographic_poi 203 | GetWeather tell me the weather forecast for gibsland O O O O O O B-city 204 | GetWeather is there a storm now in nc O O O B-condition_description B-timeRange O B-state 205 | GetWeather what will the weather be in monument of lihula on december the 5th O O O O O O B-geographic_poi I-geographic_poi I-geographic_poi O B-timeRange I-timeRange I-timeRange 206 | GetWeather weather next year in dominica O B-timeRange I-timeRange O B-country 207 | GetWeather when will it be hot here O O O O B-condition_temperature B-current_location 208 | GetWeather what will the weather be in 1 day in kuwait O O O O O B-timeRange I-timeRange I-timeRange O B-country 209 | GetWeather what kind of weather will be in ukraine one minute from now O O O O O O O B-country B-timeRange I-timeRange I-timeRange I-timeRange 210 | GetWeather humidity in olvey new hampshire B-condition_description O B-city B-state I-state 211 | GetWeather what s the weather going to be in ut O O O O O O O O B-state 212 | GetWeather humidity not far from colorado city on november the 7th 2024 B-condition_description B-spatial_relation I-spatial_relation O B-city I-city O B-timeRange I-timeRange I-timeRange I-timeRange 213 | GetWeather what is the forecast for wyoming at stanardsville during the storm O O O O O B-state O B-city O O B-condition_description 214 | GetWeather what will the weather be in north carolina O O O O O O B-state I-state 215 | GetWeather what is the forecast starting 11 weeks from now nearby the state of wisconsin O O O O O B-timeRange I-timeRange I-timeRange I-timeRange B-spatial_relation O O O B-state 216 | GetWeather will it be rainy at sunrise in ramey saudi arabia O O O B-condition_description O B-timeRange O B-city B-country I-country 217 | GetWeather check the forecast for nebraska O O O O B-state 218 | GetWeather will it be warmer in north korea at nineteen o clock O O O B-condition_temperature O B-country I-country O B-timeRange I-timeRange I-timeRange 219 | GetWeather let me know the weather forecast around ten pm faraway from here in park narodowy brimstone hill fortress O O O O O O O B-timeRange I-timeRange B-spatial_relation O B-current_location O B-geographic_poi I-geographic_poi I-geographic_poi I-geographic_poi I-geographic_poi 220 | GetWeather will it be stormy in the ouachita national forest O O O B-condition_description O O B-geographic_poi I-geographic_poi I-geographic_poi 221 | GetWeather tell me if it will be snowy 8 hours from now in mount airy vi O O O O O O B-condition_description B-timeRange I-timeRange I-timeRange I-timeRange O B-city I-city B-state 222 | GetWeather what will the weather be nineteen hours from now neighboring saint kitts and nevis O O O O O B-timeRange I-timeRange I-timeRange I-timeRange B-spatial_relation B-country I-country I-country I-country 223 | GetWeather will there be hail on 11/12/2036 in singapore O O O B-condition_description O B-timeRange O B-country 224 | GetWeather will it be colder here in 48 and a half weeks O O O B-condition_temperature B-current_location B-timeRange I-timeRange I-timeRange I-timeRange I-timeRange I-timeRange 225 | GetWeather what s the weather going to be in knobel O O O O O O O O B-city 226 | GetWeather what will the weather be in dane on sep the fifth 2030 O O O O O O B-city O B-timeRange I-timeRange I-timeRange I-timeRange 227 | GetWeather what will the weather be in ohio O O O O O O B-state 228 | GetWeather i need to know the weather for jan the 3rd in mexico when i go to port vue O O O O O O O B-timeRange I-timeRange I-timeRange O B-country O O O O B-city I-city 229 | GetWeather what is the forecast for ōtone prefectural natural park in 1 hour and within the same area O O O O O B-geographic_poi I-geographic_poi I-geographic_poi I-geographic_poi B-timeRange I-timeRange I-timeRange O B-spatial_relation I-spatial_relation I-spatial_relation I-spatial_relation 230 | GetWeather what kind of weather is forecast around one pm near vatican O O O O O O O B-timeRange I-timeRange B-spatial_relation B-country 231 | GetWeather will it be chilly in weldona O O O B-condition_temperature O B-city 232 | GetWeather will it be colder in virgin islands national park O O O B-condition_temperature O B-geographic_poi I-geographic_poi I-geographic_poi I-geographic_poi 233 | GetWeather will it be hot at 13:19 in de funiak springs serbia and montenegro O O O B-condition_temperature O B-timeRange O B-city I-city I-city B-country I-country I-country 234 | GetWeather what is the weather going to be like in virginia on st patrick s day O O O O O O O O O B-state O B-timeRange I-timeRange I-timeRange I-timeRange 235 | GetWeather weather in kaneville maryland O O B-city B-state 236 | GetWeather when is sunrise for ar O O B-timeRange O B-state 237 | GetWeather what will the weather be not far from here on october the nineteenth 2026 O O O O O B-spatial_relation I-spatial_relation O B-current_location O B-timeRange I-timeRange I-timeRange I-timeRange 238 | GetWeather what is the forecast for waurika in samoa O O O O O B-city O B-country 239 | GetWeather tell me the weather forecast here O O O O O B-current_location 240 | GetWeather what is the weather forecast nearby nicodemus O O O O O B-spatial_relation B-city 241 | GetWeather what will the weather be in nov in brookneal O O O O O O B-timeRange O B-city 242 | GetWeather will it be colder four months from now in suwanee ak O O O B-condition_temperature B-timeRange I-timeRange I-timeRange I-timeRange O B-city B-state 243 | GetWeather what is the weather forecast for burundi O O O O O O B-country 244 | GetWeather what s the weather in benton city O O O O O B-city I-city 245 | GetWeather what will the weather be in ky on oct 16 2036 O O O O O O B-state O B-timeRange I-timeRange I-timeRange 246 | GetWeather will the sun be out in 1 minute in searcy uganda O O B-condition_description O O B-timeRange I-timeRange I-timeRange O B-city B-country 247 | GetWeather what is the weather here O O O O B-current_location 248 | GetWeather what will the weather be one second from now in chad O O O O O B-timeRange I-timeRange I-timeRange I-timeRange O B-country 249 | GetWeather what kind of weather is forecast in ms now O O O O O O O B-state B-timeRange 250 | GetWeather what is the forecast for la for freezing O O O O O B-state O B-condition_temperature 251 | GetWeather how cold will it be here in 1 second O B-condition_temperature O O O B-current_location B-timeRange I-timeRange I-timeRange 252 | GetWeather what is the forecast for hotter weather at southford falls state park O O O O O B-condition_temperature O O B-geographic_poi I-geographic_poi I-geographic_poi I-geographic_poi 253 | GetWeather what is the overcast forecast for the current position starting on jul 19 2030 O O O B-condition_description O O O B-current_location I-current_location O O B-timeRange I-timeRange I-timeRange 254 | GetWeather what is the forecast for morocco at lake ozark on december seventeenth 2022 O O O O O B-country O B-city I-city O B-timeRange I-timeRange I-timeRange 255 | GetWeather what will the humidity be in the current spot at 15:19:29 O O O B-condition_description O O O B-current_location I-current_location O B-timeRange 256 | GetWeather what is the forecast in nicodemus and nearby O O O O O B-city O B-spatial_relation 257 | GetWeather what is the weather going to be like in benton colorado in 2 and a half months O O O O O O O O O B-city B-state B-timeRange I-timeRange I-timeRange I-timeRange I-timeRange I-timeRange 258 | GetWeather what s the weather forecast for bothe-napa valley state park close by february 20 O O O O O O B-geographic_poi I-geographic_poi I-geographic_poi I-geographic_poi B-spatial_relation I-spatial_relation B-timeRange I-timeRange 259 | GetWeather what is the forecast for beginning on nov 17 for franklinville O O O O O O O B-timeRange I-timeRange O B-city 260 | GetWeather what s the forecast for sep 26 in emerado saint pierre and miquelon O O O O O B-timeRange I-timeRange O B-city B-country I-country I-country I-country 261 | GetWeather will there be a blizzard next winter in visalia idaho O O O O B-condition_description B-timeRange I-timeRange O B-city B-state 262 | GetWeather will it be warmer in the district of columbia on may 25 2033 O O O B-condition_temperature O O B-state I-state I-state O B-timeRange I-timeRange I-timeRange 263 | GetWeather what will the weather be here on dec 7th O O O O O B-current_location O B-timeRange I-timeRange 264 | GetWeather what is the forecast for colder temps beginning on law day here O O O O O B-condition_temperature O O O B-timeRange I-timeRange B-current_location 265 | GetWeather what s the weather like in tyonek new jersey O O O O O O B-city B-state I-state 266 | GetWeather what is the forecast for here for blizzard conditions at five pm O O O O O B-current_location O B-condition_description O O B-timeRange I-timeRange 267 | GetWeather will there be a storm in gibsonia at 8 p m O O O O B-condition_description O B-city O B-timeRange I-timeRange I-timeRange 268 | GetWeather what is the cold condition of our current position for tomorrow O O O B-condition_temperature O O O B-current_location I-current_location O B-timeRange 269 | GetWeather what will the weather be in hialeah gardens on october the 24th O O O O O O B-city I-city O B-timeRange I-timeRange I-timeRange 270 | GetWeather will it be freezing today in delaware and lehigh national heritage corridor O O O B-condition_temperature B-timeRange O B-geographic_poi I-geographic_poi I-geographic_poi I-geographic_poi I-geographic_poi I-geographic_poi 271 | GetWeather what is the forecast in admire in tx starting at seventeen O O O O O B-city O B-state O O B-timeRange 272 | GetWeather what is the forecast in north carolina for edgemoor O O O O O B-state I-state O B-city 273 | GetWeather what is the forecast for costa rica O O O O O B-country I-country 274 | GetWeather need weather for parc national tolhuaca to see if it will be fog today O O O B-geographic_poi I-geographic_poi I-geographic_poi O O O O O O B-condition_description O 275 | GetWeather weather in walden russia on 12/26/2018 O O B-city B-country O B-timeRange 276 | GetWeather what s the humidity here right now O O O B-condition_description B-current_location O B-timeRange 277 | GetWeather how s the weather at petit manan national wildlife refuge and nearby right now O O O O O B-geographic_poi I-geographic_poi I-geographic_poi I-geographic_poi I-geographic_poi O B-spatial_relation O B-timeRange 278 | GetWeather what is the forecast for lansford for temperate weather O O O O O B-city O B-condition_temperature O 279 | GetWeather overcast on state holiday in pawling nature reserve and neighboring places B-condition_description O B-timeRange I-timeRange O B-geographic_poi I-geographic_poi I-geographic_poi O B-spatial_relation O 280 | GetWeather i need the weather in wakarusa O O O O O B-city 281 | GetWeather tell me the forecast for 6 am in tatra-nationalpark O O O O O B-timeRange I-timeRange O B-geographic_poi 282 | GetWeather tell me the weather forecast for ut on thursday O O O O O O B-state O B-timeRange 283 | GetWeather what is the forecast for turtle islands national park O O O O O B-geographic_poi I-geographic_poi I-geographic_poi I-geographic_poi 284 | GetWeather will it be hotter in pr at 23 o clock O O O B-condition_temperature O B-state O B-timeRange I-timeRange I-timeRange 285 | GetWeather weather in two hours in uzbekistan O B-timeRange I-timeRange I-timeRange O B-country 286 | GetWeather what is the forecast for this afternoon for blizzard conditions in dieterich chad O O O O O O B-timeRange O B-condition_description O O B-city B-country 287 | GetWeather how s the weather here at two am O O O O B-current_location O B-timeRange I-timeRange 288 | GetWeather will custer national forest be chillier at seven pm O B-geographic_poi I-geographic_poi I-geographic_poi O B-condition_temperature O B-timeRange I-timeRange 289 | GetWeather what is the forecast for starting at three a m in two buttes for warm weather O O O O O O O B-timeRange I-timeRange I-timeRange O B-city I-city O B-condition_temperature O 290 | GetWeather what s the weather in fox chapel O O O O O B-city I-city 291 | GetWeather what is the rain forecast for one hour from now in south korea O O O B-condition_description O O B-timeRange I-timeRange I-timeRange I-timeRange O B-country I-country 292 | GetWeather tell me the weather forecast here O O O O O B-current_location 293 | GetWeather will there be a cloud in vi in 14 minutes O O O O B-condition_description O B-state B-timeRange I-timeRange I-timeRange 294 | GetWeather how much colder will it be not far from utah around 3 am O O B-condition_temperature O O O B-spatial_relation I-spatial_relation O B-state O B-timeRange I-timeRange 295 | GetWeather will it be chilly midday in cresbard afghanistan O O O B-condition_temperature B-timeRange O B-city B-country 296 | GetWeather what will the weather be in sarygamyş sanctuary on august 21 2035 O O O O O O B-geographic_poi I-geographic_poi O B-timeRange I-timeRange I-timeRange 297 | GetWeather will it be rainy in tenino O O O B-condition_description O B-city 298 | GetWeather will it be hot in the netherlands on february 16th O O O B-condition_temperature O O B-country O B-timeRange I-timeRange 299 | GetWeather where is belgium located O O B-country O 300 | GetWeather what will the weather be in milleville beach O O O O O O B-city I-city 301 | PlayMusic can you put on like a hurricane by paul landers O O O O B-album I-album I-album O B-artist I-artist 302 | PlayMusic play the happy blues by ronnie wood O B-album I-album I-album O B-artist I-artist 303 | PlayMusic play the newest melody on last fm by eddie vinson O O B-sort B-music_item O B-service I-service O B-artist I-artist 304 | PlayMusic use groove shark to play music O B-service I-service O O O 305 | PlayMusic please play something good from u-roy any song from 1975 on zvooq will do O O O B-sort O B-artist O B-music_item O B-year O B-service O O 306 | PlayMusic play a symphony from 2013 O O B-music_item O B-year 307 | PlayMusic let me hear the good songs from james iha O O O O B-sort O O B-artist I-artist 308 | PlayMusic play my inventive playlist O O B-playlist O 309 | PlayMusic i want to play music from iheart O O O O O O B-service 310 | PlayMusic play subconscious lobotomy from jennifer paull O B-album I-album O B-artist I-artist 311 | PlayMusic i want to hear a seventies sound track O O O O O B-year B-music_item I-music_item 312 | PlayMusic play a john maher track O O B-artist I-artist B-music_item 313 | PlayMusic please play something from dihan slabbert that s on the top fifty O O O O B-artist I-artist O O O O B-sort I-sort 314 | PlayMusic please play something catchy on youtube O O O B-playlist O B-service 315 | PlayMusic play something from 2004 by imogen heap on spotify O O O B-year O B-artist I-artist O B-service 316 | PlayMusic play seventies music please O B-year O O 317 | PlayMusic play music from the artist sean yseult and sort it through top-50 O O O O O B-artist I-artist O O O O B-sort 318 | PlayMusic play anything jd natasha did in the thirties O O B-artist I-artist O O O B-year 319 | PlayMusic play music off netflix O O O B-service 320 | PlayMusic nineties songs on zvooq B-year O O B-service 321 | PlayMusic open itunes and play ben burnley ready to die O B-service O O B-artist I-artist B-album I-album I-album 322 | PlayMusic play an ep by zak starkey O O B-music_item O B-artist I-artist 323 | PlayMusic play an album from nithyasree mahadevan O O B-music_item O B-artist I-artist 324 | PlayMusic i want to listen to something on youtube O O O O O O O B-service 325 | PlayMusic start playing something from iheart O O O O B-service 326 | PlayMusic play trance life on zvooq O B-playlist I-playlist O B-service 327 | PlayMusic find and play a concerto on zvooq from 1978 by ginger pooley O O O O B-music_item O B-service O B-year O B-artist I-artist 328 | PlayMusic play all things must pass O B-track I-track I-track I-track 329 | PlayMusic i want to hear music from allen toussaint from the fifties O O O O O O B-artist I-artist O O B-year 330 | PlayMusic turn on last fm O O B-service I-service 331 | PlayMusic play a song by rahsaan patterson O O B-music_item O B-artist I-artist 332 | PlayMusic play femme fatale by bonobo O B-track I-track O B-artist 333 | PlayMusic play some anneliese van der pol from the thirties on groove shark O O B-artist I-artist I-artist I-artist O O B-year O B-service I-service 334 | PlayMusic i want to listen to an ep from 1998 O O O O O O B-music_item O B-year 335 | PlayMusic play paul mccartney O B-artist I-artist 336 | PlayMusic play jill sobule album O B-album I-album B-music_item 337 | PlayMusic play chant s from 1973 O B-music_item O O B-year 338 | PlayMusic play something from 90s pop rock essentials O O O B-playlist I-playlist I-playlist I-playlist 339 | PlayMusic play have you met miss jones by nicole from google music O B-track I-track I-track I-track I-track O B-artist O B-service I-service 340 | PlayMusic play chant by nigger kojak on itunes O B-music_item O B-artist I-artist O B-service 341 | PlayMusic play some sixties songs on google music O O B-year O O B-service I-service 342 | PlayMusic play a fifties album from dj yoda on last fm O O B-year B-music_item O B-artist I-artist O B-service I-service 343 | PlayMusic please play my ecstatic playlist O O O B-playlist O 344 | PlayMusic open deezer and play curtain call: the hits by junichi okada O B-service O O B-album I-album I-album I-album O B-artist I-artist 345 | PlayMusic let s play jamie robertson s handover on vimeo O O O B-artist I-artist O B-album O B-service 346 | PlayMusic play a sixties soundtrack O O B-year B-music_item 347 | PlayMusic play this is: miles davis on lastfm O B-playlist I-playlist I-playlist I-playlist O B-service 348 | PlayMusic live in l a joseph meyer please B-album I-album I-album I-album B-artist I-artist O 349 | PlayMusic play the top twenty hisham abbas on youtube O O B-sort I-sort B-artist I-artist O B-service 350 | PlayMusic play some seventies filipp kirkorow O O B-year B-artist I-artist 351 | PlayMusic play the most popular puretone O O B-sort I-sort B-artist 352 | PlayMusic play music from e-type O O O B-artist 353 | PlayMusic can you play a j pero on groove shark O O O B-artist I-artist I-artist O B-service I-service 354 | PlayMusic play a bob burns song O O B-artist I-artist B-music_item 355 | PlayMusic i want to hear leroi moore on vimeo play the song chance of a lifetime O O O O B-artist I-artist O B-service O O B-music_item B-track I-track I-track I-track 356 | PlayMusic play some symphony music from david lindley O O B-music_item O O B-artist I-artist 357 | PlayMusic please play something on iheart from artist ari gold last album O O O O B-service O O B-artist I-artist B-sort B-music_item 358 | PlayMusic i want to hear them from the artist murcof O O O O B-music_item O O O B-artist 359 | PlayMusic play sound track music from the twenties O B-music_item I-music_item O O O B-year 360 | PlayMusic play dance with the devil by mr lordi O B-track I-track I-track I-track O B-artist I-artist 361 | PlayMusic play music from 1996 O O O B-year 362 | PlayMusic go to itunes and play dr lecter by david hodges O O B-service O O B-album I-album O B-artist I-artist 363 | PlayMusic play s t r e e t d a d from hiromitsu agatsuma through pandora O B-album I-album I-album I-album I-album I-album I-album I-album I-album O B-artist I-artist O B-service 364 | PlayMusic play some movement from the fourties O O B-music_item O O B-year 365 | PlayMusic please tune into chieko ochi s good music O B-music_item O B-artist I-artist O B-sort O 366 | PlayMusic play the greatest music from bryan maclean O O B-sort O O B-artist I-artist 367 | PlayMusic play something on last fm O O O B-service I-service 368 | PlayMusic play music by joy nilo O O O B-artist I-artist 369 | PlayMusic play some gary lee conner O O B-artist I-artist I-artist 370 | PlayMusic play music by brian chase O O O B-artist I-artist 371 | PlayMusic can you play top zvooq by fink O O O B-sort B-service O B-artist 372 | PlayMusic play the top-20 nawang khechog soundtrack O O B-sort B-artist I-artist B-music_item 373 | PlayMusic let s hear stuff from andrew hewitt O O O O O B-artist I-artist 374 | PlayMusic play a good ep from the eighties by peter murphy O O B-sort B-music_item O O B-year O B-artist I-artist 375 | PlayMusic play another passenger from louis nelson delisle O B-album I-album O B-artist I-artist I-artist 376 | PlayMusic play the top music from the railway children off last fm O O B-sort O O B-artist I-artist I-artist O B-service I-service 377 | PlayMusic play the best becca O O B-sort B-artist 378 | PlayMusic play something by duke ellington from the seventies O O O B-artist I-artist O O B-year 379 | PlayMusic use the last fm service to play a mis niños de 30 O O B-service I-service O O O B-playlist I-playlist I-playlist I-playlist I-playlist 380 | PlayMusic play my black sabbath: the dio years playlist O O B-playlist I-playlist I-playlist I-playlist I-playlist O 381 | PlayMusic play an ep from mike harding O O B-music_item O B-artist I-artist 382 | PlayMusic i want to hear anything from the rock symphonique genre please O O O O O O O B-genre I-genre O O 383 | PlayMusic please play a 1997 record O O O B-year B-music_item 384 | PlayMusic put what color is your sky by alana davis on the stereo O B-album I-album I-album I-album I-album O B-artist I-artist O O O 385 | PlayMusic please play a movement from george formby jr O O O B-music_item O B-artist I-artist I-artist 386 | PlayMusic play some new les vandyke on slacker O O B-sort B-artist I-artist O B-service 387 | PlayMusic please open zvooq O O B-service 388 | PlayMusic play progressive metal O B-genre I-genre 389 | PlayMusic i want to hear soundtrack music on youtube from helena iren michaelsen O O O O B-music_item O O B-service O B-artist I-artist I-artist 390 | PlayMusic play a song by ramesh narayan from 1960 O O B-music_item O B-artist I-artist O B-year 391 | PlayMusic play some blues britânico O O B-genre I-genre 392 | PlayMusic proceed with hitomi nabatame music from 2003 O O B-artist I-artist O O B-year 393 | PlayMusic play something on zvooq O O O B-service 394 | PlayMusic play music from lynn & wade llp O O O B-artist I-artist I-artist I-artist 395 | PlayMusic let me hear chris knight music O O O B-artist I-artist O 396 | PlayMusic let s hear good mohammad mamle on vimeo O O O B-sort B-artist I-artist O B-service 397 | PlayMusic please play a sound track from the fifties that s on iheart O O O B-music_item I-music_item O O B-year O O O B-service 398 | PlayMusic play music from van-pires by dmitry malikov O B-album I-album I-album O B-artist I-artist 399 | PlayMusic play rich sex on iheart O B-track I-track O B-service 400 | PlayMusic play modern psychedelia O B-playlist I-playlist 401 | RateBook rate this album four out of 6 stars O B-object_select B-object_type B-rating_value O O B-best_rating B-rating_unit 402 | RateBook give this textbook four stars O B-object_select B-object_type B-rating_value B-rating_unit 403 | RateBook rate a twist in the tale zero out of 6 points O B-object_name I-object_name I-object_name I-object_name I-object_name B-rating_value O O B-best_rating B-rating_unit 404 | RateBook rate the children of niobe 1 out of 6 points O B-object_name I-object_name I-object_name I-object_name B-rating_value O O B-best_rating B-rating_unit 405 | RateBook give zero stars to halo: ghosts of onyx O B-rating_value B-rating_unit O B-object_name I-object_name I-object_name I-object_name 406 | RateBook give this novel a score of 5 O B-object_select B-object_type O O O B-rating_value 407 | RateBook give the current series four of 6 points O O B-object_select B-object_part_of_series_type B-rating_value O B-best_rating B-rating_unit 408 | RateBook give 4 out of 6 points to the spirit ring chronicle O B-rating_value O O B-best_rating B-rating_unit O B-object_name I-object_name I-object_name B-object_part_of_series_type 409 | RateBook give two stars out of 6 to 36 children O B-rating_value B-rating_unit O O B-best_rating O B-object_name I-object_name 410 | RateBook rate the sneetches and other stories a three O B-object_name I-object_name I-object_name I-object_name I-object_name O B-rating_value 411 | RateBook rate the current series four stars O O B-object_select B-object_part_of_series_type B-rating_value B-rating_unit 412 | RateBook rate this book a 4 out of 6 O B-object_select B-object_type O B-rating_value O O B-best_rating 413 | RateBook rate the current novel 5 of 6 stars O O B-object_select B-object_type B-rating_value O B-best_rating B-rating_unit 414 | RateBook rate this book a 1 O B-object_select B-object_type O B-rating_value 415 | RateBook give zero out of 6 to the current album O B-rating_value O O B-best_rating O O B-object_select B-object_type 416 | RateBook give this album 5 points O B-object_select B-object_type B-rating_value B-rating_unit 417 | RateBook rate the mystery of the tolling bell series 4 stars O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name B-object_part_of_series_type B-rating_value B-rating_unit 418 | RateBook give the current novel two stars O O B-object_select B-object_type B-rating_value B-rating_unit 419 | RateBook give the current book 4 stars O O B-object_select B-object_type B-rating_value B-rating_unit 420 | RateBook give joe magarac and his usa citizen papers 5 points O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name I-object_name B-rating_value B-rating_unit 421 | RateBook rate the guilty 0 of 6 points O B-object_name I-object_name B-rating_value O B-best_rating B-rating_unit 422 | RateBook rate this textbook four out of 6 O B-object_select B-object_type B-rating_value O O B-best_rating 423 | RateBook give the catedral series four stars O O B-object_name B-object_part_of_series_type B-rating_value B-rating_unit 424 | RateBook reminiscences of the anti-japanese guerillas chronicle deserves zero points out of 6 for a rating B-object_name I-object_name I-object_name I-object_name I-object_name B-object_part_of_series_type O B-rating_value B-rating_unit O O B-best_rating O O O 425 | RateBook give small screen big picture a 0 out of 6 rating O B-object_name I-object_name I-object_name I-object_name O B-rating_value O O B-best_rating O 426 | RateBook gods and pawns should get a three B-object_name I-object_name I-object_name O O O B-rating_value 427 | RateBook give zero stars to this textbook O B-rating_value B-rating_unit O B-object_select B-object_type 428 | RateBook rate the current novel a 4 out of 6 stars O O B-object_select B-object_type O B-rating_value O O B-best_rating B-rating_unit 429 | RateBook rate the book the atmospheric railway 5 out of 6 O O B-object_type B-object_name I-object_name I-object_name B-rating_value O O B-best_rating 430 | RateBook rate black boy 4 out of 6 O B-object_name I-object_name B-rating_value O O B-best_rating 431 | RateBook rate the chronicle current 1 star O O B-object_part_of_series_type B-object_select B-rating_value O 432 | RateBook mark this album a score of 5 O B-object_select B-object_type O O O B-rating_value 433 | RateBook rate the current novel zero out of 6 O O B-object_select B-object_type B-rating_value O O B-best_rating 434 | RateBook rate the current novel a 2 O O B-object_select B-object_type O B-rating_value 435 | RateBook give the giant devil dingo 4 points O B-object_name I-object_name I-object_name I-object_name B-rating_value B-rating_unit 436 | RateBook rate this current novel two out of 6 O B-object_select I-object_select B-object_type B-rating_value O O B-best_rating 437 | RateBook give monthly index of medical specialities a two out of 6 rating O B-object_name I-object_name I-object_name I-object_name I-object_name O B-rating_value O O B-best_rating O 438 | RateBook rate this novel 2 out of 6 points O B-object_select B-object_type B-rating_value O O B-best_rating B-rating_unit 439 | RateBook rate the current novel 3 stars O O B-object_select B-object_type B-rating_value B-rating_unit 440 | RateBook rate the current essay zero out of 6 stars O O B-object_select B-object_type B-rating_value O O B-best_rating B-rating_unit 441 | RateBook rate this current album 0 stars O B-object_select I-object_select B-object_type B-rating_value B-rating_unit 442 | RateBook give a brief stop on the road from auschwitz 1 out of 6 stars O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name I-object_name I-object_name B-rating_value O O B-best_rating B-rating_unit 443 | RateBook rate this album 4 out of 6 stars O B-object_select B-object_type B-rating_value O O B-best_rating B-rating_unit 444 | RateBook rate hate that cat 1 out of 6 stars O B-object_name I-object_name I-object_name B-rating_value O O B-best_rating B-rating_unit 445 | RateBook give my current book one of 6 stars O O B-object_select B-object_type B-rating_value O B-best_rating B-rating_unit 446 | RateBook rate current novel one stars O B-object_select B-object_type B-rating_value B-rating_unit 447 | RateBook give five out of 6 points to this album O B-rating_value O O B-best_rating B-rating_unit O B-object_select B-object_type 448 | RateBook give a rating of 2 to juneteenth O O O O B-rating_value O B-object_name 449 | RateBook rate ruth five out of 6 points O B-object_name B-rating_value O O B-best_rating B-rating_unit 450 | RateBook rate the sea of trolls 1 stars out of 6 O B-object_name I-object_name I-object_name I-object_name B-rating_value B-rating_unit O O B-best_rating 451 | RateBook give the zenith angle one out of 6 points O B-object_name I-object_name I-object_name B-rating_value O O B-best_rating B-rating_unit 452 | RateBook give zero stars to rhialto the marvellous O B-rating_value B-rating_unit O B-object_name I-object_name I-object_name 453 | RateBook give the current book a zero of 6 O O B-object_select B-object_type O B-rating_value O B-best_rating 454 | RateBook rate personal demons 0 out of 6 points O B-object_name I-object_name B-rating_value O O B-best_rating B-rating_unit 455 | RateBook rate the current series a 4 O O B-object_select B-object_part_of_series_type O B-rating_value 456 | RateBook give one of 6 points to who will cry when you die O B-rating_value O B-best_rating B-rating_unit O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name 457 | RateBook give zero out of 6 stars to this album O B-rating_value O O B-best_rating B-rating_unit O B-object_select B-object_type 458 | RateBook give this novel 2 stars O B-object_select B-object_type B-rating_value B-rating_unit 459 | RateBook rate the 8-week cholesterol cure three out of 6 O B-object_name I-object_name I-object_name I-object_name B-rating_value O O B-best_rating 460 | RateBook rate this novel 3 out of 6 points O B-object_select B-object_type B-rating_value O O B-best_rating B-rating_unit 461 | RateBook rate the lives of john lennon five points O B-object_name I-object_name I-object_name I-object_name I-object_name B-rating_value B-rating_unit 462 | RateBook give the american scene 2 of 6 stars O B-object_name I-object_name I-object_name B-rating_value O B-best_rating B-rating_unit 463 | RateBook rate this textbook a one O B-object_select B-object_type O B-rating_value 464 | RateBook give summer of the swans 1 points O B-object_name I-object_name I-object_name I-object_name B-rating_value B-rating_unit 465 | RateBook give the current textbook a rating of five O O B-object_select B-object_type O O O B-rating_value 466 | RateBook give 4 points to the person and the common good O B-rating_value B-rating_unit O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name 467 | RateBook give a four rating to a world apart O O B-rating_value O O B-object_name I-object_name I-object_name 468 | RateBook rate this chronicle 0 points O B-object_select B-object_part_of_series_type B-rating_value B-rating_unit 469 | RateBook give wilco: learning how to die a rating of four points O B-object_name I-object_name I-object_name I-object_name I-object_name O O O B-rating_value B-rating_unit 470 | RateBook rate this saga two out of 6 O B-object_select B-object_part_of_series_type B-rating_value O O B-best_rating 471 | RateBook rate the gift: imagination and the erotic life of property five stars O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name I-object_name I-object_name I-object_name B-rating_value B-rating_unit 472 | RateBook rate neverwhere four out of 6 O B-object_name B-rating_value O O B-best_rating 473 | RateBook rate in the company of cheerful ladies a zero out of 6 O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name O B-rating_value O O B-best_rating 474 | RateBook give one start to the current book O B-rating_value O O O B-object_select B-object_type 475 | RateBook give this chronicle a 2 rating O B-object_select B-object_part_of_series_type O B-rating_value O 476 | RateBook rate this essay a 1 O B-object_select B-object_type O B-rating_value 477 | RateBook out of 6 give rivers of babylon a 1 O O B-best_rating O B-object_name I-object_name I-object_name O B-rating_value 478 | RateBook give 5 of 6 stars to expressive processing O B-rating_value O B-best_rating B-rating_unit O B-object_name I-object_name 479 | RateBook rate the ghost house series a one O B-object_name I-object_name I-object_name B-object_part_of_series_type O B-rating_value 480 | RateBook rate know ye not agincourt 2 out of 6 stars O B-object_name I-object_name I-object_name I-object_name B-rating_value O O B-best_rating B-rating_unit 481 | RateBook i would rate theft: a love story four out of 6 stars O O O B-object_name I-object_name I-object_name I-object_name B-rating_value O O B-best_rating B-rating_unit 482 | RateBook rate the further adventures of the joker four stars O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name B-rating_value B-rating_unit 483 | RateBook give 0 rating to in the heart of the country O B-rating_value O O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name 484 | RateBook give 1 out of 6 rating to the current textbook O B-rating_value O O B-best_rating O O O B-object_select B-object_type 485 | RateBook give the current chronicle five of 6 points O O B-object_select B-object_part_of_series_type B-rating_value O B-best_rating B-rating_unit 486 | RateBook rate cotton comes to harlem a 2 O B-object_name I-object_name I-object_name I-object_name O B-rating_value 487 | RateBook give this album one stars O B-object_select B-object_type B-rating_value B-rating_unit 488 | RateBook rate the adventures of augie march one points O B-object_name I-object_name I-object_name I-object_name I-object_name B-rating_value B-rating_unit 489 | RateBook rate soul music a 0 O B-object_name I-object_name O B-rating_value 490 | RateBook give hindu temples: what happened to them a 5 out of 6 stars O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name O B-rating_value O O B-best_rating B-rating_unit 491 | RateBook give this novel a 1 O B-object_select B-object_type O B-rating_value 492 | RateBook rate the current textbook 1 out of 6 O O B-object_select B-object_type B-rating_value O O B-best_rating 493 | RateBook give this textbook 0 out of 6 stars O B-object_select B-object_type B-rating_value O O B-best_rating B-rating_unit 494 | RateBook give the crystal snare 5 stars O B-object_name I-object_name I-object_name B-rating_value B-rating_unit 495 | RateBook rate this saga two out of 6 O B-object_select B-object_part_of_series_type B-rating_value O O B-best_rating 496 | RateBook give wilco: learning how to die a rating of four points O B-object_name I-object_name I-object_name I-object_name I-object_name O O O B-rating_value B-rating_unit 497 | RateBook rate this book 3 stars out of 6 O B-object_select B-object_type B-rating_value B-rating_unit O O B-best_rating 498 | RateBook rate the three junes one out of 6 O O B-object_name I-object_name B-rating_value O O B-best_rating 499 | RateBook give four stars to the broken window O B-rating_value B-rating_unit O B-object_name I-object_name I-object_name 500 | RateBook rate the current series 4 points O O B-object_select B-object_part_of_series_type B-rating_value B-rating_unit 501 | SearchCreativeWork wish to find the movie the heart beat O O O O B-object_type O B-object_name I-object_name 502 | SearchCreativeWork please look up the tv show vanity O O O O B-object_type I-object_type B-object_name 503 | SearchCreativeWork get me the elvis christmas album tv show O O O B-object_name I-object_name I-object_name B-object_type I-object_type 504 | SearchCreativeWork please find me the saga the deep six O O O O B-object_type B-object_name I-object_name I-object_name 505 | SearchCreativeWork wish to see the photograph with the name live: right here O O O O B-object_type O O O B-object_name I-object_name I-object_name 506 | SearchCreativeWork looking for a novel called death march O O O B-object_type O B-object_name I-object_name 507 | SearchCreativeWork can you find me the work the curse of oak island O O O O O O B-object_name I-object_name I-object_name I-object_name I-object_name 508 | SearchCreativeWork please get me the sacred and profane love machine game O O O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name B-object_type 509 | SearchCreativeWork need a creative work called hit by love O O O O O B-object_name I-object_name I-object_name 510 | SearchCreativeWork search for the trailer for the office O O O B-object_type O B-object_name I-object_name 511 | SearchCreativeWork looking for a creative work called plant ecology O O O O O O B-object_name I-object_name 512 | SearchCreativeWork find the television show to me O O B-object_type I-object_type B-object_name I-object_name 513 | SearchCreativeWork can you please find me the saga chump change O O O O O O B-object_type B-object_name I-object_name 514 | SearchCreativeWork can you find me the ridiculous 6 book O O O O B-object_name I-object_name I-object_name B-object_type 515 | SearchCreativeWork please fine me the tv series now we are married O O O O B-object_type I-object_type B-object_name I-object_name I-object_name I-object_name 516 | SearchCreativeWork please look up the work bachelor pad O O O O O B-object_name I-object_name 517 | SearchCreativeWork please help me find the late night heartbroken blues television show O O O O O B-object_name I-object_name I-object_name I-object_name B-object_type I-object_type 518 | SearchCreativeWork please help me find bend it like beckham the musical O O O O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name 519 | SearchCreativeWork please look up the tv series parables for wooden ears O O O O B-object_type I-object_type B-object_name I-object_name I-object_name I-object_name 520 | SearchCreativeWork can you find me hey man O O O O B-object_name I-object_name 521 | SearchCreativeWork please search for switched O O O B-object_name 522 | SearchCreativeWork can you get me the controlled conversations tv series O O O O O B-object_name I-object_name B-object_type I-object_type 523 | SearchCreativeWork please look up the song the mad magician O O O O B-object_type B-object_name I-object_name I-object_name 524 | SearchCreativeWork please search for the tv show the best of white lion O O O O B-object_type I-object_type B-object_name I-object_name I-object_name I-object_name I-object_name 525 | SearchCreativeWork please find me phineas redux O O O B-object_name I-object_name 526 | SearchCreativeWork get me the procession of ants tv show O O O B-object_name I-object_name I-object_name B-object_type I-object_type 527 | SearchCreativeWork looking for a game called phinally phamous O O O B-object_type O B-object_name I-object_name 528 | SearchCreativeWork can you search the daring youth saga O O O O B-object_name I-object_name B-object_type 529 | SearchCreativeWork look for the book the girl who was plugged in O O O B-object_type B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name 530 | SearchCreativeWork find me a tv show called baby blue O O O B-object_type I-object_type O B-object_name I-object_name 531 | SearchCreativeWork search for appalachian journey O O B-object_name I-object_name 532 | SearchCreativeWork look for the television show meet the prince O O O B-object_type I-object_type B-object_name I-object_name I-object_name 533 | SearchCreativeWork can you find me cracks the safe O O O O B-object_name I-object_name I-object_name 534 | SearchCreativeWork please help me search the hell money saga O O O O O B-object_name I-object_name B-object_type 535 | SearchCreativeWork get me the secret south song O O O B-object_name I-object_name B-object_type 536 | SearchCreativeWork can you find me the work titled music for millions O O O O O O O B-object_name I-object_name I-object_name 537 | SearchCreativeWork please search for the painting titled this is the night O O O O B-object_type O B-object_name I-object_name I-object_name I-object_name 538 | SearchCreativeWork could you locate the epic conditions picture O O O O B-object_name I-object_name B-object_type 539 | SearchCreativeWork get me the trailer of good morning sunshine O O O B-object_type O B-object_name I-object_name I-object_name 540 | SearchCreativeWork please search the an introduction to karl marx painting O O O B-object_name I-object_name I-object_name I-object_name I-object_name B-object_type 541 | SearchCreativeWork can you find me the blue spring trailer O O O O O B-object_name I-object_name B-object_type 542 | SearchCreativeWork could you find the tv series the approach O O O O B-object_type I-object_type B-object_name I-object_name 543 | SearchCreativeWork search for the tv show a lawless street O O O B-object_type I-object_type B-object_name I-object_name I-object_name 544 | SearchCreativeWork please look up three essays on the theory of sexuality show O O O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name I-object_name B-object_type 545 | SearchCreativeWork please get me the compulsive disclosure song O O O O B-object_name I-object_name B-object_type 546 | SearchCreativeWork can you look up the molecular oncology saga O O O O O B-object_name I-object_name B-object_type 547 | SearchCreativeWork search for the sound of one hand clapping O O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name 548 | SearchCreativeWork find the creative work deadly weapons O O O O B-object_name I-object_name 549 | SearchCreativeWork need the creative work called the logic of scientific discovery O O O O O B-object_name I-object_name I-object_name I-object_name I-object_name 550 | SearchCreativeWork can you find me the national anthem of the ancient britons television show O O O O O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name B-object_type I-object_type 551 | SearchCreativeWork can you please find me the harry hood saga O O O O O O B-object_name I-object_name B-object_type 552 | SearchCreativeWork can you find me the work bible translations into hawaii pidgin O O O O O O B-object_name I-object_name I-object_name I-object_name I-object_name 553 | SearchCreativeWork please look up and find me monty python live at the hollywood bowl O O O O O O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name I-object_name 554 | SearchCreativeWork please search for mary O O O B-object_name 555 | SearchCreativeWork please search the game atla: all this life allows O O O B-object_type B-object_name I-object_name I-object_name I-object_name I-object_name 556 | SearchCreativeWork find me the novel with the name to lose my life … O O O B-object_type O O O B-object_name I-object_name I-object_name I-object_name O 557 | SearchCreativeWork looking for a song with the title of live at the kings center O O O B-object_type O O O O B-object_name I-object_name I-object_name I-object_name I-object_name 558 | SearchCreativeWork can you find the american bison photograph O O O O B-object_name I-object_name B-object_type 559 | SearchCreativeWork can you find me the free for all show O O O O O B-object_name I-object_name I-object_name B-object_type 560 | SearchCreativeWork please find me the olympia 74 soundtrack O O O O B-object_name I-object_name B-object_type 561 | SearchCreativeWork look for the album slave to the grind O O O B-object_type B-object_name I-object_name I-object_name I-object_name 562 | SearchCreativeWork please find me the projekt: the new face of goth O O O O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name 563 | SearchCreativeWork can you get me the message from god saga O O O O O B-object_name I-object_name I-object_name B-object_type 564 | SearchCreativeWork find me the soundtrack a honeymoon adventure O O O B-object_type B-object_name I-object_name I-object_name 565 | SearchCreativeWork please get me the henderson kids saga O O O B-object_name I-object_name I-object_name B-object_type 566 | SearchCreativeWork find the movie splendor in the grass O O B-object_type B-object_name I-object_name I-object_name I-object_name 567 | SearchCreativeWork am looking for a book with the title free to play O O O O B-object_type O O O B-object_name I-object_name I-object_name 568 | SearchCreativeWork look for the tv series jersey boys O O O B-object_type I-object_type B-object_name I-object_name 569 | SearchCreativeWork can you search the book paris - when it sizzles O O O O B-object_type B-object_name I-object_name I-object_name I-object_name I-object_name 570 | SearchCreativeWork looking for a painting with the title with you O O O B-object_type O O O B-object_name I-object_name 571 | SearchCreativeWork please find me the classified book O O O O B-object_name B-object_type 572 | SearchCreativeWork look for the show v-the new mythology suite O O O B-object_type B-object_name I-object_name I-object_name I-object_name 573 | SearchCreativeWork find the creative work face down O O O O B-object_name I-object_name 574 | SearchCreativeWork find four songs O B-object_name I-object_name 575 | SearchCreativeWork find me the soundtrack live at the greek theatre O O O B-object_type B-object_name I-object_name I-object_name I-object_name I-object_name 576 | SearchCreativeWork please search for the television show episodi di the blacklist O O O O B-object_type I-object_type B-object_name I-object_name I-object_name I-object_name 577 | SearchCreativeWork find a creative work called fire in the hole O O O O O B-object_name I-object_name I-object_name I-object_name 578 | SearchCreativeWork looking for the picture with the name of who made stevie crye O O O B-object_type O O O O B-object_name I-object_name I-object_name I-object_name 579 | SearchCreativeWork look for the album wolves within O O O B-object_type B-object_name I-object_name 580 | SearchCreativeWork find the album orphan girl at the cemetery O O B-object_type B-object_name I-object_name I-object_name I-object_name I-object_name 581 | SearchCreativeWork please find me the journal of the british astronomical association movie O O O O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name B-object_type 582 | SearchCreativeWork find the tv show the daydreamer O O B-object_type I-object_type B-object_name I-object_name 583 | SearchCreativeWork can you please get me the book dracula 5: the blood legacy O O O O O O B-object_type B-object_name I-object_name I-object_name I-object_name I-object_name 584 | SearchCreativeWork please look up the novel live to dance O O O O B-object_type B-object_name I-object_name I-object_name 585 | SearchCreativeWork please find me the video game titled 20 hours in america O O O O B-object_type I-object_type O B-object_name I-object_name I-object_name I-object_name 586 | SearchCreativeWork find the creative work the devil in stitches O O O O B-object_name I-object_name I-object_name I-object_name 587 | SearchCreativeWork please look up the work prophets O O O O O B-object_name 588 | SearchCreativeWork i m looking for welcome to the canteen O O O O B-object_name I-object_name I-object_name I-object_name 589 | SearchCreativeWork please search for the journal of official statistics show O O O O B-object_name I-object_name I-object_name I-object_name B-object_type 590 | SearchCreativeWork please look up show-biz blues photograph O O O B-object_name I-object_name B-object_type 591 | SearchCreativeWork please search the woodsmen of the west O O O B-object_name I-object_name I-object_name I-object_name 592 | SearchCreativeWork can you find the creative works associated with caryl & marilyn: real friends O O O O O O O O B-object_name I-object_name I-object_name I-object_name I-object_name 593 | SearchCreativeWork please get me the dead soul saga O O O O B-object_name I-object_name B-object_type 594 | SearchCreativeWork please search the live from leeds album O O O B-object_name I-object_name I-object_name B-object_type 595 | SearchCreativeWork please look up the johnny english - la rinascita painting O O O O B-object_name I-object_name I-object_name I-object_name I-object_name B-object_type 596 | SearchCreativeWork can you find me the sword with no name trailer O O O O B-object_name I-object_name I-object_name I-object_name I-object_name B-object_type 597 | SearchCreativeWork i wish to watch the fold trailer please search O O O O B-object_name I-object_name B-object_type O O 598 | SearchCreativeWork can you find me the almost human painting O O O O O B-object_name I-object_name B-object_type 599 | SearchCreativeWork please find me the work serious awesomeness O O O O O B-object_name I-object_name 600 | SearchCreativeWork search for the game difficult loves O O O B-object_type B-object_name I-object_name 601 | SearchScreeningEvent is babar: king of the elephants playing O B-movie_name I-movie_name I-movie_name I-movie_name I-movie_name O 602 | SearchScreeningEvent is the ghost playing O B-movie_name I-movie_name O 603 | SearchScreeningEvent is bartok the magnificent playing at seven am O B-movie_name I-movie_name I-movie_name O O B-timeRange I-timeRange 604 | SearchScreeningEvent what s the movie schedule O O O B-object_type I-object_type 605 | SearchScreeningEvent i want to see jla adventures: trapped in time O O O O B-movie_name I-movie_name I-movie_name I-movie_name I-movie_name 606 | SearchScreeningEvent when is the fox and the child playing in this cinema O O B-movie_name I-movie_name I-movie_name I-movie_name I-movie_name O O O B-object_location_type 607 | SearchScreeningEvent show me the schedule for rat rod rockers O O O B-object_type O B-movie_name I-movie_name I-movie_name 608 | SearchScreeningEvent is any which way you can playing in 15 seconds O B-movie_name I-movie_name I-movie_name I-movie_name I-movie_name O B-timeRange I-timeRange I-timeRange 609 | SearchScreeningEvent i want to see the portrait of a lady at the nearest cinema O O O O B-movie_name I-movie_name I-movie_name I-movie_name I-movie_name O O B-spatial_relation B-object_location_type 610 | SearchScreeningEvent where can i see the prime ministers: the pioneers O O O O B-movie_name I-movie_name I-movie_name I-movie_name I-movie_name 611 | SearchScreeningEvent i need to find the movie theatre showing the crooked web closest to me O O O O O B-object_location_type I-object_location_type O B-movie_name I-movie_name I-movie_name B-spatial_relation O O 612 | SearchScreeningEvent i want to see while the sun shines at the closest movie house O O O O B-movie_name I-movie_name I-movie_name I-movie_name O O B-spatial_relation B-object_location_type I-object_location_type 613 | SearchScreeningEvent i want to see those kids from town when will it be showing O O O O B-movie_name I-movie_name I-movie_name I-movie_name O O O O O 614 | SearchScreeningEvent find the schedule for the comedian at santikos theatres O O B-object_type O B-movie_name I-movie_name O B-location_name I-location_name 615 | SearchScreeningEvent what are the movie schedules for my favorite theaters O O O B-object_type I-object_type O O O B-location_name 616 | SearchScreeningEvent what are the movies showing in the neighbourhood O O O B-movie_type O B-spatial_relation I-spatial_relation I-spatial_relation 617 | SearchScreeningEvent is without witness playing twenty two hours from now O B-movie_name I-movie_name O B-timeRange I-timeRange I-timeRange I-timeRange I-timeRange 618 | SearchScreeningEvent i need animated movies in the area for dinner time O O B-movie_type I-movie_type B-spatial_relation I-spatial_relation I-spatial_relation O B-timeRange O 619 | SearchScreeningEvent i want to see i dream of jeanie in a movie theatre O O O O B-movie_name I-movie_name I-movie_name I-movie_name O O B-object_location_type I-object_location_type 620 | SearchScreeningEvent can i see ellis island revisited in 1 minute O O O B-movie_name I-movie_name I-movie_name B-timeRange I-timeRange I-timeRange 621 | SearchScreeningEvent i want animated movies at mjr theatres O O B-movie_type I-movie_type O B-location_name I-location_name 622 | SearchScreeningEvent show me the schedule for the oblong box O O O B-object_type O B-movie_name I-movie_name I-movie_name 623 | SearchScreeningEvent i want to know if there are any movies playing in the area O O O O O O O O B-movie_type O B-spatial_relation I-spatial_relation I-spatial_relation 624 | SearchScreeningEvent is what a wonderful place showing at cinemark theatres O B-movie_name I-movie_name I-movie_name I-movie_name O O B-location_name I-location_name 625 | SearchScreeningEvent show the closest movie theatre that shows boycott O O B-spatial_relation B-object_location_type I-object_location_type O O B-movie_name 626 | SearchScreeningEvent i want to see doa: dead or alive at loews cineplex entertainment O O O O B-movie_name I-movie_name I-movie_name I-movie_name O B-location_name I-location_name I-location_name 627 | SearchScreeningEvent is the nightmare showing six hours from now at the nearest cinema O B-movie_name I-movie_name O B-timeRange I-timeRange I-timeRange I-timeRange O O B-spatial_relation B-object_location_type 628 | SearchScreeningEvent what is the nearest movie house with window connection playing at lunch O O O B-spatial_relation B-object_location_type I-object_location_type O B-movie_name I-movie_name O O B-timeRange 629 | SearchScreeningEvent is patrick still lives showing at amc theaters O B-movie_name I-movie_name I-movie_name O O B-location_name I-location_name 630 | SearchScreeningEvent fine the movie schedules for the wanda group O O B-object_type I-object_type O O B-location_name I-location_name 631 | SearchScreeningEvent give me the movie schedule nearby O O O B-object_type I-object_type B-spatial_relation 632 | SearchScreeningEvent find the schedule at the douglas theatre company O O B-object_type O O B-location_name I-location_name I-location_name 633 | SearchScreeningEvent show me the movies at harkins theatres O O O B-movie_type O B-location_name I-location_name 634 | SearchScreeningEvent what movies at star theatres O B-movie_type O B-location_name I-location_name 635 | SearchScreeningEvent i want a movie schedule O O O B-object_type I-object_type 636 | SearchScreeningEvent can i get the movie times O O O O B-object_type I-object_type 637 | SearchScreeningEvent i want to see medal for the general O O O O B-movie_name I-movie_name I-movie_name I-movie_name 638 | SearchScreeningEvent can i get the times for movies in the neighbourhood O O O O B-object_type O B-movie_type B-spatial_relation I-spatial_relation I-spatial_relation 639 | SearchScreeningEvent may i have the movie schedules for speakeasy theaters O O O O B-object_type I-object_type O B-location_name I-location_name 640 | SearchScreeningEvent find animated movies close by O B-movie_type I-movie_type B-spatial_relation I-spatial_relation 641 | SearchScreeningEvent is american primitive showing in santikos theatres O B-movie_name I-movie_name O O B-location_name I-location_name 642 | SearchScreeningEvent what are the movie schedules in the neighborhood O O O B-object_type I-object_type B-spatial_relation I-spatial_relation I-spatial_relation 643 | SearchScreeningEvent check the schedule for bow tie cinemas O O B-object_type O B-location_name I-location_name I-location_name 644 | SearchScreeningEvent check the timings for snowbound at the closest movie theatre O O O O B-movie_name O O B-spatial_relation B-object_location_type I-object_location_type 645 | SearchScreeningEvent what are the movie times at caribbean cinemas O O O B-object_type I-object_type O B-location_name I-location_name 646 | SearchScreeningEvent i need films in the neighborhood O O B-movie_type B-spatial_relation I-spatial_relation I-spatial_relation 647 | SearchScreeningEvent show the movie schedules in the neighborhood O O B-object_type I-object_type B-spatial_relation I-spatial_relation I-spatial_relation 648 | SearchScreeningEvent where s the nearest movie house showing foreign films O O O B-spatial_relation B-object_location_type I-object_location_type O O B-movie_type 649 | SearchScreeningEvent what movies are showing now at the closest cinema O B-movie_type O O B-timeRange O O B-spatial_relation B-object_location_type 650 | SearchScreeningEvent is rumor has it playing O B-movie_name I-movie_name I-movie_name O 651 | SearchScreeningEvent i need a list of speakeasy theaters movie times O O O O O B-location_name I-location_name B-object_type I-object_type 652 | SearchScreeningEvent when is the outer space connection playing at the nearest cinema O O B-movie_name I-movie_name I-movie_name I-movie_name O O O B-spatial_relation B-object_location_type 653 | SearchScreeningEvent find the movie times at harkins theatres O O B-object_type I-object_type O B-location_name I-location_name 654 | SearchScreeningEvent find the films at century theatres O O B-movie_type O B-location_name I-location_name 655 | SearchScreeningEvent show the animated movies playing in the neighbourhood O O B-movie_type I-movie_type O B-spatial_relation I-spatial_relation I-spatial_relation 656 | SearchScreeningEvent i want to see fear chamber O O O O B-movie_name I-movie_name 657 | SearchScreeningEvent show me southern theatres movie times O O B-location_name I-location_name B-object_type I-object_type 658 | SearchScreeningEvent is the unnaturals showing at 13 O B-movie_name I-movie_name O O B-timeRange 659 | SearchScreeningEvent is no time to be young showing at amc theaters O B-movie_name I-movie_name I-movie_name I-movie_name I-movie_name O O B-location_name I-location_name 660 | SearchScreeningEvent find the movie schedules for regal entertainment group O O B-object_type I-object_type O B-location_name I-location_name I-location_name 661 | SearchScreeningEvent i want to see shattered image O O O O B-movie_name I-movie_name 662 | SearchScreeningEvent find the schedule at star theatres O O B-object_type O B-location_name I-location_name 663 | SearchScreeningEvent will i think i do be playing at 7 pm O B-movie_name I-movie_name I-movie_name I-movie_name O O O B-timeRange I-timeRange 664 | SearchScreeningEvent show me the schedule for arclight hollywood for only animated movies O O O B-object_type O B-location_name I-location_name O O B-movie_type I-movie_type 665 | SearchScreeningEvent find the schedule for great mail robbery O O B-object_type O B-movie_name I-movie_name I-movie_name 666 | SearchScreeningEvent give me the movies in the neighborhood O O O B-movie_type B-spatial_relation I-spatial_relation I-spatial_relation 667 | SearchScreeningEvent what movies are playing close by O B-movie_type O O B-spatial_relation I-spatial_relation 668 | SearchScreeningEvent is the two gladiators playing O B-movie_name I-movie_name I-movie_name O 669 | SearchScreeningEvent what s the movie schedule for great escape theatres O O O B-object_type I-object_type O B-location_name I-location_name I-location_name 670 | SearchScreeningEvent find the movie schedule close by O O B-object_type I-object_type B-spatial_relation I-spatial_relation 671 | SearchScreeningEvent i want to see outcast O O O O B-movie_name 672 | SearchScreeningEvent show me the schedule of movie the great gildersleeve near movie house O O O B-object_type O O B-movie_name I-movie_name I-movie_name O B-object_location_type I-object_location_type 673 | SearchScreeningEvent i need times for a yiddish world remembered at dipson theatres O O B-object_type O B-movie_name I-movie_name I-movie_name I-movie_name O B-location_name I-location_name 674 | SearchScreeningEvent find the movie schedules at goodrich quality theaters O O B-object_type I-object_type O B-location_name I-location_name I-location_name 675 | SearchScreeningEvent show me the movie schedule in the neighbourhood O O O B-object_type I-object_type B-spatial_relation I-spatial_relation I-spatial_relation 676 | SearchScreeningEvent show me the movie times for films nearby O O O B-object_type I-object_type O B-movie_type B-spatial_relation 677 | SearchScreeningEvent show the movie times for animated movies in the neighbourhood O O B-object_type I-object_type O B-movie_type I-movie_type B-spatial_relation I-spatial_relation I-spatial_relation 678 | SearchScreeningEvent is the eye – infinity playing at general cinema corporation O B-movie_name I-movie_name I-movie_name I-movie_name O O B-location_name I-location_name I-location_name 679 | SearchScreeningEvent can you check the timings for super sweet 16: the movie O O O O O O B-movie_name I-movie_name I-movie_name I-movie_name I-movie_name 680 | SearchScreeningEvent is we are northern lights playing in any movie theatre O B-movie_name I-movie_name I-movie_name I-movie_name O O O B-object_location_type I-object_location_type 681 | SearchScreeningEvent what times will the young swordsman be showing at my cinema O B-object_type O B-movie_name I-movie_name I-movie_name O O O O B-object_location_type 682 | SearchScreeningEvent show the sexy dance 2 times at the closest movie house O O B-movie_name I-movie_name I-movie_name B-object_type O O B-spatial_relation B-object_location_type I-object_location_type 683 | SearchScreeningEvent what are some close by animated movies showing O O O B-spatial_relation I-spatial_relation B-movie_type I-movie_type O 684 | SearchScreeningEvent movie schedules close by for animated movies B-object_type I-object_type B-spatial_relation I-spatial_relation O B-movie_type I-movie_type 685 | SearchScreeningEvent what films are playing close by O B-movie_type O O B-spatial_relation I-spatial_relation 686 | SearchScreeningEvent find the movie schedule in the area O O B-object_type I-object_type B-spatial_relation I-spatial_relation I-spatial_relation 687 | SearchScreeningEvent is cowboy canteen playing O B-movie_name I-movie_name O 688 | SearchScreeningEvent is rare birds showing at the nearest movie theatre at noon O B-movie_name I-movie_name O O O B-spatial_relation B-object_location_type I-object_location_type O B-timeRange 689 | SearchScreeningEvent what are the movie times O O O B-object_type I-object_type 690 | SearchScreeningEvent where can i find the movie schedules O O O O O B-object_type I-object_type 691 | SearchScreeningEvent find the movie schedule for north american cinemas in eleven seconds O O B-object_type I-object_type O B-location_name I-location_name I-location_name B-timeRange I-timeRange I-timeRange 692 | SearchScreeningEvent find the nearest cinema with movies playing O O B-spatial_relation B-object_location_type O B-movie_type O 693 | SearchScreeningEvent what are the movie times O O O B-object_type I-object_type 694 | SearchScreeningEvent what are the times for the gingerbread man O O O B-object_type O B-movie_name I-movie_name I-movie_name 695 | SearchScreeningEvent what films are playing close by O B-movie_type O O B-spatial_relation I-spatial_relation 696 | SearchScreeningEvent is any cinema playing the spirit of youth O O B-object_location_type O B-movie_name I-movie_name I-movie_name I-movie_name 697 | SearchScreeningEvent what are the movie times for animated movies in the neighbourhood O O O B-object_type I-object_type O B-movie_type I-movie_type B-spatial_relation I-spatial_relation I-spatial_relation 698 | SearchScreeningEvent what s the movie schedule at great escape theatres O O O B-object_type I-object_type O B-location_name I-location_name I-location_name 699 | SearchScreeningEvent show the times for cheers for miss bishop at dipson theatres O O B-object_type O B-movie_name I-movie_name I-movie_name I-movie_name O B-location_name I-location_name 700 | SearchScreeningEvent i want to see married to the enemy 2 at a cinema O O O O B-movie_name I-movie_name I-movie_name I-movie_name I-movie_name O O B-object_location_type 701 | -------------------------------------------------------------------------------- /data/snips/test.tsv: -------------------------------------------------------------------------------- 1 | AddToPlaylist add sabrina salerno to the grime instrumentals playlist O B-artist I-artist O O B-playlist I-playlist O 2 | BookRestaurant i want to bring four people to a place that s close to downtown that serves churrascaria cuisine O O O O B-party_size_number O O O O O O B-spatial_relation O B-poi O O B-restaurant_type O 3 | AddToPlaylist put lindsey cardinale into my hillary clinton s women s history month playlist O B-artist I-artist O B-playlist_owner B-playlist I-playlist I-playlist I-playlist I-playlist I-playlist I-playlist I-playlist 4 | GetWeather will it snow in mt on june 13 2038 O O B-condition_description O B-state O B-timeRange I-timeRange I-timeRange 5 | PlayMusic play signe anderson chant music that is newest O B-artist I-artist B-music_item O O O B-sort 6 | SearchScreeningEvent can you let me know what animated movies are playing close by O O O O O O B-movie_type I-movie_type O O B-spatial_relation I-spatial_relation 7 | BookRestaurant can you get me reservations for a highly rated restaurant in seychelles O O O O O O O B-sort I-sort B-restaurant_type O B-country 8 | GetWeather what s the weather here on 2/7/2021 O O O O B-current_location O B-timeRange 9 | SearchScreeningEvent find worldly goods starting now at a movie house O B-movie_name I-movie_name O B-timeRange O O B-object_location_type I-object_location_type 10 | BookRestaurant on june 27 2026 i d like to go to a delaware gastropub O B-timeRange I-timeRange I-timeRange O O O O O O O B-state B-restaurant_type 11 | SearchScreeningEvent what movies are playing at mann theatres O B-movie_type O O O B-location_name I-location_name 12 | SearchCreativeWork find a movie called living in america O O B-object_type O B-object_name I-object_name I-object_name 13 | SearchScreeningEvent find on dress parade O B-movie_name I-movie_name I-movie_name 14 | BookRestaurant make a reservation at a bakery that has acquacotta in central african republic for five O O O O O B-restaurant_type O O B-served_dish O B-country I-country I-country O B-party_size_number 15 | SearchCreativeWork where can i purchase the tv show time for heroes O O O O O B-object_type I-object_type B-object_name I-object_name I-object_name 16 | GetWeather will the wind die down at my current location by supper time O O B-condition_description O O O O B-current_location I-current_location O B-timeRange O 17 | SearchCreativeWork please search the young warriors game O O B-object_name I-object_name I-object_name B-object_type 18 | BookRestaurant make me a reservation in south carolina O O O O O B-state I-state 19 | SearchScreeningEvent what movie theatre is showing if the huns came to melbourne O B-object_location_type I-object_location_type O O B-movie_name I-movie_name I-movie_name I-movie_name I-movie_name I-movie_name 20 | BookRestaurant restaurant in bulgaria this week party for 9 numbers B-restaurant_type O B-country B-timeRange I-timeRange O O B-party_size_number O 21 | RateBook rate the current novel four of 6 stars O O B-object_select B-object_type B-rating_value O B-best_rating B-rating_unit 22 | AddToPlaylist add the song don t drink the water to my playlist O O B-music_item B-playlist I-playlist I-playlist I-playlist I-playlist O B-playlist_owner O 23 | AddToPlaylist add this tune by rod argent to propuesta alternativa playlist O O B-music_item O B-artist I-artist O B-playlist I-playlist O 24 | SearchScreeningEvent show the movie times O O B-object_type I-object_type 25 | GetWeather will it snow in amy O O B-condition_description O B-city 26 | GetWeather what will the weather be at nine am in hi O O O O O O B-timeRange I-timeRange O B-state 27 | SearchScreeningEvent in one hour find king of hearts B-timeRange I-timeRange I-timeRange O B-movie_name I-movie_name I-movie_name 28 | BookRestaurant book a spot for ten at a top-rated caucasian restaurant not far from selmer O O O O B-party_size_number O O B-sort B-cuisine B-restaurant_type B-spatial_relation I-spatial_relation O B-city 29 | PlayMusic play music from clark kent in the year 1987 O O O B-artist I-artist O O O B-year 30 | AddToPlaylist add to the rock games O O O B-playlist B-entity_name 31 | AddToPlaylist add this artist to pop 2017 picks O O B-music_item O B-playlist I-playlist I-playlist 32 | RateBook i rate shadow of suribachi at five stars O O B-object_name I-object_name I-object_name O B-rating_value B-rating_unit 33 | PlayMusic play some sixties music O O B-year O 34 | SearchScreeningEvent what film is playing nearby O B-movie_type O O B-spatial_relation 35 | AddToPlaylist add nothing fancy to meditate to sounds of nature playlist O B-entity_name I-entity_name O B-playlist I-playlist I-playlist I-playlist I-playlist O 36 | SearchCreativeWork get the video game of the chipmunk song O O B-object_type I-object_type O B-object_name I-object_name I-object_name 37 | RateBook rate lamy of santa fe 5 of 6 stars O B-object_name I-object_name I-object_name I-object_name B-rating_value O B-best_rating B-rating_unit 38 | SearchScreeningEvent show me movie schedules O O B-object_type I-object_type 39 | GetWeather what will the weather be in lago vista on october fourteenth 2022 O O O O O O B-city I-city O B-timeRange I-timeRange I-timeRange 40 | GetWeather weather next year in canada O B-timeRange I-timeRange O B-country 41 | PlayMusic play a new symphony by perfecto de castro on lastfm O O B-sort B-music_item O B-artist I-artist I-artist O B-service 42 | RateBook rate cuisines of the axis of evil and other irritating states one out of 6 O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name I-object_name I-object_name I-object_name I-object_name B-rating_value O O B-best_rating 43 | PlayMusic play arif music from the fourties O B-artist O O O B-year 44 | GetWeather what is the weather of east portal ks O O O O O B-city I-city B-state 45 | PlayMusic play a melody from elmer bernstein O O B-music_item O B-artist I-artist 46 | GetWeather what is the weather going to be like in klondike gold rush national historical park on february the 28th 2034 O O O O O O O O O B-geographic_poi I-geographic_poi I-geographic_poi I-geographic_poi I-geographic_poi I-geographic_poi O B-timeRange I-timeRange I-timeRange I-timeRange 47 | PlayMusic play songs by sarah harding O O O B-artist I-artist 48 | RateBook rate the chronicle ten from tomorrow a 2 O O B-object_part_of_series_type B-object_name I-object_name I-object_name O B-rating_value 49 | BookRestaurant book a table for 2 at a restaurant in follett O O O O B-party_size_number O O B-restaurant_type O B-city 50 | BookRestaurant book a brasserie in samoa for four people O O B-restaurant_type O B-country O B-party_size_number O 51 | SearchCreativeWork play the new noise theology e p O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name 52 | BookRestaurant find a reservation at a restaurant that serves gougère in laneville with a party of nine O O O O O B-restaurant_type O O B-served_dish O B-city O O O O B-party_size_number 53 | SearchCreativeWork find the cold dead hand video game for me O O B-object_name I-object_name I-object_name B-object_type I-object_type O O 54 | BookRestaurant book a bakery for lebanese on january 11th 2032 O O B-restaurant_type O B-cuisine O B-timeRange I-timeRange I-timeRange 55 | RateBook rate the book an appeal from the new to the old whigs a 0 O O B-object_type B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name I-object_name I-object_name I-object_name O B-rating_value 56 | BookRestaurant book a table for 8 at a restaurant that serves far breton O O O O B-party_size_number O O B-restaurant_type O O B-served_dish I-served_dish 57 | RateBook rate this current novel 1 stars O O B-object_select B-object_type B-rating_value B-rating_unit 58 | RateBook i rate secret water as a 4 O O B-object_name I-object_name O O B-rating_value 59 | SearchScreeningEvent is unbeatable harold at century theatres O B-movie_name I-movie_name O B-location_name I-location_name 60 | SearchCreativeWork please find me asking alexandria discography O O O B-object_name I-object_name I-object_name 61 | GetWeather what will the weather be in berville ak on feb 6 2017 O O O O O O B-city B-state O B-timeRange I-timeRange I-timeRange 62 | GetWeather is it warm in botna O O B-condition_temperature O B-city 63 | AddToPlaylist please add a track to my playlist called this is coti O O O B-music_item O B-playlist_owner O O B-playlist I-playlist I-playlist 64 | SearchCreativeWork find the via dolorosa: songs of redemption saga O O B-object_name I-object_name I-object_name I-object_name I-object_name B-object_type 65 | AddToPlaylist can you add confessions to my playlist called clásica O O O B-entity_name O B-playlist_owner O O B-playlist 66 | SearchScreeningEvent find the schedule for nearby animated movies O O B-object_type O B-spatial_relation B-movie_type I-movie_type 67 | BookRestaurant book a table today at a steakhouse for eight that serves sashimi O O O B-timeRange O O B-restaurant_type O B-party_size_number O O B-served_dish 68 | PlayMusic play the last sound track by soko from around 1975 O O B-sort B-music_item I-music_item O B-artist O O B-year 69 | AddToPlaylist add this song to blues roots O O B-music_item O B-playlist I-playlist 70 | BookRestaurant coon chicken inn restaurant for 1 am for me clarice and debbie B-restaurant_name I-restaurant_name I-restaurant_name B-restaurant_type O B-timeRange I-timeRange O B-party_size_description I-party_size_description I-party_size_description I-party_size_description 71 | AddToPlaylist add karusellen to jazz brasileiro O B-entity_name O B-playlist I-playlist 72 | PlayMusic play some steve boyett chant music O O B-artist I-artist B-music_item O 73 | RateBook give 1 out of 6 points to this novel O B-rating_value O O B-best_rating B-rating_unit O B-object_select B-object_type 74 | SearchScreeningEvent show the movie schedule of animated movies close by O O B-object_type I-object_type O B-movie_type I-movie_type B-spatial_relation I-spatial_relation 75 | PlayMusic please play the newest music by evil jared hasselhoff O O O B-sort O O B-artist I-artist I-artist 76 | AddToPlaylist add tune to my mellow bars playlist O B-music_item O B-playlist_owner B-playlist I-playlist O 77 | AddToPlaylist put coming back to life onto winter music O B-entity_name I-entity_name I-entity_name I-entity_name O B-playlist I-playlist 78 | RateBook rate this textbook a zero O B-object_select B-object_type O B-rating_value 79 | PlayMusic i want to hear any tune from the twenties O O O O O B-music_item O O B-year 80 | PlayMusic play me a top-ten song by phil ochs on groove shark O O O B-sort B-music_item O B-artist I-artist O B-service I-service 81 | SearchCreativeWork find a video game called family dog O O B-object_type I-object_type O B-object_name I-object_name 82 | RateBook rate awaiting strange gods: weird and lovecraftian fictions a 1 O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name I-object_name O B-rating_value 83 | AddToPlaylist add lisa m to my guitar hero live playlist O B-artist I-artist O B-playlist_owner B-playlist I-playlist I-playlist I-playlist 84 | GetWeather what is the weather forecast for my current place O O O O O O O B-current_location I-current_location 85 | AddToPlaylist add strong to the metal monday playlist O B-entity_name O O B-playlist I-playlist O 86 | SearchCreativeWork where can i find conduct unbecoming O O O O B-object_name I-object_name 87 | GetWeather will it be freezing in the current position O O O B-condition_temperature O O B-current_location I-current_location 88 | AddToPlaylist add the da brat track to the soak up the sun playlist O O B-artist I-artist B-music_item O O B-playlist I-playlist I-playlist I-playlist O 89 | AddToPlaylist add a track to the another glass playlist O O B-music_item O O B-playlist I-playlist O 90 | SearchScreeningEvent find now and forever O B-movie_name I-movie_name I-movie_name 91 | AddToPlaylist the workout playlist needs more chris cross O B-playlist O O O B-artist I-artist 92 | PlayMusic play some jungle music on iheart O O B-genre O O B-service 93 | RateBook give 1 point to current textbook O B-rating_value O O B-object_select B-object_type 94 | AddToPlaylist put no mystery into my punk essentials playlist O B-entity_name I-entity_name O B-playlist_owner B-playlist I-playlist O 95 | AddToPlaylist i want to put look to you on the playlist named 80s classic hits O O O O B-entity_name I-entity_name I-entity_name O O O O B-playlist I-playlist I-playlist 96 | SearchScreeningEvent what time is beat the devil coming on at mann theatres O O O B-movie_name I-movie_name I-movie_name O O O B-location_name I-location_name 97 | RateBook rate the current chronicle a zero O O B-object_select B-object_part_of_series_type O B-rating_value 98 | AddToPlaylist add garry shider album to my classical essentials O B-artist I-artist B-music_item O B-playlist_owner B-playlist I-playlist 99 | AddToPlaylist add the artist cho kyu hyun to funky jams O O B-music_item B-artist I-artist I-artist O B-playlist I-playlist 100 | SearchCreativeWork find the work i looked up O O O B-object_name I-object_name I-object_name 101 | PlayMusic play this is colour by panda bear O B-track I-track I-track O B-artist I-artist 102 | PlayMusic play the god that failed on vimeo O B-track I-track I-track I-track O B-service 103 | SearchScreeningEvent can i get the butterfly crush showings O O O O B-movie_name I-movie_name O 104 | AddToPlaylist add hanging on to my just dance by aftercluv playlist O B-entity_name I-entity_name O B-playlist_owner B-playlist I-playlist I-playlist I-playlist O 105 | SearchScreeningEvent show me when scandalous john is playing O O O B-movie_name I-movie_name O O 106 | RateBook a day no pigs would die deserves a best rating of 6 and a value of 4 B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name O O O O O B-best_rating O O O O B-rating_value 107 | AddToPlaylist for my crossfit playlist add the soul sessions volume 2 O B-playlist_owner B-playlist O O B-entity_name I-entity_name I-entity_name I-entity_name I-entity_name 108 | PlayMusic play some james cleveland O O B-artist I-artist 109 | AddToPlaylist put this tune on dancepop O O B-music_item O B-playlist 110 | SearchScreeningEvent what time will paris by night aired O O O B-movie_name I-movie_name I-movie_name O 111 | PlayMusic play music on spotify O O O B-service 112 | AddToPlaylist i want a matt garrison tune in my fresh finds fire emoji playlist O O O B-artist I-artist B-music_item O B-playlist_owner B-playlist I-playlist I-playlist I-playlist O 113 | GetWeather will there be snowfall at six pm in leisure knoll california O O O B-condition_description O B-timeRange I-timeRange O B-city I-city B-state 114 | SearchCreativeWork search for the television show me and my guitar O O O B-object_type I-object_type B-object_name I-object_name I-object_name I-object_name 115 | GetWeather tell me when it will be chilly in chicken united kingdom O O O O O O B-condition_temperature O B-city B-country I-country 116 | GetWeather is it windy in telogia O O B-condition_description O B-city 117 | SearchCreativeWork find a tv show called revenge of the nerds O O B-object_type I-object_type O B-object_name I-object_name I-object_name I-object_name 118 | SearchCreativeWork find the video game called turnin me on O O B-object_type I-object_type O B-object_name I-object_name I-object_name 119 | PlayMusic play the song i get ideas as performed by richard kruspe O O B-music_item B-track I-track I-track O O O B-artist I-artist 120 | AddToPlaylist add turk to the deep house playlist O B-artist O O B-playlist I-playlist O 121 | BookRestaurant find a reservation at fish express O O O O B-restaurant_name I-restaurant_name 122 | GetWeather check the forecast for the current spot in the future oct 19 2037 O O O O O B-current_location I-current_location O O O B-timeRange I-timeRange I-timeRange 123 | SearchCreativeWork how can i view the show corpus: a home movie about selena O O O O O B-object_type B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name 124 | RateBook i would rate that old ace in the hole one stars and a best rating of 6 O O O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name B-rating_value B-rating_unit O O O O O B-best_rating 125 | RateBook add the rating for this current series a four out of 6 points O O O O O B-object_select B-object_part_of_series_type O B-rating_value O O B-best_rating B-rating_unit 126 | AddToPlaylist add justin mcroberts to this is chopin O B-artist I-artist O B-playlist I-playlist I-playlist 127 | BookRestaurant book a bar that serves italian-american cuisine neighboring wilson av for one person O O B-restaurant_type O O B-served_dish I-served_dish B-spatial_relation B-poi I-poi O B-party_size_number O 128 | GetWeather is fog forecast close-by to pakistan O B-condition_description O B-spatial_relation O B-country 129 | BookRestaurant book a restaurant for 3 people at eighteen oclock in saint vincent and the grenadines O O B-restaurant_type O B-party_size_number O O B-timeRange O O B-country I-country I-country I-country I-country 130 | SearchScreeningEvent find the schedule for films at night at great escape theatres O O B-object_type O B-movie_type O B-timeRange O B-location_name I-location_name I-location_name 131 | GetWeather is there snow in the district of columbia O O B-condition_description O O B-state I-state I-state 132 | SearchScreeningEvent find a movie schedule O O B-object_type I-object_type 133 | RateBook rate the beggar of volubilis 1 out of 6 O B-object_name I-object_name I-object_name I-object_name B-rating_value O O B-best_rating 134 | GetWeather what is the forecast in heber O O O O O B-city 135 | PlayMusic please play an album from 1987 O O O B-music_item O B-year 136 | SearchCreativeWork show me the courts of chaos O O B-object_name I-object_name I-object_name I-object_name 137 | RateBook give the current book five stars out of 6 O O B-object_select B-object_type B-rating_value B-rating_unit O O B-best_rating 138 | SearchScreeningEvent when is fine totally fine playing O O B-movie_name I-movie_name I-movie_name O 139 | AddToPlaylist add a tune to clásicos del hip hop español O O B-music_item O B-playlist I-playlist I-playlist I-playlist I-playlist 140 | PlayMusic play jawad ahmad O B-artist I-artist 141 | GetWeather what is the forecast for in 1 second at monte sereno for freezing temps O O O O O B-timeRange I-timeRange I-timeRange O B-city I-city O B-condition_temperature O 142 | BookRestaurant i would like to eat fast food and have a party of two in kentucky O O O O O B-restaurant_type I-restaurant_type O O O O O B-party_size_number O B-state 143 | PlayMusic play music from itunes for ric grech O O O B-service O B-artist I-artist 144 | AddToPlaylist add jennie jennie to my metal playlist O B-entity_name I-entity_name O B-playlist_owner B-playlist O 145 | SearchCreativeWork show the tv show the last samurai O O B-object_type I-object_type B-object_name I-object_name I-object_name 146 | AddToPlaylist add rob tyner to betsy s we everywhere O B-artist I-artist O B-playlist_owner I-playlist_owner B-playlist I-playlist 147 | GetWeather show me the weather forecast for the city of spencer O O O O O O O O O B-city 148 | GetWeather how is the weather in getzville minnesota O O O O O B-city B-state 149 | SearchScreeningEvent what is dear old girl cooper foundation O O B-movie_name I-movie_name I-movie_name B-location_name I-location_name 150 | GetWeather i need a weather forecast for são tomé and príncipe on december 8th 2026 O O O O O O B-country I-country I-country I-country O B-timeRange I-timeRange I-timeRange 151 | SearchScreeningEvent what animated movies are showing in the area O B-movie_type I-movie_type O O B-spatial_relation I-spatial_relation I-spatial_relation 152 | GetWeather tell me the weather forecast for april 15 2019 here O O O O O O B-timeRange I-timeRange I-timeRange B-current_location 153 | PlayMusic play the track asleep in the deep O O B-music_item B-track I-track I-track I-track 154 | PlayMusic play kurt cobain ballad tunes O B-artist I-artist B-music_item O 155 | AddToPlaylist can you add a track to my spain top 50 playlist O O O O B-music_item O B-playlist_owner B-playlist I-playlist I-playlist O 156 | GetWeather at meal time while i m here will it be hot O B-timeRange O O O O B-current_location O O O B-condition_temperature 157 | SearchCreativeWork can you find me the magic hour song O O O O O B-object_name I-object_name B-object_type 158 | AddToPlaylist add mary wells sings my guy to the electro sur playlist O B-entity_name I-entity_name I-entity_name I-entity_name I-entity_name O O B-playlist I-playlist O 159 | PlayMusic play some kyle ward from the seventies O O B-artist I-artist O O B-year 160 | BookRestaurant book a table around london borough of ealing that is highly rated in a gluten free bar O O O B-spatial_relation B-poi I-poi I-poi I-poi O O B-sort I-sort O O B-cuisine I-cuisine B-restaurant_type 161 | SearchScreeningEvent when is crime and punishment u s a showing O O B-movie_name I-movie_name I-movie_name I-movie_name I-movie_name I-movie_name O 162 | GetWeather will it snowstorm in long lake national wildlife refuge O O B-condition_description O B-geographic_poi I-geographic_poi I-geographic_poi I-geographic_poi I-geographic_poi 163 | RateBook rate current essay a zero O B-object_select B-object_type O B-rating_value 164 | BookRestaurant book me a reservation at a bar around juliff for three people that serves bucatini for now O O O O O O B-restaurant_type B-spatial_relation B-city O B-party_size_number O O O B-served_dish O B-timeRange 165 | BookRestaurant book a highly rated place in in in seven years at a pub O O B-sort I-sort O O B-state B-timeRange I-timeRange I-timeRange O O B-restaurant_type 166 | SearchScreeningEvent what time is southern theatres showing ukraine is not a brothel O O O B-location_name I-location_name O B-movie_name I-movie_name I-movie_name I-movie_name I-movie_name 167 | AddToPlaylist add this album ny bill callahan to my mi casa es la tuya playlist oficial list O O B-music_item O B-artist I-artist O B-playlist_owner B-playlist I-playlist I-playlist I-playlist I-playlist I-playlist I-playlist O 168 | SearchCreativeWork find a soundtrack called pax warrior O O B-object_type O B-object_name I-object_name 169 | BookRestaurant book a table for ten for breakfast in minnesota O O O O B-party_size_number O B-timeRange O B-state 170 | SearchScreeningEvent what is the local movie schedule O O O O B-object_type I-object_type 171 | BookRestaurant book a restaurant for three on feb 18 O O B-restaurant_type O B-party_size_number O B-timeRange I-timeRange 172 | SearchScreeningEvent i d like to know what movies are on the movie schedules nearby O O O O O O B-movie_type O O O B-object_type I-object_type B-spatial_relation 173 | BookRestaurant please make me reservations somewhere for eight people in foley nv O O O O O O B-party_size_number O O B-city B-state 174 | SearchScreeningEvent she me movie times at mann theatres O O B-object_type I-object_type O B-location_name I-location_name 175 | SearchCreativeWork find the picture ultima vi: the false prophet O O B-object_type B-object_name I-object_name I-object_name I-object_name I-object_name 176 | PlayMusic play the best album from the seventies O O B-sort B-music_item O O B-year 177 | AddToPlaylist add kylie minogue to my novedades viernes sudamérica playlist O B-artist I-artist O B-playlist_owner B-playlist I-playlist I-playlist O 178 | GetWeather is it freezing in colorado O O B-condition_temperature O B-state 179 | RateBook the last hawk gets a total of 3 out of 6 stars from me B-object_name I-object_name I-object_name O O O O B-rating_value O O B-best_rating B-rating_unit O O 180 | GetWeather will it be stormy in ma O O O B-condition_description O B-state 181 | PlayMusic play pop 2017 picks O B-playlist I-playlist I-playlist 182 | PlayMusic play some theme songs from 1974 O O B-music_item O O B-year 183 | GetWeather what will the weather be in la at 9 o clock O O O O O O B-state O B-timeRange I-timeRange I-timeRange 184 | AddToPlaylist can you add xanadu to latin alternative music O O O B-entity_name O B-playlist I-playlist I-playlist 185 | SearchCreativeWork can you find me the naked city – justice with a bullet album O O O O O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name I-object_name B-object_type 186 | SearchCreativeWork please search the work eve-olution O O O O B-object_name 187 | AddToPlaylist add i dreamt of a dragon to my futuros hits playlist O B-entity_name I-entity_name I-entity_name I-entity_name I-entity_name O B-playlist_owner B-playlist I-playlist O 188 | AddToPlaylist add this artist to the laugh list O O B-music_item O B-playlist I-playlist I-playlist 189 | BookRestaurant i d like to eat at a restaurant around china with a party of 7 anywhere that serves ouzeri O O O O O O O B-restaurant_type B-spatial_relation B-country O O O O B-party_size_number O O O B-cuisine 190 | AddToPlaylist the sleep machine waterscapes playlist needs some kris chetan ramlu in it B-playlist I-playlist I-playlist I-playlist O O O B-artist I-artist I-artist O O 191 | RateBook rate the current chronicle five stars O O B-object_select B-object_part_of_series_type B-rating_value B-rating_unit 192 | RateBook rate this novel five of 6 O B-object_select B-object_type B-rating_value O B-best_rating 193 | RateBook my rating for the eiffel tower and other mythologies is 0 out of 6 stars O O O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name O B-rating_value O O B-best_rating B-rating_unit 194 | BookRestaurant i d like a table for midday at the unseen bean O O O O O O B-timeRange O B-restaurant_name I-restaurant_name I-restaurant_name 195 | SearchCreativeWork where can i see the movie across the line: the exodus of charlie wright O O O O O B-object_type B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name I-object_name I-object_name 196 | PlayMusic turn on spotify to tiny tim ep O O B-service O B-artist I-artist B-music_item 197 | SearchScreeningEvent what are the movie schedules O O O B-object_type I-object_type 198 | BookRestaurant i want a table for me and my kids in turkey at a neighboring restaurant O O O O O B-party_size_description I-party_size_description I-party_size_description I-party_size_description O B-country O O B-spatial_relation B-restaurant_type 199 | PlayMusic play a top 5 song from wally bastian on google music O O B-sort I-sort B-music_item O B-artist I-artist O B-service I-service 200 | SearchCreativeWork please search the ironbound picture O O O B-object_name B-object_type 201 | AddToPlaylist put a gary clark song into the soul bpm playlist O O B-artist I-artist B-music_item O O B-playlist I-playlist O 202 | GetWeather will it be hot on orthodox good friday in michigan and close-by O O O B-condition_temperature O B-timeRange I-timeRange I-timeRange O B-state O B-spatial_relation 203 | SearchCreativeWork i want to see the television show called cuts both ways O O O O O B-object_type I-object_type O B-object_name I-object_name I-object_name 204 | BookRestaurant i d like to reserve a table at a pub that serves andouillettes within the same area in san marino O O O O O O O O O B-restaurant_type O O B-served_dish B-spatial_relation I-spatial_relation I-spatial_relation I-spatial_relation O B-country I-country 205 | GetWeather what is the weather like in hurstville O O O O O O B-city 206 | AddToPlaylist put this album on my wild country playlist O O B-music_item O B-playlist_owner B-playlist I-playlist O 207 | RateBook rate this textbook 2 out of 6 O B-object_select B-object_type B-rating_value O O B-best_rating 208 | SearchCreativeWork search for the complots O O O B-object_name 209 | SearchScreeningEvent find the schedule for the band of honest men at the nearest movie theatre O O B-object_type O B-movie_name I-movie_name I-movie_name I-movie_name I-movie_name O O B-spatial_relation B-object_location_type I-object_location_type 210 | GetWeather what will the weather be in waverly city brazil on purple heart day O O O O O O B-city I-city B-country O B-timeRange I-timeRange I-timeRange 211 | GetWeather what is the weather forecast in delaware O O O O O O B-state 212 | PlayMusic play a top-50 tune from 1982 O O B-sort B-music_item O B-year 213 | PlayMusic play shinji miyazaki s music on netflix O B-artist I-artist O O O B-service 214 | SearchCreativeWork can i get the game list of mew singles O O O O B-object_type B-object_name I-object_name I-object_name I-object_name 215 | GetWeather what s the forecast for belize around meal time O O O O O B-country O B-timeRange O 216 | AddToPlaylist add gary lachman track to jazz for loving couples playlist O B-artist I-artist B-music_item O B-playlist I-playlist I-playlist I-playlist O 217 | SearchCreativeWork find the path to power O B-object_name I-object_name I-object_name I-object_name 218 | AddToPlaylist put artist paulinho da costa on my very nearly nashville playlist O B-music_item B-artist I-artist I-artist O B-playlist_owner B-playlist I-playlist I-playlist O 219 | SearchCreativeWork i am looking for the work: nikki O O O O O O B-object_name 220 | GetWeather what s the weather in low moor O O O O O B-city I-city 221 | PlayMusic play some nineties music O O B-year O 222 | SearchCreativeWork find a television show called swing high O O B-object_type I-object_type O B-object_name I-object_name 223 | PlayMusic use netflix to play bizzy bone kiss me goodnight sergeant major O B-service O O B-artist I-artist B-track I-track I-track I-track I-track 224 | SearchScreeningEvent i d like to see movie schedules for kerasotes theatres O O O O O B-object_type I-object_type O B-location_name I-location_name 225 | AddToPlaylist i want these are the days added to my spotlight spain 2016 playlist O O B-entity_name I-entity_name I-entity_name I-entity_name O O B-playlist_owner B-playlist I-playlist I-playlist O 226 | PlayMusic play the greatest soundtrack by nhat son on last fm O O B-sort B-music_item O B-artist I-artist O B-service I-service 227 | SearchCreativeWork what is the tv series in app store O O O B-object_type I-object_type O B-object_name I-object_name 228 | BookRestaurant book the space aliens grill & bar in hord wy for feb the twenty-seventh O O B-restaurant_name I-restaurant_name I-restaurant_name I-restaurant_name I-restaurant_name O B-city B-state O B-timeRange I-timeRange I-timeRange 229 | SearchCreativeWork find a saga called set sail the prairie O O B-object_type O B-object_name I-object_name I-object_name I-object_name 230 | AddToPlaylist can jovino santos neto s album get added to my confidence boost playlist O B-artist I-artist I-artist O B-music_item O O O B-playlist_owner B-playlist I-playlist O 231 | SearchScreeningEvent show animated movies in nearest movie theatre O B-movie_type I-movie_type O B-spatial_relation B-object_location_type I-object_location_type 232 | SearchCreativeWork find the game company of heroes O O B-object_type B-object_name I-object_name I-object_name 233 | SearchScreeningEvent where can i find paranormal activity 3 playing near me 1 hour from now O O O O B-movie_name I-movie_name I-movie_name O O O B-timeRange I-timeRange I-timeRange I-timeRange 234 | BookRestaurant book a table this evening in saint vincent and the grenadines at a gastropub O O O O B-timeRange O B-country I-country I-country I-country I-country O O B-restaurant_type 235 | PlayMusic can i listen to dj vibe s top 10 O O O O B-artist I-artist O B-sort I-sort 236 | SearchScreeningEvent what films are at the nearest cinema O B-movie_type O O O B-spatial_relation B-object_location_type 237 | GetWeather what is the weather like in north salt lake and afghanistan O O O O O O B-city I-city I-city O B-country 238 | SearchCreativeWork can you tell me the actors of the saga awards/ O O O O O B-object_name O O B-object_type O 239 | AddToPlaylist go to my all out 00s and add brian wilson O O B-playlist_owner B-playlist I-playlist I-playlist O O B-artist I-artist 240 | BookRestaurant food truck in panama for five B-restaurant_type I-restaurant_type O B-country O B-party_size_number 241 | SearchScreeningEvent look up the movie schedule O O O B-object_type I-object_type 242 | BookRestaurant book a table for chasity ruiz and mary at the fat duck in puerto rico O O O O B-party_size_description I-party_size_description I-party_size_description I-party_size_description O B-restaurant_name I-restaurant_name I-restaurant_name O B-country I-country 243 | SearchCreativeWork find the gill deacon show O B-object_name I-object_name I-object_name I-object_name 244 | SearchScreeningEvent find the movie schedule for films in the area O O B-object_type I-object_type O B-movie_type B-spatial_relation I-spatial_relation I-spatial_relation 245 | SearchScreeningEvent will i be able to watch camping-car at movie house at 6 pm O O O O O O B-movie_name O B-object_location_type I-object_location_type O B-timeRange I-timeRange 246 | PlayMusic play how does it work by helen carter O B-album I-album I-album I-album O B-artist I-artist 247 | GetWeather what s the weather like in schenectady ma O O O O O O B-city B-state 248 | PlayMusic play some folk-rock music O O B-genre O 249 | RateBook give this current book zero out of 6 O O B-object_select B-object_type B-rating_value O O B-best_rating 250 | RateBook rate this album 5 points O B-object_select B-object_type B-rating_value B-rating_unit 251 | GetWeather how is the weather right now at my current place O O O O O B-timeRange O O B-current_location I-current_location 252 | PlayMusic play sixties music by giovanni battista guadagnini O B-year O O B-artist I-artist I-artist 253 | GetWeather tell me the weather forecast close by brown county state park for meal time O O O O O B-spatial_relation I-spatial_relation B-geographic_poi I-geographic_poi I-geographic_poi I-geographic_poi O B-timeRange O 254 | PlayMusic play the last wellman braud album relaesd O O O B-artist I-artist B-music_item O 255 | PlayMusic play sugar baby by frank beard O B-track I-track O B-artist I-artist 256 | SearchScreeningEvent find the schedule for the solitude of prime numbers at the nearest cinema in 1 hour O O B-object_type O B-movie_name I-movie_name I-movie_name I-movie_name I-movie_name O O B-spatial_relation B-object_location_type B-timeRange I-timeRange I-timeRange 257 | SearchCreativeWork play the discografia de the pretty reckless saga O O B-object_name I-object_name I-object_name I-object_name I-object_name B-object_type 258 | RateBook i want to give the current textbook 0 out of 6 stars O O O O O B-object_select B-object_type B-rating_value O O B-best_rating B-rating_unit 259 | SearchScreeningEvent show me movie times for animated movies playing three hours from now in the neighbourhood O O B-object_type I-object_type O B-movie_type I-movie_type O B-timeRange I-timeRange I-timeRange I-timeRange B-spatial_relation I-spatial_relation I-spatial_relation 260 | SearchCreativeWork find the game just dance greatest hits O O B-object_type B-object_name I-object_name I-object_name I-object_name 261 | AddToPlaylist add this track to the sin ti playlist O O B-music_item O O B-playlist I-playlist O 262 | SearchScreeningEvent show me the closest movie house playing an unfinished life at eight pm O O O B-spatial_relation B-object_location_type I-object_location_type O B-movie_name I-movie_name I-movie_name O B-timeRange I-timeRange 263 | GetWeather what s it like in bahrain right now O O O O O B-country O B-timeRange 264 | AddToPlaylist can you add blood on the face to the playlist called heartland country O O O B-entity_name I-entity_name I-entity_name I-entity_name O O O O B-playlist I-playlist 265 | GetWeather on jan the twentieth what will it feel like in ct or the area not far from it O B-timeRange I-timeRange I-timeRange O O O O O O B-state O O O B-spatial_relation I-spatial_relation O O 266 | GetWeather i need a table in uruguay in 213 days when it s chillier O O O O O B-country B-timeRange I-timeRange I-timeRange O O O B-condition_temperature 267 | AddToPlaylist add this track by horace andy to acoustic soul O O B-music_item O B-artist I-artist O B-playlist I-playlist 268 | PlayMusic plan an album by roni duani O O B-music_item O B-artist I-artist 269 | AddToPlaylist add song to siesta O B-music_item O B-playlist 270 | GetWeather can you tell me the weather forecast for samoa O O O O O O O O B-country 271 | PlayMusic play music on youtube O O O B-service 272 | AddToPlaylist add spirit touches ground to my leche con chocolate list O B-entity_name I-entity_name I-entity_name O B-playlist_owner B-playlist I-playlist I-playlist O 273 | BookRestaurant i need a table for 1 minute from now at any pub for five around in that also serves fisn n chips O O O O O B-timeRange I-timeRange I-timeRange I-timeRange O O B-restaurant_type O B-party_size_number B-spatial_relation B-state O O O B-served_dish I-served_dish I-served_dish 274 | BookRestaurant book a spot at the food truck in ma O O O O O B-restaurant_type I-restaurant_type O B-state 275 | BookRestaurant 21 weeks from now elinor crystal turner and nita want to eat german food at a bar in distant california B-timeRange I-timeRange I-timeRange I-timeRange B-party_size_description I-party_size_description I-party_size_description I-party_size_description I-party_size_description O O O B-cuisine O O O B-restaurant_type O B-spatial_relation B-state 276 | SearchCreativeWork find a tv show called ruthless O O B-object_type I-object_type O B-object_name 277 | SearchScreeningEvent find animated movies close by with a movie schedule O B-movie_type I-movie_type B-spatial_relation I-spatial_relation O O B-object_type I-object_type 278 | BookRestaurant book a spot for 7 at an outdoor food court in denmark O O O O B-party_size_number O O B-facility B-restaurant_type I-restaurant_type O B-country 279 | RateBook i would rate the persistence of vision 1 stars and a best rating of 6 O O O B-object_name I-object_name I-object_name I-object_name B-rating_value B-rating_unit O O O O O B-best_rating 280 | BookRestaurant i need a reservation for february 27 2020 at a bar that serves paté O O O O O B-timeRange I-timeRange I-timeRange O O B-restaurant_type O O B-served_dish 281 | SearchCreativeWork find the ghost of tom joad O B-object_name I-object_name I-object_name I-object_name I-object_name 282 | BookRestaurant i need a reservation for ten at a tavern in west virginia O O O O O B-party_size_number O O B-restaurant_type O B-state I-state 283 | SearchScreeningEvent what time is children of divorce playing O O O B-movie_name I-movie_name I-movie_name O 284 | GetWeather will there be a blizzard in white house curacao O O O O B-condition_description O B-city I-city B-country 285 | PlayMusic play the top melody from artist maakii O O B-sort B-music_item O O B-artist 286 | SearchScreeningEvent are any animated movies playing at magic johnson theatres O O B-movie_type I-movie_type O O B-location_name I-location_name I-location_name 287 | RateBook give the current album a five O O B-object_select B-object_type O B-rating_value 288 | AddToPlaylist i want to add digital line to my playlist called infantil O O O O B-entity_name I-entity_name O B-playlist_owner O O B-playlist 289 | RateBook the current essay gets four points O B-object_select B-object_type O B-rating_value B-rating_unit 290 | GetWeather what will the weather be in grand coteau ut at six pm O O O O O O B-city I-city B-state O B-timeRange I-timeRange 291 | SearchCreativeWork can you find me a trailer for phineas redux O O O O O B-object_type O B-object_name I-object_name 292 | AddToPlaylist add the singer ivan roudyk to my fairy tales playlists O O O B-artist I-artist O B-playlist_owner B-playlist I-playlist O 293 | AddToPlaylist add song in my playlist dance workout O B-music_item O B-playlist_owner O B-playlist I-playlist 294 | SearchScreeningEvent what movies can i see in the area O B-movie_type O O O B-spatial_relation I-spatial_relation I-spatial_relation 295 | SearchScreeningEvent tell me what films are playing at plitt theatres O O O B-movie_type O O O B-location_name I-location_name 296 | AddToPlaylist add in the heart of the world to the epic gaming playlist O B-entity_name I-entity_name I-entity_name I-entity_name I-entity_name I-entity_name O O B-playlist I-playlist O 297 | SearchScreeningEvent find movie times O B-object_type I-object_type 298 | RateBook rate the book english grammar in use a five O O B-object_type B-object_name I-object_name I-object_name I-object_name O B-rating_value 299 | PlayMusic play tujiko noriko s ten years and running O B-artist I-artist O B-album I-album I-album I-album 300 | AddToPlaylist add the song to the soundscapes for gaming playlist O O B-music_item O O B-playlist I-playlist I-playlist O 301 | AddToPlaylist can you put a song by jessica mauboy on my playlist entitled a sudden rainstorm O O O O B-music_item O B-artist I-artist O B-playlist_owner O O B-playlist I-playlist I-playlist 302 | SearchScreeningEvent show movie schedule O B-object_type I-object_type 303 | SearchScreeningEvent show me movie schedules for today O O B-object_type I-object_type O O 304 | AddToPlaylist add cecil womack to my 50 great female voices playlist O B-artist I-artist O B-playlist_owner B-playlist I-playlist I-playlist I-playlist O 305 | GetWeather will it be freezing here in 9 seconds O O O B-condition_temperature B-current_location B-timeRange I-timeRange I-timeRange 306 | GetWeather forecast for serbia O O B-country 307 | RateBook i want to give a mortal flower a two O O O O B-object_name I-object_name I-object_name O B-rating_value 308 | SearchCreativeWork where can i view the picture reaching horizons O O O O O B-object_type B-object_name I-object_name 309 | GetWeather in hawaii will it be warmer at 3 am O B-state O O O B-condition_temperature O B-timeRange I-timeRange 310 | RateBook rate the little book four stars O B-object_name I-object_name I-object_name B-rating_value B-rating_unit 311 | RateBook rate the current textbook one of 6 stars O O B-object_select B-object_type B-rating_value O B-best_rating B-rating_unit 312 | BookRestaurant i want a table for five at a restaurant with latin food in arkansas for 1 hour from now O O O O O B-party_size_number O O B-restaurant_type O B-cuisine O O B-state O B-timeRange I-timeRange I-timeRange I-timeRange 313 | SearchCreativeWork find love will tear us apart a photograph O B-object_name I-object_name I-object_name I-object_name I-object_name O B-object_type 314 | PlayMusic please play me a popular track from 1984 O O O O B-sort B-music_item O B-year 315 | BookRestaurant book a mediterranean restaurant for my sister and i O O B-cuisine B-restaurant_type O B-party_size_description I-party_size_description I-party_size_description I-party_size_description 316 | GetWeather how will the weather be different 5 years from now in waconia O O O O O O B-timeRange I-timeRange I-timeRange I-timeRange O B-city 317 | SearchCreativeWork search for teenage mutant hero turtles: fall of the foot clan photograph O O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name I-object_name I-object_name I-object_name B-object_type 318 | PlayMusic play party anthems O B-playlist I-playlist 319 | GetWeather what is the niceville forecast in fm O O O B-city O O B-state 320 | SearchScreeningEvent find heat wave O B-movie_name I-movie_name 321 | SearchScreeningEvent which is the nearest movie house playing the diary of anne frank O O O B-spatial_relation B-object_location_type I-object_location_type O B-movie_name I-movie_name I-movie_name I-movie_name I-movie_name 322 | SearchScreeningEvent can i have the movie schedule for imax corporation O O O O B-object_type I-object_type O B-location_name I-location_name 323 | BookRestaurant book me a reservation for eight for the top-rated bakery eleven hours from now in mango O O O O O B-party_size_number O O B-sort B-restaurant_type B-timeRange I-timeRange I-timeRange I-timeRange O B-city 324 | PlayMusic play yung joc on slacker O B-artist I-artist O B-service 325 | SearchCreativeWork show 50 words for snow creative picture O B-object_name I-object_name I-object_name I-object_name O B-object_type 326 | SearchCreativeWork play the electrochemical and solid state letters song O O B-object_name I-object_name I-object_name I-object_name I-object_name B-object_type 327 | BookRestaurant table for 8 at a popular food court O O B-party_size_number O O B-sort B-restaurant_type I-restaurant_type 328 | BookRestaurant find me a table for 8 people at a nearby al restaurant one minute from now O O O O O B-party_size_number O O O B-spatial_relation B-state B-restaurant_type B-timeRange I-timeRange I-timeRange I-timeRange 329 | GetWeather is there rain now in maine O O B-condition_description B-timeRange O B-state 330 | SearchCreativeWork show me the photograph johnny cash: the complete columbia album collection O O O B-object_type B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name I-object_name 331 | SearchScreeningEvent find movie schedules O B-object_type I-object_type 332 | SearchScreeningEvent find movie schedules for united paramount theatres O B-object_type I-object_type O B-location_name I-location_name I-location_name 333 | GetWeather what is the forecast for montana at dinner O O O O O B-state O B-timeRange 334 | AddToPlaylist please add this track to my de camino playlist O O O B-music_item O B-playlist_owner B-playlist I-playlist O 335 | BookRestaurant book me a restaurant please O O O B-restaurant_type O 336 | SearchCreativeWork find drumline: a new beat a picture O B-object_name I-object_name I-object_name I-object_name O B-object_type 337 | PlayMusic play the red room sessions from chris cunningham O B-album I-album I-album I-album O B-artist I-artist 338 | SearchCreativeWork play the great adventures of slick rick game O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name B-object_type 339 | SearchScreeningEvent list movie schedules for movies playing close by O B-object_type I-object_type O B-movie_type O B-spatial_relation I-spatial_relation 340 | SearchCreativeWork i am looking for the tv show called the flight of the lost balloon O O O O O B-object_type I-object_type O O B-object_name I-object_name I-object_name I-object_name I-object_name 341 | AddToPlaylist add david axelrod to my futuros hits list O B-artist I-artist O B-playlist_owner B-playlist I-playlist O 342 | PlayMusic play me sun ra songs from the fifties O O B-artist I-artist O O O B-year 343 | AddToPlaylist add this track to my dinnertime acoustics playist O O B-music_item O B-playlist_owner B-playlist I-playlist O 344 | AddToPlaylist add tune to atmospheric black metal playlist O B-music_item O B-playlist I-playlist I-playlist O 345 | SearchScreeningEvent need to see mother joan of the angels in one second O O O B-movie_name I-movie_name I-movie_name I-movie_name I-movie_name B-timeRange I-timeRange I-timeRange 346 | RateBook give 2 out of 6 points to the following textbook O B-rating_value O O B-best_rating B-rating_unit O O B-object_select B-object_type 347 | BookRestaurant i would like to book a restaurant for two in 42 weeks from now in wagram O O O O O O B-restaurant_type O B-party_size_number O B-timeRange I-timeRange I-timeRange I-timeRange O B-city 348 | PlayMusic play some last fm music like the 1992 ep from peaches O O B-service I-service O O O B-year B-music_item O B-artist 349 | SearchScreeningEvent where is the closest cinema playing a drink in the passage O O O B-spatial_relation B-object_location_type O B-movie_name I-movie_name I-movie_name I-movie_name I-movie_name 350 | SearchCreativeWork i m hoping you can find a photograph from live at the isle of wight 1970 O O O O O O O B-object_type O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name I-object_name 351 | SearchScreeningEvent what movies are around here O B-movie_type O B-spatial_relation I-spatial_relation 352 | BookRestaurant book a restaurant distant from downtown O O B-restaurant_type B-spatial_relation O B-poi 353 | SearchCreativeWork find doggy day school an album O B-object_name I-object_name I-object_name O B-object_type 354 | PlayMusic please play bitch please ii O O B-track I-track I-track 355 | SearchCreativeWork find a video game called young O O B-object_type I-object_type O B-object_name 356 | SearchScreeningEvent is strauss is playing today at the cineplex odeon corporation O B-movie_name I-movie_name I-movie_name I-movie_name O O B-location_name I-location_name I-location_name 357 | RateBook award this current novel 0 points O O B-object_select B-object_type B-rating_value B-rating_unit 358 | GetWeather weather for this winter here O O B-timeRange I-timeRange B-current_location 359 | SearchScreeningEvent what animated movies are playing at the closest movie theatre O B-movie_type I-movie_type O O O O B-spatial_relation B-object_location_type I-object_location_type 360 | RateBook rate this book four of 6 points O B-object_select B-object_type B-rating_value O B-best_rating B-rating_unit 361 | SearchScreeningEvent i want to go see the trouble with girls O O O O O B-movie_name I-movie_name I-movie_name I-movie_name 362 | RateBook cock-a-doodle-doo was awful i m giving it a 0 out of 6 B-object_name O O O O O O O B-rating_value O O B-best_rating 363 | SearchScreeningEvent show me the schedule of films in the neighbourhood O O O B-object_type O B-movie_type B-spatial_relation I-spatial_relation I-spatial_relation 364 | BookRestaurant book a table for nine people in svalbard and jan mayen O O O O B-party_size_number O O B-country I-country I-country I-country 365 | RateBook i would give french poets and novelists a best rating of 6 and a value of three O O O B-object_name I-object_name I-object_name I-object_name O O O O B-best_rating O O O O B-rating_value 366 | SearchScreeningEvent what animated movies are playing nearby O B-movie_type I-movie_type O O B-spatial_relation 367 | GetWeather will there be a cloud here at 06:50:20 O O O O B-condition_description B-current_location O B-timeRange 368 | RateBook i want to give the chronicle zombie bums from uranus 3 points O O O O O B-object_part_of_series_type B-object_name I-object_name I-object_name I-object_name B-rating_value B-rating_unit 369 | SearchScreeningEvent i d like to know when i can see the taking of flight 847: the uli derickson story at amco entertainment O O O O O O O O O B-movie_name I-movie_name I-movie_name I-movie_name I-movie_name I-movie_name I-movie_name I-movie_name I-movie_name O B-location_name I-location_name 370 | PlayMusic play is this my world by leo arnaud O B-album I-album I-album I-album O B-artist I-artist 371 | BookRestaurant book a reservation for clinton street baking company & restaurant distant from downtown O O O O B-restaurant_name I-restaurant_name I-restaurant_name I-restaurant_name I-restaurant_name I-restaurant_name B-spatial_relation O B-poi 372 | AddToPlaylist add nyoil to my this is prince playlist O B-artist O B-playlist_owner B-playlist I-playlist I-playlist O 373 | SearchCreativeWork show me the everybody wants you picture O O O B-object_name I-object_name I-object_name B-object_type 374 | BookRestaurant find a restaurant in fm that servec quiche O O B-restaurant_type O B-state O O B-served_dish 375 | RateBook i would give this current novel 2 stars with a best rating of 6 O O O O B-object_select B-object_type B-rating_value B-rating_unit O O O O O B-best_rating 376 | BookRestaurant i want to book a pastelaria cafe in alabama for me and my great grandfather O O O O O B-cuisine B-restaurant_type O B-state O B-party_size_description I-party_size_description I-party_size_description I-party_size_description I-party_size_description 377 | GetWeather is hail in the weather forecast for monterey bay national marine sanctuary O B-condition_description O O O O O B-geographic_poi I-geographic_poi I-geographic_poi I-geographic_poi I-geographic_poi 378 | AddToPlaylist add tune to sxsw fresh playlist O B-music_item O B-playlist I-playlist O 379 | BookRestaurant make a reservation in a popular sicilian bar place nearby for me only tomorrow O O O O O B-sort B-cuisine B-restaurant_type O B-spatial_relation O O O B-timeRange 380 | BookRestaurant i need a table for 9 O O O O O B-party_size_number 381 | AddToPlaylist add this artist to my post-grunge playlist O O B-music_item O B-playlist_owner B-playlist O 382 | RateBook rate this album a 2 O B-object_select B-object_type O B-rating_value 383 | GetWeather what will the weather be like this tuesday in the area neighboring rendezvous mountain educational state forest O O O O O O B-timeRange I-timeRange O O O B-spatial_relation B-geographic_poi I-geographic_poi I-geographic_poi I-geographic_poi I-geographic_poi 384 | BookRestaurant i need a table in ottoville on feb 15th 2029 at gus stevens seafood restaurant & buccaneer lounge O O O O O B-city O B-timeRange I-timeRange I-timeRange O B-restaurant_name I-restaurant_name I-restaurant_name I-restaurant_name I-restaurant_name I-restaurant_name I-restaurant_name 385 | BookRestaurant i need a table for five at childs restaurants in brunei O O O O O B-party_size_number O B-restaurant_name I-restaurant_name O B-country 386 | SearchCreativeWork how do i get the game still on it O O O O O B-object_type B-object_name I-object_name I-object_name 387 | BookRestaurant i would like to make a reservation for 2 for brunch O O O O O O O O B-party_size_number O B-timeRange 388 | BookRestaurant need a table for party of five for december 26 2040 in the state of mt O O O O O O B-party_size_number O B-timeRange I-timeRange I-timeRange O O O O B-state 389 | BookRestaurant book me a restaurant for nine in statham O O O B-restaurant_type O B-party_size_number O B-city 390 | BookRestaurant i d like a table for ten in 2 minutes at french horn sonning eye O O O O O O B-party_size_number B-timeRange I-timeRange I-timeRange O B-restaurant_name I-restaurant_name I-restaurant_name I-restaurant_name 391 | SearchScreeningEvent find a movie house for 07:52 showing ganges: river to heaven O O B-object_location_type I-object_location_type O B-timeRange O B-movie_name I-movie_name I-movie_name I-movie_name 392 | SearchCreativeWork what is the michael moore is a big fat stupid white man video game O O O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name I-object_name I-object_name I-object_name B-object_type I-object_type 393 | BookRestaurant i want to eat close to bowlegs seven years from now O O O O B-spatial_relation O B-city B-timeRange I-timeRange I-timeRange I-timeRange 394 | AddToPlaylist for my playlist chill add the name cater fe she O B-playlist_owner O B-playlist O O O B-entity_name I-entity_name I-entity_name 395 | SearchCreativeWork search for the halfway home tv show O O O B-object_name I-object_name B-object_type I-object_type 396 | SearchScreeningEvent find movie times O B-object_type I-object_type 397 | PlayMusic play journey list O B-playlist O 398 | SearchScreeningEvent tell me what animated movies i can see at the closest movie theatre O O O B-movie_type I-movie_type O O O O O B-spatial_relation B-object_location_type I-object_location_type 399 | SearchCreativeWork i d like to see the trailer tony parker O O O O O O B-object_type B-object_name I-object_name 400 | SearchScreeningEvent what time is holiday heart showing at the movie house O O O B-movie_name I-movie_name O O O B-object_location_type I-object_location_type 401 | SearchCreativeWork play the movie white christmas O O B-object_type B-object_name I-object_name 402 | GetWeather is it forecast to be warm in doi inthanon national park O O O O O B-condition_temperature O B-geographic_poi I-geographic_poi I-geographic_poi I-geographic_poi 403 | AddToPlaylist add this tune to cristina s endorphin rush playlist O O B-music_item O B-playlist_owner I-playlist_owner B-playlist I-playlist O 404 | PlayMusic play a song by nash the slash O O B-music_item O B-artist I-artist I-artist 405 | RateBook i rate doom 3: worlds on fire a 1 of 6 O O B-object_name I-object_name I-object_name I-object_name I-object_name O B-rating_value O B-best_rating 406 | SearchScreeningEvent what time is phil ochs: there but for fortune playing at the movie house O O O B-movie_name I-movie_name I-movie_name I-movie_name I-movie_name I-movie_name O O O B-object_location_type I-object_location_type 407 | AddToPlaylist add andreas johnson to my rock save the queen playlist O B-artist I-artist O B-playlist_owner B-playlist I-playlist I-playlist I-playlist O 408 | SearchScreeningEvent i d like to watch take this waltz O O O O O B-movie_name I-movie_name I-movie_name 409 | SearchScreeningEvent what are the mann theatres showtimes for secret sunshine O O O B-location_name I-location_name O O B-movie_name I-movie_name 410 | GetWeather will there be snowfall in kitlope heritage conservancy O O O B-condition_description O B-geographic_poi I-geographic_poi I-geographic_poi 411 | PlayMusic play geddy lee music on spotify sort by top O B-artist I-artist O O B-service O O B-sort 412 | RateBook rate in the eyes of mr fury zero of 6 O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name B-rating_value O B-best_rating 413 | SearchCreativeWork look up the tv series operace silver a O O O B-object_type I-object_type B-object_name I-object_name I-object_name 414 | SearchCreativeWork i m looking for the tv series called unborn O O O O O B-object_type I-object_type O B-object_name 415 | SearchCreativeWork play the song memories are my only witness O O B-object_type B-object_name I-object_name I-object_name I-object_name I-object_name 416 | RateBook i give the phishing manual four stars out of 6 O O B-object_name I-object_name I-object_name B-rating_value B-rating_unit O O B-best_rating 417 | PlayMusic play clásicos del hip hop español O B-playlist I-playlist I-playlist I-playlist I-playlist 418 | AddToPlaylist add rupee to my ultra metal playlist O B-artist O B-playlist_owner B-playlist I-playlist O 419 | AddToPlaylist add shi xin hui to my piano chill playlist O B-artist I-artist I-artist O B-playlist_owner B-playlist I-playlist O 420 | SearchScreeningEvent what time is the clutching hand playing at amco entertainment O O O B-movie_name I-movie_name I-movie_name O O B-location_name I-location_name 421 | AddToPlaylist add circus to my post garage wave revival list O B-entity_name O B-playlist_owner B-playlist I-playlist I-playlist I-playlist O 422 | RateBook the chronicle charlie peace earns 4 stars from me O B-object_part_of_series_type B-object_name I-object_name O B-rating_value B-rating_unit O O 423 | SearchCreativeWork find conker: live and reloaded O B-object_name I-object_name I-object_name I-object_name 424 | SearchScreeningEvent show me the nearest movie house showing the luckiest girl in the world O O O B-spatial_relation B-object_location_type I-object_location_type O B-movie_name I-movie_name I-movie_name I-movie_name I-movie_name I-movie_name 425 | PlayMusic play track music from peter finestone on netflix sort by newest O B-music_item O O B-artist I-artist O B-service O O B-sort 426 | PlayMusic play the song shine a light O O B-music_item B-track I-track I-track 427 | BookRestaurant book a popular restaurant of thai cuisine O O B-sort B-restaurant_type O B-cuisine O 428 | SearchScreeningEvent which animated movies are playing in the neighbourhood and when O B-movie_type I-movie_type O O B-spatial_relation I-spatial_relation I-spatial_relation O O 429 | SearchCreativeWork i want to listen to the song only the greatest O O O O O O B-object_type B-object_name I-object_name I-object_name 430 | BookRestaurant i d like to eat at the best restaurant O O O O O O O B-sort B-restaurant_type 431 | GetWeather is it going to be chilly in western sahara in 13 hours O O O O O B-condition_temperature O B-country I-country O B-timeRange I-timeRange 432 | BookRestaurant i want to book a restaurant for four around zapata O O O O O B-restaurant_type O B-party_size_number B-spatial_relation B-city 433 | RateBook rate if tomorrow comes 2 of 6 stars O B-object_name I-object_name I-object_name B-rating_value O B-best_rating B-rating_unit 434 | RateBook the book history by contract is rated five stars in my opinion O B-object_type B-object_name I-object_name I-object_name O O B-rating_value B-rating_unit O O O 435 | BookRestaurant i want to book a bar in bonaparte palau O O O O O B-restaurant_type O B-city B-state 436 | SearchCreativeWork i m looking for dead at 21 the tv series O O O O B-object_name I-object_name I-object_name O B-object_type I-object_type 437 | BookRestaurant can you make reservations at a tea house that serves fettucine O O O O O O B-restaurant_type I-restaurant_type O O B-served_dish 438 | AddToPlaylist put a track by lil mama into my guest list sneaky zebra playlist O O B-music_item O B-artist I-artist O B-playlist_owner B-playlist I-playlist I-playlist I-playlist O 439 | AddToPlaylist put some frank ferrer into my edna st vincent millay playlist O O B-artist I-artist O B-playlist_owner B-playlist I-playlist I-playlist I-playlist O 440 | GetWeather what is the forecast for niger O O O O O B-country 441 | RateBook rate this novel a 3 O B-object_select B-object_type O B-rating_value 442 | AddToPlaylist add this ruth crawford seeger song to my playlist called the soundtrack 007 O O B-artist I-artist I-artist B-music_item O B-playlist_owner O O B-playlist I-playlist I-playlist 443 | GetWeather is it going to snow next year in wv O O O O B-condition_description B-timeRange I-timeRange O B-state 444 | SearchScreeningEvent is romulus and the sabines playing at the nearest cinema at ten O B-movie_name I-movie_name I-movie_name I-movie_name O O O B-spatial_relation B-object_location_type O B-timeRange 445 | SearchScreeningEvent show me the new showings for animated movies in the neighborhood O O O O O O B-movie_type I-movie_type B-spatial_relation I-spatial_relation I-spatial_relation 446 | SearchCreativeWork play the video game the genesis machine O O B-object_type I-object_type B-object_name I-object_name I-object_name 447 | BookRestaurant i want to go to 88th st-boyd av or close by and book seats for 10 O O O O O B-poi I-poi I-poi O B-spatial_relation O O O O O B-party_size_number 448 | AddToPlaylist i need to add to the funk soul disco playlist my favorite artist O O O O O O B-playlist I-playlist I-playlist O B-playlist_owner O B-music_item 449 | BookRestaurant i want to book a cafe for 3 in fargo O O O O O B-restaurant_type O B-party_size_number O B-city 450 | SearchCreativeWork where can i watch tv series shopping spree O O O O B-object_type I-object_type B-object_name I-object_name 451 | PlayMusic play an andy silvester sound track from the thirties on spotify O O B-artist I-artist B-music_item I-music_item O O B-year O B-service 452 | BookRestaurant i d like to eat at a popular brasserie in chile with a party of 5 O O O O O O O B-sort B-restaurant_type O B-country O O O O B-party_size_number 453 | GetWeather what s the forecast for my current place at five pm O O O O O O B-current_location I-current_location O B-timeRange I-timeRange 454 | RateBook give private games 3 stars out of 6 O B-object_name I-object_name B-rating_value B-rating_unit O O B-best_rating 455 | GetWeather in 17 minutes will it be foggy in songimvelo game reserve B-timeRange I-timeRange I-timeRange O O O B-condition_description O B-geographic_poi I-geographic_poi I-geographic_poi 456 | GetWeather how hot will it be in wisconsin on august fourth O B-condition_temperature O O O O B-state O B-timeRange I-timeRange 457 | AddToPlaylist i d like to put qriii onto songs to sing in the car O O O O O B-entity_name O B-playlist I-playlist I-playlist I-playlist I-playlist I-playlist 458 | GetWeather will it be chilly in oakdale ok O O O B-condition_temperature O B-city B-state 459 | AddToPlaylist add dwele to marguerite s eurovision 2016 playlist O B-artist O B-playlist_owner I-playlist_owner B-playlist I-playlist O 460 | GetWeather what s the weather forecast for croatia on jul 25th O O O O O O B-country O B-timeRange I-timeRange 461 | SearchCreativeWork find tv series titled a life in the death of joe meek O B-object_type I-object_type O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name I-object_name I-object_name 462 | PlayMusic open fadl shaker on spotify and play a melody starting with the newest O B-artist I-artist O B-service O O O B-music_item O O O B-sort 463 | AddToPlaylist please add jency anthony to my playlist this is mozart O O B-artist I-artist O B-playlist_owner O B-playlist I-playlist I-playlist 464 | GetWeather whats the weather in ga O O O O B-state 465 | RateBook i rate the chronicle son of the tree with four of 6 points O O O B-object_part_of_series_type B-object_name I-object_name I-object_name I-object_name O B-rating_value O B-best_rating B-rating_unit 466 | AddToPlaylist add git to domingo indie O B-entity_name O B-playlist I-playlist 467 | GetWeather will there be cloud coverage in verdery myanmar O O O B-condition_description O O B-city B-country 468 | RateBook rate maps for lost lovers 1 of 6 O B-object_name I-object_name I-object_name I-object_name B-rating_value O B-best_rating 469 | GetWeather will it snow in granbury O O B-condition_description O B-city 470 | PlayMusic play me a cinder block movement O O O B-artist I-artist B-music_item 471 | SearchCreativeWork find the tv series shaun the sheep O O B-object_type I-object_type B-object_name I-object_name I-object_name 472 | PlayMusic i want to hear the jody williams sound track O O O O O B-artist I-artist B-music_item I-music_item 473 | GetWeather what is the forecast for foggy conditions here in twenty one minutes O O O O O B-condition_description O B-current_location B-timeRange I-timeRange I-timeRange I-timeRange 474 | BookRestaurant book a table at grecian coffee house for 7 on apr 7th 2024 O O O O B-restaurant_name I-restaurant_name I-restaurant_name O B-party_size_number O B-timeRange I-timeRange I-timeRange 475 | SearchCreativeWork show creative photograph of icewind dale: heart of winter O O B-object_type O B-object_name I-object_name I-object_name I-object_name I-object_name 476 | RateBook rate the manxman 5 out of 6 O B-object_name I-object_name B-rating_value O O B-best_rating 477 | AddToPlaylist add this song to my lo que suena new york playlist O O B-music_item O B-playlist_owner B-playlist I-playlist I-playlist I-playlist I-playlist O 478 | SearchCreativeWork find reproductions: songs of the human league O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name 479 | PlayMusic play a 2001 sound track on deezer O O B-year B-music_item I-music_item O B-service 480 | GetWeather weather for ma in the morning O O B-state O O B-timeRange 481 | PlayMusic play a ballad by bob johnston O O B-music_item O B-artist I-artist 482 | GetWeather is there a snowstorm in russia O O O B-condition_description O B-country 483 | GetWeather will it be nice on aug the nineteenth in beda bulgaria O O O O O B-timeRange I-timeRange I-timeRange O B-city B-country 484 | AddToPlaylist i d like for you to put this artist to my evening commute playlist O O O O O O O O B-music_item O B-playlist_owner B-playlist I-playlist O 485 | SearchCreativeWork play the caps lock trailer O O B-object_name I-object_name B-object_type 486 | SearchScreeningEvent give me the movie schedules for warren theatres O O O B-object_type I-object_type O B-location_name I-location_name 487 | SearchScreeningEvent i need current movie schedules O O O B-object_type I-object_type 488 | AddToPlaylist add even serpents shine to dorothea s indie hipster playlist O B-entity_name I-entity_name I-entity_name O B-playlist_owner I-playlist_owner B-playlist I-playlist O 489 | PlayMusic play ep by arjen anthony lucassen O B-music_item O B-artist I-artist I-artist 490 | RateBook give 4 points to this novel O B-rating_value B-rating_unit O B-object_select B-object_type 491 | AddToPlaylist add star light star bright to my jazz classics playlist O B-entity_name I-entity_name I-entity_name I-entity_name O B-playlist_owner B-playlist I-playlist O 492 | AddToPlaylist put nothing remains the same on my summer music playlist O B-entity_name I-entity_name I-entity_name I-entity_name O B-playlist_owner B-playlist I-playlist O 493 | GetWeather weather for the night time in new mexico O O O B-timeRange O O B-state I-state 494 | AddToPlaylist add pangaea to my gold edition playlist O B-entity_name O B-playlist_owner B-playlist I-playlist O 495 | SearchCreativeWork find me a movie with the name oshin O O O B-object_type O O O B-object_name 496 | AddToPlaylist add ian stuart donaldson to canadian country O B-artist I-artist I-artist O B-playlist I-playlist 497 | SearchScreeningEvent show me movie time for i am sorry at my movie house O O O O O B-movie_name I-movie_name I-movie_name O O B-object_location_type I-object_location_type 498 | AddToPlaylist please add ruud jolie to my playlist guest list polygon O O B-artist I-artist O B-playlist_owner O B-playlist I-playlist I-playlist 499 | AddToPlaylist add patti page album to i love my neo soul O B-artist I-artist B-music_item O B-playlist I-playlist I-playlist I-playlist I-playlist 500 | AddToPlaylist add an album by twink to my classic country playlist O O B-music_item O B-artist O B-playlist_owner B-playlist I-playlist O 501 | GetWeather will it be a snowy day in dalcour O O O O B-condition_description B-timeRange O B-city 502 | RateBook rate this essay a two out of 6 O B-object_select B-object_type O B-rating_value O O B-best_rating 503 | SearchScreeningEvent find the movie schedules for animated movies nearby at 09:44 am O O B-object_type I-object_type O B-movie_type I-movie_type B-spatial_relation O B-timeRange I-timeRange 504 | AddToPlaylist add armand van helden to my black sabbath the ozzy years playlist O B-artist I-artist I-artist O B-playlist_owner B-playlist I-playlist I-playlist I-playlist I-playlist O 505 | RateBook give this chronicle a 4 O B-object_select B-object_part_of_series_type O B-rating_value 506 | BookRestaurant i m looking for a churrascaria place with wifi that can serve a party of five O O O O O B-restaurant_type O O B-facility O O O O O O B-party_size_number 507 | SearchScreeningEvent what time is goodbye mothers playing O O O B-movie_name I-movie_name O 508 | BookRestaurant book the city tavern in holiday ks O O B-restaurant_name I-restaurant_name O B-city B-state 509 | SearchScreeningEvent what movies are playing dickinson theatres O B-movie_type O O B-location_name I-location_name 510 | RateBook rate the key word and other mysteries 4 of 6 O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name B-rating_value O B-best_rating 511 | SearchScreeningEvent i d like to watch may blossom O O O O O B-movie_name I-movie_name 512 | PlayMusic play some music on slacker O O O O B-service 513 | RateBook i want to rate the ingenuity gap 3 out of 6 O O O O B-object_name I-object_name I-object_name B-rating_value O O B-best_rating 514 | AddToPlaylist add song to my wild country playlist O B-music_item O B-playlist_owner B-playlist I-playlist O 515 | GetWeather what is the weather forecast for close-by burkina O O O O O O B-spatial_relation B-country 516 | SearchCreativeWork i want to watch supernatural: the unseen powers of animals O O O O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name 517 | SearchCreativeWork listen to dragon ball: music collection O O B-object_name I-object_name I-object_name I-object_name 518 | AddToPlaylist add troy van leeuwen to my nu metal list O B-artist I-artist I-artist O B-playlist_owner B-playlist I-playlist O 519 | AddToPlaylist add born free to fresh r&b O B-entity_name I-entity_name O B-playlist I-playlist 520 | BookRestaurant book at table at forest av restaurant close-by for 2 1 second from now O O O O B-poi I-poi B-restaurant_type B-spatial_relation O B-party_size_number B-timeRange I-timeRange I-timeRange I-timeRange 521 | SearchCreativeWork can you get me the trailer of the multiversity O O O O O B-object_type O B-object_name I-object_name 522 | SearchScreeningEvent are there movies at malco theatres O O B-movie_type O B-location_name I-location_name 523 | RateBook rate the current chronicle series 3 out of 6 points O O B-object_select B-object_part_of_series_type I-object_part_of_series_type B-rating_value O O B-best_rating B-rating_unit 524 | SearchScreeningEvent can i get the movie times O O O O B-object_type I-object_type 525 | AddToPlaylist i want to add hind etin to my la mejor música dance 2017 playlist O O O O B-entity_name I-entity_name O B-playlist_owner B-playlist I-playlist I-playlist I-playlist I-playlist O 526 | PlayMusic play some latin on zvooq O O B-genre O B-service 527 | GetWeather what is the freezing forecast for british virgin islands O O O B-condition_temperature O O B-country I-country I-country 528 | SearchCreativeWork pull up sweeney todd - il diabolico barbiere di fleet street O O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name I-object_name I-object_name I-object_name 529 | RateBook put four rating on the raging quiet O B-rating_value O O B-object_name I-object_name I-object_name 530 | SearchCreativeWork show me the tv show limit of love: umizaru O O O B-object_type I-object_type B-object_name I-object_name I-object_name I-object_name 531 | SearchScreeningEvent which movies are playing at the closest cinema O B-movie_type O O O O B-spatial_relation B-object_location_type 532 | AddToPlaylist add this album by karl davydov to reyna s this is luis fonsi playlist O O B-music_item O B-artist I-artist O B-playlist_owner I-playlist_owner B-playlist I-playlist I-playlist I-playlist O 533 | SearchCreativeWork where can i see the television show falling away from me O O O O O B-object_type I-object_type B-object_name I-object_name I-object_name I-object_name 534 | BookRestaurant book me a table for 5 at a best rated restaurant in italy O O O O O B-party_size_number O O B-sort I-sort B-restaurant_type O B-country 535 | GetWeather will there be a snowstorm in taberville O O O O B-condition_description O B-city 536 | AddToPlaylist add this song to this is no te va gustar playlist O O B-music_item O B-playlist I-playlist I-playlist I-playlist I-playlist I-playlist O 537 | SearchScreeningEvent can i get the movies showtimes for the closest movie house O O O O B-movie_type O O O B-spatial_relation B-object_location_type I-object_location_type 538 | PlayMusic do you have something like impossible is nothing by abderrahmane abdelli O O O O O B-track I-track I-track O B-artist I-artist 539 | GetWeather what is the weather forecast for cistern O O O O O O B-city 540 | BookRestaurant please make reservations in yeager for seven am at a highly rated indian brasserie O O O O B-city O B-timeRange I-timeRange O O B-sort I-sort B-cuisine B-restaurant_type 541 | PlayMusic play me a nineties sound track O O O B-year B-music_item I-music_item 542 | SearchCreativeWork where can i find thor meets captain america O O O O B-object_name I-object_name I-object_name I-object_name 543 | AddToPlaylist i need to have pat alger s album placed onto the spotlight spain 2016 playlist O O O O B-artist I-artist O B-music_item O O O B-playlist I-playlist I-playlist O 544 | SearchScreeningEvent can i get the movie times for fox theatres O O O O B-object_type I-object_type O B-location_name I-location_name 545 | SearchScreeningEvent i d like to watch wish you were dead O O O O O B-movie_name I-movie_name I-movie_name I-movie_name 546 | SearchScreeningEvent i d like to watch apocalypse 2024 O O O O O B-movie_name I-movie_name 547 | SearchCreativeWork show creativity of song a discord electric O O O B-object_type B-object_name I-object_name I-object_name 548 | SearchScreeningEvent is love and other troubles playing O B-movie_name I-movie_name I-movie_name I-movie_name O 549 | SearchScreeningEvent show me the current movie times O O O O B-object_type I-object_type 550 | RateBook rate the lie tree five O B-object_name I-object_name I-object_name B-rating_value 551 | AddToPlaylist i want to add another album to the wine & dine playlist O O O O O B-music_item O O B-playlist I-playlist I-playlist O 552 | AddToPlaylist add another tune to my pumping iron playlist O O B-music_item O B-playlist_owner B-playlist I-playlist O 553 | PlayMusic play a track by mila islam from deezer O O B-music_item O B-artist I-artist O B-service 554 | GetWeather is it rainy season in manitou springs O O B-condition_description O O B-city I-city 555 | RateBook give 2 stars to the doom brigade O B-rating_value B-rating_unit O B-object_name I-object_name I-object_name 556 | AddToPlaylist add this tune to my dinnertime acoustics list O O B-music_item O B-playlist_owner B-playlist I-playlist O 557 | SearchScreeningEvent what are the current movie schedules O O O O B-object_type I-object_type 558 | SearchScreeningEvent what is the showtime for arsho O O O O O B-movie_name 559 | SearchScreeningEvent list movie times at harkins theatres O B-object_type I-object_type O B-location_name I-location_name 560 | SearchScreeningEvent what movies are showing in the neighborhood O B-movie_type O O B-spatial_relation I-spatial_relation I-spatial_relation 561 | PlayMusic play my playlist tgif on itunes O O O B-playlist O B-service 562 | GetWeather what will the weather be like on january 2nd 2025 in ga O O O O O O O B-timeRange I-timeRange I-timeRange O B-state 563 | SearchScreeningEvent what animated movies are playing in the neighbourhood and when O B-movie_type I-movie_type O O B-spatial_relation I-spatial_relation I-spatial_relation O O 564 | BookRestaurant book a spot at savoy hotel and grill that is neighboring wisconsin O O O O B-restaurant_name I-restaurant_name I-restaurant_name I-restaurant_name O O B-spatial_relation B-state 565 | SearchCreativeWork can you find me the back when i knew it all album O O O O O B-object_name I-object_name I-object_name I-object_name I-object_name I-object_name B-object_type 566 | AddToPlaylist add george thorogood to el mejor rock en español O B-artist I-artist O B-playlist I-playlist I-playlist I-playlist I-playlist 567 | PlayMusic play the album how insensitive O O B-music_item B-album I-album 568 | SearchCreativeWork i m looking for the pokémon: the movie 2000 tv show O O O O O B-object_name I-object_name I-object_name I-object_name B-object_type I-object_type 569 | AddToPlaylist place this tune onto my dinner for 2 playlist O O B-music_item O B-playlist_owner B-playlist I-playlist I-playlist O 570 | SearchCreativeWork where can i see the trailer for love on the beat O O O O O B-object_type O B-object_name I-object_name I-object_name I-object_name 571 | SearchScreeningEvent list movie times at megaplex theatres O B-object_type I-object_type O B-location_name I-location_name 572 | GetWeather will it be chillier at 06:05:48 in wagener réunion O O O B-condition_temperature O B-timeRange O B-city B-country 573 | GetWeather what is the weather in south bradenton O O O O O B-city I-city 574 | SearchCreativeWork get jump down painting O B-object_name I-object_name B-object_type 575 | BookRestaurant please book a room in spaghetti warehouse for catalina delores and brandie mendoza at 12 am O O O O O B-restaurant_name I-restaurant_name O B-party_size_description I-party_size_description I-party_size_description I-party_size_description I-party_size_description O B-timeRange I-timeRange 576 | GetWeather what is the nh forecast for mexican hat O O O B-state O O B-city I-city 577 | BookRestaurant i need to book a top-rated steakhouse this autumn for 1 around azerbaijan O O O O O B-sort B-restaurant_type B-timeRange I-timeRange O B-party_size_number B-spatial_relation B-country 578 | GetWeather will it be chillier at my current location in one minute O O O B-condition_temperature O O B-current_location I-current_location B-timeRange I-timeRange I-timeRange 579 | SearchCreativeWork show me heavenly sword O O B-object_name I-object_name 580 | GetWeather what is the weather forecast for close-by gu 3 years from now O O O O O O B-spatial_relation B-state B-timeRange I-timeRange I-timeRange I-timeRange 581 | GetWeather will it be freezing on 4/20/2038 in american beach nc O O O B-condition_temperature O B-timeRange O B-city I-city B-state 582 | GetWeather i need the wather for next week in the philippines O O O O O B-timeRange I-timeRange O O B-country 583 | AddToPlaylist add tune to my metal crash course playlist O B-music_item O B-playlist_owner B-playlist I-playlist I-playlist O 584 | BookRestaurant i would like to book the best food court with persian food within the same area as ok for my ex husband and i O O O O O O B-sort B-restaurant_type I-restaurant_type O B-cuisine O B-spatial_relation I-spatial_relation I-spatial_relation I-spatial_relation O B-state O B-party_size_description I-party_size_description I-party_size_description I-party_size_description I-party_size_description 585 | SearchCreativeWork i d like to see the picture the principle of hope O O O O O O B-object_type B-object_name I-object_name I-object_name I-object_name 586 | RateBook rate this series 2 out of 6 O B-object_select B-object_part_of_series_type B-rating_value O O B-best_rating 587 | SearchCreativeWork find a man needs a maid O B-object_name I-object_name I-object_name I-object_name I-object_name 588 | BookRestaurant book a restaurant close by my daughters s work location with burrito three years from now O O B-restaurant_type B-spatial_relation I-spatial_relation B-poi I-poi I-poi I-poi I-poi O B-served_dish B-timeRange I-timeRange I-timeRange I-timeRange 589 | AddToPlaylist add this tune to the refugee playlist O O B-music_item O B-playlist I-playlist I-playlist 590 | SearchScreeningEvent find time for movie times now O O O B-object_type I-object_type B-timeRange 591 | BookRestaurant i would like to book a highly rated brasserie with souvlaki neighboring la next week O O O O O O B-sort I-sort B-restaurant_type O B-cuisine B-spatial_relation B-state B-timeRange I-timeRange 592 | SearchScreeningEvent find the panic in needle park O B-movie_name I-movie_name I-movie_name I-movie_name I-movie_name 593 | GetWeather is it freezing on jun the 21st in apshawa south africa O O B-condition_temperature O B-timeRange I-timeRange I-timeRange O B-city B-country I-country 594 | BookRestaurant i need to take three people to eat O O O O B-party_size_number O O O 595 | PlayMusic play a 2006 chant O O B-year B-music_item 596 | SearchScreeningEvent show me the schedule of the loves of letty in cinema closest O O O B-object_type O B-movie_name I-movie_name I-movie_name I-movie_name O B-object_location_type B-spatial_relation 597 | PlayMusic play the top 20 ep from the fifties by john bundrick O O B-sort I-sort B-music_item O O B-year O B-artist I-artist 598 | SearchCreativeWork show creativity of photograph of my wonderful day O O O B-object_type O B-object_name I-object_name I-object_name 599 | BookRestaurant book a table in the united states for 10 at the berghoff O O O O O B-country I-country O B-party_size_number O B-restaurant_name I-restaurant_name 600 | BookRestaurant i d like to book a brasserie in virginia city ga O O O O O O B-restaurant_type O B-city I-city B-state 601 | GetWeather will it be temperate in the same area in vi O O O B-condition_temperature B-spatial_relation I-spatial_relation I-spatial_relation I-spatial_relation O B-state 602 | RateBook rate the current novel four out of 6 points O O B-object_select B-object_type B-rating_value O O B-best_rating B-rating_unit 603 | GetWeather is it going to get chillier near hocking state forest O O O O O B-condition_temperature B-spatial_relation B-geographic_poi I-geographic_poi I-geographic_poi 604 | RateBook for the current saga i rate 2 of 6 stars O O B-object_select B-object_part_of_series_type O O B-rating_value O B-best_rating B-rating_unit 605 | SearchCreativeWork i want to play the video game espn major league soccer O O O O O B-object_type I-object_type B-object_name I-object_name I-object_name I-object_name 606 | RateBook rate the current book a three O O B-object_select B-object_type O B-rating_value 607 | RateBook rate this novel 0 of 6 stars O B-object_select B-object_type B-rating_value O B-best_rating B-rating_unit 608 | GetWeather is it going to be chillier at 10 pm in texas O O O O O B-condition_temperature O B-timeRange I-timeRange O B-state 609 | GetWeather what s the weather in timbo O O O O O B-city 610 | AddToPlaylist add the blurred crusade to crate diggers anonymous O B-entity_name I-entity_name I-entity_name O B-playlist I-playlist I-playlist 611 | GetWeather tell me the weather forecast for sugarloaf provincial park ten weeks from now O O O O O O B-geographic_poi I-geographic_poi I-geographic_poi B-timeRange I-timeRange I-timeRange I-timeRange 612 | AddToPlaylist add a gackt camui track to the white noise playlist O O B-artist I-artist B-music_item O O B-playlist I-playlist O 613 | RateBook rate canto for a gypsy two of 6 stars O B-object_name I-object_name I-object_name I-object_name B-rating_value O B-best_rating B-rating_unit 614 | SearchCreativeWork i m looking for circus world O O O O B-object_name I-object_name 615 | RateBook this textbook gets a two B-object_select B-object_type O O B-rating_value 616 | SearchScreeningEvent show me the movie times O O O B-object_type I-object_type 617 | AddToPlaylist add song to my underground hits O B-music_item O B-playlist_owner B-playlist I-playlist 618 | SearchCreativeWork play the album journeyman O O B-object_type B-object_name 619 | SearchCreativeWork find the family jams saga O B-object_name I-object_name I-object_name B-object_type 620 | PlayMusic play rob mills album the golden archipelago O B-artist I-artist B-music_item B-album I-album I-album 621 | BookRestaurant book a spot at a restaurant within walking distance of palau O O O O O B-restaurant_type B-spatial_relation I-spatial_relation I-spatial_relation O B-state 622 | SearchCreativeWork find me the balance and timing book O O O B-object_name I-object_name I-object_name B-object_type 623 | SearchScreeningEvent find movie schedules for bow tie cinemas O B-object_type I-object_type O B-location_name I-location_name I-location_name 624 | AddToPlaylist add get happy to cherry s las canciones más lindas del mundo O B-entity_name I-entity_name O B-playlist_owner I-playlist_owner B-playlist I-playlist I-playlist I-playlist I-playlist I-playlist 625 | RateBook rate this textbook a 1 O B-object_select B-object_type O B-rating_value 626 | SearchCreativeWork shw the picture twin husbands O O B-object_type B-object_name I-object_name 627 | RateBook rate a taste of blackberries a three O B-object_name I-object_name I-object_name I-object_name O B-rating_value 628 | PlayMusic play the 1991 soundtrack from ian mcdonald O O B-year B-music_item O B-artist I-artist 629 | SearchCreativeWork find an album called just call me stupid O O B-object_type O B-object_name I-object_name I-object_name I-object_name 630 | PlayMusic play the insoc ep O B-album I-album I-album 631 | PlayMusic i want to hear major harris s songs from the fifties O O O O B-artist I-artist O O O O B-year 632 | BookRestaurant book a restaurant in donnelly O O B-restaurant_type O B-city 633 | RateBook rate the saint in trouble 1 of 6 O B-object_name I-object_name I-object_name I-object_name B-rating_value O B-best_rating 634 | PlayMusic play punk rock music O B-genre I-genre O 635 | SearchCreativeWork look for a photograph of i wanna sex you up O O O B-object_type O B-object_name I-object_name I-object_name I-object_name I-object_name 636 | GetWeather what is the humidity like in faraway on ak O O O B-condition_description O O B-spatial_relation O B-state 637 | BookRestaurant i d like to eat at an internet restaurant with a party of four O O O O O O O B-facility B-restaurant_type O O O O B-party_size_number 638 | SearchScreeningEvent when is just before nightfall playing O O B-movie_name I-movie_name I-movie_name O 639 | PlayMusic play moondog s chupacabra O B-artist O B-album 640 | AddToPlaylist add album to pop rising O B-music_item O B-playlist I-playlist 641 | RateBook rate this book three points O B-object_select B-object_type B-rating_value B-rating_unit 642 | RateBook i am giving this current book album 0 out of 6 stars O O O O B-object_select B-object_type I-object_type B-rating_value O O B-best_rating B-rating_unit 643 | PlayMusic play artist vlada divljan from something he did that is good O O B-artist I-artist O O O O O O B-sort 644 | GetWeather what will the humidity be in varnado georgia at one am O O O B-condition_description O O B-city B-state O B-timeRange I-timeRange 645 | AddToPlaylist add no prejudice to 90s indie O B-entity_name I-entity_name O B-playlist I-playlist 646 | SearchScreeningEvent what are the movies movie times nearby O O O B-movie_type B-object_type I-object_type B-spatial_relation 647 | PlayMusic i want to hear some songs from the twenties O O O O O O O O B-year 648 | BookRestaurant please make reservations for nine at 3 am O O O O B-party_size_number O B-timeRange I-timeRange 649 | SearchCreativeWork can you pull up queen of the organ O O O O B-object_name I-object_name I-object_name I-object_name 650 | PlayMusic lets hear some dawood sarkhosh from their the power of your love album from groove shark O O O B-artist I-artist O O B-album I-album I-album I-album I-album B-music_item O B-service I-service 651 | GetWeather will it get overcast in la dolores O O O B-condition_description O B-city I-city 652 | BookRestaurant book a spot for kelli jean and i at a pub at elevenses O O O O B-party_size_description I-party_size_description I-party_size_description I-party_size_description O O B-restaurant_type O B-timeRange 653 | AddToPlaylist add this candi staton artist to my dancefloor hits O O B-artist I-artist B-music_item O B-playlist_owner B-playlist I-playlist 654 | AddToPlaylist i want to add a song by jazz brasileiro O O O O O B-music_item O B-playlist I-playlist 655 | RateBook rate wielding a red sword 0 stars O B-object_name I-object_name I-object_name I-object_name B-rating_value B-rating_unit 656 | BookRestaurant book a taverna that serves bengali for six at five O O B-restaurant_type O O B-cuisine O B-party_size_number O B-timeRange 657 | SearchCreativeWork play the tv series heart of gold O O B-object_type I-object_type B-object_name I-object_name I-object_name 658 | SearchCreativeWork show crafty hands saga O B-object_name I-object_name B-object_type 659 | GetWeather will it be hotter in wyomissing hills O O O B-condition_temperature O B-city I-city 660 | GetWeather show weather while sunset in the same area in south carolina O O O B-timeRange B-spatial_relation I-spatial_relation I-spatial_relation I-spatial_relation O B-state I-state 661 | BookRestaurant table for one somewhere in palco O O B-party_size_number O O B-city 662 | AddToPlaylist i would like to add something by kuk harrell to my hip hop 2017 new school playlist O O O O O O O B-artist I-artist O B-playlist_owner B-playlist I-playlist I-playlist I-playlist I-playlist O 663 | AddToPlaylist add list of rush instrumentals to this is lady antebellum O B-entity_name I-entity_name I-entity_name I-entity_name O B-playlist I-playlist I-playlist I-playlist 664 | SearchScreeningEvent where can i see a slice of life O O O O B-movie_name I-movie_name I-movie_name I-movie_name 665 | RateBook the current textbook gets a 2 rating O B-object_select B-object_type O O B-rating_value O 666 | AddToPlaylist add wing track to all a cappella O B-artist B-music_item O B-playlist I-playlist I-playlist 667 | SearchCreativeWork show me dangers of the canadian mounted O O B-object_name I-object_name I-object_name I-object_name I-object_name 668 | AddToPlaylist please add this this tune to the playlist this is selena O O O O B-music_item O O O B-playlist I-playlist I-playlist 669 | GetWeather what will the weather be in stelvio national park 1 hour and 1 minute from now O O O O O O B-geographic_poi I-geographic_poi I-geographic_poi B-timeRange I-timeRange I-timeRange I-timeRange I-timeRange I-timeRange I-timeRange 670 | AddToPlaylist can you put musiri subramania iyer s song onto the lo-fi love soundtrack O O O B-artist I-artist I-artist O B-music_item O O B-playlist I-playlist O 671 | AddToPlaylist i want to add michelle heaton to this is chopin O O O O B-artist I-artist O B-playlist I-playlist I-playlist 672 | SearchCreativeWork show me the movie operetta for the theatre organ O O O B-object_type B-object_name I-object_name I-object_name I-object_name I-object_name 673 | SearchScreeningEvent where s the nearest movie house playing no trains no planes O O O B-spatial_relation B-object_location_type I-object_location_type O B-movie_name I-movie_name I-movie_name I-movie_name 674 | AddToPlaylist put a xiang xiang track onto women of the blues O O B-artist I-artist B-music_item O B-playlist I-playlist I-playlist I-playlist 675 | AddToPlaylist can you add a track by david wolfenberger to janell s all funked up playlist O O O O B-music_item O B-artist I-artist O B-playlist_owner I-playlist_owner B-playlist I-playlist I-playlist O 676 | PlayMusic play the album vibrations by marion elise raven O O B-music_item B-album O B-artist I-artist I-artist 677 | AddToPlaylist add fabri fibra to evening acoustic O B-artist I-artist O B-playlist I-playlist 678 | PlayMusic can you play any chant from the fourties O O O O B-music_item O O B-year 679 | SearchCreativeWork show the night riders O B-object_name I-object_name I-object_name 680 | SearchCreativeWork i m looking for a movie called salvage mice O O O O O B-object_type O B-object_name I-object_name 681 | SearchCreativeWork find your personal touch O B-object_name I-object_name I-object_name 682 | AddToPlaylist add this tune to my weekend playlist O O B-music_item O B-playlist_owner B-playlist O 683 | GetWeather is it going to storm in black rock alaska O O O O B-condition_description O B-city I-city B-state 684 | SearchScreeningEvent show the movie schedules at united paramount theatres O O B-object_type I-object_type O B-location_name I-location_name I-location_name 685 | SearchCreativeWork i want to read the saga michael clayton O O O O O B-object_type B-object_name I-object_name 686 | BookRestaurant book me a table for 3 at tkk fried chicken in sri lanka O O O O O B-party_size_number O B-restaurant_name I-restaurant_name I-restaurant_name O B-country I-country 687 | RateBook rate this book titled the improvisatore five stars O O B-object_type O B-object_name I-object_name B-rating_value B-rating_unit 688 | BookRestaurant book a restaurant for one person at 7 am O O B-restaurant_type O B-party_size_number O O B-timeRange I-timeRange 689 | GetWeather weather for beauregard il O O B-city B-state 690 | GetWeather will there be alot of wind on march 13th in lost creek bahrain O O O O O B-condition_description O B-timeRange I-timeRange O B-city I-city B-country 691 | BookRestaurant i d like a reservation at a place in iran for neva alice and maggie parker O O O O O O O O O B-country O B-party_size_description I-party_size_description I-party_size_description I-party_size_description I-party_size_description 692 | SearchScreeningEvent show me movie schedule for animated movie around here at eleven a m O O B-object_type I-object_type O B-movie_type I-movie_type B-spatial_relation I-spatial_relation O B-timeRange I-timeRange I-timeRange 693 | RateBook i give this book dictionary of the english language a 4 rating O O O B-object_type B-object_name I-object_name I-object_name I-object_name I-object_name O B-rating_value O 694 | PlayMusic play some symphonic rock O O B-genre I-genre 695 | AddToPlaylist add to my playlist all funked up this track O O B-playlist_owner O B-playlist I-playlist I-playlist O B-music_item 696 | SearchCreativeWork find a tv series called armageddon summer O O B-object_type I-object_type O B-object_name I-object_name 697 | SearchCreativeWork find politicsnation with al sharpton O B-object_name I-object_name I-object_name I-object_name 698 | RateBook rate this album 0 points out of 6 O B-object_select B-object_type B-rating_value B-rating_unit O O B-best_rating 699 | AddToPlaylist add leah kauffman to my uncharted 4 nathan drake playlist O B-artist I-artist O B-playlist_owner B-playlist I-playlist I-playlist I-playlist O 700 | RateBook rate this album two out of 6 O B-object_select B-object_type B-rating_value O O B-best_rating 701 | --------------------------------------------------------------------------------