Repository: DeepGraphLearning/NBFNet Branch: master Commit: eb49ff2770d1 Files: 23 Total size: 620.1 KB Directory structure: gitextract_671zkorr/ ├── .gitignore ├── LICENSE ├── README.md ├── config/ │ ├── homogeneous_graph/ │ │ ├── citeseer.yaml │ │ ├── cora.yaml │ │ └── pubmed.yaml │ ├── inductive/ │ │ ├── fb15k237.yaml │ │ └── wn18rr.yaml │ └── knowledge_graph/ │ ├── fb15k237.yaml │ ├── fb15k237_visualize.yaml │ ├── ogbl-biokg.yaml │ ├── ogbl-biokg_test.yaml │ └── wn18rr.yaml ├── data/ │ └── fb15k237_entity.txt ├── nbfnet/ │ ├── __init__.py │ ├── dataset.py │ ├── layer.py │ ├── model.py │ ├── task.py │ └── util.py ├── requirements.txt └── script/ ├── run.py └── visualize.py ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ # PyCharm /.idea # VS Code /.vscode # Python __pycache__ *.pyc # macOS .DS_Store ================================================ FILE: LICENSE ================================================ MIT License Copyright (c) 2021 MilaGraph Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.md ================================================ # NBFNet: Neural Bellman-Ford Networks # This is the official codebase of the paper [Neural Bellman-Ford Networks: A General Graph Neural Network Framework for Link Prediction][paper] [Zhaocheng Zhu](https://kiddozhu.github.io), [Zuobai Zhang](https://oxer11.github.io), [Louis-Pascal Xhonneux](https://github.com/lpxhonneux), [Jian Tang](https://jian-tang.com) [paper]: https://arxiv.org/pdf/2106.06935.pdf A PyG re-implementation of NBFNet can be found [here](https://github.com/KiddoZhu/NBFNet-PyG). ## Overview ## NBFNet is a graph neural network framework inspired by traditional path-based methods. It enjoys the advantages of both traditional path-based methods and modern graph neural networks, including **generalization in the inductive setting**, **interpretability**, **high model capacity** and **scalability**. NBFNet can be applied to solve link prediction on both homogeneous graphs and knowledge graphs. ![NBFNet](asset/nbfnet.svg) This codebase is based on PyTorch and [TorchDrug]. It supports training and inference with multiple GPUs or multiple machines. [TorchDrug]: https://github.com/DeepGraphLearning/torchdrug ## Installation ## You may install the dependencies via either conda or pip. Generally, NBFNet works with Python 3.7/3.8 and PyTorch version >= 1.8.0. ### From Conda ### ```bash conda install torchdrug pytorch=1.8.2 cudatoolkit=11.1 -c milagraph -c pytorch-lts -c pyg -c conda-forge conda install ogb easydict pyyaml -c conda-forge ``` ### From Pip ### ```bash pip install torch==1.8.2+cu111 -f https://download.pytorch.org/whl/lts/1.8/torch_lts.html pip install torchdrug pip install ogb easydict pyyaml ``` ## Reproduction ## To reproduce the results of NBFNet, use the following command. Alternatively, you may use `--gpus null` to run NBFNet on a CPU. All the datasets will be automatically downloaded in the code. ```bash python script/run.py -c config/inductive/wn18rr.yaml --gpus [0] --version v1 ``` We provide the hyperparameters for each experiment in configuration files. All the configuration files can be found in `config/*/*.yaml`. For experiments on inductive relation prediction, you need to additionally specify the split version with `--version v1`. To run NBFNet with multiple GPUs or multiple machines, use the following commands ```bash python -m torch.distributed.launch --nproc_per_node=4 script/run.py -c config/inductive/wn18rr.yaml --gpus [0,1,2,3] ``` ```bash python -m torch.distributed.launch --nnodes=4 --nproc_per_node=4 script/run.py -c config/inductive/wn18rr.yaml --gpus [0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3] ``` ### Visualize Interpretations on FB15k-237 ### Once you have models trained on FB15k237, you can visualize the path interpretations with the following line. Please replace the checkpoint with your own path. ```bash python script/visualize.py -c config/knowledge_graph/fb15k237_visualize.yaml --checkpoint /path/to/nbfnet/experiment/model_epoch_20.pth ``` ### Evaluate ogbl-biokg ### Due to the large size of ogbl-biokg, we only evaluate on a small portion of the validation set during training. The following line evaluates a model on the full validation / test sets of ogbl-biokg. Please replace the checkpoint with your own path. ```bash python script/run.py -c config/knowledge_graph/ogbl-biokg_test.yaml --checkpoint /path/to/nbfnet/experiment/model_epoch_10.pth ``` ## Results ## Here are the results of NBFNet on standard benchmark datasets. All the results are obtained with 4 V100 GPUs (32GB). Note results may be slightly different if the model is trained with 1 GPU and/or a smaller batch size. ### Knowledge Graph Completion ###
Dataset MR MRR HITS@1 HITS@3 HITS@10
FB15k-237 114 0.415 0.321 0.454 0.599
WN18RR 636 0.551 0.497 0.573 0.666
ogbl-biokg - 0.829 0.768 0.870 0.946
### Homogeneous Graph Link Prediction ###
Dataset AUROC AP
Cora 0.956 0.962
CiteSeer 0.923 0.936
PubMed 0.983 0.982
### Inductive Relation Prediction ###
Dataset HITS@10 (50 sample)
v1 v2 v3 v4
FB15k-237 0.834 0.949 0.951 0.960
WN18RR 0.948 0.905 0.893 0.890
Frequently Asked Questions -------------------------- 1. **The code is stuck at the beginning of epoch 0.** This is probably because the JIT cache is broken. Try `rm -r ~/.cache/torch_extensions/*` and run the code again. Citation -------- If you find this codebase useful in your research, please cite the following paper. ```bibtex @article{zhu2021neural, title={Neural bellman-ford networks: A general graph neural network framework for link prediction}, author={Zhu, Zhaocheng and Zhang, Zuobai and Xhonneux, Louis-Pascal and Tang, Jian}, journal={Advances in Neural Information Processing Systems}, volume={34}, year={2021} } ``` ================================================ FILE: config/homogeneous_graph/citeseer.yaml ================================================ output_dir: ~/experiments/ dataset: class: CiteSeerLinkPrediction path: ~/datasets/homogeneous_graphs/ task: class: LinkPrediction model: class: NBFNet input_dim: 32 hidden_dims: [32, 32, 32, 32, 32, 32] message_func: distmult aggregate_func: pna short_cut: yes layer_norm: yes dependent: no remove_one_hop: yes symmetric: yes criterion: bce num_negative: 1 strict_negative: yes optimizer: class: Adam lr: 5.0e-3 engine: gpus: {{ gpus }} batch_size: 64 train: num_epoch: 20 metric: auroc ================================================ FILE: config/homogeneous_graph/cora.yaml ================================================ output_dir: ~/experiments/ dataset: class: CoraLinkPrediction path: ~/datasets/homogeneous_graphs/ task: class: LinkPrediction model: class: NBFNet input_dim: 32 hidden_dims: [32, 32, 32, 32, 32, 32] message_func: distmult aggregate_func: pna short_cut: yes layer_norm: yes dependent: no remove_one_hop: yes symmetric: yes criterion: bce num_negative: 1 strict_negative: yes optimizer: class: Adam lr: 5.0e-3 engine: gpus: {{ gpus }} batch_size: 64 train: num_epoch: 20 metric: auroc ================================================ FILE: config/homogeneous_graph/pubmed.yaml ================================================ output_dir: ~/experiments/ dataset: class: PubMedLinkPrediction path: ~/datasets/homogeneous_graphs/ task: class: LinkPrediction model: class: NBFNet input_dim: 32 hidden_dims: [32, 32, 32, 32, 32, 32] message_func: distmult aggregate_func: pna short_cut: yes layer_norm: yes dependent: no remove_one_hop: yes symmetric: yes criterion: bce num_negative: 1 strict_negative: yes optimizer: class: Adam lr: 5.0e-3 engine: gpus: {{ gpus }} batch_size: 16 train: num_epoch: 10 metric: auroc ================================================ FILE: config/inductive/fb15k237.yaml ================================================ output_dir: ~/experiments/ dataset: class: FB15k237Inductive path: ~/datasets/knowledge_graphs/ version: {{ version }} task: class: InductiveKnowledgeGraphCompletion model: class: NBFNet input_dim: 32 hidden_dims: [32, 32, 32, 32, 32, 32] message_func: distmult aggregate_func: pna short_cut: yes layer_norm: yes dependent: yes remove_one_hop: yes criterion: bce num_negative: 32 strict_negative: yes adversarial_temperature: 0.5 sample_weight: no full_batch_eval: yes optimizer: class: Adam lr: 5.0e-3 engine: gpus: {{ gpus }} batch_size: 64 train: num_epoch: 20 metric: mrr ================================================ FILE: config/inductive/wn18rr.yaml ================================================ output_dir: ~/experiments/ dataset: class: WN18RRInductive path: ~/datasets/knowledge_graphs/ version: {{ version }} task: class: InductiveKnowledgeGraphCompletion model: class: NBFNet input_dim: 32 hidden_dims: [32, 32, 32, 32, 32, 32] message_func: distmult aggregate_func: pna short_cut: yes layer_norm: yes dependent: no criterion: bce num_negative: 32 strict_negative: yes adversarial_temperature: 1 sample_weight: no full_batch_eval: yes optimizer: class: Adam lr: 5.0e-3 engine: gpus: {{ gpus }} batch_size: 32 train: num_epoch: 20 metric: mrr ================================================ FILE: config/knowledge_graph/fb15k237.yaml ================================================ output_dir: ~/experiments/ dataset: class: FB15k237 path: ~/datasets/knowledge_graphs/ task: class: KnowledgeGraphCompletion model: class: NBFNet input_dim: 32 hidden_dims: [32, 32, 32, 32, 32, 32] message_func: distmult aggregate_func: pna short_cut: yes layer_norm: yes dependent: yes remove_one_hop: yes criterion: bce num_negative: 32 strict_negative: yes adversarial_temperature: 0.5 sample_weight: no full_batch_eval: yes optimizer: class: Adam lr: 5.0e-3 engine: gpus: {{ gpus }} batch_size: 64 train: num_epoch: 20 metric: mrr ================================================ FILE: config/knowledge_graph/fb15k237_visualize.yaml ================================================ output_dir: ~/experiments/ dataset: class: FB15k237 path: ~/datasets/knowledge_graphs/ task: class: KnowledgeGraphCompletion model: class: NBFNet input_dim: 32 hidden_dims: [32, 32, 32, 32, 32, 32] message_func: distmult aggregate_func: pna short_cut: yes layer_norm: yes dependent: yes remove_one_hop: yes criterion: bce num_negative: 32 strict_negative: yes adversarial_temperature: 0.5 sample_weight: no full_batch_eval: yes optimizer: class: Adam lr: 5.0e-3 engine: gpus: [0] batch_size: 64 checkpoint: {{ checkpoint }} metric: mrr ================================================ FILE: config/knowledge_graph/ogbl-biokg.yaml ================================================ output_dir: ~/experiments/ dataset: class: OGBLBioKG path: ~/datasets/knowledge_graphs/ task: class: KnowledgeGraphCompletionOGB model: class: NBFNet input_dim: 32 hidden_dims: [32, 32, 32, 32, 32, 32] message_func: distmult aggregate_func: pna short_cut: yes layer_norm: yes dependent: yes remove_one_hop: yes criterion: bce evaluator: class: Evaluator name: ogbl-biokg num_negative: 32 strict_negative: yes heterogeneous_negative: yes adversarial_temperature: 0.5 sample_weight: no optimizer: class: Adam lr: 2.0e-4 engine: gpus: {{ gpus }} batch_size: 8 log_interval: 10 train: num_epoch: 10 batch_per_epoch: 200 metric: mrr fast_test: 1000 ================================================ FILE: config/knowledge_graph/ogbl-biokg_test.yaml ================================================ output_dir: ~/experiments/ dataset: class: OGBLBioKG path: ~/datasets/knowledge_graphs/ task: class: KnowledgeGraphCompletionOGB model: class: NBFNet input_dim: 32 hidden_dims: [32, 32, 32, 32, 32, 32] message_func: distmult aggregate_func: pna short_cut: yes layer_norm: yes dependent: yes remove_one_hop: yes criterion: bce evaluator: class: Evaluator name: ogbl-biokg num_negative: 32 strict_negative: yes heterogeneous_negative: yes adversarial_temperature: 0.5 sample_weight: no optimizer: class: Adam lr: 2.0e-4 engine: gpus: {{ gpus }} batch_size: 32 log_interval: 10 train: num_epoch: 0 batch_per_epoch: 200 checkpoint: {{ checkpoint }} metric: mrr ================================================ FILE: config/knowledge_graph/wn18rr.yaml ================================================ output_dir: ~/experiments/ dataset: class: WN18RR path: ~/datasets/knowledge_graphs/ task: class: KnowledgeGraphCompletion model: class: NBFNet input_dim: 32 hidden_dims: [32, 32, 32, 32, 32, 32] message_func: distmult aggregate_func: pna short_cut: yes layer_norm: yes dependent: no criterion: bce num_negative: 32 strict_negative: yes adversarial_temperature: 1 sample_weight: no full_batch_eval: yes optimizer: class: Adam lr: 5.0e-3 engine: gpus: {{ gpus }} batch_size: 32 train: num_epoch: 20 metric: mrr ================================================ FILE: data/fb15k237_entity.txt ================================================ /m/027rn languages of dominican republic (Q786) /m/06cx9 republic (government) (Q7270) /m/017dcd rangers in reverse (Q513809) /m/06v8s0 elyse floyd (Q2642437) /m/07s9rl0 drama movie (Q130232) /m/0170z3 danny vinyard (Q208572) /m/01sl1q michelle rodríguez (Q184219) /m/044mz_ naveen andrews (Q208374) /m/0cnk2q australia national soccer team (Q268208) /m/02nzb8 right winger (football) (Q193592) /m/04nrcg mdv (Q387312) /m/02sdk9v outside forward (Q280658) /m/07nznf bryan singer/comments (Q220751) /m/014lc_ star trek 11 (cancelled film) (Q388319) /m/02qyp19 bafta award for best original screenplay 1983–1999 (Q41375) /m/02d413 philadelphia (film) (Q204057) /m/0q9kd daniel michael devito jr. (Q26806) /m/0184jc guy pearce (Q223745) /m/03q5t harpischord (Q81982) /m/07y_7 violin tuning (Q8355) /m/0gqng academy award for best foreign language film (Q105304) /m/073hkh 61th academy awards (Q924339) /m/0b76d_m anonymous (film) (Q313819) /m/029j_ dual layer (Q5294) /m/014_x2 city of angels (film) (Q168010) /m/012ljv gabriel yared (Q502957) /m/0ds35l9 bridesmaids (2011 film) (Q837264) /m/05r4w republica portuguesa (Q45) /m/015qsq serpico (film) (Q657079) /m/02bjrlw history of the italian language (Q652) /m/04bdxl catherine keener (Q230378) /m/02s2ft chris cooper (actor) (Q273208) /m/09c7w0 usofa (Q30) /m/0rs6x saint augustine (fl) (Q487988) /m/079vf stanley lee (Q181900) /m/0d90m x-men i (Q106182) /m/015zyd los angeles conservatory of music (Q1026827) /m/05vsxz chiwetel ejiofor (Q317343) /m/06qgvf carla gugino (Q228871) /m/04ljl_l golden raspberry award for worst supporting actor - motion picture (Q641316) /m/03qcfvw g.i. joe: rise of cobra (film) (Q288645) /m/0grwj oprah winfery (Q55800) /m/05sxg2 theatre producer (Q1759246) /m/0rh6k district of columbia county, dc (Q61) /m/01lp8 kristendom (Q5043) /m/05d7rk saeed jaffery (Q979990) /m/027dtxw bafta award for best supporting actor 2010-2034 (Q548389) /m/05hs4r heartland rock (Q747717) /m/01pbxb bob seger & the silver bullet band (Q364131) /m/03qcq hunter s thomson (Q219780) /m/084w8 faulkner william (Q38392) /m/01lxd4 avant-garde jazz (Q790188) /m/0f0y8 jowcol music (Q7346) /m/08815 yale model united nations (Q49112) /m/05bnp0 james franco (Q306403) /m/0g56t9t frankenweenie (full-length) (Q1051023) /m/0160w greater bahamas (Q778) /m/02vk52z world bank publications (Q7164) /m/0dbpyd burnett, alan (Q360036) /m/053y0s boat drunks (Q862359) /m/0dz3r list of record producers (Q183945) /m/016qtt bill ray cyrus (Q231259) /m/08mbj5d /m/08mbj5d /m/09sh8k fantastic four (2007 film) (Q390063) /m/09zzb8 make-up artist (Q935666) /m/05pd94v 2010 grammies (Q1349100) /m/01vvydl dr.dre (Q6078) /m/0gtsx8c american pie 4 (Q303040) /m/0jgd argentinia (Q414) /m/02r0csl bafta award for best makeup (Q918617) /m/0m313 viola de lesseps (Q182944) /m/02y_lrp love guru (Q656664) /m/012d40 yuan-lou chen (Q36970) /m/034qmv around the world in 80 days (2004 film) (Q156519) /m/07rlg triathlon (Q10980) /m/0b90_r republica de méxico (Q96) /m/0g22z wall street 1 (Q332348) /m/05b4l5x golden raspberry award for worst supporting actress (Q977915) /m/018js4 lieutenant pete mitchell (Q110138) /m/07fq1y rosemary ann harris (Q234195) /m/02qgqt phillip seymour hofman (Q180560) /m/028q6 dave brubeck (Q108597) /m/02581q /m/02581q /m/0sxg4 the dresser (1983 film) (Q620731) /m/04xvlr costume drama (Q7168625) /m/0fvf9q scott rudin productions (Q461529) /m/0l6qt saga louts (Q654730) /m/0jz9f miriam weinstein (Q465449) /m/083shs the cider house rules (film) (film) (Q648977) /m/0njvn berrien county, michigan (Q167656) /m/09nqf currency of the united states (Q4917) /m/0d1tm three-day event (Q838781) /m/0154j belgium (Q31) /m/01br2w making of the passion of the christ (Q51668) /m/03rl1g thirty-second congress (Q4635114) /m/05kkh geography of ohio (Q1397) /m/0fbq2n /m/0fbq2n /m/01r3hr scat back (Q912985) /m/060bp list of prime ministers and premiers (Q14212) /m/027nb iso 3166-1:dm (Q784) /m/04qvl7 roger deakins (Q460277) /m/02vxq9m /m/02vxq9m /m/04yywz burt young (Q329700) /m/0140g4 george washington duke (rocky v) (Q82949) /m/01k7d9 h.r. walston (Q692800) /m/0k049 history of beverly hills, california (Q127856) /m/02p65p donald frank "don" cheadle (Q272019) /m/0337vz larenz tate (Q1805906) /m/06688p john barrowman (Q24632) /m/0b2v79 the untouchables (film) (Q108525) /m/01c0cc technische hochschule berlin-charlottenburg (Q51985) /m/01jc6q cabaret (1972 movie) (Q918363) /m/040njc bafta award for best film (Q139184) /m/0520r2x richard day (art director) (Q1247808) /m/0cb77r little, thomas (Q505353) /m/06j0md charles/burrows/charles productions (Q3050241) /m/01453 a.c.f. fiorentina (Q2052) /m/0dgrmp /m/0dgrmp /m/028_yv c'era una volta in america (Q206388) /m/03rjj 🇮🇹 (Q38) /m/01914 parks in beijing (Q956) /m/05_6_y david healy's international goals and caps (Q313617) /m/02b15h doncaster rovers fc (Q19589) /m/03c7ln jay bennett (Q5570613) /m/026t6 sound of a drum (Q11404) /m/02pprs alto sax (Q445275) /m/07s3vqk my world (ray charles album) (Q544387) /m/05zjtn4 north texas state college (Q860527) /m/0197tq geetali norah jones shankar (Q549981) /m/02_fm2 morph (disney character) (Q392530) /m/0411q 1 bourbon, 1 scotch, 1 beer (Q44570) /m/016z4k singer songwriters (Q488205) /m/06151l freddy rodríguez (actor) (Q362697) /m/06gp3f justina machado (Q270382) /m/01fq7 battle creek's field of flight entertainment festival (Q810998) /m/06w99h3 rango the videogame (Q275432) /m/02kdv5l action comedy film (Q188473) /m/05cljf kieth urban (Q315547) /m/0342h guitar history (Q6607) /m/0l14qv envelope (music) (Q163829) /m/02bfmn brad claude dourif (Q329734) /m/05zppz /m/05zppz /m/01rk91 unpaid internship (Q6500754) /m/0kc6x espn hd (Q217776) /m/01xdf5 evelyn mcgee (Q212886) /m/04t2l2 steve carrell (Q216221) /m/027qgy my big fat greek wedding 1 (Q525415) /m/06cvj comedy-romance (Q860626) /m/02v8kmz bulworth (Q576505) /m/01j5ts angellica huston (Q190998) /m/06_kh garfield elementary school (santa monica, california) (Q47164) /m/0dwl2 valve co (Q193559) /m/01mw1 /m/01mw1 /m/02wh75 grammy award for best rock song (Q282636) /m/0lbj1 gordon matthew thomas sumner (Q483203) /m/0c3ybss insidious: chapter 1 (Q122713) /m/01l1b90 tyrese gibson (Q311232) /m/02vp1f_ quest for fire (film) (Q451196) /m/03_3d ja (Q17) /m/09m6kg a beautiful mind (movie) (Q164103) /m/02h40lc english vernacular (Q1860) /m/05bp8g shiozawa kaneto (Q2447488) /m/047q2k1 viru sahastrabuddhe (Q229633) /m/05p553 comedy movies (Q157443) /m/01ypc cincincatti reds (Q826751) /m/02dwn9 starting pitcher (Q772148) /m/06dv3 thirty odd foot of grunts (Q129817) /m/01rtm4 sarah lawrence college: campus (Q1051840) /m/02rchht jon avnet (Q939079) /m/0dq3c executive vice-president (Q42178) /m/02zs4 drive one (Q44294) /m/0qcr0 cancer (medicine) (Q12078) /m/0byfz laurence, baron olivier of brighton olivier (Q55245) /m/06wzvr can't stop the music (Q1755578) /m/01q03 so bad it's good (Q219557) /m/01qn7n ocnavigation (Q194427) /m/0cnl80 phyllis smith (Q508280) /m/083chw rainn dietrich wilson (Q349548) /m/0qf43 footer films danny boyle (Q134867) /m/0f_nbyh /m/0f_nbyh /m/0c0yh4 sunshine (1999 film) (Q173804) /m/0d060g current events/canada/archive-box (Q16) /m/03g90h babylon 5: the gathering (Q3494438) /m/02_n3z /m/02_n3z /m/06cqb reggae (jamaican) (Q9794) /m/0827d world-music (Q205049) /m/014zcr george klooney (Q23844) /m/05m63c krista allen-moritt (Q240436) /m/0yyg4 mississipi burning (Q918367) /m/027c924 national board of review award for best director (Q696998) /m/0h3y ad-dīmuqrāṭīyah ash-sha’bīyah (Q262) /m/0rtv algiers, algeria (Q3561) /m/090s_0 gulliver's travels (television) (Q1422237) /m/0h0jz peter o' toole (Q103876) /m/01kyvx japanese voice actress (Q622807) /m/0ckr7s pretty soldier sailor moon r the movie (Q636444) /m/05ztjjw mtv movie award for movie of the year (Q540977) /m/01gc7 mad stephen (Q162729) /m/01vw87c john bongiovi junior (Q150916) /m/01gbcf math punk (Q1132152) /m/016clz alternativerock (Q11366) /m/011yrp la vita è bella (Q19355) /m/0d0vqn swedish climate (Q34) /m/049tjg charles van dell johnson (Q436638) /m/05jf85 the purple rose of cairo(film-within-film) (Q912729) /m/04t36 film musical (Q842256) /m/011yxg /m/011yxg /m/0t015 history of iowa city, iowa (Q487977) /m/0j1z8 united arabian emirates (Q878) /m/07t65 un.int (Q1065) /m/02sgy solid body guitar (Q78987) /m/0l14md percussive music (Q133163) /m/05r5c piano keys (Q5994) /m/0c9d9 jean michel jarre (Q104326) /m/02g8h dennis leary (Q310283) /m/01d_h8 film producer (Q3282637) /m/0n5j_ bergen county (Q112915) /m/0fm9_ history of rockland county, new york (Q111098) /m/04cy8rb conrad buff iv (Q1126713) /m/07gp9 sp33dyphil/my sandbox 4 (Q170564) /m/081pw books/world war ii (Q362) /m/0gzy02 the guns of navarone (film) (Q756882) /m/05g8ky josh schwartz (Q728217) /m/01jssp pittsburgh university (Q235034) /m/01l849 antique gold (Q208045) /m/0f4y_ delaware county, ny (Q115289) /m/059rby ny (Q1384) /m/03x3qv josh malina (Q60422) /m/0g60z qumar (Q3577037) /m/0d_84 val kilmer filmography (Q191084) /m/01hr1 batman/batman forever (Q221345) /m/042l3v herbert ross (Q711415) /m/026mg3 /m/026mg3 /m/01s695 grammy awards 2000 (Q1542319) /m/0gx1bnj seeking a friend (Q759448) /m/04gzd lietuva (Q37) /m/060c4 presidential (Q30461) /m/04wlz2 william r. harvey (Q1797817) /m/01gxqf silkmen (Q18521) /m/09xbpt oceans thirteen actress (Q635632) /m/05f4m9q golden raspberry award for worst director (2001-2020) (Q1238714) /m/08lr6s the scarlet letter (1995 film) (Q617942) /m/0hl3d pierre louis boulez (Q156193) /m/0cbd2 wortschätzer (Q36180) /m/0495ys /m/0495ys /m/05l2z4 /m/05l2z4 /m/018wrk 1904 st. louis olympics (Q8098) /m/02bkg diving (Q7735) /m/0h5f5n peter morgan's 'blair trilogy' (Q948122) /m/04jpl london, england, uk (Q84) /m/047gn4y the prince of persia: the sands of time movie (Q245172) /m/05ty4m jud appatow (Q325396) /m/0bvn25 knocked up (film) (Q222800) /m/01vrx3g levon helm's rco all stars (Q356986) /m/01lmj3q ricky skagg (Q1347095) /m/01wbg84 steve bushemi (Q104061) /m/01r42_g jamie-lynn sigler (Q234715) /m/0ddfwj1 submarine (2011) (Q260509) /m/02wkmx palm d'or (Q179808) /m/02vxn wikiportal/film (Q11424) /m/05cj4r eileen june atkins (Q269835) /m/0bfvw2 Q1276100 /m/023tp8 patricia t. arquette (Q215976) /m/0dq626 holes (2003 film) (Q967018) /m/07sbbz2 rock 'n roll (Q7749) /m/089tm lanier greig (Q136591) /m/0m2wm claudia shiffer (Q76717) /m/02zq43 thomas brodie-sangster (Q312531) /m/086k8 warnerbros (Q126399) /m/0czyxs watchmen (movie) (Q162182) /m/03hkv_r /m/03hkv_r /m/0ds3t5x '' the help '' (Q204374) /m/02896 uniforms and logos of the dallas cowboys (Q204862) /m/05krk traditions of the ohio state university (Q309331) /m/0chghy australia (commonwealth) (Q408) /m/0l6vl 1980 moscow olympics (Q8450) /m/0dnvn3 the lady killers (2004 film) (Q83739) /m/07zrf iso 639:vi (Q9199) /m/016fyc fred fenster (Q132351) /m/01qscs benecio del toro (Q193668) /m/01p7yb frances macdormand (Q204299) /m/0p_pd bill murray (Q29250) /m/0bl2g dustin lee hoffman (Q42930) /m/0prfz schreiber, liev (Q298368) /m/01q_ph owen cunningham wilson (Q161916) /m/05zr6wv mtv movie award for best on-screen team (Q4220900) /m/0cjk9 ukrainska mova (Q8798) /m/047lj kazakh eli (Q232) /m/0s3y5 history of urbana, illinois (Q462184) /m/09fb5 jack nicholson movies (Q39792) /m/07xtqq one flew over the cuckoo's nest (film) (Q171669) /m/01k1k4 austin powers, the spy who shagged me (Q487978) /m/0gtv7pk resident evil: retribution 3d (Q83542) /m/01ls2 united states of colombia (Q739) /m/02rbdlq /m/02rbdlq /m/0l8v5 neve adrianne campbell (Q193482) /m/095zlp the hours (film) (Q157044) /m/03ckxdg /m/03ckxdg /m/02_1q9 another world in american television listings (Q1030713) /m/09n48 2002 olympics (Q9668) /m/020qr4 metarex (Q428130) /m/03_r3 jamica (Q766) /m/02lq67 bronze medals (Q873364) /m/0dtw1x the aristocrats (film) (Q3281221) /m/01yznp penn gilette (Q4129653) /m/01tvz5j maria elana bello (Q229220) /m/03rs8y eriq ki la salle (Q532944) /m/0h1cdwq alvin and the chipmunks 3 (Q303678) /m/03rt9 the twenty-six counties (Q27) /m/0m2kd teddy duchamp (Q494722) /m/042v_gx acoustic guitar amplification (Q31561) /m/025cbm clavinette (Q1099153) /m/025h4z judd hirsch (Q365023) /m/0bp_b2 primetime emmy award for outstanding guest actor – drama series (Q2604800) /m/032xhg jason k. bateman (Q284636) /m/034qrh american dodgeball association of america (Q908473) /m/050023 /m/050023 /m/026dcvf /m/026dcvf /m/023rwm roadrunner records artists (Q18628) /m/01t_xp_ rush abc: live from cleveland’s agora ballroom 1974 (Q203871) /m/01dw4q terihatcher (Q181490) /m/02qjj7 angry dragon entertainment (Q313788) /m/0436f4 vinnie pastore (Q512986) /m/02lfcm imperioli (Q317358) /m/03v1s transportation in indiana (Q1415) /m/0plyy terre-haute (Q492478) /m/0z4s anthony hopkins/comments (Q65932) /m/099jhq bfca critics' choice award for best supporting actor (Q922348) /m/0sx7r 1992 albertville olympics (Q9660) /m/03tmr women's ice hockey (Q41466) /m/02j9z the old continent (Q46) /m/05qhw 🇵🇱 (Q36) /m/0h1_w frederic march (Q181819) /m/0789_m tony award for best performance by a leading actor in a play (Q1445521) /m/054_mz lawrence bender (Q514913) /m/0fp_v1x klark kent singles discography (Q315711) /m/09bjv um el khatib (Q3820) /m/05zkcn5 mtv movie award for best musical moment (Q820046) /m/03mh94 loretta (robots) (Q756238) /m/05vsb7 2005 national football league draft (Q3714948) /m/01pl14 lsu (Q1521725) /m/0dckvs election ii (Q2255525) /m/02r96rf visual effects supervisor (Q8311) /m/0223bl crystal palace f.c. reserves (Q19467) /m/02vx4 fútbol (Q2736) /m/0clfdj 7th critics' choice awards (Q2818384) /m/09fqtq james wilby (Q652715) /m/0m0jc electronica (Q817138) /m/01pfr3 garbage band (Q485673) /m/07w21 ursual k. le guin (Q181659) /m/041h0 john r.r. tolkien (Q892) /m/01rrwf6 billy west (voice actor) (Q531624) /m/02dtg detroit (mi) (Q12439) /m/052nd mcgill athletics (Q201492) /m/015pdg southern rock (Q852767) /m/0m2l9 niel young (Q633) /m/0gq_v best art direction-set decoration, black-and-white (Q277751) /m/0ds11z sweeney todd soundtrack (Q212041) /m/02rjjll 2008 grammy (Q1518357) /m/032nwy michael brecker discography (Q347023) /m/0159h6 ms. emma thompson (Q168724) /m/0h5g_ neeson, liam (Q58444) /m/04rs03 siyasat (Q2347152) /m/0flw86 /m/0flw86 /m/080dwhx boardwalk empire (Q585758) /m/03w1v2 michael pitt (Q352540) /m/0c4f4 hellen hunt (Q170574) /m/0bxtg thomas jeffrey "tom" hanks (Q2263) /m/0fd3y proto-ambient (Q193207) /m/0m19t numb (portishead song) (Q191352) /m/04v8x9 ben hur (Q180098) /m/0p9sw best sound, recording (Q830079) /m/087c7 newfield it (Q152433) /m/01tlmw norwalk (connecticut) (Q54217) /m/0g5qs2k snow white and the huntsman (Q624603) /m/03_d0 jazz music (Q8341) /m/026ps1 diana krall plaza (Q155879) /m/02g3v6 saturn award for best costume design (Q971008) /m/0ds33 armageddon (1998 film) (Q208344) /m/04wqr norma jean baker mortenson (Q4616) /m/0chsq charleston heston (Q80739) /m/0dscrwf the vow (2012 film) (Q522389) /m/07ssc uk of gb and ni (Q145) /m/01rr9f courtney cox-arquette (Q58912) /m/02zsn femaleness (Q43445) /m/058ncz jesse metcalfe (Q317740) /m/03zqc1 felicity k huffman (Q190519) /m/016z5x chaplin (movie) (Q556967) /m/07f8wg mario kassar (Q1385214) /m/01dys skiskyting (Q166788) /m/0147dk will smif (Q40096) /m/01h7bb the last samurai (Q207130) /m/06cv1 robert anthony rodríguez (Q47284) /m/02jknp movie direction (Q2526255) /m/017149 edward allen harris (Q104791) /m/05hj0n kathleen quinlan (Q236696) /m/04lgymt /m/04lgymt /m/02g3gj best dance recording (Q740968) /m/0lhp1 real saragossa (Q10308) /m/02_j1w leftwingback (Q336286) /m/06cs95 into the west (mini-series) (Q1671533) /m/02nb2s mathew modine (Q318249) /m/0gq6s3 goya award for best original screenplay (Q2634446) /m/04nl83 sea inside (Q593615) /m/02rgz4 hisaishi joe (Q275900) /m/018jk2 jp-20 (Q127877) /m/0gkvb7 individual performance in a variety or music program (Q4377021) /m/03f2_rc barbera striesand (Q4636) /m/07lmxq miguel sandoval (Q935122) /m/06jzh robin wright (Q272972) /m/017s11 columbia pictures (Q186941) /m/0djb3vw restless (2011 film) (Q1782383) /m/01ty7ll elizabeth ruth grable (Q233852) /m/033hqf george raft (Q436187) /m/04bs3j sarah silverman (Q229013) /m/01j_9c university of iowa at iowa city (Q182973) /m/02mslq sanborn, david (Q178112) /m/014x77 rachel weiss (Q134077) /m/01ln5z the mummy (1999 movie) (Q202508) /m/05v8c philippines republic (Q928) /m/02j71 globe (earth) (Q2) /m/0n4m5 buncombe county, nc (Q504360) /m/0ydpd norwood park, asheville, nc (Q648501) /m/02211by chief scientist (title) (Q5287861) /m/01c6k4 avid (company) (Q385452) /m/0c1pj melvin gibson (Q42229) /m/03h_yy /m/03h_yy /m/0151ns mila jovović (Q170576) /m/05p1tzf the hangover (film) (Q219315) /m/0f830f robert clohessy (Q2126049) /m/027dtv3 jack alexander huston (Q1190693) /m/01nqfh_ tyler, brian (Q251144) /m/01c8w0 orchestra conductors (Q6989196) /m/01wl38s nick edward cave (Q192668) /m/04ztj bonds of matrimony (Q8445) /m/01d38g /m/01d38g /m/06cc_1 michael mcdonald (singer) (Q282002) /m/07c6l valve trombonist (Q8350) /m/060v34 house of wax (2005 film) (Q679679) /m/03npn Q193606 /m/0bth54 dr. grace augustine (Q24871) /m/016tt2 fox 2000 (Q434841) /m/040vk98 locus award for best sf novel (Q2576795) /m/01zkxv on her majesty's occult service (Q345249) /m/0cb4j santa ana-anaheim-irvine, california (Q5925) /m/01fpvz articles for creation/yale banner (Q2599077) /m/05m_8 athletics (Q504339) /m/06pwq faculty authoring development program and courseware authoring tools project (Q41506) /m/01sxly otto west (Q466186) /m/015fr barzil (Q155) /m/0l98s 1972 summer olympics (Q8438) /m/018dnt colm meaney (Q313671) /m/050r1z last of the mohicans (Q144483) /m/07g2b t.s.eliot (Q37767) /m/02p_7cr /m/02p_7cr /m/02_1rq santa barbara (soap opera) (Q22272) /m/02_1sj edtv (Q386291) /m/0f4x7 best actor academy award (Q103916) /m/0n0bp judgment at nuremberg (play) (Q309545) /m/0lzb8 levardis robert martyn burton jr (Q312570) /m/02grdc /m/02grdc /m/02lf0c ivan reitman (Q380272) /m/0b60sq hauro no ugoku shiro (Q29011) /m/0ggq0m classical musicians (Q9730) /m/01vvy achille-claude (Q4700) /m/04ddm4 jaws 3 (Q1199837) /m/02n4kr mystery (disambiguation) (Q13377795) /m/0gr4k best writing, screenplay based on material from another medium (Q107258) /m/0bzk8w 46th academy awards nominees and winners (Q570921) /m/03s6l2 coadm (Q770965) /m/0lsxr /m/0lsxr /m/077g7n 113th us congress (Q71871) /m/03ww_x /m/03ww_x /m/02x3lt7 hm movie (Q220591) /m/02k54 egypt (name) (Q79) /m/03xq0f /m/03xq0f /m/0p4wb lh fleet (Q9325) /m/01fc7p gallipoli 1915 (Q164983) /m/0bq0p9 british raja (Q129286) /m/0mkg accordionist (Q79838) /m/0dwsp marimbas (Q220971) /m/011yph full monty (Q775970) /m/025jfl fox searchlight (Q953040) /m/09qwmm screen actors guild award for best female actor in a leading role (Q1129487) /m/07s6fsf mba (Q191701) /m/02w2bc cmich (Q250205) /m/0fq27fp wuthering heights (2011 film) (Q1189728) /m/03kq98 kizzy waller (Q1247168) /m/01gvr1 cicely tyson/comments (Q238081) /m/0cpllql star wars episode ii.v: the clone wars (Q382289) /m/02nxhr blu-rays (Q47770) /m/01kwld dom monaghan (Q152165) /m/09wj5 orlando jonathan bloom (Q44467) /m/072kp the show about nothing (Q23733) /m/0ckd1 executive produced (Q1053574) /m/0c40vxk haywire (film) (Q249350) /m/0gx9rvq jack reacher (film) (Q590252) /m/02pp_q_ jerry belson (Q651692) /m/0d4fqn jay kogan (Q43322) /m/02r22gf bafta award for best sound (Q739633) /m/01cssf romeo plus juliet (Q463313) /m/014b4h brunel university (Q932411) /m/02hsq3m bafat award for best special visual effects (Q787127) /m/08720 wargames (Q504697) /m/032t2z richard william wright (Q190251) /m/044rvb j. k. simmons (Q150482) /m/028tv0 lead guitarists (Q901192) /m/04rcr metalicca (Q15920) /m/04r7jc christopher hampton (Q515274) /m/013x0b /m/013x0b /m/0c7ct danni minogue (Q188461) /m/026p_bs the prize (1963 film) (Q751341) /m/021sv1 sen. daniel inouye (Q312845) /m/070m6c 111th united states congress (Q170375) /m/0kzy0 brian wilson (Q313013) /m/0gbbt contrabassist (Q584301) /m/025p38 preeti zinta (Q188671) /m/04jwjq aya tere dar par (Q106819) /m/02cl1 /m/02cl1 /m/0jmdb denver larks (Q162954) /m/03lpp_ hall of fame ring of honor (washington, d.c.) (Q825838) /m/083jv whiter (Q23444) /m/0401sg resident evil (movie) (Q153484) /m/02r_d4 jeffreytambor (Q320204) /m/0284n42 kevin o'connell (sound engineer) (Q1378692) /m/0pc62 pearl harbor (movie) (Q194413) /m/07gyv tae kwan do (Q36389) /m/0146pg john williams (Q131285) /m/0dqytn the witches of eastwick (film) (Q785087) /m/064t9 pop song (Q37073) /m/0168cl james william buffett (Q726071) /m/0jcgs great salt lake county, utah territory (Q484556) /m/0f2r6 grid plan (salt lake city) (Q23337) /m/0170_p hurricane (1999 film) (Q832732) /m/033nzk chile football team (Q172025) /m/06y9c2 bronx wentz (Q310166) /m/0cqhk0 screen actors guild award for outstanding performance by an ensemble in a comedy series (Q2529789) /m/08wq0g william charles schneider (Q2238008) /m/01cv3n avant garde (band) (Q343069) /m/025vry korngold (Q313371) /m/0f2wj hollywood, los angeles, ca (Q34006) /m/01ct6 baltimore ratbirds (Q276539) /m/0g3zpp 2007 national football league draft (Q434762) /m/0bdw1g Q1285517 /m/039fgy nancy krieger weston (Q1247510) /m/05b1610 golden raspberry award for worst screenplay 1980–2000 (Q1421666) /m/0dj0m5 christopher columbus: the discovery (Q780197) /m/06n7h7 natalie leticia morales (Q2617927) /m/03ldxq ann curry (Q966379) /m/01n5309 james fallon (Q335680) /m/09qvc0 primetime emmy award for outstanding guest actor – comedy series (Q530923) /m/0fgpvf '' girl with a pearl earring '' (Q392441) /m/0209xj lost on location (Q107270) /m/0209hj gandhi movie (Q202211) /m/0kr5_ richard attenborough, baron attenborough (Q51506) /m/06x68 st.louis cardinals (Q504309) /m/05kcgsf 1965 major league baseball season (Q1649567) /m/01vvycq deliverance (ep) (Q7542) /m/0187y5 burt reynolds (Q202148) /m/09sb52 screen actors guild for outstanding cast - motion picture (Q518675) /m/07k53y /m/07k53y /m/02vkdwz halfback (american football) (Q589410) /m/02qggqc chris lebenzon (Q1077467) /m/0fg04 lady van tassel (Q208592) /m/05gml8 lauren holly (Q229560) /m/03m8lq amanda peet filmography (Q131332) /m/07kb5 tomaes (Q9438) /m/02jcc /m/02jcc /m/0hn10 gblt (Q17884) /m/02py4c8 angels in america (tv miniseries) (Q937342) /m/018vs fretless bass guitar (Q46185) /m/0150jk nickelback greatest hits (Q483802) /m/0hmr4 alvy singer (Q233464) /m/01csvq diane keaton filmography (Q102642) /m/018wng best documentary short subject (Q1425151) /m/0fr63l mighty joe young (1998 film) (film) (Q525128) /m/01vlj1g matthew broderick (Q28755) /m/04fzfj godzilla (1998) (Q24075) /m/01bgqh grammy award for record of the year (Q843219) /m/01bx35 grammy awards of 2001 (Q777063) /m/05kj_ geography of oregon (Q824) /m/0mx4_ linn county, or (Q506015) /m/059f4 us-nh (Q759) /m/05g3b bay state patriots (Q193390) /m/09byk all those moments (Q213574) /m/04306rv germanophone (Q188) /m/05jx2d montpellier hsc (Q19513) /m/04zx3q1 /m/04zx3q1 /m/065y4w7 traditions and student activities at the university of southern california (Q4614) /m/06w87 guitar/steel (Q2617520) /m/041ly3 curtis armstrong (Q1145528) /m/0c_j5d marvel entertainment group (Q1200552) /m/02_286 new york n.y. (Q60) /m/01w3v cornell university historic sites (Q49115) /m/05qjt physics/further reading (Q413) /m/02w7gg english/anglo-saxons (Q42406) /m/08f3b1 sara palen (Q43144) /m/01vj9c bass (instrument) (Q810447) /m/04dn09n golden globe award for best screenplay (Q849124) /m/09q_6t 1999 golden globes (Q577982) /m/07lt7b marion cotillard/comments (Q8927) /m/094qd5 bafta award for best actress 1952–1959 (Q687123) /m/026mfbr step brothers (movie) (Q1345077) /m/01hp5 smylex (Q116852) /m/0338lq polygram pictures (Q1983457) /m/042rnl wen jiang (Q716069) /m/02z3r8t new york, i love you (film) (Q44935) /m/06npd svk (Q214) /m/09qj50 primetime emmy award for outstanding lead actress - comedy series (Q1287335) /m/0kfpm the mtm show (Q615944) /m/043djx 31st u.s. congress (Q4634895) /m/05fkf from murphy to manteo (Q1454) /m/03gwpw2 12th satellite awards (Q1716894) /m/061681 sewell & marbury (Q107226) /m/0274ck hevydevy (Q335629) /m/01hp22 qymnastics sports (Q326827) /m/0jf1b robert louis "bob" fosse (Q313256) /m/0dzfdw tony award for best choreography (Q639542) /m/01r97z striptease (movie) (Q1141460) /m/02w0dc0 albert wolsky (Q726671) /m/012cj0 terence steven mcqueen (Q159347) /m/012c6x jackie cooper (Q372073) /m/06mzp swissenergy (Q39) /m/0l998 1968 mexico city olympic games (Q8429) /m/0p_sc midnight express (soundtrack) (Q174699) /m/05kfs stone's law (Q179497) /m/0kbvb the 2004 summer olympics (Q8558) /m/096f8 articles for creation/british showjumping (Q211773) /m/01qzyz 12-string acoustic guitar (Q678090) /m/0gkz15s the hunger games (2011 film) (Q212965) /m/02k_4g ellenor frutt (Q1132439) /m/0fbvqf primetime emmy award for outstanding supporting actor - drama series (Q1286639) /m/018ctl xxi olympic winter games 2010 (Q9674) /m/03hjv97 merry widow (Q1219026) /m/076lxv edwin booth willis (Q462905) /m/08gsvw quantom of solace (Q181540) /m/0g1rw m-g-m (Q179200) /m/0f8l9c the french colonial empire (Q142) /m/0lpp8 burgandy (Q1173) /m/087wc7n lorax (2012) (Q786594) /m/0hzlz rephaboliki ya afrika borwa (Q258) /m/018db8 joaquin pheonix (Q185140) /m/0mdqp ben stiller (Q47100) /m/035xwd wilkinson home for boys (Q1145732) /m/09p35z starter for ten (film) (Q926238) /m/0415svh gary goetzman (Q3098559) /m/0jm3v manhattan knicks (Q131364) /m/03_gd james cameron (Q42574) /m/07s467s greenie (environmentalist) (Q3578589) /m/0cwrr sesamestreet (Q155629) /m/01mvth jerry nelson (Q468028) /m/04yj5z john lequizamo (Q295233) /m/03ckwzc miracle at st anna (Q1002100) /m/03qd_ harry schearer (Q345325) /m/07hpv3 nigger moment (Q2456777) /m/0vgkd dark-comedy (Q53094) /m/0jzw col. walter e. kurtz (Q182692) /m/03k9fj top 100 adventure films (Q319221) /m/01jfsb medical thrillers (Q182015) /m/0dsvzh gone, baby, gone (Q247182) /m/084qpk grindhouse film (Q679023) /m/058kqy eli roth filmography (Q358714) /m/0288zy center for contemporary music (Q638859) /m/0785v8 john hawkes (ne perkins) (Q459384) /m/05ml_s timothy olyphant (Q309835) /m/04bd8y richard schiff (Q355209) /m/02hxhz big daddy (1999 film) (Q509025) /m/05b__vr iqbal theba (Q2411441) /m/064nh4k ushkowitz (Q233739) /m/0b73_1d true grit (2010 film) (Q326114) /m/02kxbwx /m/02kxbwx /m/02l840 kanye west (Q15935) /m/01wmxfs jaime fox (Q171905) /m/02773nt robert carlock (Q7342763) /m/02773m2 john riggi (Q6254937) /m/02778pf marci klein (Q6757069) /m/0pv2t goodbye girl (Q679746) /m/027986c los angeles film critics association award for best actor (Q503034) /m/0164qt renard (james bond) (Q212145) /m/02sg5v bond 14 (Q332368) /m/016jhr jambands (Q2095173) /m/025xt8y trey anastasio (Q466302) /m/02lfl4 anthony sirico (Q726201) /m/0521rl1 matt servitto (Q910854) /m/01bh3l kwazulu/natal (Q81725) /m/01_vrh zanele hlatshwayo (Q185591) /m/01pcq3 anna paquin filmography (Q199884) /m/03h_9lg huge ackman (Q129591) /m/07p__7 partisan mix of congressional delegations, 109th congress (Q168778) /m/02q_cc kathleen kennedy (producer) (Q237207) /m/0kx4m lfl (Q242446) /m/034x61 dempsey racing (Q212518) /m/066m4g tr knight (Q40032) /m/02z13jg prix d'interprétation masculine du festival de cannes (Q586140) /m/016khd hurt, william (Q105825) /m/05kjc6 deportivo cali (Q663400) /m/0_3cs geography of allentown, pennsylvania (Q142811) /m/0mwl2 lehigh county, pa. (Q494117) /m/02ndbd garry marshall tv shows (Q315087) /m/06_wqk4 valentine's day (2010 film) (Q244975) /m/03ds3 william gary busey (Q312081) /m/013kcv tulsa (ok) (Q44989) /m/019lwb sociedade esportiva palmeiras (Q80964) /m/05jzt3 walk the line (film) (Q154077) /m/0hnlx ארנולד שנברג (Q154770) /m/0fhp9 w (Q1741) /m/02h4rq6 bachelor of science in applied science and technology (Q787674) /m/088tb zoology (Q431) /m/0l6ny 1984 los angeles olympic games (Q8456) /m/0dwvl celesta (Q320341) /m/02z9hqn evangelion: 2.0 you can (not) advance (2009) (Q614200) /m/09qv3c primetime emmy award for outstanding supporting actor - comedy series (Q1285970) /m/02nf2c arthur dietrich (Q808487) /m/0152cw a night without armor (Q229018) /m/0hr3c8y 2012 screen actors guild awards (Q928329) /m/08w7vj graham, stephen (Q442547) /m/032_jg casey affleck (Q270730) /m/06z8s_ oceans eleven (Q205447) /m/0dky9n ralph e. winters (Q376563) /m/0147sh quo vadis? (1951 film) (Q938137) /m/01yk13 john lithgow (Q311271) /m/0cqh46 screen actors guild award for outstanding performance by a male actor in a leading role in a miniseries or television movie (Q2665878) /m/02lk1s robert smigel (Q779151) /m/047byns primetime emmy award for outstanding writing for a variety series (Q1265782) /m/01w61th ricky martin the european experience (Q128799) /m/02681vq Q6496405 /m/0dwtp bells-orchestra (Q626035) /m/0kv2hv norbit (Q1129534) /m/04tc1g adventures of pluto nash (Q655051) /m/05lls p:op (Q1344) /m/0pcc0 рахманинов (Q131861) /m/069ld1 desmond harrington (Q445146) /m/01j5x6 jonathan lee miller (Q7516) /m/07tgn the university of oxford (Q34433) /m/0ymbl st. catherine's college, oxford (Q2706734) /m/03m5k bow harp (Q47369) /m/018mxj easyjet/comments (Q191551) /m/03w5xm Q10771800 /m/0344gc coronji calhoun (Q1124875) /m/02x1dht satellite award for best original screenplay (Q765404) /m/0fkvn state governor (Q132050) /m/07cfx taswegian (Q34366) /m/05qd_ paramount british (Q159846) /m/04969y phil towle (Q1321023) /m/01v3s2_ fred armison (Q14535) /m/0pz7h damian francisco (Q14540) /m/01vksx pirates of the caribbean (movie) (Q46717) /m/07fb8_ super 35 (Q2518956) /m/019rg5 kenya-africa (Q114) /m/0265v21 /m/0265v21 /m/026dg51 /m/026dg51 /m/065b6q swedish-american (Q115026) /m/0htlr isabella rossilini (Q203840) /m/03cvwkr tough guys don't dance (film) (Q1617794) /m/019z7q andreas wilson (Q180962) /m/01hxs4 matthew langford perry (Q171758) /m/02cttt buffalo suny (Q681025) /m/04sx9_ riegert (Q1339019) /m/04411 j. dewey (Q131805) /m/0ddd9 nobel laureates in literature (1951-1975) (Q37922) /m/050rj janeen rae heller (Q1144761) /m/04gknr rules of engagement (film) (Q698033) /m/07q1v4 isham, mark (Q528663) /m/01sp81 richard grant esterhuysen (Q380856) /m/0bn9sc bradley scott jones (Q299228) /m/02279c rotherham united (Q48950) /m/027rwmr michael lantieri (Q1476230) /m/03h26tm ken ralston (Q8728) /m/02qflgv joanne froggatt (Q143223) /m/01lbp @carmenelectra (Q185122) /m/01jv_6 british columbia lions (Q919062) /m/06b1q signal caller (Q622747) /m/01qb5d x2: x-men united (Q219776) /m/0vmt state of arizona (Q816) /m/04n6k library of congress catalog scheme (Q621080) /m/03d_w3h gilian anderson (Q485298) /m/0fq9zdn /m/0fq9zdn /m/04jjy gay woman (Q6649) /m/0963mq she hate me (Q519592) /m/02wzl1d 65th golden globes (Q333006) /m/0b6tzs friendo (Q183081) /m/01hhvg university of riverside, riverside, ca, usa (Q1075148) /m/036hv geological feature (Q1069) /m/05zbm4 joseph gordon leavitt (Q177311) /m/03_vx9 rebel and a basketcase (Q229230) /m/0cwy47 cleopatra (1963 film) (Q4430) /m/06f0dc partisan mix of congressional delegations (Q170018) /m/0hjy regions of alaska (Q797) /m/01kwlwp the family (choir) (Q1349627) /m/0n1h artiste (Q483501) /m/0r62v crane country day school (Q159288) /m/0jbk9 department of housing and urban development (Q811595) /m/03f5spx remix & soundtrack collection (Q179257) /m/04q7r catlin (music) (Q180733) /m/03s0w ia (Q1546) /m/05sfs بروتستانتي (Q23540) /m/04f525m international distribution company (Q632323) /m/0fh694 u north (Q694140) /m/03gm48 andré braugher (Q463397) /m/0d0vj4 rick cheney (Q48259) /m/012t_z american businessman (Q43845) /m/015grj alan arkin (Q108283) /m/03pmty tate donovan (Q302650) /m/01q7cb_ frederick durst (Q44707) /m/03knl hallie berry (Q1033016) /m/017gl1 the lord of the rings, the fellowship of the ring (Q127367) /m/0yfp miller, arthur (Q80596) /m/04kkz8 patch adams (movie) (Q782822) /m/04l3_z oedekerk, steve (Q562063) /m/06pk8 richard koufey (Q259913) /m/03y_f8 /m/03y_f8 /m/075q_ lazio fc (Q2609) /m/0134w7 emma c. d. watson (Q39476) /m/0487c3 jason roberts (athlete) (Q356480) /m/01bdxz torquay utd (Q47965) /m/0m_mm giant (1956 film) (Q669592) /m/0k6nt daenemark (Q35) /m/081lh woody allen films (Q25089) /m/0dxtg scenario writer (Q28389) /m/01tspc6 imaelda staunton (Q234798) /m/0151w_ benjamin g. affleck (Q483118) /m/0mw89 westmoreland county, pennsylvania (Q495645) /m/0mw93 washington county, pa (Q497200) /m/01cr28 kazan, russia (Q900) /m/03mqj_ rubin (football club) (Q170040) /m/0p9lw still (alanis morissette song) (Q40187) /m/099tbz bfca critics' choice award for best acting ensemble (Q922396) /m/0dn16 bubble gum pop (Q997481) /m/07qnf monkees, the (Q464036) /m/067jsf shree amma yanger ayyapan (Q270691) /m/01jrz5j seymour kaufman (Q1146861) /m/0xhtw 1990s hard rock (Q83270) /m/01gf5h when bad does good (Q270935) /m/0_b3d in the name of the father (1993 film) (Q304074) /m/03gj2 architecture of hungary (Q28) /m/01vv7sc uhf (Q14045) /m/0f94t harlem (manhattan) (Q189074) /m/06krf3 mommie dearest (movie) (Q282827) /m/03c7tr1 raspberry award for worst actress (Q602866) /m/05zvq6g european film award for best actress (Q1377738) /m/01m13b dancer in the dark (Q110365) /m/01d5z the red sox (Q213959) /m/07w0v plan ii honors (Q49213) /m/0bwfwpj kelvin gasoline (Q379877) /m/06n90 science fiction literature (Q24925) /m/0jtdp documentory (Q93204) /m/04dsnp sicko (film) (Q382882) /m/0456xp sienna rose (Q193458) /m/04shbh daniel wroughton craig (Q4547) /m/01fkv0 terrence stamp (Q77298) /m/019_1h omar al-sharif. (Q170515) /m/0f0p0 alfred mullane (Q181774) /m/0crfwmx tinker bell and the mysterious winter woods (Q1702819) /m/0ctw_b new zealand at the 2015 commonwealth youth games (Q664) /m/05fhy nebraska constitution (Q1553) /m/04ych /m/04ych /m/056xx8 1. fc dynamo dresden (Q141931) /m/02bn_p 106th us congress (Q3596897) /m/032ft5 /m/032ft5 /m/08433 william s burroughs (Q188176) /m/012cph dashiell hammett (Q186335) /m/04hpck richard williams (Q352730) /m/02hrh1q american actor (Q33999) /m/02x73k6 national society of film critics award for best supporting actor (Q165313) /m/02t__l joel katz (Q316641) /m/08hmch wolverine movie (Q217552) /m/080h2 un/locode:cavan (Q24639) /m/09_bl short-track speed skating (Q193654) /m/05q96q6 '' robin hood '' (Q223559) /m/04wvhz brian grazer (Q320025) /m/0bz5v2 john oliver (Q1701254) /m/03gjzk television producer (Q578109) /m/0kz2w student sexuality information services (Q49119) /m/05pcjw private university (india) (Q902104) /m/08r4x3 bobby (2006 film) (Q679657) /m/02qm_f the incredibles (soundtrack) (Q213326) /m/012t1 arthur laurent (Q710334) /m/048scx thirteen days (movie) (Q128730) /m/02hxc3j iso 639:ro (Q7913) /m/041rx yahood (Q7325) /m/0jdhp tim-blake nelson (Q515095) /m/05_k56 andrew stanton (Q328723) /m/0gqzz academy awards/animated feature (Q106800) /m/049yf kyûshû (Q13987) /m/05gqf 长崎 (Q38234) /m/057d89 bell-phillip television productions inc. (Q3568752) /m/01sxq9 bibi neuwirth (Q232985) /m/086vfb tony award for best performance by a featured actress in a musical (Q2005201) /m/021_rm robert michael iler (Q862039) /m/02r3zy foo fighters band members (Q483718) /m/04v3q republic of malta, g. c. (Q233) /m/01rz1 europaradet (Q8908) /m/02rdxsh national society of film critics award for best film (Q1720784) /m/092vkg capote (film) (Q463615) /m/049dyj kevin nealon (Q449531) /m/0bshwmp just go with it (Q747496) /m/01wtlq 21st century music (Q612024) /m/01x66d yiannis chrysomallis (Q234716) /m/0jqp3 harley-davidson easy rider chopper (Q503638) /m/0170vn peter fonda (Q210148) /m/02d44q in america (film) (Q1536722) /m/01_mdl otis (superman) (Q213053) /m/01pr_j6 himesh reshamiyya (Q1395430) /m/03t97y mummy returns (Q320461) /m/0f3zf_ dean cundey (Q497036) /m/0k2sk the roger rabbit (Q379873) /m/09q5w2 general quintus (Q128518) /m/089fss /m/089fss /m/0l8z1 academy award for best original music score (Q488651) /m/01c22t monster's inc (Q187726) /m/0l6m5 barcelona'92 (Q8488) /m/0jm_ american rules football (Q41323) /m/02yw5r 72nd academy awards (Q429319) /m/02gys2 olympique marseille (Q132885) /m/0dy68h sco angers (Q845137) /m/01b1mj gonzaga u (Q1537303) /m/03x3wf grammy lifetime achievement award (Q935843) /m/01vrncs robert milkwood thomas (Q392) /m/0g2c8 rock and roll hall of fame museum (Q179191) /m/02whj frank vincent zappa (Q127330) /m/0lk90 /m/0lk90 /m/035gjq nicollette sheridan (Q229440) /m/01mc11 po'keepsie (Q178093) /m/0gkkf jesus college cambridge (Q1146700) /m/01nv4h uk pound (Q25224) /m/03qx63 fc spartak-d moscow (Q29112) /m/06fvc red (color) (Q3142) /m/01k2wn college of social studies (Q49167) /m/016tw3 universal films (Q168383) /m/07bdd_ worst picture (Q1780634) /m/0wh3 anarbour (Q485172) /m/019f4v golden globe award for best director - motion picture (Q586356) /m/0jjy0 signs of anti-semitism (Q22432) /m/01g4zr walt lantz (Q703759) /m/0yc84 new rochelle, n.y. (Q744948) /m/0cqh6z screen actors guild award for best actress - drama series (Q2414873) /m/09qvms 12th screen actors guild awards (Q1753207) /m/047g8h kicker (Q1638113) /m/01y3c carolina panther (Q330120) /m/06b0d2 mehcad (Q981809) /m/03lt8g eva longoria filmography (Q163263) /m/0_92w william munny (Q104137) /m/039bp eugene hackman (Q150943) /m/03rtz1 north (1994 film) (Q1072666) /m/0bynt outdoor track and field (Q3312129) /m/09pmkv etymology of malaysia (Q833) /m/05nmg_ raja c.a. (Q1051514) /m/06wcbk7 universal motown records (Q4005789) /m/016kjs tha drought ii (Q15615) /m/0h1mt jane fonda foundation (Q41142) /m/02x8m retro-funk (Q164444) /m/01wbgdv chaka khan (Q229498) /m/01nvmd_ mandy patinkin (Q267097) /m/0jyx6 manhattan (1979 film) (Q731310) /m/0cc56 manhattan (ny) (Q11299) /m/0bdwft Q1285983 /m/0c5dd it happened one night (1934) (Q208632) /m/030pr frank robert capra (Q51492) /m/04vr_f departed (Q172975) /m/07c0j /m/07c0j /m/02bqn1 one hundred-second congress (Q347346) /m/059_c navada (Q1227) /m/01gjd0 first indochinese war (Q748780) /m/0356lc confederation of african football (Q168360) /m/04b4yg sierra leonean national football team (Q330148) /m/0j3b atlantic basic (Q97) /m/014zfs bill cosby, jr. (Q213512) /m/018gz8 comedy performer (Q245068) /m/07kc_ theramin (Q207691) /m/02qjv electronics (music) (Q1327500) /m/0h1m9 arthur farnsworth. (Q71206) /m/0h3xztt the best exotic marigold hotel (Q830295) /m/02g839 berklee school of music (Q248970) /m/0lgsq etheridge, melissa (Q270669) /m/0ym8f the queen's college (Q73094) /m/02lp1 electrical engingeering (Q43035) /m/0dhdp ledeborg (Q83065) /m/083p7 william mckinley,jr (Q35041) /m/02y0js signs and symptoms of stroke (Q12202) /m/083q7 w. wilson (Q34296) /m/049n7 royals roster (Q744530) /m/02x2khw 2003 first-year player draft (Q4601563) /m/099c8n critics' choice movie award for best picture (Q922299) /m/0c0nhgv moneyball (film) (Q221820) /m/018y2s save me (dave matthews song) (Q380381) /m/05148p4 keyboard instrument (Q52954) /m/06gmr rio de janeiro, rio de janeiro (Q8678) /m/0473m9 california school of arts and crafts (Q1026804) /m/02lfns dominic chianese (Q460688) /m/09gdm7q democra security (Q701892) /m/09vw2b7 sfx supervisor (Q8313) /m/0207wx dore schary (Q457497) /m/0872p_c transformers: the dark of the moon (Q232774) /m/047yc abdullah al-saleh (Q817) /m/02_5h iceskaters (Q38108) /m/0g48m4 lebanese-americans (Q6510842) /m/019y64 drop-kick doug (Q1251736) /m/053rxgm the expendables (2010 film) (Q206374) /m/05m883 jim taylor (writer) (Q1335583) /m/02n9nmz bafta award for best adapted screenplay 1983–1999 (Q739694) /m/0b68vs jason rae (musician) (Q231472) /m/04n7njg dan povenmire (Q935609) /m/09jwl teenage musicians (Q639669) /m/02v63m scream iii (Q391784) /m/033g4d lw4 (Q429397) /m/05h4t7 silver pictures (Q1188938) /m/0y54 godenzonen (Q81888) /m/02r34n peter coyote (Q354873) /m/0xkq4 englewood (nj) (Q986210) /m/02w9895 siobhan margaret finneran (Q3485101) /m/02pkpfs allen leech (Q2152459) /m/07sc6nw kikkokalabud/sandbox/sp (Q621587) /m/092c5f 10th screen actors guild awards (Q742625) /m/02gvwz sean been (Q191104) /m/0pqc5 acting mayor (Q30185) /m/05ksh antrim, ontario (Q1930) /m/02r5w9 bruce beresford (Q449220) /m/02pqp12 bafta award for best direction 1968-1984 (Q787131) /m/0pv3x the english patient (1996 movie) (Q63026) /m/016t_3 Q4000966 /m/01wdl3 university of alabama-tuscaloosa (Q492318) /m/0gj8t_b rock of ages (2012 movie) (Q651060) /m/07ylj /m/07ylj /m/02sjf5 jerome bernard orbach (Q421707) /m/04cf09 christopher david noth (Q336185) /m/01vrt_c p!nk (Q160009) /m/02lnhv ling bai (Q464612) /m/0sz28 shawn penn (Q44221) /m/0gjk1d matthew poncelet (Q587891) /m/018f8 hedley lamarr (Q957323) /m/0k4gf mendelsson bartholdy (Q46096) /m/07xzm u-bass (Q61285) /m/01ztgm dennis keith rodman (Q201608) /m/0fvxz history of trenton, new jersey (Q25330) /m/0fm2_ hull jazz festival (Q128147) /m/02prw4h talk to me (2007 film) (Q2390402) /m/03bx2lk g-force (film) (Q784444) /m/0277jc basel university (Q372608) /m/04jzj lenhard euler (Q7604) /m/03f1zdw a foreign country (film) (Q162492) /m/016gr2 derek jacobi (Q256164) /m/020fcn master and commander: the far side of the world (Q1125384) /m/01qbl /m/01qbl /m/0r1yc carmel by the sea, california (Q625458) /m/01n7q califronia (Q99) /m/05z_kps fish tank (film) (Q557596) /m/059j2 /m/059j2 /m/026390q thelma and louise (Q658041) /m/01vrz41 elton john awards (Q2808) /m/0c4z8 grammy award for song of the year 1960s (Q1027904) /m/04zd4m don heck (Q2548090) /m/01sn04 jamaica ny (Q1320403) /m/0m77m doris may lessing ch, obe (Q40874) /m/045bg jacques guillemin (Q9364) /m/02g8mp /m/02g8mp /m/05pdbs /m/05pdbs /m/01xvb cleveland browns (Q223527) /m/023wyl shutdown corner (Q869161) /m/05cgv republik federaal bu niiseriya (Q1033) /m/02lq5w silver medalist (Q847956) /m/0gr0m best cinematography, color (Q131520) /m/0h1nt mary elizabeth spacek (Q190994) /m/0gqwc academy award for best actress (Q103618) /m/02pxmgz the green effect (Q681092) /m/01k5t_3 chris thomas king (Q4382250) /m/0fvvz batton rouge (Q28218) /m/07_kq vilniaus (Q216) /m/01tcf7 jason n. robards, jr. (Q296630) /m/01yb09 jay's journal of anomalies (Q1516734) /m/02c6d dressed to kill (1980 movie) (Q980308) /m/0gjvqm la viola davis (Q229181) /m/02z0dfh national society of film critics award for best supporting actress (Q1967719) /m/0hv1t all that jazz (film) (Q1353441) /m/09728 heel (bread) (Q7802) /m/0h1wg (2s)-2-amino-4-methylpentanoic acid (Q483745) /m/04hwbq toy story three (Q187278) /m/07_3qd graham gouldman (Q540655) /m/02qrv7 007 the living daylights (Q272064) /m/0g5pv3 lisl von schalf (Q332330) /m/0dgst_d my week with marilyn (Q581859) /m/0345h etymology of germany (Q183) /m/05c1t6z 61st primetime emmy awards (Q1338932) /m/0277470 don scardino (Q2745262) /m/07brj tamburino (Q193666) /m/0bm02 bombo (music) (Q211028) /m/0137n0 willy nelson (Q206112) /m/01v0sx2 usa for africa (Q1165609) /m/04wgh maghrib al-aksa (Q1028) /m/04ykg religion in minnesota (Q1527) /m/0pmq2 st. john brebeuf school (winnipeg) (Q2135) /m/01bzw5 loyola university of los angeles (Q1786078) /m/0swbd nagano 1998 olympic bid (Q9664) /m/016hvl pier pasolini (Q25120) /m/028p0 durante (Q1067) /m/0358x_ general hospital (1963-1977) (Q1136370) /m/04wtx1 /m/04wtx1 /m/01wdqrx steve jordan (musician) (Q2353921) /m/0cnztc4 the devil's double (Q2226293) /m/0ch6mp2 location sound recordist (Q2961972) /m/01t6b4 bruckheimer films (Q217037) /m/07vc_9 daniel sallis "danny" huston (Q357762) /m/09dt7 roger joseph christopher zelazny (Q295406) /m/02662b nebula award for best novelette (Q936683) /m/01v42g jason flemyng (Q472504) /m/0blbxk taraji p henson (Q235511) /m/01kx_81 melanie hamrick (Q128121) /m/03kwtb dave a stewart (Q325389) /m/07g_0c the weather man (Q60296) /m/0bg539 the humourbeasts (Q439315) /m/03s5lz analyse this (Q1141746) /m/022_6 county palatine of cheshire (Q23064) /m/03x746 lille losc (Q19516) /m/032_wv election (1999 film) (Q1206261) /m/0n6f8 reese witherspoon filmography (Q44063) /m/01b9ck zanuck, darryl f. (Q364342) /m/05k2s_ tom noonan (Q1339951) /m/0m7fm history of armstrong county, pennsylvania (Q494186) /m/0fj52s karrot (Q81) /m/08lb68 hexadecenoic acid (Q412366) /m/02mjs7 legal degree (Q4115013) /m/02583l community and legal aid services programme (Q3016196) /m/0gq9h academy award for outstanding picture (Q102427) /m/04mzf8 rebecca (1940 film) (Q204212) /m/05fg2 norman foster, baron foster of thames bank (Q104898) /m/02jx1 england, u.k. (Q21) /m/069q4f stop! or my mom will shoot (Q254555) /m/07cbcy golden raspberry award for worst actor - motion picture musical or comedy (Q602299) /m/0gs9p academy award for directing (Q103360) /m/05drq5 robert benton (Q59085) /m/053tj7 inside deep throat (Q1664537) /m/017fp blpseealso (Q36279) /m/07ww5 u. s. virgin islands (Q11703) /m/0416y94 julie and julia (2009 film) (Q380848) /m/0drsm auburn, new york micropolitan area (Q115182) /m/0xy28 history of auburn, new york (Q225519) /m/01vs14j larry mullen, jr (Q814065) /m/01qvgl aimee mann (Q239587) /m/0gqz2 best song academy award (Q112243) /m/04t7ts philip baker hall (Q447669) /m/0n5fl hunterdon county, new jersey (Q502451) /m/01lhy classical scholars (Q841090) /m/0kn4c first premiership of william pitt the younger (Q128902) /m/03m4mj husbands and wives (Q740143) /m/01vfqh barton fink (Q237215) /m/03qlv7 tenor saxophone (Q1414932) /m/01l4zqz joshua redman (Q361927) /m/026q3s3 detective conan: captured in her eyes (Q2840937) /m/0pz91 jackie titone (Q132952) /m/05pcn59 mtv movie award for best kiss (Q257235) /m/0ftf0f /m/0ftf0f /m/09qr6 williams, robbie (Q47875) /m/017cjb stoke pride (Q134902) /m/03cs_z7 craig thomas (screenwriter) (Q3002075) /m/07s6tbm pamela fryman (Q460221) /m/05lb87 mark moses (Q442300) /m/030znt alfre woodward (Q526620) /m/049bmk a.s. livorno calcio (Q6767) /m/0pgjm leonard kosnowski (Q1384181) /m/0jmfv vancouver grizzlies (Q165529) /m/01pv51 power forward (basketball) (Q462471) /m/01ngz1 u south dakota (Q1305521) /m/06mz5 mt. rushmore state (Q1211) /m/0w0d bowmen (Q108429) /m/035qy griekenland (Q41) /m/0h7x etymology of austria (Q40) /m/01lfvj cremona violins (Q6231) /m/02knnd allen lad (Q346280) /m/0284jb north hollywood, ca (Q1319697) /m/09lbv drum player (Q386854) /m/08pgl8 u.s. sassuolo (Q8603) /m/01c9f2 grammy award for best country & western album (Q4994728) /m/019bk0 45th annual grammy awards (Q1542326) /m/058x5 mormonite (Q747802) /m/047msdk 500 days of summer (Q154935) /m/0bwh6 clinton "clint" eastwood, jr. (Q43203) /m/07ng9k gate keepers 21 (Q579962) /m/0136g9 richard curtis (Q355300) /m/014mlp ba (Q1765120) /m/07tl0 christs college, cambridge (Q714717) /m/0gmcwlb the artist (movie) (Q171861) /m/0prjs kenneth branagh (Q55294) /m/01kff7 wild, wild west (Q740528) /m/015rmq george sholti (Q128085) /m/095w_ transport in budapest (Q1781) /m/0262zm hugo award for best short fiction (Q1056251) /m/01963w c. j. cherry (Q234030) /m/05cv94 ronald william miller (Q2165499) /m/01wcp_g john roger stephens (Q44857) /m/0gcdzz maulik pancholy (Q1338610) /m/0dl5d progressive rock'n'roll (Q49451) /m/04dqdk jean-jaques goldman (Q44709) /m/01yh3y corey gregg burton (Q965261) /m/0np9r voice artist (Q2405480) /m/048lv kevin spacy (Q25144) /m/044g_k superman returns/comments (Q328695) /m/0dtfn a new hope (film) (Q17738) /m/0343h george walton lucas, jr (Q38222) /m/05mt_q champagne papi (Q33240) /m/01c427 grammy award for best new artist (Q1453643) /m/0bjrnt /m/0bjrnt /m/05f7s1 university of allahabad (Q2005647) /m/017gm7 the lord of the rings: the two towers (2002 film) (Q164963) /m/0f721s 20th century fox tv (Q2717612) /m/019nnl family guy (pinball) (Q5930) /m/0fr59 cecil county (Q385365) /m/01k8rb laura flynn boyle (Q486103) /m/01j4ls chris isaak (Q313009) /m/011zf2 yo-yo ma, mǎ yǒuyǒu (Q234891) /m/03xgm3 christopher stephen botti (Q714411) /m/013cr albert lawrence brooks (Q356303) /m/0sxfd terms of endearment (movie) (Q185071) /m/02l7c8 romantic films (Q1054574) /m/04mz10g sam trammel (Q40124) /m/04y79_n nelsan ellis (Q40299) /m/0r7fy modesto metropolitan area (Q204561) /m/0ftps rick wakeman (Q312053) /m/031zkw lou diamond phillips (Q319725) /m/0zc6f dunfries, scotland (Q652035) /m/01yhvv elisha ann cuthbert (Q188500) /m/01r32 cowtown (Q36312) /m/067mj mike's groove (Q921267) /m/01p9hgt gagged but not bound (Q577975) /m/024rbz focus features international (Q649649) /m/09p0ct the constant gardener (film) (Q645168) /m/0162c8 brett rattner (Q319204) /m/043q6n_ neal moritz (Q928022) /m/03fghg tomoyuki morikawa (Q460361) /m/02vw1w2 bleach: the diamond dust rebellion (Q804429) /m/02rqwhl savages (Q1213010) /m/07qg8v huit femmes (film) (Q274895) /m/0p_2r lorne david lipowitz (Q521221) /m/01qhm_ germans of usa (Q141817) /m/01rh0w liv tyler (Q168763) /m/04m1bm nuovo cinema paradiso (Q464032) /m/07z1m viriginia (Q1370) /m/0mnzd un/locode:usfxx (Q501785) /m/01j_06 the hall (Q585828) /m/02g3ft saturn award for best directior (Q1265702) /m/01f7gh ellen ripley clone (Q458314) /m/022_lg vilijam friedkin (Q51582) /m/0395lw jaras (Q101401) /m/0239kh cowbell (instrument) (Q775570) /m/0ddd0gc downton abbey (Q83071) /m/0clvcx phyllis logan (Q117995) /m/0xzly maracas (Q39777) /m/01vdm0 /m/01vdm0 /m/0512p kansas city blues (western league) (Q604879) /m/017zq0 ilstu (Q558922) /m/099cng critics' choice movie award for best actress (Q922226) /m/0hr6lkl 17th critics' choice awards (Q798830) /m/054krc golden globe award for best original score 1947-1969 (Q1422140) /m/0bscw gataca (Q491800) /m/0292l3 anupham kher (Q560163) /m/033tf_ americans of irish descent (Q1075293) /m/01wjrn john christopher mcginley (Q316032) /m/02pjc1h in bruge (Q244931) /m/059x66 67th oscars (Q857001) /m/0pb33 speed (film) (Q108006) /m/04zyhx the rules of attraction (film) (Q1543439) /m/0jqn5 e.t. ii: nocturnal fears (Q11621) /m/06qd3 남한 (Q884) /m/0qm98 ordinary people (1980 film) (Q503313) /m/0cz8mkh final destination 5 (Q661847) /m/05ywg capital of czech republic (Q1085) /m/04w_7 month may (Q119) /m/02g87m jason matthew biggs (Q314421) /m/03n08b seann william scott (Q193212) /m/06w2sn5 beliebers (Q34086) /m/0gtvrv3 cosmopolis movie (Q737055) /m/0fq8f history of luxembourg city (Q1842) /m/02vklm3 /m/02vklm3 /m/03bx0bm frontman (Q1045845) /m/01vsxdm omega and the mechanical animals (Q485893) /m/0cd25 chirurgery (Q40821) /m/05sq84 richard thomas griffiths (Q314831) /m/03twd6 operation blackbriar (Q105624) /m/07t21 republic of ukraine (Q212) /m/0319l single horn (Q163759) /m/0g2dz pianica (Q512191) /m/03fts nsea protector (Q502067) /m/05qx1 etymology of panama (Q804) /m/06jk5_ golf company (nucc) (Q1681928) /m/07y9w5 monster house (2006 film (Q725842) /m/054lpb6 relativity international (Q2702789) /m/01ckbq grammy award for best female rock vocal performance (Q1542148) /m/01c6qp 1999 grammy awards (Q990545) /m/02r79_h doctor parnassus (Q578344) /m/02g9p4 plucked dulcimer (Q2145031) /m/0284gcb ron weiner (Q4354624) /m/0d_q40 evian thonon gaillard football club (Q333838) /m/02lgj6 dan grimaldi (Q634898) /m/045c66 aidan quinn (Q403902) /m/05sxzwc jonah hex (film) (Q596085) /m/01719t ali (film) (Q913545) /m/0244r8 lisa gerrard (Q40580) /m/0fpkhkz melancholia (2011 film) (Q165699) /m/0krdk finance director (Q623268) /m/0cv9b /m/0cv9b /m/05j82v /m/05j82v /m/0_7z2 easton, pa (Q1056542) /m/013y1f /m/013y1f /m/011yqc rollo tomasi (Q339876) /m/015qh bulgary (Q219) /m/04jkpgv antichrist (trier) (Q574998) /m/01znc_ turkia (Q43) /m/03y1mlp lindy hemming (Q291686) /m/029sk dislexyia (Q132971) /m/01pw2f1 alissa milano (Q189067) /m/02r4qs glen ballard (Q920983) /m/0wp9b nachez, mississippi (Q944044) /m/01t8sr tennessee a & i state university (Q1782948) /m/01_9fk land grant colleges (Q615150) /m/09z2b7 wings of the dove (Q559893) /m/060__y adapted for the screen (Q1257444) /m/01hmnh fantasy (fiction) (Q132311) /m/0340hj spider-man 3: editor’s cut (Q182212) /m/044ntk benjamin, richard (Q495813) /m/017d77 marlene gerber fried (Q1706859) /m/044mm6 malcolm david kelley (Q310553) /m/07f3xb akinnuoye-agbaje (Q294586) /m/0ft5vs /m/0ft5vs /m/02g_6j /m/02g_6j /m/04w7rn the golden compass (2007 film) (Q637021) /m/013zdg jd (Q1540185) /m/07lx1s /m/07lx1s /m/01wp8w7 ivan morrison (Q272203) /m/02lkcc michael clarke duncan (Q483148) /m/030qb3t la la land (Q65) /m/07z542 paquito d'rivera (Q527853) /m/03qnvdl bourne 4 (Q494048) /m/0bkj86 m.a. (Q2091008) /m/04_tv corporate management (Q2920921) /m/01_4z jiǎng zhōngzhèng (Q16574) /m/01c6nk militia leader (Q220098) /m/049g_xj ellen paige (Q173399) /m/02rv_dz juno (movie) (Q79503) /m/05183k john david logan (Q384004) /m/05prs8 walter parkes (Q1971768) /m/01p45_v mike nesmith (Q954997) /m/02r1c18 serious man (Q300555) /m/06c1y romania (Q218) /m/03jldb alexandrea borstein (Q116219) /m/02wcx8c peter jacobson (Q313516) /m/07y2s unitedairlines.com (Q174769) /m/0crx5w steven levitan (Q542414) /m/0124k9 list of the larry sanders show awards and nominations (Q1248938) /m/01jv1z chrysalis records (Q1088453) /m/01r9fv spyder giraldo (Q235252) /m/04nw9 first lady of television, (Q209662) /m/0d6b7 metropolis (1927 film) (Q151599) /m/0168ls i'm spartacus (Q108297) /m/0j582 kurt douglas (Q104027) /m/09y20 alan rickman filmography (Q106481) /m/05tk7y rodrigo santoro (Q294819) /m/020lpx ru-mos (Q1697) /m/0gj9qxr attack the block (Q757865) /m/0g5b0q5 2011 golden globe awards (Q180813) /m/06cgy de nero (Q36949) /m/061fhg list of comedy bands (Q1391336) /m/03qmj9 lw3 (Q437752) /m/07bs0 lawn tennis (Q847) /m/01mjq czech republic (Q213) /m/027f7dj octavia lenora spencer (Q229254) /m/05hqv farmers and settlers association (Q946040) /m/030_1m tristar pictures inc (Q651454) /m/026n4h6 i don't know who killed me (Q846088) /m/0fpjd_g /m/0fpjd_g /m/01g257 marisa tomai (Q191828) /m/01c4_6 grammy award for best alternative music album (Q1542129) /m/0ggl02 /m/0ggl02 /m/0f2df james david graham niven (Q181917) /m/01pl9g margarita carmen cansino (Q42745) /m/0_ytw un/locode:uscll (Q695511) /m/071x0k filipino male (Q4172847) /m/06by7 rock (music) (Q11399) /m/03g5jw super soaker (song) (Q192486) /m/0l15bq clapping (Q1322478) /m/03ttfc spaniards (Q160894) /m/05tfm list of pittsburgh steelers players who have been mvp (Q191477) /m/0169t république du burundi (Q967) /m/0jm2v miamiheatcoach (Q169138) /m/0ctt4z forward-center (Q1439280) /m/03cvfg mike phelps (Q39562) /m/01445t /m/01445t /m/01713c bardem, javier (Q134895) /m/01kvqc branford marsalis (Q454819) /m/02gx2k grammy award for best album cover (Q1836411) /m/021yc7p minkler, michael (Q1516833) /m/0qm8b black hawk down (movie) (Q221384) /m/02rdyk7 national society of film critics award for best director (Q1315008) /m/0p_th kramer v kramer (Q193577) /m/0tyql new bedford (ma) (Q49147) /m/02c4s arthur wellesley, 1st duke of wellington (Q131691) /m/01xd9 region dublin (Q173500) /m/05v10 art of paraguay (Q733) /m/02p21g kathi griffin (Q432437) /m/01nczg diary of a mad diva (Q240933) /m/05pbl56 salt (2010 film) (Q628139) /m/0dlglj clifton gonzalez-gonzalez (Q935167) /m/0dr_4 jack dawson (titanic) (Q44578) /m/03yl2t cameroon national football team kits (Q175309) /m/025txtg real club deportivo espanyol (Q8780) /m/0203v colin powell (Q150851) /m/073hmq 60th academy awards (Q257443) /m/0gxtknx seven psychopaths (2012) (Q59610) /m/06bnz russia (Q159) /m/0gztl southwest airlines inc (Q503308) /m/0vg8 airline companies (Q46970) /m/01xcqc oliver meredith (Q343633) /m/01mqz0 lauren becall (Q104000) /m/09x3r olympic games in berlin (Q8150) /m/02kth6 liu blackbirds women's basketball (Q1783603) /m/025ndl realm of scotland (Q230791) /m/0g78xc elector of saxony (Q156199) /m/01sbf2 robert "bobby" mcferrin, jr (Q310894) /m/01c72t composer/comments (Q36834) /m/033q4k california state-rohnert park (Q624571) /m/07s93v steven zaillian (Q291141) /m/01f1jy xi olympic winter games (Q9646) /m/02847m9 shine a light (film) (Q432102) /m/0157m clintonesque (Q1124) /m/04l8xw tv academy (Q427611) /m/09rp4r_ mark berger (sound designer) (Q13553936) /m/02lxj_ gloria fae finch (Q189407) /m/051kv methodist church (Q33203) /m/01f8gz /m/01f8gz /m/03q4nz worldcinema (Q1150666) /m/03fn8k homenetmen yerevan (Q244317) /m/0436yk dragon ball z movie 1 (Q475559) /m/013jz2 downtown youngstown, ohio (Q216820) /m/027cxsm /m/027cxsm /m/08jgk1 office, the (u.s.) (Q23831) /m/0cqt41 new york yankees/doc (Q213417) /m/02rl201 2004 major league baseball draft (Q4603026) /m/01l2fn kiera knightley (Q42581) /m/024y8p uncc (Q1783178) /m/0pmpl capital of saskatchewan (Q2123) /m/02fqwt u.s. central time (Q2086913) /m/07l24 tampa bay bucaneers (Q320476) /m/0cd2vh9 /m/0cd2vh9 /m/07s8r0 kathy baker (Q236250) /m/0bq8tmw 21 jump street (2014 film) (Q214014) /m/09pjnd richard edlund (Q8586) /m/09txzv where the wild things are (film) (Q622742) /m/017r2 brecht, bertolt eugen friedrich (Q38757) /m/0156q state of berlin (Q64) /m/05ljv7 qchord (Q604813) /m/01nzs7 sci fi pictures original movies (Q276542) /m/01f62 barcelona city (Q1492) /m/06vkl september (month) (Q123) /m/02lg9w aida turturro (Q115134) /m/01l1sq little stephen (Q354181) /m/0464pz the wire footer (Q478360) /m/01bpc9 earle, steve (Q781634) /m/01hww_ chord zither (Q370915) /m/0l12d byrne, david (Q336640) /m/07csf4 maury chaykin (Q951634) /m/0h7h6 toronto municipality, ontario (Q172) /m/015zxh la jolla, san diego, california (Q840668) /m/012x4t kailand morris (Q714) /m/0r2l7 un/locode:usjor (Q491350) /m/02bxd dijeredoo (Q189388) /m/01w4dy Q13219842 /m/02jgm0 noad advendo combinatie breda (Q332642) /m/04rwx discoveries and innovation by the massachusetts institute of technology (Q49108) /m/028lc8 ben johnson (actor) (Q349166) /m/03v6t ames college (Q1136919) /m/01mkq /m/01mkq /m/02tr7d kelly macdonald (Q230383) /m/0ck27z screen actors guild award for outstanding performance by an ensemble in a drama series (Q2530270) /m/0gp9mp russell metty (Q1312577) /m/02_hj4 rasario dawson (Q228692) /m/031t2d serleena (Q156597) /m/01v_pj6 the mighty dub katz (Q272619) /m/01j_cy michigan state college (Q270222) /m/05fnl9 bryan lee cranston (Q23547) /m/021vwt edward herrmann (Q536437) /m/02zyy4 michael soren madsen (Q220584) /m/017v_ freistaat bayre (Q980) /m/05x30m un/locode:decob (Q14821) /m/07szy michigan college (Q230492) /m/02ky346 engeneering (Q11023) /m/03ft8 eugene roddenberry (Q191716) /m/01wv9xn pink floyd filmography and videography (Q2306) /m/072x7s avner kaufman (Q152456) /m/030_1_ amblin (Q457893) /m/024l2y the day after tomarrow (Q14320) /m/032v0v roland emmerich filmography (Q60100) /m/01fwj8 amelia fiona "minnie" driver (Q229056) /m/05zvj3m mtv movie award for best comedic performance (Q905247) /m/03lrht stan sweet (Q824133) /m/0gh4g0 caroline international (Q264137) /m/01w923 jeremy webster frith (Q460325) /m/06ms6 sociology/doc (Q21201) /m/080dyk warren feeney (Q2358684) /m/0182r9 ozzie the owl (Q19498) /m/010dft logan, ut-id metropolitan statistical area (Q482657) /m/01nkcn utah state (Q1052614) /m/02jt1k angela bassett (Q232120) /m/0bh8yn3 green lantern movie (Q903885) /m/0c00zd0 larry crown (Q382864) /m/0k611 academy award for film editing (Q281939) /m/094jv baltimore, us-md (Q5092) /m/0km5c panda shepherd (Q38280) /m/04n52p6 sherlock holmes (2009 film) (Q200396) /m/05cj_j deceit (1976 film) (Q47296) /m/06hhrs richard john kind (Q449959) /m/05p3738 centurion (film) (Q1322906) /m/06v_gh /m/06v_gh /m/09gffmz scheinman, andrew (Q507189) /m/06h4y9 pirouzi (Q242260) /m/0ksf29 don carmody productions (Q1239033) /m/04bpm6 john brion (Q540389) /m/02y_rq5 national society of film critics award for best actress (Q1268927) /m/02g_6x wide reciever (Q918224) /m/0fgg8c /m/0fgg8c /m/0f2w0 san antonio, bexar county (Q975) /m/01qkqwg colon band (Q933904) /m/075wx7_ twilight3 (Q217010) /m/0fsm8c paul dano (Q343616) /m/09tqxt bfca critics' choice award for best animated feature (Q922357) /m/02r8hh_ persepolis (film) (Q477965) /m/01n4f8 be more cynical (Q489) /m/02pb53 robert klein (Q725931) /m/0c3kw / (book) (Q317491) /m/07h9gp scary movie 4 (Q1055299) /m/01hwc6 the absurd (philosophy) (Q333625) /m/03v_5 ithaca (city), tompkins county, new york (Q217346) /m/0fxgg9 sophisti-pop (Q264289) /m/03t9sp ebtg (Q313779) /m/015pkc toby maguire (Q165524) /m/029zqn brent hershman (Q729794) /m/01l9p charlise theron (Q80046) /m/032w8h paul stephen rudd (Q276525) /m/01d494 richard mckay rorty (Q215258) /m/0170pk geoffrey roy rush (Q166272) /m/015rkw sir gambon (Q203545) /m/0sx8l 1980 winter olympics games (Q9652) /m/0b_c7 zefirelli (Q53040) /m/0c8tkt blues brothers (soundtrack) (Q109767) /m/035yn8 your mother sucks cock in hell (Q274167) /m/0bcndz the king and i (1956 film) (Q27149) /m/0k4kk the ten commandments (1956 movie) (Q746733) /m/0bzm81 54th academy awards nominees and winners (Q28969) /m/01756d hot rod rock (Q220830) /m/01fl3 the beachboys (Q183048) /m/02hnl drum kits (Q128309) /m/05crg7 food for thought (santana album) (Q873384) /m/01dzz7 michael swanwick/comments (Q455510) /m/02q5g1z april wheeler (Q276299) /m/01grnp 2nd us congress (Q210241) /m/01x73 climate of connecticut (Q779) /m/02khs press freedom in eritrea (Q986) /m/0crjn65 preston city council (Q385669) /m/0dbdy lancs (Q23077) /m/01kkg5 columbus crew jrs. (Q457163) /m/06w33f8 marilyn straker (Q6763645) /m/0gsg7 american broadcasting company (Q169889) /m/02bg8v masada (miniseries) (Q1568835) /m/0lp_cd3 /m/0lp_cd3 /m/02wrhj maurice lamarche (Q847124) /m/02zv4b et (tv series) (Q3055086) /m/04rrd old line state (Q1391) /m/09kvv hopkins (Q193727) /m/06rmdr ford fairlane (movie) (Q977196) /m/09cm54 new york film critics circle award for best actor (Q1790281) /m/019v9k Q2878144 /m/0bthb lehigh university (Q622137) /m/049k07 thomas ian nicholas (Q256884) /m/01gzm2 nora ephron (Q214677) /m/01c59k robert mckimson (Q1063493) /m/020xn5 black-and-white artist (Q644687) /m/0845v the war of the spanish succession (Q150701) /m/03gk2 holy roman empire portal (Q12548) /m/0ft7sr tony walton (Q2803671) /m/01z88t yemens (Q805) /m/01z215 the arabia of the sauds (Q851) /m/0488g culture of kansas (Q1558) /m/049dk kansas state u (Q31249) /m/039g82 edward leonard o’neill (Q16758) /m/0gj9tn5 ted (character) (Q641760) /m/091z_p pan's labrinth (Q216006) /m/02jm0n john lovitz (Q296524) /m/0hkq4 county kilkenny, ireland (Q180231) /m/0m_xy kilkenny borough council (Q109092) /m/01pj7 kroatien (Q224) /m/0fhzy zagreb, yu (Q1435) /m/05zm34 punter (gridiron football) (Q525495) /m/0dth6b 39th academy awards nominees and winners (Q167214) /m/058s57 carrie underwood filmography (Q215546) /m/03gr7w brad douglas paisley (Q39639) /m/07sgfvl heather elizabeth morris (Q229349) /m/050xxm corpse emily bride (Q164417) /m/0f1vrl haim saban (Q559844) /m/08hp53 dean devlin (Q119849) /m/015_30 neil diamond (Q294531) /m/01c92g best pop vocal performance, male (Q947090) /m/030h95 amy irving (Q235020) /m/0g9wdmc the iron lady (film) (Q269810) /m/02q52q lions and tigers and bears (Q193695) /m/01g6gs black-and-white movie (Q838368) /m/064p92m tinu anand (Q7808398) /m/018nnz matriculated (Q335340) /m/01dyvs battle of zion (Q207536) /m/0lfgr tuftscope (Q49120) /m/02f6g5 50 first dates (Q241482) /m/01pgp6 something about mary (Q177374) /m/0fdv3 star wars: episode iii – revenge of the sith (Q42051) /m/09gq0x5 king's speech (Q160060) /m/034np8 jason lee (actor) (Q4960) /m/030hcs billy crudup (Q313650) /m/09vc4s english-american (Q1344183) /m/015882 linda rondstadt (Q229375) /m/0770cd james poyser (Q4368975) /m/02yv_b 73rd oscars (Q751924) /m/09cr8 javier rodriquez (Q142292) /m/0ftlkg 34th academy awards (Q917163) /m/0283_zv the hustler (movie) (Q1130084) /m/01yhm the tribe (Q642553) /m/05ztm4r josh sussman (Q23403) /m/0806vbn harry shum, jr. (Q348649) /m/09mq4m phones (Q515883) /m/02nhxf /m/02nhxf /m/090q32 offenbacher kickers (Q159936) /m/02bp37 105th congress (Q3596884) /m/03z5xd /m/03z5xd /m/03t22m soprano sax (Q1463985) /m/01ky2h newk (Q299208) /m/07r78j torino football club 1906 (Q2768) /m/016_mj cris rock (Q4109) /m/06rq1k happy madison (Q1584317) /m/012zng mike watt (Q924668) /m/01c40n san pedro harbor (Q290356) /m/05l5n oxford astrophysics (Q34217) /m/015x74 the adventures of baron münchhausen (Q1210832) /m/09kn9 stargate revolution (Q187462) /m/01htzx Q11272426 /m/02jyr8 university of alabama–birmingham (Q1472663) /m/0241jw andy circus (Q206922) /m/02rb84n the adventures of tintin (film) (Q980041) /m/01k8q5 emmanuel street (Q797892) /m/0kfv9 many saints of newark (Q23628) /m/017jv5 united artists corporation (Q219400) /m/01kf3_9 /m/01kf3_9 /m/02lz1s edward chester babcock (Q33124) /m/052gzr taylor hackford (Q545573) /m/025m8y grammy award for best score soundtrack for visual media (Q4376972) /m/01c58j bob clampett (Q670417) /m/0177s6 harold clayton lloyd (Q104340) /m/026lj on suicide (Q37160) /m/05r79 philosophy of society (Q179805) /m/0m491 edward rooney (Q498906) /m/01_d4 chicago, ill. (Q1297) /m/0b76t12 please give (Q1569216) /m/0gr51 academy award for writing (original screenplay) (Q41417) /m/04qw17 vera drake (Q916645) /m/01t2h2 andy lau (Q16766) /m/03k7bd /m/03k7bd /m/02rx2m5 into the wild (movie) (Q269912) /m/016ywr jeremy j. irons (Q171745) /m/0cc7hmk margin call (Q624614) /m/04njml tony award for best score (Q1478089) /m/0hvb2 ramon antonio gerardo estevez (Q184572) /m/02bkdn allison brooks janney (Q229487) /m/01t07j louis malle's films (Q55392) /m/01g63y domestic partnerships (Q3449014) /m/03mz9r geoff johns (Q1376074) /m/0584r4 sweet j presents (Q8822) /m/0cz_ym american gangster film (Q270351) /m/05rgl eastern pacific (Q98) /m/06x58 salma hayek (Q125106) /m/0261g5l silvio horta (Q2975651) /m/03k50 hindi (language) (Q1568) /m/02qw1zx 2008 national football league draft (Q434766) /m/0bx8pn carolina quarterly (Q192334) /m/016v46 chengu (Q30002) /m/02k84w pedal steel guitar (Q587027) /m/0p5mw mansfield, david (Q330438) /m/03xmy1 brigitte nielsen (Q154519) /m/028cg00 mummy: totde (Q240713) /m/01gq0b claire catherine danes (Q867813) /m/0d2psv supersport united u19 (Q1281608) /m/02vzc finn land (Q33) /m/0jnwx aladdin (disney film) (Q215518) /m/02fgpf alan menkin (Q317272) /m/0j1yf justin timberland (Q43432) /m/0320jz jessica clair timberlake (Q163249) /m/02d9k billy beckham (Q10520) /m/01k2yr l.a. galaxy oc psc (reserves) (Q204357) /m/073bb slyvia plath (Q133054) /m/0c_n9 pulitzer prize in poetry (Q2117891) /m/07s6prs mark salling (Q314424) /m/026gyn_ the lion in winter (1968 film) (Q1195311) /m/09146g kung fu panda 2: pandamonium (Q129193) /m/05kr_ manitoulin country fest (Q1904) /m/04rrx water-winter wonderland (Q1166) /m/01yc02 chief of operations (Q623279) /m/0l8sx warner media, llc (Q191715) /m/0mj1l debi mazar (Q238671) /m/011yth the man who knew too much (article) (Q463832) /m/07wbk republican party united states (Q29468) /m/083pr taft (president) (Q35648) /m/03xsby lion's gate entertainment (Q515869) /m/0fq7dv_ saw movie (Q486239) /m/0ch26b_ hugo (2011 film) (Q206576) /m/01p1v state of chile (Q298) /m/08m4c8 justin willman chambers (Q40087) /m/0_7w6 disney's beauty and the beast: belle's quest (Q179673) /m/021p26 fk partizan beograd (Q188656) /m/0bs0bh tony award for best featured actor in a play (Q1474410) /m/03mg35 frank langella filmography (Q310944) /m/0bjqh school of art institute of chicago (Q7432601) /m/06s6l san vicente y las granadinas (Q757) /m/018wl5 parliamentarian democracy (Q166747) /m/0by1wkq looper (2012) (Q53719) /m/0mhfr music (country rock) (Q613408) /m/04r1t /m/04r1t /m/0gt_k phil spektor (Q213793) /m/0kbws 2008 beijing olympics (Q8567) /m/0btyf5z virus 113 (Q243983) /m/0c94fn gary rydstrom (Q1174468) /m/0b82vw leigh adrian harline (Q1367518) /m/0784v1 moses ashikodi (Q6915696) /m/040wdl bobby deol (Q48619) /m/03r8tl filmfare best actor award (Q1414533) /m/0mxcf deschutes county (oregon) (Q484420) /m/0mx6c klamath falls, or μsa (Q484388) /m/04zwjd lalo schifrin (Q247293) /m/03sxd2 summer of sam (film) (Q1150713) /m/07ymr5 andrew david "andy" samberg (Q314640) /m/02krf9 tv director (Q2059704) /m/03hj3b3 on the golden pond (Q451603) /m/02_5x9 pigface (Q3174727) /m/014dq7 truman persons (Q134180) /m/06dl_ chandlerish (Q180377) /m/0fy34l a simple plan (movie) (Q564958) /m/04myfb7 rutina wesley (Q40117) /m/06t61y sophie thompson (Q467362) /m/065jlv geraldine somerville (Q235572) /m/021_z5 nu jack swing (Q840065) /m/019g40 omarion grandberry (Q361683) /m/0fb0v geffen records (Q212699) /m/0285c freak baby (Q12006) /m/05qbckf ironman 2 (Q205028) /m/0162v wildlife of barbados (Q244) /m/02wgln alfred molina (Q296028) /m/0f25w9 chikkin (Q864693) /m/07hnp c12h17n4os (Q83187) /m/07w5rq vice chancellors of dhaka university (Q1480421) /m/01_srz coeducation (Q541394) /m/0nvrd dupage county, illinois (Q109626) /m/0s69k aurora (il) (Q22595) /m/050f0s simpsons the movie (Q182254) /m/015h31 animator (Q266569) /m/01cgz fist fighting (Q32112) /m/050gkf cinderalla man (Q647546) /m/04rzd mandolins (Q302497) /m/0zjpz r.s.o. (album) (Q295153) /m/01nd2c bavaria kaiserslautern (Q8466) /m/0gqyl best supporting actress oscar (Q106301) /m/070fnm gaslight (1944 film) (Q841781) /m/0136p1 donna sommer (Q908933) /m/04y9dk john wood (english actor) (Q599439) /m/0jcg8 derbyshire (Q23098) /m/02hft3 pennsylvania college football (Q1520129) /m/0yjf0 st. mary magdalen college, oxford (Q81162) /m/01fh9 w. r. thornton (Q202735) /m/037s9x /m/037s9x /m/03z19 wwwirs.gov (Q973587) /m/04ktcgn boyes, christopher (Q541621) /m/063vn pierre philippe yves elliott trudeau (Q8619) /m/0c8wxp catholic religion (Q1841) /m/0gz5hs seth green filmography (Q186757) /m/06mfvc ben foster (Q311804) /m/09k56b7 black swan (film) (Q180214) /m/04mn81 sk8brd (Q14313) /m/0r540 oceanside (ca) (Q488924) /m/02lf70 lorraine braco (Q229319) /m/01wz3cx joan chandos baez (Q131725) /m/01vb403 dyck van dike (Q310295) /m/0b76kw1 temple grandin (film) (Q2304429) /m/0509bl indican productions (Q229059) /m/0g51l1 arthur rankin, jr. (Q1983712) /m/01wsl7c kt bullen (Q230601) /m/073h1t 66th academy awards (Q944352) /m/0gd0c7x prometheus (movie) (Q192686) /m/0d0kn languages of georgia (Q230) /m/03fvqg edward heimberger (Q313046) /m/0sg6b rock island (il) (Q577878) /m/0mtdx history of hamilton county, tennessee (Q188376) /m/0pzpz un/locode:uscha (Q186702) /m/05k79 be music (Q214990) /m/031778 harry potter and the chamber of secrets (movie) (Q102244) /m/0dq6p extra long play (vcr format) (Q183976) /m/07c52 t.v. (Q289) /m/03d34x8 crew of breaking bad (Q1079) /m/02lyr4 of (Q1142885) /m/04913k kamome (Q484151) /m/03rl84 zooey deschenhal (Q191719) /m/07vk2 sydneyuni (Q487556) /m/04rjg mathematics research (Q395) /m/06brp0 mitch hurwitz (Q4992236) /m/0cjyzs primetime emmy award for outstanding comedy series (Q2110156) /m/04f_d cuisine of kansas city (Q41819) /m/01sh2 sugar (chemistry) (Q11358) /m/01gtbb 23rd u. s. congress (Q4631714) /m/05k7sb taxachusetts (Q771) /m/0hpt3 hasbro inc. (Q501476) /m/05p1dby razzie award for worst prequel, remake, rip-off or sequel (Q1535133) /m/04t53l cooking vinyl (Q2996526) /m/02vqhv0 christmas carol (Q86791) /m/045bs6 donal logue (Q517137) /m/04kzqz gettysburg movie (Q123166) /m/01vyp_ malcolm (Q313554) /m/028knk annette benning (Q190602) /m/020bv3 love actually (album) (Q190588) /m/02c8d7 black pop (Q2529400) /m/01wbl_r daddy yankee prestage (Q272591) /m/0h_cssd 2012 baftas (Q918710) /m/01ycbq plummer, christopher (Q190523) /m/022xml furman academy and theological institution (Q1475020) /m/0bj9k alfredo james pacino (Q41163) /m/047qxs timeline (film) (Q1703608) /m/0gvrws1 '' total recall '' (Q634810) /m/031n8c school of continuing education (new england conservatory) (Q1347162) /m/02zn1b abc records (Q287177) /m/0dtd6 genesis band (Q151012) /m/0bdx29 primetime emmy award for outstanding supporting actress – drama series (Q1285504) /m/01xr2s the sheild (Q265152) /m/0lv1x 1928 amsterdam olympics (Q8138) /m/06f41 physics of rowing (Q159354) /m/02k6rq jeremy philip northam (Q443961) /m/02mhfy terri garr (Q233873) /m/0hmm7 the conversation (Q1009788) /m/018j2 benjo (Q258896) /m/050l8 montucky (Q1212) /m/01fmys home alone (film) (Q105031) /m/035dk iso 3166-1:gh (Q117) /m/09tqkv2 the kids are all right (movie) (Q380841) /m/012s5j raquel welch (Q229545) /m/0gpjbt 49th grammy awards (Q1542342) /m/05d8vw adams, yolanda (Q270869) /m/02s62q rhode island school of design (Q49208) /m/0jym0 the last picture show (Q1218959) /m/0clz1b tranche de vie (Q2561438) /m/0dwr4 shilimba (Q165666) /m/054ky1 cecil b. demille award 1976–2000 (Q640353) /m/09f0bj chandra danette wilson (Q40090) /m/09d5h cbs eye (Q43380) /m/02xhpl alice (television) (Q1248019) /m/01cyd5 soule hall (Q1426464) /m/015npr aamir khan (Q9557) /m/02s7tr firstbaseman (Q1326154) /m/05g76 yo gotta belive! (Q692417) /m/0gl88b irene sharaff (Q450022) /m/05x2t7 orry-kelly (Q922527) /m/02fb1n wagner, robert (Q310493) /m/0bdw6t Q1285545 /m/018lg0 stoner music (Q617240) /m/01czx blacksabbath (Q47670) /m/0j2pg brighton & hove albion f c (Q19453) /m/09g8vhw little fockers (Q921985) /m/06lgq8 ryan kwanten (Q382257) /m/01541z michelle renee forbes guajardo (Q239075) /m/03ln8b bring on the girls (desperate housewives) (Q131758) /m/01bvw5 snu (Q39913) /m/03j43 henri l. bergson (Q42156) /m/01j8wk dont say a word (Q572437) /m/0gmdkyy 2012 oscars (Q180675) /m/02zmh5 martin karl "max martin" sandberg (Q318223) /m/048qrd music from the major motion picture crossroads (Q641786) /m/0kvgxk the ice storm (film) (Q1193138) /m/0h1p ang lee films (Q160726) /m/099ty boise, usa (Q35775) /m/02hczc mountain standard time zone (Q3134980) /m/06lj1m joanna cassidy (Q236702) /m/01hqhm magnolia (1999 film) (Q588420) /m/02rh1dz /m/02rh1dz /m/02_j7t walliams (Q359665) /m/0gydcp7 great expectations (2012 film) (Q2079954) /m/05z7c psycho 1 (Q163038) /m/0dxtw special-effect (Q381243) /m/0371rb fv stuttgart (Q4512) /m/023p33 cinderella (1950 film) (Q191753) /m/064n1pz män som hatar kvinnor (film) (Q276343) /m/0735l music streaming (Q220499) /m/022769 jud nelson (Q445302) /m/018grr mediocre america man trilogy (Q218503) /m/034qzw veronica corningstone (Q467076) /m/036c_0 tim matthieson (Q712457) /m/0j_tw national lampoon's animal house (soundtrack) (Q960125) /m/02jxk european+union (Q458) /m/0260bz amistad(movie) (Q472361) /m/01wxyx1 collin farrell (Q172035) /m/0c6g29 dorothy jeakins (Q436530) /m/0dck27 gwen wakeling (Q517831) /m/016z7s the madness of king george (Q581501) /m/0bm2g fhte (Q207588) /m/01y49 /m/01y49 /m/05zrvfd mtv movie award for best frightened performance (Q425675) /m/02c638 mystic river (film) (Q221586) /m/09ntbc leo bertos (Q443019) /m/02q3n9c wellington phoenix football club (Q815890) /m/05qw5 the woolgatherers (Q557) /m/047n8xt bright star (film) (Q1190988) /m/018swb peter william postlethwaite (Q217137) /m/0f6_dy titus welliver (Q437693) /m/01kv4mb claude bridges (Q319374) /m/0126rp edward john izzard (Q254022) /m/07z31v 56th primetime emmy awards (Q1338873) /m/01j7rd john leibowitz (Q211987) /m/035s95 the newton boys (Q1215169) /m/0443y3 marcia anne cross (Q189547) /m/0lk8j 1932 summer olympic games (Q8143) /m/02lpp7 🥇 (Q406039) /m/02__34 legend of the falls (Q913324) /m/0blg2 1948 london olympics (Q8403) /m/06pj8 steven spielberg (Q8877) /m/01pcmd spelling, aaron (Q295080) /m/0n2bh beverly hills 90210 (Q117590) /m/086qd witney houston (Q34389) /m/01by1l grammy award for album of the year 2010s (Q904528) /m/040fb june (Q120) /m/03_wj_ evangeline lilie (Q160392) /m/0dplh the warrior (ucl mascot) (Q193196) /m/015pxr ricky dene gervais (Q23517) /m/0l9rg aisne (département) (Q3093) /m/02vmzp shammi kapoor (Q334822) /m/03rk0 india proper (Q668) /m/04nfpk eight-man football up lineman (Q903354) /m/0fht9f /m/0fht9f /m/011k1h the emi group (Q183412) /m/07w3r petroleum abstracts (Q1848657) /m/0yzvw my left foot (Q746574) /m/06mkj espagna (Q29) /m/02qhqz4 astro boy (2009 film) (Q1061539) /m/01vx2h visual effects (Q8317) /m/0407yfx the bear and the bow: a brave tale (Q126796) /m/01795t disney cartoon studios (Q191224) /m/011_6p kazoo (Q483994) /m/01dnws bouz (Q322675) /m/01y67v kbs (korean broadcasting system) (Q498825) /m/014kq6 bond 20 (Q30931) /m/040db horhe luis borhes (Q909) /m/04xjp cervantes saavedra (Q5682) /m/0j6b5 千と千尋の神隠し (Q155653) /m/03_9r riwen (Q5287) /m/06ybb1 rhinestone (movie) (Q1071169) /m/01jtp7 wharton school of the university of pennsylvania (Q1329269) /m/0b_fw anthony quinn (Q83484) /m/0bx0l lawrence of arabia (movie) (Q228186) /m/01w60_p b.b. kings (Q188969) /m/0144l1 aminta townshend (Q26933) /m/01jq34 university of maryland, college park police department (Q503415) /m/01jzxy /m/01jzxy /m/015gw6 bates, alan (Q309160) /m/051vz brew crew (Q848103) /m/01ptt7 university of kentucky (Q1360303) /m/02_2v2 agnes nixon (Q394607) /m/0f4_l zed's dead baby (Q104123) /m/01pvkk sound editor (filmmaking) (Q3180462) /m/0c3ns peter weir films (Q55424) /m/02v1m7 best short form music video (Q2976730) /m/0l56b todd macfarlane (Q352460) /m/01f7j9 leslie zemeckis (Q187364) /m/02x4w6g independent spirit award for best male lead (Q2544859) /m/0fvr1 the philosophy of time travel (book) (Q426828) /m/04jlgp billie whitelaw (Q272613) /m/056878 2005 grammies (Q1542327) /m/01vsnff dominic davis (Q272031) /m/0163v balarus (Q184) /m/02yvct bridget von hammersmark (Q153723) /m/01cszh arista austin (Q664167) /m/0gfzgl gossip girl (Q199853) /m/0bfvd4 primetime emmy award for outstanding supporting actor - miniseries or a movie (Q945887) /m/02jjdr jazz alliance (Q1124061) /m/0pyg6 vannessa williams (Q202801) /m/07w4j university of sussex (school) (Q1161297) /m/09g7thr times higher education world reputation rankings (Q1318318) /m/05g3v the new orleans saints (Q172435) /m/0121c1 west sussex, england (Q23287) /m/01tfck ben bratt (Q73362) /m/0c11mj pinigol (Q1989585) /m/0266sb_ celta de vigo (Q8749) /m/07yk1xz invictus (film) (Q689842) /m/0g284 johannesgurg (Q34647) /m/0dq630k tic-tac bass (Q64038) /m/07gql trumpet (bach) (Q8338) /m/07p62k evan allmighty (Q195949) /m/041mt kerouac jean-louis lebris de (Q160534) /m/0gr42 academy awards/visual effects (Q393686) /m/0bvfqq 78th oscars (Q319132) /m/07nt8p the illusionist (2006 film) (Q645735) /m/02nbqh /m/02nbqh /m/0gvstc3 2011 primetime emmy awards (Q259726) /m/02cyfz james roy horner (Q106221) /m/011yd2 apollo 13 (film) (Q106428) /m/08664q martin donovan (Q726130) /m/02lq10 york, michael (Q298777) /m/013q07 austin powers in goldmember (Q498910) /m/01364q al green (Q313260) /m/05zksls 2010 golden globe awards (Q249397) /m/026c1 drew b. barrymore (Q676094) /m/0gs96 academy award for costume design (Q277536) /m/01_1pv bedknobs an broomsticks (Q945138) /m/02t_zq louis gossett (Q329719) /m/0kyk authorship (Q482980) /m/09k2t1 jorden sparks (Q215300) /m/07ss8_ christopher maurice "chris" brown (Q155700) /m/01s0_f wayne state university (Q349055) /m/05b4rcb /m/05b4rcb /m/03kxj2 pubert addams (Q204725) /m/0l6mp summer olympics of 1988 (Q8470) /m/0ymc8 st hilda's hall (Q1465651) /m/0jt5zcn /m/0jt5zcn /m/05sb1 mumlikat e khudad e pakistan (Q843) /m/01vs_v8 lourdes leon ciccone (Q1744) /m/025m8l best song written for a motion picture, television or other visual media (Q428808) /m/0453t the masks of god (Q295516) /m/0j3v showpenhauer (Q38193) /m/02p11jq mca music entertainment group (Q2338889) /m/09prnq spark (alain johannes album) (Q984115) /m/01y9pk university of windsor (Q2065769) /m/0ptk_ cdn$ (Q1104069) /m/0fqpc7d the 15th satellite awards (Q2095114) /m/03jvmp hbo documentary films (Q662081) /m/01_9c1 defensive secondary coach (Q674953) /m/01q415 mcmurtry, larry (Q611672) /m/03lty true metal (Q38848) /m/0167_s uriah heep (band) (Q108666) /m/01qncf drugstorecowboy (Q1261193) /m/02x8n1n independent spirit award for best supporting male 1987-1999 (Q2294693) /m/01679d toy piano (Q1300012) /m/0dclg philadelphi (Q1345) /m/040fv july (month) (Q121) /m/07srw history of mining in utah (Q829) /m/09td7p screen actors guild award for outstanding performance by a female actor in a supporting role (Q1320315) /m/0f4vbz angelina jolie (Q13909) /m/01wyzyl james belushi (Q107933) /m/02rxj east orthodox (Q35032) /m/0z1cr chillicothe ohio (Q988739) /m/01b195 the rainmaker (1997 film) (Q785351) /m/01y_px the mildred snitzer orchestra (Q106706) /m/025tdwc /m/025tdwc /m/0dgd_ freelance cinematographer (Q222344) /m/01lb14 20 kilometres run (Q1934817) /m/03rj0 ísland (Q189) /m/047g6m brescia calcio (Q6651) /m/02jg92 gregory lenoir allman' (Q503264) /m/0300cp graham holdings company class b (Q3121014) /m/03qh03g medium (Q340169) /m/01zmpg germaine jackson (Q317784) /m/013v5j letoya jackson (Q217427) /m/05dbf nicole kidman (Q37459) /m/04qhdf /m/04qhdf /m/013yq terminus, ga (Q23556) /m/06xj93 fk khazar lankaran (Q695939) /m/07b2lv olivia haigh williams (Q231163) /m/0170qf ralph fiennes filmography (Q28493) /m/04smkr erica christensen (Q234564) /m/02vy5j bauer, steven (Q705477) /m/01wj9y9 julius henry marx (Q103846) /m/07hbxm joanna page (Q467749) /m/0721cy samuel simon (Q365090) /m/018h2 bi-sexual (Q43200) /m/02s4l6 velvet goldmine (Q1481540) /m/0f40w david aames (Q110278) /m/02725hs captain corelli's mandolin (soundtrack) (Q1424825) /m/02wt0 republic of the fiji islands (Q712) /m/07z5n vanatua (Q686) /m/0gx_st 2006 primetime emmy awards (Q1338916) /m/01q_y0 will&grace (Q212135) /m/050yyb 77th academy awards nominees and winners (Q504962) /m/04gcd1 nicholas bird (Q310960) /m/0311wg gary robert durdin (Q355038) /m/051hrr electric drum (Q1327480) /m/0mp3l charolettesville, virginia (Q123766) /m/033hn8 x-cell records (Q216364) /m/01ww2fs merle haggard & the strangers (Q183092) /m/0b_77q 2003 march madness (Q3994979) /m/02plv57 Q4268382 /m/05218gr joseph charles wright (Q505498) /m/06k02 sakamoto ryûichi (Q345494) /m/011zd3 liu yuling (Q188375) /m/01vhb0 ann heche (Q234610) /m/06ncr saxy (Q9798) /m/0gghm dobro (Q1056351) /m/02qpbqj fullback (gridiron football) (Q526960) /m/07wrz classics building (Q131252) /m/0h5k anthropology/testcases (Q23404) /m/06wrt /m/06wrt /m/06t2t capital of singapore (Q334) /m/04fhxp steve james zahn (Q491775) /m/06v9_x national security (film) (Q1503878) /m/0lccn leonard cohen (Q1276) /m/01r216 the moff (Q461003) /m/0136pk clyde jackson browne (Q355009) /m/01ck6h best rock vocal performance – male (Q953746) /m/05k2xy /m/05k2xy /m/02581c grammy award for best classical album (Q3774289) /m/05p09zm razzie award for worst screen combo (Q1535145) /m/020y73 vasily sarayev (Q271006) /m/07wjk u toronto (Q180865) /m/021bk christopher guest, 5th baron haden-guest (Q336074) /m/0pdp8 this is spin̈al tap (Q7810384) /m/024tsn forfar athletic f. c. (Q589563) /m/0g3zrd public enemies (2009 movie) (Q329448) /m/04y8r enzo ferrari (film) (Q270097) /m/01kckd the shots (Q48862) /m/047sxrj /m/047sxrj /m/0288fyj /m/0288fyj /m/016z9n nixon (film) (Q839042) /m/02g1px cavalier generation (Q2284765) /m/0j06n cromwell's troops (Q1130553) /m/0d_2fb angus mcmarrow (Q1535251) /m/0fpv_3_ life of pi (film) (Q152780) /m/02x17s4 satellite award for best adapted screenplay (Q1634847) /m/0ct5zc carrie (film) (Q162672) /m/0jt90f5 stephen e. king (Q39829) /m/01_vfy sidney arthur lumet (Q51559) /m/0c_j9x murder on the orient express (1974 film) (Q3241699) /m/0d05w3 china (beijing) (Q148) /m/0cg9y tom jones (singer) (Q180850) /m/0nbcg song-writing (Q753110) /m/01hvjx south park: bigger, longer & uncut (Q656118) /m/0661m4p mib iii (Q327713) /m/0q19t polytechnische school te delft (Q752663) /m/01pgzn_ lindsay dee joanne lohan (Q44903) /m/02qgyv john c reilly (Q223110) /m/0kvrb michael nyman/comments (Q313639) /m/02b1mc stevenage borough f.c. (Q9426) /m/0bymv john s mccain iii (Q10390) /m/01gkgk /m/01gkgk /m/0783m_ morrison, matthew (Q294812) /m/080knyg amber patrice riley (Q230420) /m/05c0jwl head of college (Q635788) /m/05p1qyh welcome to zombieland (Q219810) /m/01hw6wq trevor rabin (Q364881) /m/065zr punjab (pakistani province) (Q4478) /m/075mb the sind (Q37211) /m/0ddjy star wars: episode vi – return of the jedi (Q181803) /m/02fcs2 lawrence edward kasdan (Q240872) /m/075cph man who knew too much (Q486826) /m/0lbbj 1964 tokyo olympics (Q8420) /m/0yyts '' driving miss daisy '' (Q211373) /m/02xb2bt brendan coyle (Q908668) /m/0l6px margaret natalie smith cross (Q172653) /m/016z2j robert downey, jr (Q165219) /m/02d4ct patricia davies clarkson (Q229268) /m/04kxsb bafta award for best actor 1980–1999 (Q400007) /m/042y1c amadeus (movie) (Q190956) /m/01bns_ zither (Q76239) /m/015rhv roderick andrew anthony jude (Q283988) /m/02qvyrt anthony asquith award for film music (Q787098) /m/02q6gfp la mome (Q236217) /m/04q00lw my name is khan soundtrack (Q330663) /m/03wpmd karan johar/comments (Q468442) /m/028d4v catherine anne o'hara (Q233365) /m/02stbw best in show (movie) (Q830324) /m/01n8_g shashi kapoor (child actor) (Q379171) /m/065z3_x secretariat (film) (Q470665) /m/0tc7 arnold schwartzeneggar (Q2685) /m/02bjhv university of dayton, ohio (Q2092392) /m/0bgrsl tollin, michael (Q1274453) /m/01_x6v randolph severn parker iii (Q44414) /m/0d06vc occupation of iraq (Q545449) /m/01wwvt2 micheal balzary (Q202859) /m/02x258x satellite award for best cinematography (Q1638207) /m/0661ql3 dom cobb (Q25188) /m/0dvqq ¡uno! ¡dos! ¡tre! tour (Q47871) /m/07xpm rochester and rutherford (Q432475) /m/02m7r baron rutherford of nelson (Q9123) /m/0jmfb twin towers (houston rockets) (Q161345) /m/01jsn5 university of connecticut-storrs (Q49206) /m/071dcs erik gunden (Q1369625) /m/03jm6c stephen ross gerber (Q2569995) /m/05dy7p kundun (film) (Q944291) /m/02rb607 white ribbon (Q158023) /m/0x2p rustlers (Q461595) /m/03c6sl9 2008 major league baseball playoffs (Q1231094) /m/020ngt horrorpunk (Q830325) /m/01wg982 raised eyebrows (Q298255) /m/010hn amy grant (Q464213) /m/01ktz1 gracewood, georgia (Q181962) /m/01b7b monarchic episcopate (Q29182) /m/05xjb priest (christianity) (Q42603) /m/03n_7k josh james brolin (Q41396) /m/0170s4 woody harelson (Q201279) /m/01mmslz death of debbie reynolds (Q263696) /m/01csrl agnes moorhead (Q231221) /m/04g9gd domino (2005 film) (Q32910) /m/026mfs /m/026mfs /m/0c4ys grammy-awards (Q41254) /m/0169dl matt deamon (Q175535) /m/0m9p3 a bridge too far (film) (Q467053) /m/01xsbh edward fox (actor) (Q309980) /m/0k4d7 snow white and the seven dwarfs (1937 movie) (Q134430) /m/081nh walter elias "walt" disney (Q8704) /m/01l3vx french national football team (Q47774) /m/0hvgt /m/0hvgt /m/0g7s1n r.c.d. espanyol b (Q32537) /m/01dpdh grammy award for best male country vocal performance (Q5593832) /m/0jzphpx /m/0jzphpx /m/0nbjq summer olympic games of 1924 (Q8132) /m/044l47 southern rhodesia national football team (Q327100) /m/085ccd the never ending story (Q316555) /m/01wk7b7 john stamos/comments (Q356129) /m/02hct1 arrested development: the movie (Q11598) /m/0738b8 david cross (Q362332) /m/015f47 bvc flamingo's (Q24904) /m/07lnk progressive trance (Q170435) /m/01vvpjj eyna (Q38257) /m/0cc5mcj cowboys and aliens (film) (Q725578) /m/09pl3s roberto orci (Q467500) /m/0237fw matilda williams (Q40572) /m/0jfx1 john christopher depp ii (Q37175) /m/0277990 john lutz (Q952419) /m/020skc geography, demography and climate of allahabad (Q162442) /m/027tbrc the tudors (television series) (Q326731) /m/047sgz4 /m/047sgz4 /m/072twv cedric gibbons (Q727904) /m/02pjxr /m/02pjxr /m/0127m7 kevin kostner (Q11930) /m/0d07j8 travilla (Q945402) /m/0pmp2 quebec city, qc (Q2145) /m/09nyf /m/09nyf /m/0c6g1l chris pine (Q23466) /m/063y_ky mtv movie award for best breakthrough performance - female (Q1062019) /m/02cllz /m/02cllz /m/021y7yw notes on a scandal (film) (Q756849) /m/021bmf jews' harp (Q185003) /m/01wy6 clarinets (Q8343) /m/01cwhp celene dion (Q5105) /m/02qlg7s /m/02qlg7s /m/03lrqw scrooged (Q535395) /m/021lby richard donner (Q262130) /m/0j_c master of suspense (Q7374) /m/079hvk nautical/february/06/selected article (Q1379980) /m/0dg3n1 biodiversity in africa (Q15) /m/01n6c federal islamic republic of the comores (Q970) /m/01f7kl back to the future 3 (Q230552) /m/08052t3 roy miller (fictional character) (Q679918) /m/01xy5l_ graphic artist (Q627325) /m/05wjnt jay baruchel (Q316756) /m/052p7 montréal, québec (Q340) /m/0jdgr dune film (Q114819) /m/0275_pj /m/0275_pj /m/0265vcb /m/0265vcb /m/02x4x18 independent spirit award for best female lead (Q2544851) /m/0c_mvb jules bass (Q1442364) /m/01z4y /m/01z4y /m/05fgt1 intolerable cruelty (Q750117) /m/01mtqf stomach (cancer) (Q189588) /m/05pq9 oscar ii hammerstein (Q319693) /m/01k7xz harvard-radcliffe college (Q49124) /m/0gd5z novels by margaret atwood (Q183492) /m/015nl4 vanbrugh theatre (Q523926) /m/04rsd2 lincoln, andrew (Q296843) /m/02qr69m changeling (2008 film) (Q275553) /m/02x2gy0 satellite award for best costume design (Q1647268) /m/026p4q7 the curious case of benjamin button (film) (Q183239) /m/011j5x post punk (Q598929) /m/01tp5bj fat bob (Q491252) /m/01hkhq helen miren (Q349391) /m/065zlr the klumps (Q599432) /m/0k_q_ los angeles township, california (Q485716) /m/0sxrz 1920 olympic games (Q8128) /m/0f1nl gt (Q864855) /m/0p3_y die hard (film) (Q105598) /m/0c6qh brad jolie-pitt (Q35332) /m/0418wg the night fox (Q504053) /m/040rmy la mala educación (Q844819) /m/06nm1 spanyol nyelv (Q1321) /m/04jbyg de graafschap (Q221927) /m/029cr ohio dayton (Q34739) /m/01kf4tt bond 7 (Q107914) /m/04kj2v adam, ken (Q63997) /m/02pb2bp metropolis (2001 film) (Q640695) /m/026ny anti utopia (Q180774) /m/0x67 political views of african-americans (Q49085) /m/01jqr_5 paul leroy bustill robeson sr (Q273233) /m/07x4qr the smurf movie (Q454398) /m/05b4w norwegen‏ (Q20) /m/0hwd8 basil rathbone (Q336865) /m/0hndn2q 69th golden globe awards (Q8671) /m/043kzcr gian luca passi de preposulo (Q229313) /m/03pn9 republic of poland (1918-1939) (Q207272) /m/016sp_ yoakam (Q713099) /m/09p7fh the french lieutenant's woman (film) (Q1212928) /m/02_cq0 crawley town football club (Q19584) /m/0frsw the police (Q178095) /m/022lly bsu.edu (Q805122) /m/03nqnk3 bafta academy fellowship award (Q787148) /m/0bmh4 dame elizabeth rosemond taylor, dbe (Q34851) /m/02qmsr yards (Q137800) /m/03hfx6c /m/03hfx6c /m/0d68qy 30 rock season four (Q189350) /m/03m8y5 celebrity (film) (Q1052826) /m/05dppk sven nykvist (Q312290) /m/0kszw helena bonham carter (Q170428) /m/02x4wr9 independent spirit award for best director (Q2295041) /m/0184dt christopher nolan filmography (Q25191) /m/0lx2l carrey (Q40504) /m/0279c15 chicago film critics association award for best actor (Q1071903) /m/06wvj sergei sergeyevich (Q49481) /m/03gvsvn play it again sam records (Q1973834) /m/01x1cn2 jones, grace (Q450429) /m/01pv91 chicken run (film) (Q156401) /m/0hcr animation industry (Q11425) /m/036k0s /m/036k0s /m/03xnwz indie pop (Q842324) /m/05qsxy /m/05qsxy /m/02rghbp /m/02rghbp /m/03mcwq3 anna gunn (Q271050) /m/05hdf nastassia kinski (Q76711) /m/06g77c inland empire (film) (Q862058) /m/046b0s village roadshow pictures (Q622668) /m/024rgt new line cinemas (Q79202) /m/07j8r crying game (Q182727) /m/0h0wc mary louise streep (Q873) /m/0dc95 oakland, ca (Q17042) /m/016r9z 1900 olympic games (Q8088) /m/0cjdk fox broadcast (Q166419) /m/01h72l future rama (Q73622) /m/0171cm tom wilkinson (Q211322) /m/01s7zw paxton, bill (Q110374) /m/0bby9p5 soul surfer 2 (Q1156089) /m/06mmb animal avengers (charity) (Q228882) /m/0c01c alyson hannigan filmography (Q199927) /m/02hgm4 grammy award for best jazz performance solo or small group (Q1335973) /m/01trhmt /m/01trhmt /m/01cw51 /m/01cw51 /m/02lf1j kevinpollakschatshow (Q351812) /m/0pvms oneders (Q642410) /m/03j0br4 sheila escovedo (Q250905) /m/02r1tx7 /m/02r1tx7 /m/0jmcb toronto rapters (Q132880) /m/038c0q 2003 nba draft (Q1352101) /m/048htn unfaithful (2002 film) (Q970089) /m/027pdrh anne coates (Q31294) /m/05b3ts safety position (Q24994) /m/01y3v monsters of the midway. (Q205033) /m/018pj3 emily robison (Q585575) /m/01dk00 /m/01dk00 /m/099t8j broadcast film critics association award for best supporting actress (Q922273) /m/038g2x doug savant (Q204303) /m/026zvx7 lyndsy marie fonseca (Q229914) /m/0227tr brendan fraser filmography (Q193555) /m/012_53 hartbreak films (Q429777) /m/06hwzy dancing with the stars:juniors (Q2674710) /m/02b25y bocelli (Q42402) /m/054ks3 golden globe award for best original song (Q1472235) /m/05h43ls sex and the city 2 (Q739502) /m/02t_tp forster, robert (Q367155) /m/08cn4_ judy greer (Q236189) /m/019f2f ellen macrae (Q211144) /m/0bsb4j grant heslov (Q710180) /m/0631_ cumberland presbyterian church of hong kong (Q178169) /m/0j871 baripsaltes (Q31687) /m/02cw8s paris conservatoire national de musique et de declamation (Q463055) /m/01tszq tara strong (Q4029) /m/05whq_9 from one second to the next (Q44131) /m/0pmhf denz l. washington (Q42101) /m/0c422z4 mtv movie award for best wtf moment (Q1161102) /m/07f_7h christabella (Q637842) /m/02qwdhq genie award for best achievement in sound (Q4376974) /m/0qf3p bryan ferry (Q216179) /m/04x_3 machine engineer (Q101333) /m/072bb1 jenna gunn (Q238877) /m/09qs08 Q1285949 /m/03g3w hist. (Q309) /m/062z7 polisci (Q36442) /m/01xdn1 government sachs (Q193326) /m/01hb6v christopher hitchins (Q49081) /m/01w8sf ian russell mcewan, cbe, frsa, frsl (Q190379) /m/03pm9 ibsen, henrik johan (Q36661) /m/02h6_6p münchen (Q1726) /m/083skw gone with the wind 1939 (Q2875) /m/02q56mk wonder boys (film) (Q168862) /m/04xrx mariah carrey (Q41076) /m/0306ds lisagay hamilton (Q439053) /m/05th8t molly parker (Q435312) /m/01p3ty dilwale dulhania le jayenge (1995 film) (Q849343) /m/04b19t yrf music (Q357608) /m/02rytm sweden fc (Q160826) /m/01kcd throw (music) (Q180744) /m/07vht california–davis (Q129421) /m/0d234 history of corvallis, oregon (Q748474) /m/02xry marion county, florida/box-header (Q812) /m/0ftvz tallahassee (Q37043) /m/03f70xs w. blake (Q41513) /m/02js6_ jacob gyllenhaal (Q133313) /m/0gz6b6g end of watch (Q497262) /m/06wbm8q the guardians (film) (Q136625) /m/06f32 /m/06f32 /m/0swff 1994 winter olympics (Q9663) /m/01z27 cross-country ski race (Q179687) /m/06pvr sfba (Q213205) /m/0r1jr history of san rafael, california (Q631915) /m/02f72n mtv video music award for best visual effects (Q372123) /m/03fbc gorilla bites (Q189991) /m/027f2w medic title (Q913404) /m/0dy04 university of vienna (Q165980) /m/02fn5r vince gill (Q924232) /m/03yf3z tricia yearwood (Q464251) /m/0kcn7 mary poppins (film) (Q209170) /m/03n0q5 self portrait (painting) (Q2419093) /m/03h3x5 looney tunes - back in action (Q834165) /m/01gp_x fencewalker (Q437267) /m/01shy7 orange mocha frappacino (Q220192) /m/03h64 climate of hong kong (Q8646) /m/02f2dn katherine mathilda swinton (Q200534) /m/01pnn3 arun nayar (Q75622) /m/034bgm chris weitz/doc (Q238638) /m/05zy2cy tron 3 (Q18954) /m/0d7hg4 edward kitsis (Q713912) /m/0g3bw main island japan (Q13989) /m/017t44 kinai region (Q164256) /m/03t0k1 sher, sir antony (Q432362) /m/0m31m joseph fiennes (Q223790) /m/0fpmrm3 take shelter (Q762877) /m/03qnc6q tree of life (film) (Q244257) /m/043js james spader (Q296928) /m/01vv126 benji combs (Q792976) /m/039v1 rolling stone's 100 greatest guitarists of all time (Q855091) /m/01j67j arrowhead county (Q301345) /m/0d1mp3 gary david goldberg (Q932508) /m/045zr joni mitchel (Q205721) /m/028rk /m/028rk /m/01lyv new country (Q83440) /m/03l7rh queen of the south football club (Q854890) /m/083qy7 giovanni dos santos (Q562337) /m/0266shh racing club de santander (Q12236) /m/02mjmr forty-fourth president of the united states (Q76) /m/0blq0z @renner4real (Q23365) /m/04k25 lars trier (Q133730) /m/01y0s9 nondenominational protestantism (Q7049261) /m/0mn0v virginia beach county, virginia (Q49259) /m/02hcv8 clevland time zone (Q941023) /m/020w2 cornet (Q202027) /m/0f4m2z il nome della rosa (film) (Q155018) /m/0g701n sc olhanense (Q621259) /m/0ml25 dane county (Q502200) /m/0fw2y madison (city), wisconsin (Q43788) /m/06w6_ sara geller (Q180665) /m/0f102 university of idaho-moscow (Q1854488) /m/01dw9z the divine miss m (Q190631) /m/0g5879y lay your head down (Q426631) /m/0gg7gsl 2011 toronto film festival (Q3950969) /m/09ftwr /m/09ftwr /m/017_1x molde fk (Q208552) /m/03qmx_f andy harries (Q2849121) /m/0892sx mark ronson & the business intl. (Q425821) /m/067pl7 /m/067pl7 /m/0408np thomas jane (Q18938) /m/02ck1 schostakowitsch (Q80135) /m/0kpl atheism (Q7066) /m/047svrl funny people (film) (Q1137899) /m/033wx9 ashlie simpson (Q213521) /m/09hnb herbie hancock (Q105875) /m/04t6fk 1941 (movie) (Q207482) /m/06nbt satirical comedy (Q128758) /m/0hkxq broccholi (Q47722) /m/0838f states of water (Q6478447) /m/0257w4 grammy award for best instrumental soloist(s) performance (with orchestra) (Q3857162) /m/01mhwk 1996 grammys (Q1542306) /m/02ld6x wes anderson (Q223687) /m/02qyxs5 bafta award for best animated film (Q240201) /m/02hn5v 75th academy awards (Q740425) /m/059t6d aiden gillen (Q358032) /m/06ztvyx kung fu panda 2 (soundtrack) (Q487447) /m/01bv8b michael barone (character) (Q208568) /m/01jswq virginia tech hampton roads center (Q65379) /m/01gst_ 17th us congress (Q4553695) /m/06btq rhode island (Q1387) /m/0kv238 the wolf man (2008 film) (Q205532) /m/01fwk3 gena davis (Q280098) /m/07h1tr sam m. comer (Q507122) /m/0k5g9 scottie ferguson (Q202548) /m/02mxw0 ned beatty (Q4212) /m/0j_t1 nashville (1975 film) (Q1424258) /m/02q1tc5 /m/02q1tc5 /m/0gxfz philadelphia story (Q498822) /m/01g888 skunk rock (Q460674) /m/016fmf return of saturn tour (Q43259) /m/081_zm menahem golan (Q542003) /m/0l1589 voice coder (Q908562) /m/03q1vd one more time (2014 film) (Q447892) /m/024n3z karl-heinz urban (Q132430) /m/01v9l67 beecake (Q276425) /m/02rjv2w love story (1970 film) (Q729991) /m/02301 cuny city college (Q1093910) /m/01wwvc5 kenneth edmonds (Q344983) /m/01wgxtl chemo (album) (Q59185) /m/0hskw mikhail igor peschkowsky (Q51537) /m/05cvgl the remains of the day (movie) (Q1625242) /m/034g2b rory cochrane (Q446227) /m/0f7h2v chris messina (Q1077549) /m/0126y2 ja-rule (Q309843) /m/0h1v19 midsummer night's dream (Q1305191) /m/02dh86 dianne sawyer (Q236402) /m/0f__1 da ville (Q43668) /m/05c46y6 precious (2009) (Q269331) /m/0mwh1 northampton county, pa (Q495658) /m/038rzr gerrard butler (Q169982) /m/04f52jw httyd (film) (Q373096) /m/01qdjm wayne shorter (Q317161) /m/0c_tl 1896 summer olympics (Q8080) /m/01771z cobra (video game) (Q637290) /m/02vm9nd /m/02vm9nd /m/0jt3qpk 39th annual daytime emmy awards (Q2816448) /m/09_94 nordic combination (Q201965) /m/0219x_ indie hit (Q459290) /m/04yc76 wedding crashers (Q238866) /m/08rr3p mirror has two faces (Q1538804) /m/0hg5 principaute d'andorre (Q228) /m/0170th the people v flynt (Q750077) /m/0gcf2r primetime emmy award (Q1044427) /m/071tyz m.phil (Q1527520) /m/07wlf john c. conboy (Q168515) /m/04g865 peter hyams (Q458766) /m/015t56 hannah wood (actress) (Q483771) /m/019pm_ demi moore (Q43044) /m/01s0ps e-piano (Q1136507) /m/01w724 billy preston (Q311450) /m/0cc846d captain america: first avenger (Q275120) /m/04sylm manhattan school of music (Q1702106) /m/03s5t idaho state constitution (Q1221) /m/019cr baptist churches (Q93191) /m/07cz2 what is the matrix (Q83495) /m/03m73lj screen actors guild award for best stunt ensemble - motion picture (Q2665874) /m/0gfsq9 i am legend (2007 film) (Q212689) /m/02pzz3p daytime emmy award for outstanding younger actress in a drama series (Q5243457) /m/0m32_ johnathan frakes (Q346595) /m/078bz syracuse university libraries (Q617433) /m/0g5lhl7 bbc sponsor (Q9531) /m/01cjhz only fools and horses... (Q1247858) /m/05728w1 edward haworth (Q1754756) /m/0k4f3 some like it hot (Q190086) /m/07sgfsl naya rivera (Q229364) /m/02v4vl hansa rostock ii (Q142005) /m/014q2g keith richards and the x-pensive winos (Q189599) /m/0879bpq arthur christmas (Q711918) /m/0137g1 steve threw up (Q11901) /m/0jtg0 zitare (Q229205) /m/0259r0 noel rivera (Q192515) /m/026b33f /m/026b33f /m/05q4y12 away we go (Q791651) /m/01zfmm jay roach (Q524278) /m/0c9c0 sacha cohen (Q29055) /m/0hzc9wc /m/0hzc9wc /m/0b_7k squirrel to the nuts (film) (Q158250) /m/027l0b what is this thing called love? (book) (Q191966) /m/085bd1 alicia en el país de las maravillas (Q660237) /m/0gdh5 alanis moriset (Q130742) /m/04q24zv agora (2009 film) (Q395411) /m/03qjg armonica a bocca (Q51290) /m/01vsl3_ god save oz (Q1203) /m/0p51w fred zinneman (Q55420) /m/04gmp_z william horning (Q642196) /m/0h53p1 leonard dick (Q6525237) /m/06chf ridley scott films (Q56005) /m/088xp /m/088xp /m/0lpjn dame judy dench (Q28054) /m/01wj92r rick nelson (Q303207) /m/03h_fk5 johnny cash family (Q42775) /m/0190_q space rocks (Q236913) /m/05w3f psychedelia (rock) (Q206159) /m/026n998 /m/026n998 /m/070w7s /m/070w7s /m/0cw3yd away from her (Q482652) /m/015c2f cynthia mixon (Q228725) /m/078sj4 syriana (film) (Q687040) /m/059rc natural born killers (Q748986) /m/04tz52 popeye (1980 film) (Q941944) /m/0q5hw columbus 81 productions (Q215506) /m/01kj0p carrie-anne moss filmography (Q206890) /m/0bczgm schur, michael (Q1929297) /m/0jmj7 dubs (Q157376) /m/0cchk3 southern miss (Q624090) /m/0bzkgg 45th academy awards nominees and winners (Q918125) /m/02qdgx blue eyed soul musicians (Q885561) /m/02w4fkq colbie marie caillat (Q228860) /m/0309jm dave foley (Q607793) /m/082scv bolero (1984 film) (Q1754755) /m/036gdw olivia dabo (Q266361) /m/026n6cs /m/026n6cs /m/01b64v y&r (soap opera) (Q849627) /m/01wdj_ aum (Q540672) /m/0gyh twenty-second state (Q173) /m/0m2lt newcastle county (Q156156) /m/04jwly far from heaven (Q1130664) /m/053yx miles davis/comments (Q93341) /m/0lgm5 thelonious monk (Q109612) /m/047hpm rachel bilson (Q220949) /m/065r8g columbia college chicago (Q5149662) /m/0gkydb scott adsit (Q3952813) /m/0f4vx yuri butso (Q280918) /m/03xpsrx leave nothin' behind (Q178010) /m/02g3mn andrea martin (Q442309) /m/016wzw lower peru (Q419) /m/08swgx joy bryant (Q267422) /m/0lrh ginsbergian (Q6711) /m/076tq0z it's complicated (film) (Q843950) /m/05fcbk7 guardians of ga'hoole (film) (Q622763) /m/094hwz animation supervisor (Q779815) /m/0klh7 articles for creation/stella keitel (Q191132) /m/0cr3d brooklyn, new york, new york (Q18419) /m/08wr3kg /m/08wr3kg /m/019vhk amsterdam vallon (Q154581) /m/09qv_s screen actors guild award for best actor - motion picture (Q654620) /m/0dm5l pet shop boy (Q485625) /m/02f705 mtv video music award for artist to watch (Q595693) /m/078lk sardinia (italy) (Q1462) /m/0bbf1f kate noelle holmes (Q174346) /m/025n3p vin diesel (Q178166) /m/0b3wk united states house of representatives (Q11701) /m/03tcbx /m/03tcbx /m/06x4l_ love without fear (Q3013247) /m/0qb1z kalrsruhe (Q1040) /m/02llzg paris time (Q25989) /m/016h9b maurice ernest gibb (Q296876) /m/0rnmy miami beach, florida (Q201516) /m/02y8z fencing (sport) (Q12100) /m/0dr3sl shrek: the series (season 3) (Q483815) /m/03177r harry potter and the prisoner of azkaban (movie) (Q102448) /m/06rnl9 dennis muren (Q1189377) /m/03r1pr stan winston (Q320211) /m/02pz3j5 daytime emmy award for outstanding lead actress in a drama series (Q3019357) /m/06pwf6 /m/06pwf6 /m/04mqgr tony award for best book (Q1784838) /m/02645b joshua lockwood logan iii (Q505141) /m/01vn35l stephen laurence "steve" winwood (Q314397) /m/02f5qb mtv best video of the year (Q1065651) /m/0hx4y /m/0hx4y /m/0ftxw indianapolis, indiana, u.s.a. (Q6346) /m/02ppm4q bafta for best supporting actress (Q787123) /m/0bpx1k marcus brewer (Q1129227) /m/03rz2b aditi verma (Q945586) /m/09pgj2 aep paphos (Q291559) /m/09wz9 bob sled (Q177275) /m/07jjt track cycling(sport) (Q221635) /m/02ryz24 satan's alley (Q380981) /m/0b79gfg /m/0b79gfg /m/02fsn double-basses (Q80019) /m/040b5k house of flying daggers (Q369388) /m/0653m /m/0653m /m/01xcfy naomi ellen watts (Q132616) /m/05q54f5 fair game (2010 film) (Q917254) /m/01jrbb nemo (finding nemo) (Q132863) /m/01gbbz ellen degeneris (Q483325) /m/0l2tk gamelan bintang wahyu (Q332498) /m/0645k5 /m/0645k5 /m/014hr0 lso live (Q155805) /m/0p4v_ tom jones (1963 film) (Q313315) /m/0ddt_ the phantom menance (Q165713) /m/02j9lm rachel griffiths (Q181140) /m/01vrwfv chicago transit authority (band) (Q371938) /m/02x4sn8 independent spirit award for best screenplay (Q1170507) /m/02rcdc2 diving bell butterfly (Q472600) /m/03_vpw backing vocal (Q798487) /m/0264v8r 1. fc union berlin (Q141971) /m/0249kn dirt band (Q542367) /m/03z20c nicky (little nicky) (Q267866) /m/0161sp lenny kravitz (Q180224) /m/017z88 new york institute of musical art (Q503246) /m/03pmzt keith david (Q370918) /m/01ly5m autonomous city of buenos aires (Q1486) /m/0bt4r4 paul lieberstein (Q2671438) /m/0cj2t3 /m/0cj2t3 /m/012mrr close encounters of the third kind (40th anniversary) (Q320588) /m/027c95y national board of review award for best lead actor (Q1790292) /m/0gr36 alec guinness de cuffe (Q103894) /m/03kg2v count of monte cristo (Q839596) /m/02qvl7 defensemen (Q2304909) /m/0c41y70 albany devils (Q1972217) /m/0b1y_2 dreamgirls movie (Q329056) /m/06n6p s&e (Q34749) /m/016ypb hugo weaving filmography (Q42204) /m/02k856 hawaiin guitar (Q644440) /m/0p7qm sand pebbles (Q916287) /m/01vx5w7 dumb (kelly rowland song) (Q184249) /m/016pns nelly (rapper) (Q218992) /m/03jqw5 adam goldberg (actor) (Q281964) /m/07024 ramelle, france (Q165817) /m/01x15dc /m/01x15dc /m/0pkyh robert anthony plant (Q428223) /m/03rhqg warner bros. nashville (Q843402) /m/0gyy53 other boleyn girl (Q470073) /m/0407yj_ cars 2 (film) (Q192212) /m/04cbtrw rushdiean (Q44306) /m/0f04c palo alto, california (Q47265) /m/029h7y electro (music) (Q217597) /m/0glt670 list of hip hop mcs (Q11401) /m/01nwwl james "jim" broadbent (Q185079) /m/08k40m danny butterman (Q729788) /m/06449 phil glass (Q189729) /m/0fvzg oklahoma city, oklahoma (Q34863) /m/046lt big dog productions (Q218718) /m/0c9k8 reds (1981 movie) (Q597239) /m/0l14j_ /m/0l14j_ /m/01271h treznor (Q282722) /m/03xl77 jayson fox (Q220140) /m/0dnqr /m/0dnqr /m/0j_sncb univ of fla (Q501758) /m/0kpys los angeles county (ca) (Q104994) /m/02lcqs heure normale du pacifique (Q847142) /m/03xpf_7 al jean (Q2829373) /m/07_s4b john frink (Q2741850) /m/09tlh nottingham, england (Q41262) /m/0crh5_f elite squad 2: the enemy within (Q142695) /m/01bb9r three kings (film) (Q1357016) /m/0myk8 'ud (Q191000) /m/01v8y9 arco bass (Q424017) /m/0b_5d the apartment (Q270510) /m/01swxv delaware university (Q1068072) /m/04sntd the jackal (1997 film) (Q167437) /m/047p7fr i love you, philip morris (Q1128867) /m/02ddqh /m/02ddqh /m/0gcs9 bruce springsteen and the e street band (Q1225) /m/0565cz el rayo x (Q1175266) /m/01dy7j edith falco (Q229034) /m/06sks6 2012 olympic games logo (Q8577) /m/02l5rm michael cimino films (Q59129) /m/025n07 harry o'connor (Q283799) /m/02tqkf patrick john warburton (Q343564) /m/04344j centre colonels men's basketball (Q1804942) /m/04112r rojiblancos (Q642433) /m/05d6kv magnet releasing (Q3843364) /m/0cfhfz nine lives (2005 film) (Q1992938) /m/0gvbw the warner-lambert company (Q206921) /m/03rtmz /m/03rtmz /m/081mh w v (Q1371) /m/03_8r juhdoh (Q11420) /m/056vv montenengro (Q236) /m/02q636 saint lawrence university (Q1411093) /m/02j62 œconomics (Q8134) /m/01n4w colorado military facilities (Q1261) /m/0d1qn aspen, co (Q205842) /m/082fr w. germany (Q713750) /m/03hrz free city of hamburg (Q1055) /m/013cz2 un/locode:usmhk (Q856841) /m/01vw20_ rap monkey (Q158175) /m/04n2r9h 13th satellite awards (Q2061948) /m/02vqsll frost/nixon (film) (Q691672) /m/05bxwh anatole litvak (Q213581) /m/01rnxn bruce macleish dern (Q357001) /m/01qx13 leander paes (Q296282) /m/0p8jf chabon (Q313466) /m/0379s chü-ssu-tʻa fu fu-lou-pai (Q43444) /m/01cbwl easy core (Q487914) /m/01243b indie landfill (Q183504) /m/06y9v county of suffolk (Q23111) /m/021q0l oxford fellow (Q1404101) /m/07tg4 university cambridge (Q35794) /m/045j3w the grudge (2004) (Q310204) /m/026kq4q 37th golden globe awards (Q2539193) /m/0cj8x henry jaynes fonda (Q19155) /m/0bmpm going my way (Q468877) /m/05glt us national film registry (Q823422) /m/043ljr rounder records europe (Q2164531) /m/01qh7 newtowne (Q49111) /m/05wp1p wallace and gromit the curse of the were-rabbit (Q318428) /m/0kb57 the pride of the yankees (Q1198860) /m/06klyh makeerere university (Q261506) /m/071ywj tobey jones (Q342419) /m/0ggbhy7 tinker tailor soldier spy (movie) (Q681962) /m/0c7lcx kevin fitzgerald corrigan (Q1334725) /m/01531 bronx, new york city (Q18426) /m/071t0 /m/071t0 /m/0697s dawlat qaṭar (Q846) /m/02_fj francis sinatra (Q40912) /m/078jt5 greg hoblit (Q267524) /m/057xs89 mtv movie award for best villain (Q1062026) /m/015z4j serena williams (Q11459) /m/027xx3 scu (Q992830) /m/03tf_h lewis gilbert (Q303891) /m/04n1hqz sporting club vaslui (Q453925) /m/0gkg6 dave s. mustaine (Q187165) /m/01j5ws michael keaton (Q138005) /m/0cv3w las vegas (Q23768) /m/09yhzs emma stone (Q147077) /m/0f0kz birgit kroencke (Q180338) /m/0fy6bh 29th academy awards (Q787207) /m/0k7pf sir george martin (Q191819) /m/071pf2 scott douglas mcdonald (Q454205) /m/01j95f huddersfield town f.c. (Q19473) /m/0257yf /m/0257yf /m/0993r deniserichards (Q206833) /m/0j43swk zero dark 30 (Q152531) /m/01f8ld katheryn bigelow (Q34816) /m/019k6n athens ga (Q203263) /m/0d0x8 peach state (Q1428) /m/01y665 victor joseph garber (Q270664) /m/04j53 lichenstein (Q347) /m/04w4s country mda (Q217) /m/0bs1yy john ottman (Q956822) /m/05h72z john sturges (Q361670) /m/01c333 bowdoin polar bears track and field (Q895401) /m/02sp_v grammy award for best long form music video (Q4992254) /m/0pc7r worcester, mass (Q49179) /m/0fv6dr marc joseph (Q6755655) /m/01dvbd lsatsb (Q851095) /m/041xyk real salt lake (Q391353) /m/0229rs rhino (wmg) (Q627091) /m/0gd_b_ john m. slattery, jr. (Q374346) /m/01cx_ city of boston (Q100) /m/0dyb1 to infinity and beyond (catchphrase) (Q171048) /m/02xbw2 gabrielle union (Q231648) /m/0x25q the matrix: reloaded (Q189600) /m/01vvb4m dan edmunds (Q42869) /m/06v9sf /m/06v9sf /m/03m_k0 alan e. ball (Q1752144) /m/032016 arnold braunschweiger (Q858840) /m/048_lz syria national football team (Q272097) /m/05bt6j pop rock (Q484641) /m/03bxwtd ryan tedder (Q351061) /m/07sp4l in the name of the king: a dungeon siege tale (Q166031) /m/05q5t0b golden raspberry award for worst new star (Q385186) /m/015mrk l boogie (Q214226) /m/0gqy2 list of best supporting actor nominees (Q106291) /m/0d22f washington county (oregon) (Q484538) /m/013ksx bethlehem, pennsylvania (Q164380) /m/0150t6 hans zimmer (Q76364) /m/0dn3n margaret mary emily anne hyra (Q167498) /m/014zwb you've got mail (Q284229) /m/01snvb lineman (gridiron football) (Q1060160) /m/0j8sq als (Q576837) /m/06jvj7 les holt (Q3236790) /m/01h1bf nbc today show (Q130838) /m/0g5838s lo imposible (Q277038) /m/09v5bdn puerto rican society (Q893594) /m/01438g richard gere (Q48410) /m/0686zv dominic west (Q313020) /m/0bytkq dante ferretti (Q939842) /m/023gxx remember the titans (Q117696) /m/02778qt /m/02778qt /m/01pcrw naomi campbell (Q199369) /m/03mh_tp management (film) (Q468565) /m/08wjc1 rlj entertainment (Q10301418) /m/0846v wyoming, united states (Q1214) /m/0mk7z riverton, wy µsa (Q484142) /m/06w839_ ice age (2002 film) (Q305250) /m/03nt7j rivers-manning trade (Q3246876) /m/01r3y2 miami university men's glee club (Q590643) /m/01y8zd mcmaster university marauders (Q632891) /m/05jxkf public university (Q875538) /m/04tqtl frank miller's sin city (Q192115) /m/026mff /m/026mff /m/01_gx_ scottish broken-haired terrier (Q39330) /m/02s5v5 sarah polley (Q234212) /m/0n6bs huntington wv (Q241808) /m/01swmr parti conservateur du canada (Q488523) /m/01k165 prime minister stephen harper (Q206) /m/02g0mx juliette lewis (Q230523) /m/0dvmd /m/0dvmd /m/03y3bp7 cleveland (tv series) (Q34397) /m/03tcnt best rock album (Q691892) /m/01b66d cally & brooke tarleton (Q1145764) /m/01l29r tony award for best musical (Q1780176) /m/049d1 吉隆坡 (Q1865) /m/05lf_ ocotber (Q124) /m/02w4v folk music (Q43343) /m/018ndc dixie chicks boycott (Q142636) /m/0kbvv the 2006 winter olympics (Q9672) /m/0g68zt equus (film) (Q496734) /m/0mbct chinese gong (Q208320) /m/0b13yt dime back (Q3707715) /m/070xg logos and uniforms of the seattle seahawks (Q221878) /m/0tz1x un/locode:uslzn (Q49188) /m/0qmd5 the elephant man (film) (Q272860) /m/0693l quintin tarantino (Q3772) /m/01w02sy courtney michelle harrison (Q222071) /m/04syw monarchs (Q116) /m/05qkp png (Q691) /m/09n4nb 48th annual grammy awards (Q1542334) /m/01wmgrf audrey f. perry (Q464241) /m/01hb1t visual arts journal (Q1279835) /m/03hkch7 milk (2008 film) (Q201687) /m/0d6lp san fransisco (Q62) /m/0161c2 warrior (avril lavigne song) (Q30449) /m/03hr1p /m/03hr1p /m/0241wg kajol (Q147395) /m/07_jd vegitarianism (Q83364) /m/021q1c Q14437399 /m/0820xz college of education and external studies (Q649998) /m/07w8fz good night and good luck. (Q319061) /m/01l9v7n bill conti/comments (Q367084) /m/0bmc4cm 13 assassins (2010 film) (Q186810) /m/086xm williams college (Q49166) /m/0htww /m/0htww /m/015v3r ethan hawke filmography (Q484615) /m/0b_dy albert finney (Q219546) /m/0ybkj glens falls (ny) (Q1379621) /m/03bxbql carstvo bulgaria (Q147909) /m/03b79 united germany (Q43287) /m/015w8_ acme loonerversity (Q387943) /m/09b0xs tom ruegger (Q3530867) /m/0ggjt eugene scruggs (Q74032) /m/01t7jy akklaim (Q339228) /m/0y2dl un/locode:usgln (Q1006668) /m/02fy0z solomon howard (Q1075339) /m/049_zz matt lauer (Q1100609) /m/0gtsxr4 paranorman (Q198028) /m/018mm4 westwood memorial park (Q1358639) /m/02p_ycc arthur j. nascarella (Q710766) /m/0djd22 Q2091526 /m/085jw longest note on a woodwind/brass instrument (Q181247) /m/0ywrc last emperor (Q212775) /m/0xbm arsenal gunners (Q9617) /m/016srn live at the nashville palace (Q467519) /m/01w806h danger mouse (music producer) (Q322915) /m/01v1d8 sampling keyboard (Q320002) /m/027pwl bradford city a.f.c (Q48879) /m/01m1_t history of new britain, connecticut (Q49172) /m/0m2gk hartford county, ct (Q54236) /m/04mpbk istres (Q797530) /m/0qdyf geoffrey beck (Q192474) /m/0xjl2 gothic punk (Q485395) /m/016ntp pjh (Q219772) /m/030k94 fleet street (television) (Q308984) /m/04cw0j /m/04cw0j /m/0p3sf heliocentric worlds of sun ra (Q354508) /m/02zccd university of louisiana–lafayette (Q116485) /m/0bzk2h 47th academy awards (Q369706) /m/0ckrgs hearts in ice (Q1066446) /m/01w7nwm common sense (rapper) (Q286022) /m/01w7nww erika wright (Q223875) /m/01q4qv costa gavras (Q296698) /m/01vc5m beets college (Q810771) /m/030x48 lauren tom (Q236569) /m/07c72 the simpsons (tv series) (Q886) /m/01846t john rhys-davies (Q16455) /m/02ccqg union college (new york) (Q1567748) /m/0fb1q book (autobiography) (Q49001) /m/0gkts9 primetime emmy award for outstanding guest actress in a drama series (Q3062632) /m/02q1hz falkirk f.c. (Q219241) /m/055c8 morgan porterfield freeman, jr. (Q48337) /m/0840vq david guetta (Q8298) /m/04k3r_ philippines men's national football team (Q219854) /m/01g5v dark blue (color) (Q1088) /m/03hj5vf broadcast film critics association award for best comedy film (Q3002936) /m/0crc2cp three musketeers (2011 film) (Q309248) /m/02rmfm marge helgenberger (Q229577) /m/0b9dmk carrie preston (Q238855) /m/0jrny christopher and dana reeve paralysis resource center (Q174311) /m/056rgc campbell scott (Q528527) /m/084302 alfred borden (Q46551) /m/02ynfr digital director (Q706364) /m/0clz7 cork (city in ireland) (Q36647) /m/0373qg national university of ireland, cork (Q1574185) /m/01wj18h shakira (band) (Q34424) /m/01ffx4 red violin (Q376144) /m/0bhvtc jerry douglas (musician) (Q705743) /m/04kl74p dl-alpha-tocopheryl acetate (Q158348) /m/01dq5z northfield college (Q1041671) /m/01rs41 non-state school (Q423208) /m/01m65sp tarō ono (Q311238) /m/01qqwp9 plastic ono band (Q731721) /m/01y17m university of illinois at chicago honors college (Q955764) /m/02w9sd7 national society of film critics award for best actor (Q1967731) /m/01vwllw susan sarandon/comments (Q133050) /m/02ctc6 prince of egypt (Q245227) /m/02bb47 stanford university graduate school of business (Q1413558) /m/0g4gr prospect (marketing) (Q39809) /m/02snj9 drum programming (Q2289786) /m/0bxl5 fender-rhodes (Q743659) /m/0hvjr tottenham hotspurs f.c. (Q18741) /m/0gffmn8 the expendables 2 videogame (Q210812) /m/0ds2n independence day (soundtrack) (Q105387) /m/011ydl that'll do, pig (Q720724) /m/014l6_ pretty woman (soundtrack) (Q207954) /m/014nq4 st-i (Q673198) /m/0g54xkt j. edgar (Q1137236) /m/04q5zw michael de luca productions (Q920273) /m/0fx0mw michael k. williams (Q921518) /m/071ynp shirley henderson (Q232889) /m/0gyfp9c the surrogate (2012 film) (Q514416) /m/0bjv6 former yugoslavian republic of macedonia (Q221) /m/02rff2 georgetown journal of law and public policy (Q846101) /m/03vgp7 miguel ferrar (Q463497) /m/03mnk hewlet-packard (Q80978) /m/014dgf /m/014dgf /m/01ym9b chillout (Q251192) /m/02qt02v japan academy prize for outstanding foreign language film (Q499789) /m/01k98nm christopher charles geppert (Q445438) /m/02v3yy carol bayer sager (Q292399) /m/03jjzf jennifer tilly (Q495549) /m/0dqzkv leo shamroy (Q1346696) /m/0j210 dessus (Q30903) /m/03qmg1 baritone sax (Q808218) /m/017l96 capitol records inc. (Q193023) /m/0pj9t robert cassotto (Q311267) /m/0glmv dan castellanetta (Q44442) /m/0y3_8 1970s synthpop (Q1298934) /m/02wb6yq demetria devonne "demi" lovato (Q41173) /m/07h0cl aacta award for best actress in a leading role (Q4649800) /m/02tqm5 a cry in the dark (film) (Q1249239) /m/0bdwqv primetime emmy award for outstanding lead actor in a miniseries or a movie (Q989453) /m/04chyn the university of the west indies (Q746153) /m/09b8m new kingston, jamaica (Q34692) /m/0glj9q erotic thriller (Q2439025) /m/0571m club silencio (Q272608) /m/0gh8zks shame (2011 film) (Q909445) /m/01n073 electronic arts (game studio) (Q173941) /m/073h9x 64th academy awards (Q857047) /m/0_816 bugsy (Q241085) /m/01vwyqp teamwork productions inc. (Q131814) /m/0192hw baraka (movie) (Q514170) /m/02qx69 parker posey (Q204586) /m/0rp46 allenton, florida (Q485186) /m/05ldnp paul haggis (Q314935) /m/01nrq5 jesse knotts (Q555236) /m/0l2l_ napa, ca msa (Q108137) /m/0cc8l6d daytime emmy award for outstanding children's animated program (Q3019369) /m/0dcfv d-sucrose (Q4027534) /m/015_1q columbia music video (Q183387) /m/01nn6c nicholas berkeley mason (Q192936) /m/011_3s edith ann (Q229271) /m/02x6dqb annie (1982 film) (Q566890) /m/0vzm paragon prep (Q16559) /m/05cw8 nov (Q125) /m/012w70 yue (language) (Q7033959) /m/07z1_q kathryn rausch (Q232511) /m/0f4dx2 garret dillahunt (Q712437) /m/01chc7 paul bethany (Q242707) /m/0djlxb i`m not there (Q816772) /m/0gjc4d3 superman: the man of steel(2009 movie) (Q622769) /m/06t8v slovenia (Q215) /m/0dl4z france and flanders 1916–17 (Q152989) /m/0d4jl john anthony burgess wilson (Q217619) /m/0psss charlotte gainsbourg (Q276005) /m/0154qm catherine elise blanchett (Q80966) /m/02j8nx mark gatiss (Q560286) /m/06gjk9 match point film (Q733677) /m/059gkk frank vincent gattuso (Q463407) /m/0jp26 guadalajara city (Q9022) /m/026njb5 red road (film) (Q63366) /m/07751 1955 sundance film festival (Q189887) /m/0347xl amy brenneman (Q232520) /m/01vsykc sean henry samuel (Q218091) /m/01jbx1 tyra banks (Q172303) /m/0gvs1kt extremely loud and incredibly close (film) (Q918769) /m/0gy6z9 mark wahlberg (Q164119) /m/0jvt9 how the west was won (film) (Q162518) /m/06mnps jim mcavoy (Q193659) /m/07_l6 alto viola (Q80284) /m/0jnmj oilerscoach (Q205973) /m/02qvgy forward (ice hockey) (Q543457) /m/013m43 garland, tex. (Q49274) /m/0978r cambridge (england) (Q350) /m/01w0v shire of cambridge (Q23112) /m/039c26 deadwood tv series (Q1050603) /m/08gg47 the world's fastest indian (Q128924) /m/04pyp5 /m/04pyp5 /m/03f7xg elliot and beverly mantle (Q635569) /m/01ksr1 ryan phillippe (Q273136) /m/0794g sandra bulock (Q40791) /m/09w1n ski slope (Q186222) /m/02rzdcp madmen (Q223977) /m/0c8qq anne of 1000 days (Q910226) /m/02p0szs historical fiction film (Q1196408) /m/02flpc /m/02flpc /m/02qvvv state normal college for colored students (Q1430048) /m/0jc_p ff7f00 (Q39338) /m/0407f james brown & the famous flames (Q5950) /m/03l6q0 scary movie 3.5 (Q635937) /m/02rgz97 mark irwin (Q1551917) /m/06j6l runub (Q45981) /m/030155 anita baker (Q255697) /m/03bnv hari georgeson (Q2643) /m/03n785 alien vs. predator(film) (Q155163) /m/05nn2c davis entertainment (Q2579492) /m/014488 harold george bellanfanti, jr. (Q214959) /m/073v6 mosby's memoirs (Q83059) /m/01b_lz l&o:special victims unit (Q218567) /m/03bxsw brenda blethyn (Q229952) /m/016622 chimes (Q178812) /m/02f8lw she was nice to mice (Q253513) /m/0946bb assassins (film) (Q739498) /m/02slt7 canal+ (Q1032540) /m/0bz6l9 42nd academy awards nominees and winners (Q221467) /m/01yjl the cubbies (Q246782) /m/02pq_rp 2006 mlb draft (Q4606568) /m/0jcx chasing a light beam (Q937) /m/032l1 fyodor dostoievski (Q991) /m/01yz0x retro hugo award for best novel (Q255032) /m/01dhmw gay haldeman (Q347461) /m/0d9_96 david a goodman (Q5230469) /m/027xbpw danny smith (writer) (Q5220838) /m/05wh0sh /m/05wh0sh /m/04gc2 /m/04gc2 /m/05np4c ellen pompoe (Q215849) /m/02rrfzf spy kids (film) (Q550581) /m/09qgm /m/09qgm /m/02g_7z tight end (Q1153176) /m/03gqb0k /m/03gqb0k /m/07xr3w joseph ruttenberg (Q657828) /m/0m7d0 rodfield, pennsylvania (Q156291) /m/01q2sk carnegie institute of technology (Q558977) /m/0jdd afghanistan, i.s. of (Q889) /m/0494n kabul city (Q5838) /m/01q460 university of singapore (Q738236) /m/06cs1 research methods (Q42240) /m/04w8f republic of mongolia (Q711) /m/01n8gr through the years tour (Q217160) /m/0g1x2_ childlove (Q8388) /m/0fnmz california state university system (Q815352) /m/01yd8v bridget jane fonda (Q913872) /m/0p5wz parkes institute (Q76473) /m/01fjz9 motherwell fc (Q216523) /m/036k5h gray (colour) (Q42519) /m/02f716 best direction (Q915665) /m/01rzqj kiefer sutherland (Q103946) /m/02r5dz harrah's entertainment inc. (Q892498) /m/02jjt live entertainment (Q173799) /m/0jswp high noon (1952 film) (Q245208) /m/059kh new wave/rock (Q187760) /m/07qy0b david newman (composer) (Q952428) /m/0m2rv downtown flint (Q490584) /m/0ply0 the city beautiful (Q49233) /m/01vsy95 tap (album) (Q213887) /m/02pzc4 roy haines (Q448235) /m/05g8pg kung fu hustle 2 (Q470759) /m/0gj8nq2 abraham lincoln, vampire hunter (film) (Q587707) /m/01lcxbb frederick dewayne hubbard (Q346762) /m/02y7t7 nasdaq:sbgi (Q2288792) /m/03mdt hbo plus (Q23633) /m/01l_vgt amanda lear (Q454010) /m/03m10r fc dynamo kyiv reserves (Q179075) /m/01w272y raph saadiq (Q1337779) /m/016kz1 flashdance (Q611043) /m/03mkk4 m.f.a. (Q4175466) /m/02fgdx southern methodist (Q1536258) /m/01rwyq malcolm x (1992 movie) (Q923925) /m/0mkz artificial intelligence/theory (Q11660) /m/017j6 don't mosh in the ramen shop (Q214039) /m/02f76h mtv video music award for best hip hop video (Q263702) /m/0jwmp 27b stroke 6 (Q25057) /m/02607j hofstrau (Q1623314) /m/01_rh4 george hosato takei altman (Q110154) /m/02xp18 brian henson (Q2284236) /m/015f7 sam lutfi (Q11975) /m/02n9bh strictly ballroom (1992 movie) (Q1346439) /m/01gx5f m. patton (Q316878) /m/0pf2 applied math (Q33521) /m/01wz_ml books/chuck berry (Q5921) /m/01pcbg frederick charles willard (Q449521) /m/02qwg eric clapton & his band (Q48187) /m/01jrbv the birdcage (Q1160005) /m/01wyy_ john milius (Q83859) /m/07ym6ss /m/07ym6ss /m/0fqyc north-holland (Q701) /m/0h095 waarderpolder (Q9920) /m/0680x0 strings (instrument) (Q326426) /m/02bh9 dan elfman (Q193338) /m/0f1_p gugarat (Q1061) /m/01d88c phss (Q1070) /m/01f3p_ dark priest (Q162371) /m/0b6yp2 marco beltrami (Q465754) /m/04n3l queens island (Q18438) /m/02183k uga navbox (Q761534) /m/0p8r1 john ratzenberger (Q374093) /m/02w4b flugelhornist (Q382616) /m/03cfjg marty stuart (Q706332) /m/0134s5 ac⚡dc (Q27593) /m/05r5w pam anderson (Q83325) /m/07g2v thomas lee bass (Q331748) /m/09g7vfw dark shadows 2 (Q323318) /m/01w5m king's college (new york) (Q49088) /m/0qm9n coal miner's daughter soundtrack (Q1285467) /m/017xm3 loretta lynn/doc (Q272931) /m/0dzkq jacques derrida (Q130631) /m/01jdpf interviewer (Q178651) /m/0ctb4g atonement (2007 film) (Q1626186) /m/025ygqm 2004 mlb season (Q2606383) /m/088q4 rhodesia (Q954) /m/0299hs robocop (1987 film) (Q372514) /m/02bfxb frances walsh (Q116861) /m/03hl6lc /m/03hl6lc /m/03_r_5 tunisia national football team (Q27971) /m/02_xgp2 /m/02_xgp2 /m/0glnm the gay divorcee (Q947098) /m/03ksy harvard university concord field station (Q13371) /m/0jjw art (Q735) /m/07yvsn marie-antoinette (2006 film) (Q829695) /m/0m_v0 t. bone burnett (Q1225141) /m/0m2gz litchfield county, connecticut (Q54235) /m/0d1_f queen elizabeth ii of new zealand (Q9682) /m/0d06m5 rodham-clinton (Q6294) /m/01_j71 doris may roberts (Q232959) /m/02_n5d pat heaton (Q231004) /m/029jpy new england population (Q18389) /m/03_9hm msndi (Q207337) /m/0rd5k fairfield (connecticut) (Q754635) /m/040t74 janel wallace moloney (Q114447) /m/0dgpwnk this must be the place (film) (Q511347) /m/0123_x barcelona province (disambiguation) (Q81949) /m/02rn00y up (2009) (Q174811) /m/05jcn8 pete docter (Q357627) /m/03x7hd emile (ratatouille) (Q170035) /m/0gqxm academy award for makeup (Q487136) /m/0g_w the academy awards (Q19020) /m/092t4b screen actors guild awards 2001 (Q1605791) /m/02l4pj emily margaret watson (Q229535) /m/061dn_ twc-dimension (Q1138789) /m/02bqmq one hundred-third united states congress (Q3556780) /m/04n1q6 provost (academic) (Q2114175) /m/04264n keenan wynn (Q946859) /m/03_6y josh jackson (actor) (Q219653) /m/02h3d1 grammy award for best musical theater album (Q3113385) /m/0cxn2 ice creme (Q13233) /m/0h1zw threonine metabolism (Q186521) /m/02_4fn kim ki-duk (born 1960) (Q212990) /m/07cyl fava beans and a nice chianti (Q133654) /m/01vv6_6 saul hudson aka slash (Q34166) /m/04lgybj 40th canadian parliament (Q2816734) /m/05j49 terre-neuve (province) (Q2003) /m/02krdz daddy would you like some sausage? (Q1452656) /m/0n00 turing (Q7251) /m/01fwpt what about joan (Q272946) /m/03mp54 elfsborg i.f. (Q211753) /m/043q4d contestants (Q5165152) /m/01wyz92 hard core 2k13 (Q229379) /m/017z49 memento (movie) (Q190525) /m/01jpmpv dmitri tiomkin (Q317033) /m/05k17c vice-president (education) (Q723682) /m/01mpwj harvard college (Q49123) /m/0m7yy peabodys (Q838121) /m/01w92 channel four international (Q501070) /m/02f71y mtv video music award for best choreography (Q849435) /m/0193x biochemical phenomena (Q7094) /m/05qfh phsycology (Q9418) /m/0gtvpkw to rome with love (film) (Q29658) /m/01lvcs1 marcus miller (Q323467) /m/044gyq jill scott (Q232592) /m/01vw26l no vaseline ep (Q173637) /m/016h4r chris christopherson (Q208681) /m/011ysn thin red line (Q221491) /m/01h320 james a. michener (Q361653) /m/02fqrf batman begins (novelisation) (Q166262) /m/03qgjwc independent spirit award for best supporting actress (Q2294705) /m/0221zw sex, lies & videotapes (Q1367548) /m/0f2v0 miami (afl) (Q8652) /m/01z0rcq mk olsen (Q1151944) /m/024dgj chris martin (musician) (Q712860) /m/012gq6 george robert "bob" newhart (Q718078) /m/0p_qr coming home (1978 film) (Q1114683) /m/03mqtr political drama (Q7210294) /m/03459x terri flores (Q464042) /m/05ztrmj mtv movie award for best fight (Q734036) /m/03fmfs lincoln university (pennsylvania) (Q4570781) /m/07cdz benjamin braddock (Q217627) /m/01rgcg james e. reilly (Q1874622) /m/04grkmd taking woodstock (Q696652) /m/0pspl communication, culture & technology (Q333886) /m/04vh83 laurence olivier's richard iii (Q1968853) /m/082gq military drama (Q369747) /m/05563d the mothers (Q530362) /m/09rsjpv redtails (Q1506057) /m/0fz20l 16th academy awards (Q148609) /m/02sj1x alfred newman (composer) (Q367032) /m/03gkn5 rob gates (Q212979) /m/0tbql wichita kansas (Q49266) /m/03np3w tony plana (Q544692) /m/016kv6 salvador (movie) (Q1348423) /m/06r2_ star trek ⅱ: the wrath of khan (Q465478) /m/01v3bn spangler arlington taylor (Q145132) /m/0z843 muskogee, ok (Q524233) /m/085pr s morgenstern (Q506885) /m/02pq9yv graham king (Q653159) /m/0212mp clarets (Q19458) /m/0bq3x serial killers still at large (Q484188) /m/0c34mt from hell (film) (Q470771) /m/04ydr95 the book of eli (Q274529) /m/01fdc0 lynn redgrave (Q156552) /m/051zy_b a few good men (film) (Q108946) /m/0f4yh indiana jones: raiders of the lost ark (Q174284) /m/07cjqy the mac guy (Q298672) /m/09lcsj seraphim falls (Q1354162) /m/0jdk0 lymph node cancer (Q208414) /m/01kstn9 john cowan hartford (Q704700) /m/024tcq one hundred-eighth united states congress (Q168504) /m/040_9 jozef teodor nalecz konrad korzeniowski (Q82925) /m/03hnd hg wells (Q42511) /m/0778p lemieux library and mcgoldrick learning commons (Q615873) /m/0phrl dool (Q185059) /m/02pzxlw /m/02pzxlw /m/04gycf joseph anthony fatone, jr. (Q1640877) /m/039bpc nicholas scott lachey (Q356109) /m/03gyh_z robert f. boyle (Q521400) /m/017kct oh! what a lovely war! (Q2545565) /m/07bxhl bhutan (Q917) /m/07nv3_ mark bresciano (Q312510) /m/0gxkm associazione calcio parma (Q2693) /m/0bq2g gwennyth paltrow (Q34460) /m/035d1m whitewater slalom/comments (Q31874) /m/098n5 larry gelbart (Q1806065) /m/01qr1_ jane krakowski (Q230268) /m/09_gdc unseen footage (Q5253643) /m/02xtxw cady heron (Q631103) /m/0391jz rachel anne mcadams (Q190386) /m/09xq9d types of logic (Q8078) /m/025sc50 modern r&b (Q850412) /m/09bg4l thirty-fourth vice president of the united states (Q11613) /m/026gvfj the lee strasberg institute (Q1542213) /m/0cp0ph6 bad teacher 2 (Q798797) /m/04jpk2 tommy (1975 film) (Q1419797) /m/02_kd four weddings and a funeral (film) (Q901213) /m/0b13g7 tim bevan (Q1473065) /m/011hdn calico cooper (Q332032) /m/0b05xm glen morgan (Q954319) /m/07lwsz howard gordon (Q2410088) /m/02kxbx3 /m/02kxbx3 /m/011yl_ shine (movie) (Q826494) /m/094wz7q /m/094wz7q /m/02fx3c damian lewis filmography (Q342533) /m/012fvq swarthmore university (Q1378320) /m/08z129 sbc communications incorporated (Q35476) /m/0bc773 59th academy awards (Q917235) /m/0k269 ewan mcgregor (Q165518) /m/01l1hr rocked with gina gershon (Q229325) /m/03fhm5 bohemian fc (Q212708) /m/0blt6 david william duchovny (Q484365) /m/07hwkr white americans (Q49078) /m/01k5zk mary debra winger (Q229009) /m/07h1h5 casper schmeichel (Q295797) /m/02s2lg denmark national soccer team (Q131785) /m/0900j5 the texas chainsaw massacre (2003) (Q392696) /m/0ntpv allen county, in (Q493443) /m/0xnvg italian-american (Q974693) /m/0t_2 engvara spelling (Q7976) /m/0jw67 michael moore controversies (Q174908) /m/03yj_0n franklin shea whigham, jr. (Q3959303) /m/0bv8h2 the bicentennial man (film) (Q170250) /m/0cc5qkt war horse film (Q218589) /m/021dvj ballet composers (Q4851628) /m/03rbzn walking (sport) (Q202391) /m/0kxf1 battleground (film) (Q1620831) /m/0gc_c_ land of the lost (film) (Q780981) /m/0830vk the holiday (soundtrack) (Q478748) /m/04psyp brent and shane kinsman (Q14638639) /m/09gkx35 the guard (2011 film) (Q964909) /m/03v3xp clive owen (Q183178) /m/04cj79 closer (2004 film) (Q212098) /m/0gh65c5 cloud atlas sextet (Q28936) /m/0412f5y kuk harrell (Q1653721) /m/02lbrd faith hendricksen (Q985460) /m/058m5m4 15th sag awards (Q1463450) /m/0d66j2 brothers and sisters (tv series) (Q390076) /m/01n7qlf e.g. dailey (Q258255) /m/04z257 the brothers grimm (movie) (Q707880) /m/09blyk psychological thriller film (Q590103) /m/0fy66 manchurian candidate (Q521387) /m/03kdl hoover, herbert clark (Q35236) /m/025t7ly quaker testimonies (Q170208) /m/0gvx_ oscar for best documentary (Q111332) /m/0bzn6_ 57th academy awards nominees and winners (Q427425) /m/0fphgb lucky numbers (Q1569923) /m/01w_d6 die borussen (Q41420) /m/088fh yellow (colour) (Q943) /m/03pbf hannover unrra displaced persons camp (Q1715) /m/04p0c low saxony (Q1197) /m/027hjff 13th screen actors guild awards (Q683394) /m/02xs0q /m/02xs0q /m/01j7mr daily show (Q824192) /m/09qh1 film career of cary grant (Q83410) /m/08b8vd laraine day (Q466063) /m/07fvf1 mike scully productions (Q655207) /m/0557yqh mouse rat (Q218035) /m/02f73p mtv video music award for best cinematography (Q615682) /m/01309x taylor, james (Q310300) /m/01ft2l edward danson (Q381203) /m/07b_l religion in texas (Q1439) /m/019pcs ethiopia (Q115) /m/03pmfw coolpix s6 (Q1218180) /m/09p06 otto ludwig preminger (Q52997) /m/04vvh9 the cardinal (1963 film) (Q737065) /m/02ny6g john spartan (Q470891) /m/07b1gq judge dredd (1995 film) (Q645597) /m/03fyrh greco-roman wrestler (Q389654) /m/0dls3 grunge lyrics (Q11365) /m/0d1qmz bond 5 (Q107761) /m/057hz mary tyler moore (Q41342) /m/0253b6 tia carrere (Q286570) /m/0hnf5vm mtv movie award for best dance sequence (Q4220897) /m/01c9jp best pop performance by a duo or group (Q747902) /m/03m6t5 rich little (Q1341644) /m/0zygc finlandia, pennsylvania (Q368045) /m/0f6_x james earl jones (Q203960) /m/015w9s made for tv movie (Q506240) /m/06yszk tsv braunschweig (Q154053) /m/0gfq9 causes of the boxer rebellion (Q150229) /m/06b9n manchu ch'ing (Q8733) /m/02lx0 republica democratica de timor-leste (Q574) /m/01w8n89 gorgone (album) (Q265252) /m/03b3j 2019 green bay packers season (Q213837) /m/0dwxr modern pentathalon (Q32485) /m/02p7_k powers booth (Q503027) /m/01pcql jennifer ann agutter (Q234883) /m/02vyw ford coppola (Q56094) /m/02yl42 jonathan lethem (Q440100) /m/059xvg garry chalk (actor) (Q267772) /m/04d5v9 college of physicians and surgeons of new york (Q2154182) /m/02681xs /m/02681xs /m/0phx4 damond albarn (Q272069) /m/08n9ng ian corlett (Q3090795) /m/01gtcc 26th u.s. congress (Q4632497) /m/05tbn the coal state (Q1400) /m/018m5q fitzwilliam college (Q797897) /m/024mxd superman four (Q1123006) /m/021yw7 the new adeventures of the flintstones (Q188492) /m/05tg3 philadelphia eagles hall of fame (Q219714) /m/07d370 time to say "please"! (Q4354658) /m/01cdjp caldecott honor (Q1026417) /m/0l2hf county of marin, california (Q108117) /m/02tfl8 stomachache (Q183425) /m/025hl8 ovary neoplasm (Q172341) /m/01sxdy /m/01sxdy /m/04qmr xero (demo album) (Q261) /m/0161c iso 3166-1:bh (Q398) /m/06q8qh a prairie home companion (film) (Q785709) /m/0bytfv ann roth (Q508660) /m/0fx02 ian fleming (Q82104) /m/026_w57 lois smith (Q258246) /m/03zyvw nancy marchand (Q257065) /m/019fh buffalonian (Q40435) /m/03h4mp georges delerue (Q435034) /m/018mmj forest lawn memorial park, glendale (Q1437214) /m/03kpvp michael gregg wilson (Q460578) /m/03r0g9 casino royale (2006 film) (Q151904) /m/016tb7 lisa diane marie kudrow (Q179041) /m/02t4yc wku (Q1474105) /m/0325pb /m/0325pb /m/026_dcw christopher lloyd (screenwriter) (Q983238) /m/012wgb irlande (Q22890) /m/024lff the fast and the furious 2 (Q222867) /m/016fjj christopher wlaken (Q185051) /m/01kwhf norwich city f. c. (Q18721) /m/02dlh2 conga drums (Q270200) /m/03fb3t city and county of honolulu (hawaii) (Q487704) /m/02114t scarlet johanssen (Q34436) /m/01jzyf the man who wasnt there (Q913440) /m/016ksk young v (Q722042) /m/013knm zeta jones (Q47664) /m/031296 julie bowen (Q40248) /m/03pvt hefner, hugh m. (Q194280) /m/052h3 murray rothbard (Q297079) /m/0gz_ aristotole (Q868) /m/03czrpj /m/03czrpj /m/093dqjy winters bone (Q301049) /m/03lmx1 /m/03lmx1 /m/03gvt hammond elegante (Q105891) /m/07fpm3 ian glen (Q371430) /m/0bd2n4 daniel jonathan stevens (Q958385) /m/044crp estudiantes lp (Q214940) /m/03h2c name of honduras (Q783) /m/05hd32 runaway locomon (Q696346) /m/0cqgl9 screen actors guild award for outstanding female actor - miniseries or television film (Q2462064) /m/0hn6d 2009 stanley cup champions pittsburgh penguins (Q193643) /m/02qvzf stood on his head (Q1317534) /m/05jyb2 backstairs at the white house (mini-series) (Q2557171) /m/02q5xsx kim manners (Q463617) /m/03y9ccy vince gilligan (Q4500) /m/087vz yugo. (Q36704) /m/0jdk_ 2000 olympics (Q8544) /m/03shp iran (islamic republic of) (Q794) /m/01n_2f iranian national team (Q184602) /m/02cx72 stephen schwartz (composer) (Q542484) /m/01y9xg clea duvall (Q233347) /m/07v64s baroque rock (Q46046) /m/0lzkm jim orourke (Q547373) /m/0hw1j robert towne (Q721922) /m/01q32bd julian fuego thicke (Q467423) /m/0h8d american samoa/geography (Q16641) /m/01y0y6 paul reiser (Q430922) /m/0fpj4lx tom morello's guitar technique (Q297552) /m/01chg hindi movie industry (Q93196) /m/02w86hz enthiran (Q283490) /m/047d21r the fighter (2010 film) (Q323472) /m/0gg9_5q ryan kavanaugh (Q202945) /m/03cw411 reader (Q159063) /m/05z96 poetess (Q49757) /m/027r8p maura tierney (Q233027) /m/05zlld0 transformers live action movie (Q171453) /m/03ryn ri (Q252) /m/0_2v asdb (Q188822) /m/01d8yn aaron benjamin sorkin (Q299194) /m/0cn_b8 phunometer (Q1286387) /m/01_bkd alternative metal music (Q20378) /m/0p3r8 kelly osbourne: live at the electric ballroom (Q231182) /m/04954r around the world in eighty days (1956 movie) (Q696057) /m/01wgcvn latifah (Q1112005) /m/02vr3gz the orphanage (film) (Q923911) /m/02_p5w jim cummings (Q310292) /m/023p7l pocahontas (1995 movie) (Q218894) /m/03zg2x hope davis (Q236399) /m/0dzz6g american splendor (movie) (Q466961) /m/04x4s2 david chase/comments (Q381982) /m/0c7t58 terence winter (Q591945) /m/0mzvm springfield (massachussets) (Q49158) /m/04gp1d /m/04gp1d /m/02gkzs /m/02gkzs /m/01wbz9 robert palmer (british singer) (Q325412) /m/01n1gc ben stine (Q816605) /m/02yj7w peter krause (Q433513) /m/01r6jt2 jules styne (Q587741) /m/01vvdm samuel cohen (Q470040) /m/03q5db legend (1985 film) (Q509913) /m/01rm8b the frantic elevators (Q339430) /m/04k15 ludwig van beethoven's religious views (Q255) /m/02k13d stand-up (news) (Q1155838) /m/01_8w2 nelson benton (Q861764) /m/012vwb the university of clemson (Q631066) /m/07h34 art of tennessee (Q1509) /m/01pq4w vanderbuilt university (Q29052) /m/015wnl sir john vincent hurt (Q200405) /m/0kvgtf even cowgirls get the blues (film) (Q1422017) /m/092ys_y tom johnson (sound engineer) (Q7816353) /m/01wb95 the greatest story ever told (Q1218601) /m/0bmhvpr the descendants (Q273686) /m/01lly5 thomas james kenny (Q299282) /m/071cn syracuse, n.y. (Q128069) /m/063ykwt zach florrick (Q19570) /m/0chrwb o'brien, liam (Q908941) /m/09r9dp jonathan d. hamm (Q313107) /m/07kh6f3 the town (2010 film) (Q725539) /m/02mplj hamburger sport-verein (Q51974) /m/063472 euterpe (production company) (Q1691552) /m/0k8z aapl (nasdaq) (Q312) /m/0r679 cupertino, ca (Q189471) /m/0178g the boeing co. (Q66) /m/0kh6b david frederick attenborough (Q183337) /m/0b_6zk 1996 ncaa division i men's basketball tournament (Q3994972) /m/02ptzz0 /m/02ptzz0 /m/04psf leukaemia (Q29496) /m/0ly5n fred mcmurray (Q356309) /m/0h9c astroboffin (Q11063) /m/06q2q scientists (Q901) /m/08vd2q sunday bloody sunday (film) (Q1360124) /m/02b1cn dunfermline athletic f.c. (Q390256) /m/05_pkf uptown uptempo woman (Q954231) /m/0br1w straczynski (Q126941) /m/0xrzh downtown paterson, new jersey (Q138391) /m/03xkps beau bridges (Q309640) /m/063lqs hogan sheffer (Q5877090) /m/02b2np hull city a f c (Q19477) /m/01pr6q7 max steiner (Q350704) /m/0c3xw46 friends with benefits (film) (Q629596) /m/07vfj rochester yellowjackets track and field (Q149990) /m/01xbpn orlando pirates (Q607939) /m/02g5h5 peter macnicol (Q299309) /m/05mkhs emile hirsch (Q244678) /m/0164nb david hasselhoff (Q201927) /m/03v0t illinoid (Q1204) /m/0xddr political organization of bloomington, mn (Q490737) /m/02qzmz6 sliver (film) (Q581642) /m/0kw4j american.edu (Q168000) /m/02pqs8l bloodcopy (Q186219) /m/0ytc a.s.rome (Q2739) /m/04s7y mb (Q1948) /m/01kxnd brandon, manitoba (Q61432) /m/0yx7h i won't be ignored, dan (Q504157) /m/01vqrm אטום אגוין (Q212167) /m/0fqyzz robert lantos (Q847366) /m/0dgshf6 hundred flowers award for best actress (Q5942219) /m/0gjcrrw '''''i don't know how she does it''''' (Q723026) /m/059_y8d 2009 berlin festival (Q572335) /m/0qr4n prescott, az (Q79931) /m/02ht1k a mighty wind (Q1754773) /m/01wzlxj d'angelo (Q933598) /m/01cky2 /m/01cky2 /m/01gv_f anne margaret (Q232059) /m/01f08r dubai emirate (Q613) /m/05c26ss dreamworks madagascar 3: the video game (Q244247) /m/0mlyw mount vernon-anacortes, wa metropolitan statistical area (Q113892) /m/07s8hms stuhlbarg, michael (Q438445) /m/0cjsxp michael shannon (actor) (Q41449) /m/080nwsb footloose (2011) (Q1197869) /m/02_qt final fantasy:the spirits within (Q752541) /m/0639bg the chronicles of narnia: the lion, the witch, and the wardrobe (Q485803) /m/05qck presidential medal (Q17144) /m/0d_wms superman ii: director's cut (Q1292541) /m/05sy2k_ mystic falls (the vampire diaries) (Q28537) /m/0f8pz baron lloyd-webber (Q180975) /m/047fjjr shanghai (2010 film) (Q582284) /m/088_9g bellator frusino (Q845043) /m/0bt7ws angela kinsey (Q2669971) /m/019vgs timothy a. dick (Q208408) /m/03q0r1 cars (2006 film) (Q182153) /m/0jgx iso 3166-1:am (Q399) /m/017vkx trevor horn (Q313092) /m/03z106 we were soldiers (Q623502) /m/05jm7 neil gayman (Q210059) /m/0c57yj mumford (film) (Q137595) /m/062dn7 pattinson, robert (Q36767) /m/013_vh daniel radcliffe filmography (Q38119) /m/076_74 james schamus (Q1354081) /m/0dx8gj lust, caution (film) (Q718524) /m/03f5vvx miss thatcher (Q7416) /m/01_xtx bradley cooper (Q205707) /m/02jtjz julia o'hara stiles (Q210120) /m/0bkg4 brian h. may (Q15873) /m/01fs_4 bea arthur (Q138576) /m/06gd4 the road to graceland tour (Q203185) /m/0btyl ava gardner/comments (Q164487) /m/02b0xq f.c. bournemouth (Q19568) /m/025t9b jason issacs (Q214223) /m/0jrqq manōj nelliyaṭṭu śiyāmaḷan (Q51489) /m/015kg1 epitaph records (Q726153) /m/0mgcr theoffspring (Q157041) /m/02xv8m oliver platt (Q343510) /m/0843m windsor ontario (Q182625) /m/03nfmq architecturally (Q12271) /m/0bbxx9b randy thom (Q2130828) /m/0b1f49 brad grey (Q633631) /m/04lqvlr divo (Q115385) /m/0mcl0 out of africa (film) (Q208266) /m/0r4xt coronado, california (Q828753) /m/0cqt90 p:djt (Q22686) /m/019w9j men's rhythmic gymnastics (Q61465) /m/0198b6 happy together (1997 film) (Q1204213) /m/02bh8z the warner music group (Q21077) /m/01gfq4 rykodisk (Q656752) /m/0fhpv4 critics' choice movie award for best score (Q922326) /m/01gg59 list of songs performed by a. r. rahman (Q108560) /m/04n_g marvin, lee (Q76895) /m/0rj0z downtown fort lauderdale, fl (Q165972) /m/01v40wd nasir bin olu dara (Q194220) /m/01vxlbm kelis rogers (Q294979) /m/06jnvs greg daniels (Q1544904) /m/0cj2nl /m/0cj2nl /m/02dpl9 city of lost children (Q749988) /m/0ymdn trinity college, oxford (Q73079) /m/01n1pp università di bologna (Q131262) /m/061_f Q13099586 /m/0466p20 tocopherols (Q155753) /m/02z1nbg national board of review award for best lead actress (Q1419495) /m/024vjd /m/024vjd /m/02rq8k8 shining through (Q538438) /m/0cpz4k america's got talent(season 11) (Q467561) /m/03ccq3s primetime emmy award for outstanding writing for a comedy series (Q3045762) /m/07yp0f vera ann farmiga (Q264840) /m/04ly1 luisianna (Q1588) /m/0gcrg /m/0gcrg /m/01tc9r howard shore (Q207773) /m/02x1z2s satellite award for best animated or mixed media feature (Q2620855) /m/04w58 monacco (Q235) /m/01b1pf up college of arts and letters (Q746592) /m/0cf_h9 patrick o'neal (actor) (Q543762) /m/07gxw experimental techno (Q170611) /m/08cyft /m/08cyft /m/0p_47 steve martin (Q16473) /m/02psqkz kingdom of italy (1861-1946) (Q172579) /m/05_5rjx midnight in the garden of good and evil (film) (Q1470767) /m/09b3v the walt disney studio (Q7414) /m/05m_jsg 5 killers (Q1165208) /m/023znp wecb (emerson college) (Q1335573) /m/0288crq /m/0288crq /m/0h3mrc mindy chokalingam (Q539917) /m/0435vm the island (2005) (Q224069) /m/02f6xy male artist of the year (Q1064978) /m/08vr94 kristen carroll wiig (Q231382) /m/0gywn soul (musical genre) (Q131272) /m/01vvyfh georgios panayiotou (Q130311) /m/01svw8n strawberry girl (fergie album) (Q180004) /m/01qq_lp sophia scicoloni (Q43252) /m/050t68 philip finkel (Q1277484) /m/01vtqml waller v. osbourne (Q133151) /m/01ttg5 anthony kiedis/comments (Q204751) /m/09lk2 nord (departements) (Q12661) /m/0d8r8 history of lille (Q648) /m/031b3h /m/031b3h /m/024mpp hulk (film) (Q696042) /m/0dlw0 umbria, italy (Q1280) /m/062ftr paul feig (Q2031292) /m/0mj0c james, william (Q125249) /m/01zmqw ridgebury, connecticut (Q753930) /m/015whm being there (1979 film) (Q945074) /m/01p5yn lorimar film entertainment (Q1152955) /m/0kk9v picksar (Q127552) /m/027s39y wall-e (Q104905) /m/0q59y george abbott (Q1506831) /m/025v3k umn.edu (Q238101) /m/01ymvk virginia mourning her dead (Q785357) /m/02_2kg oberlin conservatory (Q750950) /m/03__y kingdom of jordan (Q810) /m/04fhn_ james robert rebhorn (Q726140) /m/065dc4 the da vinci code (movie) (Q160560) /m/02h761 ruth prawer (Q235759) /m/01wb8bs roger bart (Q634684) /m/05dxl5 andrea bowen (Q40473) /m/09r8l waylon jennings i (Q251287) /m/0gyh2wm hpoh (Q2604581) /m/0f6c3 atty. gen. (Q1501926) /m/0bzyh robert altman (Q55163) /m/06m6z6 david owen russell (Q314342) /m/01vrkdt wendy melvoin (Q460852) /m/02g75 phases of gravity (Q297538) /m/0sf9_ un/locode:uspia (Q233129) /m/04lqvly vals im bashir (Q160793) /m/03hkp history of hebrew (Q9288) /m/01p970 dagga (tabla) (Q213100) /m/047kn_ lyngby bk (Q635654) /m/014635 marc twain (Q7245) /m/01___w lecturers (Q1569495) /m/0jhn7 centennial olympic games (Q8531) /m/02cm2m kyle mcculloch (Q4275753) /m/01gssm 13th u.s. congress (Q4549554) /m/047q2wc /m/047q2wc /m/02v0ff al roker (Q3240869) /m/01jr6 city of berkeley (Q484678) /m/01wn718 skulls (lupe fiasco album) (Q310116) /m/03t5b6 grammy award for best rap solo performance (Q2709112) /m/01vw8k troy (film) (Q186587) /m/016yzz the late henry moss (Q294583) /m/047tsx3 the notebook (Q223374) /m/0sb1r lake forest, il (Q575355) /m/0fr0t tucson, usa (Q18575) /m/0h9dj skin malignancy (Q192102) /m/0bxfmk mali finn (Q529470) /m/0jymd laura (1944 movie) (Q976149) /m/0ncj8 boulder co (Q192517) /m/0blpg everyone says i love you (Q1334572) /m/0bsjcw tony award for best performance by a featured actress in a play (Q627778) /m/033srr national treasure (film) (Q309366) /m/05842k percussion (medicine) (Q1501797) /m/0pd6l nicholas and alexandra (Q512475) /m/099bk heidegger (Q48301) /m/0372p von leibniz (Q9047) /m/0fdys early modern english literature (Q186579) /m/02lnbg dancepop (Q211756) /m/0gbwp janet damita jo jackson (Q131324) /m/0184tc labrynth (film) (Q278053) /m/04w391 shia saide labeouf (Q180942) /m/011yfd postino: the postman (Q258647) /m/038bht william petersen (Q311892) /m/05t7c1 universitaet hamburg (Q156725) /m/01dvtx straussianism (Q77144) /m/01nm3s john goodman/comments (Q215072) /m/01g23m kate g. hudson (Q169946) /m/0425c5 lucky goldstar fc (Q482406) /m/03hmt9b /m/03hmt9b /m/07h07 tomas straussler (Q294773) /m/0320fn '' short cuts '' (Q605226) /m/0163m1 earth wind & fire (Q28974) /m/0gj50 pine valley (all my children) (Q205474) /m/025mb9 /m/025mb9 /m/037lyl johnny mandel (Q975609) /m/06gh0t jason momoa (Q315271) /m/06mnbn lena heady (Q228789) /m/09r4xx /m/09r4xx /m/02dk5q public school (u.s.) (Q1080794) /m/03qbh5 grammy award for best pop collaboration with vocals (Q691203) /m/04pf4r harry gregson williams (Q314623) /m/06fxnf john powell (composer) (Q313540) /m/0btbyn 3:10 to yuma (2007 film) (Q746029) /m/0884hk /m/0884hk /m/09hd16 arthur carlton cuse (Q443440) /m/0n04r anatomy of a murder (Q488376) /m/0v9qg /m/0v9qg /m/02wxvtv sharat saxena (Q7489431) /m/01w8g3 calendar girls (Q83789) /m/0lcx camus, albert (Q34670) /m/01c8v0 mark knofler (Q185343) /m/0hyxv glasgow’s west end (Q4093) /m/01y888 university of genf (Q503473) /m/0g9yrw howard the duck (movie) (Q1146570) /m/043s3 lockean (Q9353) /m/0h584v elizabeth sarnoff (Q1134799) /m/01xndd /m/01xndd /m/04m_zp graham yost (Q2712978) /m/015g28 lieutenant thomas peacock (Q208048) /m/02_sr1 rush hour ii (Q830208) /m/035rnz sunrise coigney (Q41422) /m/02mt51 eternal sunshine of the spotless minds (Q208269) /m/0gy2y8r hope springs (2012 film) (Q327214) /m/03lq43 jennifer esposito (Q233922) /m/06t74h william fichtner (Q220335) /m/01m15br christhile (Q596779) /m/06z6r swimming (sport) (Q31920) /m/07swvb k-stew (Q126599) /m/07s846j social network (Q185888) /m/0ddcbd5 johnny english returns (Q967478) /m/0nccd enfield (Q210531) /m/0kv9d3 painted veil (Q128854) /m/02t_v1 calogero lorenzo palminteri (Q338812) /m/050z2 mikeoldfield (Q3008) /m/01pkhw michael sheen (Q298276) /m/074w86 deuce bigalo: european gigolo (Q1201654) /m/034bs john freeman (Q3335) /m/01ycck sir alan william parker (Q271284) /m/0c2ry carole lombard/comments (Q207739) /m/03n93 hughes, howard (Q189081) /m/077qn iso 3166-1:rs (Q403) /m/05hj_k harvey winesteen (Q531599) /m/0498y us-ky (Q1603) /m/0bqsy furtado, nelly (Q80424) /m/08cx5g torchwood (tv series) (Q390120) /m/03bx_5q /m/03bx_5q /m/029_3 lettermanesque (Q217298) /m/0ph2w john william carson (Q310819) /m/02d478 21 grammes (Q214013) /m/0fbw6 culture of cabbage (Q35051) /m/0hqw8p_ phytylmenadione (Q186093) /m/0yl27 history of county down (Q190684) /m/05bcl northern ireland (uk) (Q26) /m/02lt8 edgar allan poe and the stories he has written (Q16867) /m/07dvs p:tjk (Q863) /m/01m1zk stamford, conn. (Q49169) /m/01n9d9 a stanley kramer company production (Q73136) /m/031q3w /m/031q3w /m/02vyh associated first national theatres, inc. (Q1188369) /m/011k_j kettle-drum (Q189737) /m/081g_l avex trax (Q1988428) /m/0dl567 tailor swift (Q26876) /m/096ysw anti- (epitaph) (Q295794) /m/016dsy no exit (marianne faithfull album) (Q48280) /m/0gmblvq game change (film) (Q655980) /m/01rf57 alias (tv series) (Q212807) /m/02wycg2 danny r mcbride (Q336400) /m/06_x996 up in the air (2009) (Q211429) /m/01hw5kk madmartigan (Q515931) /m/04xvh5 period drama (Q542475) /m/02kfzz ghost and the darkness (Q728488) /m/01sn3 sister cities of cleveland, ohio (Q37320) /m/09sdmz screen actors guild award for best male actor in a supporting role - motion picture (Q1260789) /m/0d05q4 republic of iraq (Q796) /m/0h6r5 goodfellas (film) (Q42047) /m/01gjlw association sportive de monaco football club (Q180305) /m/0hm4q rector magnificus (Q212071) /m/0pmcz rupert charles university (Q151510) /m/03zw80 dallas theological seminary, dts (Q3269488) /m/0bpbhm cookie's fortune (Q662838) /m/01f1r4 uc-santa barbara university (Q263064) /m/01lj9 pure chemistry (Q2329) /m/01vd7hn stuart duncan (Q3307638) /m/01m1dzc norman blake (american musician) (Q1514469) /m/02jsgf joan allen (Q229305) /m/0143hl ctv (bath) (Q1422458) /m/0824r us-wi (Q1537) /m/04fzk kristen dunst (Q76478) /m/073749 jennifer audrey coolidge (Q230278) /m/02648p atlåntis (Q215287) /m/01v3vp david ogden stiers (Q202449) /m/07tw_b the producers (2005 film) (Q2119348) /m/0cmc26r dangerous method (Q188159) /m/014z8v george dennis carlin (Q150651) /m/01b65l forrester originals boutiques (Q82729) /m/027qq9b outstanding daytime drama series (Q3019365) /m/04mnts ac ajaccio (Q270051) /m/0m9_5 old gold and royal purple (Q1277776) /m/07jxpf jarhead (film) (Q848785) /m/01tj34 candice bergen (Q106942) /m/04gqr al jumahiriyah al arabiyah al libiyah ash shabiyah al ishtirakiyah al uzma (Q1016) /m/01p1b jumhūriyyat tshād (Q657) /m/02xjb freestyle music (Q655514) /m/01wv9p magnus media (Q26625) /m/02r5qtm big bang theory theme (Q8539) /m/05slvm kate nelligan (Q266467) /m/086sj winona laura horowitz la mas linda (Q101797) /m/049mql alexander (2004 film) (Q162277) /m/015vq_ hoskins, bob (Q211283) /m/031rx9 fine line features (Q1416899) /m/06lpmt deconstructing harry (Q551762) /m/07kb7vh '' zookeeper '' (Q477070) /m/05c9zr eragon the movie (Q239296) /m/0dz8b swords and sorcery (Q1999690) /m/07cn2c stephanie grace morgenstern (Q3502206) /m/027cyf7 national board of review award for best cast (Q697007) /m/02jr6k frenzy (1972 film) (Q221587) /m/0410cp annabeth gish (Q230779) /m/027pfb2 scarlett (tv miniseries) (Q1520271) /m/012ky3 legrand jazz (Q313281) /m/01sb5r /m/01sb5r /m/0h_9252 2012 tony awards (Q2818024) /m/017yfz angel dust (gil scott-heron song) (Q378858) /m/0jxgx pinellas public library cooperative (Q494556) /m/0lhql saint petersburg, us (Q49236) /m/035wtd oklahoma city university school of drama (Q3443498) /m/0g28b1 victor b. miller (Q7926158) /m/026n3rs /m/026n3rs /m/017znw hibernian f.c. (Q192597) /m/0308kx steven bradford culp (Q465914) /m/06qm3 screwball comedy (Q248583) /m/0r0m6 malibu california (Q387047) /m/032zq6 what dreams may come (1998) (Q839434) /m/0294fd miranda otto (Q294975) /m/014g22 steenburgen (Q108935) /m/027_tg fx hd (us) (Q651228) /m/0gv10 nantucket island, massachusetts (Q49149) /m/01kh2m1 robert cray band (Q455723) /m/0g83dv breaking and entering (film) (Q241391) /m/011yr9 elizabeth (movie) (Q499656) /m/02qzh2 jersey girl (2004 film) (Q127897) /m/03x33n southern university baton rouge campus (Q627271) /m/01wy61y sheena ringo (Q234591) /m/0gqkd fukuoka (city) (Q26600) /m/047t_ languages of kiribati (Q710) /m/02mqc4 susan antonia williams stockard (Q1117390) /m/04y5j64 six degrees of separation (film) (Q1169609) /m/08fn5b flags of our fathers (film) (Q464951) /m/0dh73w henry bumstead (Q714747) /m/01f7v_ kar-wai wong (Q55431) /m/05l71 lv raiders (Q324523) /m/092j54 2003 national football league draft (Q3714946) /m/09lhln kevin betsy (Q3195661) /m/01wz01 kier dullea (Q692979) /m/07nxvj the good shepard (Q786562) /m/0d61px the man in the iron mask (1998 film) (Q1123463) /m/03nx8mj old dogs (film) (Q1229857) /m/0263ycg /m/0263ycg /m/0bmssv the night at the museum (film) (Q387601) /m/0pd57 "airport" (Q409022) /m/0171lb george stenius (Q288337) /m/0l380 cities of tulare county, california (Q109686) /m/07yg2 the velvet underground (Q103550) /m/024fz9 grammy award for best spoken word album for children (Q3113382) /m/01m3x5p wynton marsalis quartet (Q273076) /m/04gtdnh /m/04gtdnh /m/0f0qfz alan parsons (Q212089) /m/05mv4 oberlin college (Q616591) /m/02qhlwd valkyrie (movie) (Q159054) /m/026lg0s /m/026lg0s /m/02pqgt8 milena canonero (Q440313) /m/036px garth vader (Q216288) /m/02wrrm george kennedy, jr. (Q298818) /m/026bt_h /m/026bt_h /m/04cv9m all the king's men (2005 movie) (Q581964) /m/02ctzb /m/02ctzb /m/09b6zr g.w. bush (Q207) /m/01242_ mrs. brown (Q1516164) /m/05fky the flickertail state (Q1207) /m/016ndm western university (Q1144262) /m/025ldg kellly clarkson (Q483507) /m/0_75d noristown, pennsylvania (Q1010236) /m/0fxyd county of montgomery, pennsylvania (Q378527) /m/070g7 /m/070g7 /m/02dth1 peter boyle (Q315123) /m/0c3351 suspense (Q9503) /m/028qdb roy bittan (Q464238) /m/03k0yw rick nowels (Q3431589) /m/061xq pittsburg pirates (Q653772) /m/02gr81 uh health sciences center (Q1472358) /m/02t1cp william forsythe (actor) (Q350255) /m/0221g_ texas christian (Q2302280) /m/0nr_q johnson county, ia (Q485746) /m/0nryt linn county, iowa (Q485741) /m/0219q cary elwes (Q311093) /m/03q8ch michael kahn (film editor) (Q692550) /m/0hfzr /m/0hfzr /m/02v406 dolph lundgren filmography (Q181678) /m/03hbzj john romita, jr. (Q2570) /m/06wkj0 /m/06wkj0 /m/01v3ht uni of wales (Q1072029) /m/0j5g9 cymru (Q25) /m/051q5 mn vikings (Q221150) /m/02md2d st eligius hospital (Q1068952) /m/05qb8vx 82nd academy awards (Q189836) /m/09qvf4 primetime emmy award for outstanding guest actress – comedy series (Q2981152) /m/027b9k6 london film critics circle award for best actress (Q1868921) /m/020923 boalt hall (Q846183) /m/01gy7r william james pullman (Q315763) /m/01x72k claire forlani (Q40228) /m/04k4l leagueofnations (Q38130) /m/04j4tx /m/04j4tx /m/07mb57 chris menges (Q1077553) /m/01trf3 martin hayter short (Q329744) /m/01kp66 holly hunter (Q105660) /m/03176f /m/03176f /m/06hgbk škoda xanthi (Q750437) /m/01w524f steven patrick morrissey (Q202246) /m/04snp2 jeph loeb iii (Q1372513) /m/0x3b7 sjones23/emmylou harris (Q231286) /m/044qx jimmy stuart (Q102462) /m/0gcpc its a wonderful life (Q204191) /m/01vy_v8 frank richard oznowicz (Q311319) /m/0713r s.f.giants (Q308966) /m/028c_8 personal catcher (Q1050571) /m/0m8_v jean claude van dam (Q308840) /m/08jbxf jade bronson north (Q496065) /m/02vntj adam shulman (Q36301) /m/01zg98 james brolin (Q315051) /m/07vf5c evita (1996 movie) (Q245271) /m/057dxsg joseph kish (Q1707407) /m/05v1sb lyle reynolds wheeler (Q586320) /m/05qg6g zoë saldaña (Q190162) /m/0ccvx government of queens (Q18424) /m/0fbx6 juliette binoche (Q106275) /m/0lgxj the 1952 summer olympics (Q8407) /m/03lsq 2019 houston texans season (Q223514) /m/01q0kg sdsu open air theater (Q913861) /m/0dzc16 emilio estefan (Q838508) /m/01xcr4 babwa wawa (Q231417) /m/0h53c_5 /m/0h53c_5 /m/0d193h mookie blaylock (Q142701) /m/017y26 penn law (Q7896088) /m/02yplc molly shannon (Q239145) /m/0c2dl edward albee (Q219420) /m/06whf samuel becket (Q37327) /m/015qt5 art carney (Q182431) /m/08t9df backbone entertainment (Q389261) /m/02822 /m/02822 /m/05sns6 mr and ms smith (Q191040) /m/06wjf un/locode:cnsha (Q8686) /m/07jdr train (Q870) /m/062zjtt thor film (Q217020) /m/0g4c1t five (television) (Q1062280) /m/01hn_t thomas' christmas wonderland & other thomas adventures (Q501663) /m/0bs5k8r mao's last dancer (film) (Q622877) /m/046qq jon vincent voight (Q167520) /m/0kqj1 hbs (Q49126) /m/01y8cr mona greenberg (Q94992) /m/097zcz a streetcar named desire (1951 film) (Q212129) /m/035qlx cyprus national football team (Q188791) /m/02yxwd ray winston (Q310932) /m/031ydm cynthia watros (Q230109) /m/02fn5 dennis hopper (Q102711) /m/0k8y7 wood, natalie (Q180919) /m/03h2d4 strong, mark (Q312712) /m/05f4_n0 damon macready (Q2201) /m/018dyl klaus voormann (Q366700) /m/02cbvn faculty of agricultural sciences, aligarh muslim university (Q196544) /m/0gtxj2q step up 4ever (Q81044) /m/07jwr extrapulmonary (Q12204) /m/0zm1 a. p. chekhov (Q5685) /m/02rg_4 lafayette coll (Q1592074) /m/01r93l jude law filmography (Q160432) /m/09l3p natalie hershlag (Q37876) /m/07vyf u of a (Q503419) /m/04yt7 palin, michael edward (Q223985) /m/0l0mk santa cruz pacific avenue (Q159232) /m/04511f brannon braga (Q540510) /m/02q_4ph south pacific (1958 film) (Q2610975) /m/0d5_f johan august strindberg (Q7724) /m/06vbd syrien (Q858) /m/08qvhv gene reynolds (Q540613) /m/08952r ballad of ricky bobby (Q1421593) /m/0215hd fisher boom (Q373709) /m/037mp6 turkey national soccer team (Q483856) /m/012rng norman frederick jewison (Q309214) /m/0b78hw noam chomskey (Q9049) /m/01bpn lord bertrand russell (Q33760) /m/064vjs canoe race (Q1141850) /m/01xqw 'cello (Q8371) /m/06929s enron: the smartest guys in the room (Q1344190) /m/0243cq the nightmare before christmas trading card game (Q322328) /m/07rd7 tim burton films (Q56008) /m/0sxkh kiss of the spider woman (film) (Q1215865) /m/01j8yr waukesha (city), wisconsin (Q94919) /m/05q8pss razzie award for worst original song (Q1420891) /m/018009 eric banadinović (Q4440) /m/0884fm harry bernard cross (Q708256) /m/022wxh assassins: a film concerning rimbaud (Q446580) /m/0g26h Q5283295 /m/0gk4g ami (Q12152) /m/07_grx roy webb (Q1367973) /m/0flw6 jeff bridges (2011 album) (Q174843) /m/0fby2t jonah feldstein (Q313388) /m/0fz3b1 period blood girl (Q679611) /m/016yr0 eddie olmos (Q211415) /m/01z7_f james joseph gandolfini jr. (Q308722) /m/05c5z8j in the loop (Q770741) /m/0kvqv the spearhead effect (Q215478) /m/01hqk batsled (Q276523) /m/0cnl1c brian bruce baumgartner (Q2924850) /m/0cnl09 leslie david baker (Q1050211) /m/02xfrd chiranjeevi konidala (Q313243) /m/0c8tk chennai schools (Q1352) /m/0bpm4yw batman 7 (Q189330) /m/01cj6y adrien brody (Q104514) /m/0bqxw emory university (Q621043) /m/0jwl2 list of house of mouse characters (Q693268) /m/021l5s terre haute state normal (Q666128) /m/02fjzt university of rhode island historic district (Q1641788) /m/01k3s2 university of alberta faculty of science (Q640694) /m/02cx90 ak&us (Q371782) /m/03x83_ /m/03x83_ /m/073w14 elias koteas (Q379808) /m/0jmj allan alda (Q310394) /m/04smdd crimes and misdeamoners (1989 film) (Q181555) /m/035tlh horace spangler weiser (Q4412277) /m/01dvms patsy louise neal (Q191027) /m/0_vn7 knoxville, tennessee (Q185582) /m/03lv4x 'breaker' morant (Q1195774) /m/09v71cj the beaver (film) (Q847940) /m/06mn7 stanley kubrick's (Q2001) /m/0lgw7 freelance photography (Q33231) /m/08tq4x ulysses' gaze (Q668280) /m/06wxw saint louis, missouri (Q38022) /m/0mw7h york-hanover-gettysburg, pa csa (Q490914) /m/0mwsh rockville, pa (Q488690) /m/0g9lm2 the queen (soundtrack) (Q223367) /m/0f502 jet travolta (Q80938) /m/03wbqc4 the taking of pelham 1 2 3 (2009 film) (Q869719) /m/02j3w redhead park of des moines iowa (Q39709) /m/033x5p university of pacific (Q630226) /m/065zf3p rasenballsport leipzig (Q702455) /m/0c_zj downing college, cambridge (Q181461) /m/01vxxb billy zane (Q205435) /m/02kxwk bobo bates (Q544465) /m/0b_6x2 1993 ncaa men's division i basketball tournament (Q3994969) /m/02pqcfz southern branch grizzlies men's basketball (Q3615392) /m/015wfg roy scheider (Q216569) /m/05txrz rogen, seth (Q220308) /m/02rmd_2 zack & miri (Q139927) /m/03c3jzx mongol invasion of middle east (Q2092093) /m/02bwc7 burnett, mark (Q3294019) /m/01rxyb kill bill, volume i (Q165325) /m/062hgx gideon adlon (Q271426) /m/02pt6k_ /m/02pt6k_ /m/057lbk fantastic 4 (2005 film) (Q224130) /m/01vsps john houseman (Q315734) /m/03z509 amanda plummer (Q238483) /m/0qf11 roderick stewart (Q182655) /m/03tk6z /m/03tk6z /m/07b3r9 tony thomas (producer) (Q3531913) /m/01b9w3 soap tv show (Q1247292) /m/03xp8d5 james l brooks (Q95125) /m/0fc9js /m/0fc9js /m/0kvnn list of songs recorded by elliott smith (Q210428) /m/0fz2y7 31st academy awards (Q178975) /m/03l3jy left of zed (Q312705) /m/0h6rm edinburgh university conservative and unionist association (Q160302) /m/08yx9q eric dane (Q299421) /m/06gb1w x3 (film) (Q221168) /m/0b6mgp_ gary summers (Q1494959) /m/049qx kylie discography (Q11998) /m/01mt1fy donnie wayne johnson (Q309788) /m/06nr2h life and death of peter sellers (Q581733) /m/0gyx4 henry w. beatty (Q95030) /m/0h32q vanessa redgrave cbe (Q347879) /m/055td_ the crucible (1996 film) (Q596984) /m/02mjf2 matthew david mcconaughey (Q188955) /m/02lg3y andrea donna de matteo (Q232965) /m/06ryl sports in saint kitts and nevis (Q763) /m/0j7v_ plan g (Q7785) /m/0cq7tx sound of music sing-along (Q60072) /m/03thw4 ernest lehman (Q1356427) /m/02ltg3 elftal (Q47050) /m/039crh shannen doherty (Q207598) /m/04yqlk teri polo (Q236300) /m/03tps5 martha focker (Q740489) /m/017j69 north-western university (Q309350) /m/033jkj the greatest love story ever told: an oral history (Q234137) /m/0l34j cities of solano county, california (Q108083) /m/0gjcy north vallejo (Q208445) /m/018z_c marly matlin (Q213287) /m/06msq2 /m/06msq2 /m/099vwn critics' choice movie award for best song (Q904344) /m/04mhl laurence van cott niven (Q316610) /m/02664f nebula award for best short story (Q610903) /m/0d35y arizona military museum (Q16556) /m/01pfkw e&s music (Q162629) /m/0166v khama's country (Q963) /m/06zn2v2 don't be afraid of the dark (2011 film) (Q2299378) /m/076psv walter m. scott (Q506302) /m/0blfl bids for the 1948 winter olympics (Q9615) /m/0979zs wurlitzer ep-200a (Q1759986) /m/0c1gj5 hc salavat yulaev ufa (Q1142030) /m/07k8rt4 green hornet (2011 film) (Q738152) /m/02jxmr james newton-howard (Q213869) /m/0g33q rub-board (Q1123029) /m/043sct5 the good, the bad and the weird (Q488947) /m/0pd4f patton (movie) (Q217220) /m/02xwq9 robert guillaume (Q465442) /m/01k70_ jenna welch bush (Q153481) /m/0674cw hrishikesh mukherji (Q55408) /m/0bvqq collegiate church of st peter, westminster (Q5933) /m/015c4g bob duvall (Q171736) /m/01gsrl tenth united states congress (Q4547180) /m/033tln eric stoltz (Q318267) /m/04g4n lesliecaron (Q230023) /m/01y64_ lena maria jonna olin (Q228862) /m/0125xq floston paradise (Q106506) /m/06mp7 swedophone (Q9027) /m/0b6k___ filmfare best director awards (Q1113428) /m/09fn1w akbar-jodha (Q573112) /m/0c53zb 26th academy awards (Q516479) /m/0db94w 괴물 (Q488222) /m/03nqbvz sam o'steen (Q2216597) /m/01k60v silkwood (Q1412037) /m/0d5wn3 stuart craig (Q979511) /m/0d1w9 segregation unit (Q40357) /m/04pxcx heather mitts feeley (Q240714) /m/034r25 king arthur (2004) (Q337090) /m/0dr_9t7 bernie (2011 film) (Q1029212) /m/016y_f '' cape fear '' (Q501995) /m/0h778 wilksbarre, pennsylvania (Q745594) /m/0m_q0 sayonara (Q614864) /m/03cfkrw the end of the affair (1999 film) (Q1167725) /m/03fykz david x cohen (Q455743) /m/0yxm1 moonstruck (movie) (Q1336107) /m/0fcsd asia(band) (Q726891) /m/01900g chris tucker (Q219717) /m/016ks_ woods, james (Q193105) /m/05pdh86 twilight: new moon (Q116928) /m/086nl7 bill hader (Q14537) /m/01_x6d matthew richard "matt" stone (Q44410) /m/01wwvd2 antonio "la reid" reid (Q604575) /m/03hzl42 noah taylor (Q563177) /m/043vc jacksonville jaguars (Q272223) /m/02y_2y spirit dance entertainment (Q182763) /m/026g73 bongocero (Q243998) /m/03nk3t stephen frears (Q55258) /m/0m_31 arthel lane watson (Q465636) /m/01vvyvk mary jane blige (Q228909) /m/01ws9n6 steve garrett (Q1511182) /m/01vw20h shawn knowles-carter (Q62766) /m/0gv5c ben hecht (Q267441) /m/028k57 the dad from american pie (Q312129) /m/04gv3db battle of the smithsonian (Q476726) /m/0d05fv albert arnold gore jr. (Q19673) /m/02x17c2 satellite award for best original song (Q919999) /m/03q95r e g marshall (Q706165) /m/0mzkr island (universal) (Q190585) /m/03xhj6 sparks band (Q1344131) /m/01_lhg azzuri (Q676899) /m/02md_2 interim head coach (Q3246315) /m/01ync colorado rockies (sports) (Q388858) /m/02gdjb /m/02gdjb /m/01qxc7 beetle juice (Q320384) /m/02k21g mya rudolph (Q236527) /m/04h07s lyle kane (Q1319744) /m/0cdbq all-russian empire (Q34266) /m/01k6y1 royal prussian states (Q27306) /m/057xkj_ /m/057xkj_ /m/04t38b irwin winkler (Q950428) /m/075wq maewyn (Q165479) /m/03ckvj9 /m/03ckvj9 /m/043tz0c informant! (Q604083) /m/068p2 geography of pittsburgh (Q1342) /m/01pj_5 scary movie (soundtrack) (Q219424) /m/0272_vz mamma mia! the movie (Q188850) /m/02wgk1 spider man 2 (Q190145) /m/06z68 swimming (synchronized) (Q180692) /m/0cq7kw my fair lady (film) (Q201215) /m/012wg alan jay lerner (Q961893) /m/08036w harrogate a.f.c. (Q2219286) /m/08pth9 elisabeth moss (Q233466) /m/09btt1 christina rene hendricks (Q210462) /m/0bqdvt /m/0bqdvt /m/04p3c leodis (Q39121) /m/01xn7x1 oriol rey erenas (Q1128631) /m/036jb gene kelly (Q73089) /m/05dmmc american in paris (Q747570) /m/06tpmy 16 blocks (Q169000) /m/04hzfz start fc (Q737947) /m/0p0cw boulder, co msa (Q113029) /m/01s81 cheers chars (Q732063) /m/0hgnl3t flight (2013 film) (Q564298) /m/084l5 washington redskins/doc (Q212654) /m/01swck john michael turturro (Q244234) /m/07fj_ republique tunisienne (Q948) /m/01xpg carthaginia (Q6343) /m/0f5hyg granada club de fútbol (Q8812) /m/03j722 waxtap (Q172969) /m/06sfk6 the siege (Q779658) /m/04vzv4 walter plunkett (Q711664) /m/033w9g terry o’quinn (Q271637) /m/02x8z_ brucehornsby (Q918502) /m/0gbtbm the path to 9/11 (Q1140309) /m/07j94 the sixth sense (Q183063) /m/071_8 simon frasier university (Q201603) /m/02f764 /m/02f764 /m/0fqy4p paramount classics (Q1148711) /m/02phtzk the kite runner (film) (Q1057045) /m/030cx friends (tv series) (Q79784) /m/09yrh jennifer anniston (Q32522) /m/01817f carly simmon (Q181683) /m/0q9sg rocky iv (Q387638) /m/04yf_ misisipi river (Q1497) /m/08nvyr babel (movie, 2006) (Q191074) /m/01r3kd girl scouts of the us (Q2576280) /m/07m9cm til schweiger (Q57391) /m/01q6bg rodney sturt taylor (Q308459) /m/05p09dd oscar et lucinda (Q2033052) /m/05gg4 ny giants (Q190618) /m/03_hd js mill (Q50020) /m/03f4xvm terrell smith (Q38875) /m/03sc8 ibm business continuity and resiliency services (Q37156) /m/0180w8 acoustic rarities (Q539955) /m/04mcw4 ij4 (Q182373) /m/030_3z frank marshall (film producer) (Q549570) /m/01vyv9 larry hagman (Q100440) /m/01gn36 winters, jonathan (Q4538) /m/02zcnq california state-sacramento hornets (Q1026941) /m/01lnyf national institute for aviation research (Q429561) /m/019sc /m/019sc /m/02wr2r wanda sikes (Q237194) /m/0ccd3x west side story(film) (Q273704) /m/02lk95 stylesonic records (Q356487) /m/06nz46 frederick a young (Q965659) /m/0grrq8 robert greenhut (Q2157353) /m/0dzf_ valerie velardi (Q83338) /m/01gb54 dreamworks studios (Q192557) /m/011wtv minority report (2002 film) (Q244604) /m/0pmw9 paul schaeffer (Q963626) /m/0d3qd0 john kerry (Q22316) /m/02j3d4 americana classical fusion (Q731734) /m/09lxtg trinidadian and tobagonian (Q754) /m/03558l two guard (Q273199) /m/0jm6n new orleans/oklahoma city hornets (Q172339) /m/0h005 frederick quimby (Q555910) /m/0gq_d best animated short film (Q917808) /m/02dbp7 david walter foster (Q77112) /m/05xzcz saba battery f.c. (Q613931) /m/012z8_ marvin gaye (Q189758) /m/0l2vz san mateo county (Q108101) /m/0r5wt redwood city, california (Q505549) /m/021pqy lagaan: once upon a time in india (2001 film) (Q843949) /m/026l37 joe mantegna (Q276269) /m/02ppg1r /m/02ppg1r /m/02897w willamette university (Q930291) /m/0bmnm tin flageolet (Q615403) /m/025l5 chet atkins (Q72096) /m/02hvd dc national comics (Q2924461) /m/04bcb1 john spencer (actor) (Q352748) /m/015d3h borgnine (Q102551) /m/0l76z sex and the city (Q35791) /m/03fg0r darren bennett star (Q452063) /m/0fgj2 bucks (Q23229) /m/04x4vj civil action (Q206886) /m/05vxdh bridget jones's diary (soundtrack) (Q752313) /m/0478__m little monsters (social networking site) (Q19848) /m/05vzw3 mark "spike" stent (producer) (Q4355977) /m/023l9y bill nelson musician (Q3272899) /m/02d49z 13 (Q1141912) /m/03bpn6 edmond o'brien/comments (Q119935) /m/0fzrtf 30th academy awards (Q684095) /m/07t90 asuw experimental college (Q219563) /m/081yw washington (u.s. state) (Q1223) /m/0sv6n un/locode:usbrl (Q580182) /m/09gb_4p 127 hours: the aron ralston story (Q174371) /m/0hd7j university of mississippi at oxford (Q1138384) /m/0432_5 黑鬼 (Q767751) /m/0c_v2 thai pronouns (Q9217) /m/042xrr anderson, anthony (Q313918) /m/0h03fhx argo (2012 movie) (Q59653) /m/044k8 janis joplin discography (Q1514) /m/0p7h7 jerry lee louis (Q202729) /m/017jd9 the lord of the rings: the return of the king (film) (Q131074) /m/02v60l david arquette (Q294185) /m/0mmzt city of winchester, virginia (Q492355) /m/03ttn0 /m/03ttn0 /m/0mwzv greater reading area (Q490920) /m/0dlngsd shagos (Q243643) /m/01rhl classical guitars (Q719120) /m/03gt46z /m/03gt46z /m/04gnbv1 /m/04gnbv1 /m/03d6fyn actiblizzion (Q344341) /m/01vsy7t david jones (Q5383) /m/02vrgnr hancock (film) (Q220376) /m/04tgp miſsiſsippi river (Q1494) /m/01msrb robin hood prince of thieves (Q486822) /m/024swd goodson-todman productions (Q6767774) /m/01s3kv eye for an eye(fran drescher) (Q230632) /m/038bh3 runaway jury (Q151870) /m/05qtj paris (Q90) /m/016fnb carousel (gwen stefani song) (Q483379) /m/05bnq3j /m/05bnq3j /m/05typm swoosie kurtz (Q238052) /m/0315q3 the risk agent (Q107730) /m/06_6j3 vic joseph mignogna (Q843552) /m/0c38gj blood diamond (film) (Q74958) /m/04g3p5 ed zwick (Q314142) /m/01l03w2 ralph edmond stanley (Q3302436) /m/045w_4 /m/045w_4 /m/02sqkh criminal intent (Q1055728) /m/02t_99 amy mccarthy (Q230993) /m/030p35 picket fences (Q1247248) /m/018n6m missy 'misdemeanor' elliott (Q155079) /m/0n2g /m/0n2g /m/0394y the grateful dead (Q212533) /m/080lkt7 howl (2010 film) (Q1632040) /m/03h610 carter burwell (Q374754) /m/084z0w mathavan (Q729982) /m/0fhxv peter gabriel (Q175195) /m/043gj john wayne/comments (Q40531) /m/04v8h1 the alamo (1960) (Q1621909) /m/03dpqd miriam margolis (Q234128) /m/0fgrm mulan (1998 film) (Q537407) /m/043t8t alistair hennessey (Q1151947) /m/0gv40 wyler, william (Q51495) /m/0jsqk heiress (Q1141493) /m/029bkp chef d’harmonie (Q806349) /m/02gyl0 theodore bikel (Q215721) /m/02lk60 far far away idol (Q485983) /m/0f7hc edward murphy (Q43874) /m/018gm9 pete comita (Q1068713) /m/04p3w lung cancer/comments (Q47912) /m/05nn4k john davis (american producer) (Q931181) /m/0frm7n /m/0frm7n /m/016vg8 heather gram (Q224026) /m/02v5_g mickey altieri (scream series) (Q270599) /m/0fqt1ns spiderman (2012 film) (Q229808) /m/07t58 u s senate (Q66096) /m/0499lc prodigal son (shanley play) (Q1349456) /m/032zg9 irving rameses "ving" rhames (Q310315) /m/0bh8x1y coriolanus (film) (Q1132978) /m/019kyn pinocchio (disney) (Q4341553) /m/02cpb7 tandy newton (Q229029) /m/027hnjh frank spotnitz (Q2558191) /m/07tds leges sine moribus vanae (Q49117) /m/07jbh gossima (Q3930) /m/013f9v saint cloud, mn (Q736834) /m/026spg natalie cole (Q231942) /m/04cl1 kayte walsh (Q196560) /m/0q8s4 the river city (Q79750) /m/0prhz hamlet (1990 film) (Q1422824) /m/0gct_ henry mattisse (Q5589) /m/01f8hf aliens (1986 movie) (Q104814) /m/024bbl james oliver cromwell (Q299483) /m/0dq_5 managing directors (Q484876) /m/04vgq5 iggle pop (Q1064703) /m/03nm_fh gregory tyree boyce (Q160071) /m/0b478 luc besson films (Q484779) /m/07yw6t paresh rawal (Q3123705) /m/03rbj2 filmfareawardbestsupportingactor (Q966068) /m/09jcj6 scoop (2006 film) (Q682002) /m/0cm03 albert edward, duke of cornwall (Q20875) /m/0gkz3nz moonlight kingdom (Q217112) /m/02h1rt richard taylor (makeup artist) (Q630767) /m/0345gh birkbeck college, london (Q375606) /m/01vwbts dido florian cloud de bounevialle o'malley armstrong (Q202550) /m/02j69w dazed & confused (film) (Q39975) /m/0fm3b5 goya award for best film (Q1467554) /m/04nnpw the others (2001 film) (Q332515) /m/06_vpyq aaron staton (Q302794) /m/056_y madrid (spain) (Q2807) /m/08ct6 how the solar system was won (Q103474) /m/0bz6sb 43rd academy awards nominees and winners (Q937162) /m/03j24kf paul ramone (Q2599) /m/01kwsg tommy lee jones (Q170587) /m/026dx david lynch/comments (Q2071) /m/0266r6h katie bowden (Q236472) /m/0863x_ judah friedlander (Q71130) /m/0bl1_ midnight cowboy (Q61696) /m/02xbyr rapunzel (2010 film) (Q188439) /m/09mfvx think films (Q1163074) /m/01qvz8 gigli (film) (Q260533) /m/01cw13 kallon f c (Q2019317) /m/0m0fw noise music (Q726239) /m/03f0fnk lewis a. reed (Q189080) /m/0czkbt is it scary (album) (Q58735) /m/03gyl haiti/selected picture/2007/march (Q790) /m/0khth wilco (Q637771) /m/01yxbw exeter united f c (Q48939) /m/013q0p austin powers: international man of mystery (Q501703) /m/016z1t billie campbell (Q162667) /m/08hsww bj novac (Q459925) /m/02kmx6 mary-ellis bunim (Q3296123) /m/01b66t james lowell (as the world turns) (Q1261578) /m/047951 national universities (Q265662) /m/043tz8m /m/043tz8m /m/019r_1 max fleischer (Q93788) /m/015cjr television presenter (Q947873) /m/041n28 união desportiva de leiria (Q211401) /m/04ls53 giacchino, michael (Q155124) /m/04ldyx1 /m/04ldyx1 /m/0c1sgd3 water for elephants (movie) (Q432582) /m/02cg7g /m/02cg7g /m/01twdk jon favreau (Q295964) /m/09qc1 michelangelo antonioni (Q55433) /m/03l2n houston, texas, united states (Q16555) /m/0sxmx sgt. elias (Q190643) /m/02hsgn keach (Q315090) /m/07_m9_ adolph hiter (Q352) /m/07twz uraguay (Q77) /m/0hnjt eugene o neill (Q93157) /m/0145rs /m/0145rs /m/03y82t6 minds amaze (Q42493) /m/01s21dg lofi masters (Q215215) /m/0_b9f the piano (film) (Q117315) /m/03spz יִשְׂרָאֵל (Q801) /m/03f0r5w david wain (Q561133) /m/03b_fm5 role models (film) (Q706858) /m/0210hf anthony edwards (Q314924) /m/02sf_r point guard (basketball) (Q212413) /m/01ry0f kurtwood smith (Q317228) /m/07sgdw oscar (1991 movie) (Q302682) /m/04hgpt center for medieval studies (pennsylvania state university) (Q739627) /m/0k2cb dangerous liaisons (Q830553) /m/04tr1 republic of malawi (Q1020) /m/0gkjy afrozone (Q7159) /m/0g0syc united states house of representatives, pennsylvania district 12 (Q7163534) /m/03p7gb the hechinger report (Q7691246) /m/0462hhb an education (Q482436) /m/06l3bl list of epic movies (Q652256) /m/0vbk arkansaws (Q1612) /m/037hgm opium drivel (Q346801) /m/02q690_ 59th emmys (Q1338927) /m/06mr2s /m/06mr2s /m/05f7snc /m/05f7snc /m/01fpfn unitary states (Q179164) /m/021yzs tim roth (Q203804) /m/0tct_ danville, kentucky (Q988923) /m/05sw5b disney's recess: school's out (Q969270) /m/0205dx toussaint (film) (Q192165) /m/01gkp1 royal tenebaums (Q935105) /m/0dwt5 vibraharp (Q206987) /m/08fbnx mystical great adventure (Q2581981) /m/0h96g susan weaver (Q102124) /m/06kl78 crash (1996 film) (Q839133) /m/0d1pc mannequin (Q4610556) /m/0b80__ jean louis (Q1685654) /m/01pcdn kristen davis (Q229176) /m/06yxd healthcare in south carolina (Q1456) /m/02lymt wesley trent snipes (Q189694) /m/09ps01 virgin suicides (Q1423971) /m/02z6872 2002 first-year player draft (Q4600249) /m/017cy9 universtiy of british columbia (Q391028) /m/0drtv8 2007 golden globe awards (Q761309) /m/0bksh cameron m. diaz (Q44380) /m/047cx live in orlando, fl (Q189382) /m/05zh9c leonard goldberg (Q722519) /m/0hqcy david o selznick (Q72291) /m/0bbw2z6 /m/0bbw2z6 /m/01grpq 5th u.s. congress (Q2573610) /m/06t6dz whoop that trick (Q1474263) /m/0cymp westchester county (Q54066) /m/01kph_c warren william zevon (Q375792) /m/02t3ln curse of fallen soul (Q938630) /m/05_wyz chief counsel (Q564612) /m/0168nq orapharma (Q333718) /m/027kp3 the fordham observer (Q130965) /m/0n6kf coming sun.mon.tues. (Q310048) /m/01c99j best pop vocal performance – female (Q935283) /m/02p3cr5 emi svenska (Q3629023) /m/03f0vvr vance arnold (Q190076) /m/0315w4 cell (Q221104) /m/06jntd columbia-tristar home video (Q734401) /m/0r04p culver city, ca (Q493378) /m/019lty mengo (Q17479) /m/0b_6jz 1983 ncaa division i men's basketball tournament (Q949568) /m/03d555l /m/03d555l /m/02rqxc seleccao das quinas (Q267245) /m/02bvt lynn angell (Q2295429) /m/01jrvr6 cole porter (Q215120) /m/04107 ishtāynʹbik (Q39212) /m/02dbn2 jack thompson: favourite australian poems (Q356383) /m/026qnh6 australia film (Q275180) /m/0f4k49 and starring pancho villa as himself (Q2049232) /m/01grpc 4th us congress (Q230796) /m/015njf ken russel (Q55249) /m/0cmc2 cremean war (Q254106) /m/05kyr ottoman sultanate (Q12560) /m/0pyww julia louis-dreyfus (Q232072) /m/0fwy0h savanna guthrie (Q2227969) /m/0152x_ msnbcs (Q13973) /m/0c7xjb jessie a. simpson (Q168992) /m/033f8n dukes of hazzard (film) (Q2306995) /m/02bqm0 one hundred-fourth united states congress (Q3596857) /m/0dlhg washington county, ny (Q56149) /m/0f6_4 rensselaer county, ny (Q156566) /m/0204jh bronx science high school (Q751612) /m/0mpfn windsor county, vt (Q513994) /m/0177z /m/0177z /m/03_ly 1. month (Q108) /m/02fttd the king of comedy (1983 film) (Q1122281) /m/03xzxb septemvri pri tsdv (Q136433) /m/0638kv william cameron menzies (Q261997) /m/0hgqq john cage (Q180727) /m/01pb34 cameo apperance (Q191796) /m/018w8 shoot hoops (Q5372) /m/03lh3v walter ray allen (Q208623) /m/01wy5m list of awards and award nominations received by christian bale (Q45772) /m/0837ql t-pain presents: nappy boy mixtape vol. 1 (Q221155) /m/03t5kl best rap/sung collaboration (Q1542172) /m/04g2jz2 /m/04g2jz2 /m/0dqcs3 the wicker man (2006 movie) (Q200827) /m/06m61 wesley orbison (Q188426) /m/0k4fz betty schaefer (Q193570) /m/0hvbj nsync (Q154454) /m/02hfk5 the barbarian invasions (Q549012) /m/01rr31 colleges of de la salle university-manila (Q1815710) /m/037njl creighton university students and alumni (Q770544) /m/0dln8jk the hangover 2(film) (Q274748) /m/03f7nt collateral (film) (Q110203) /m/01l9vr charlestown, boston, ma (Q1756813) /m/016szr randy newman (Q318475) /m/01vw8mh snoopadelic (Q6096) /m/0_xdd franklin, tennesee (Q984264) /m/09p4w8 time to kill (Q498867) /m/04pqqb arnon milchan (Q697131) /m/01l4g5 lorena mackennit (Q274562) /m/0289q broncos ring of fame (Q223507) /m/02z6l5f /m/02z6l5f /m/0dsb_yy laura carmichael (Q3218669) /m/05y5kf hugh bonneville (Q155775) /m/0bmch_x unknown (2011 film) (Q158759) /m/0cpyv un/locode:dewmr (Q3955) /m/070m12 /m/070m12 /m/06g60w robert surtees (cinematographer) (Q178115) /m/0qf2t trainspotting (movie) (Q109135) /m/027rpym oklahoma! (1955 film) (Q2017333) /m/07hgkd david shire (Q719035) /m/01gw4f talia rose coppola (Q108622) /m/01w40h mercury music group (Q165745) /m/02xx5 /m/02xx5 /m/015qqg julia (1977 film) (Q1166180) /m/02mt4k frank or francis (Q312751) /m/02d42t samantha jane morton (Q230190) /m/01vsy3q electric church (Q5928) /m/0prh7 hamlet (1996) (Q898721) /m/01lvzbl sam bush (Q539156) /m/0d1t3 equestrian dressage (Q216033) /m/03sww iced tea (musician) (Q309941) /m/01jx9 shane dabiri (Q178824) /m/047xyn world fantasy award-life achievement (Q3625727) /m/029k4p from dusk till dawn (Q196004) /m/02kk_c from the earth to the moon (miniseries) (Q1467607) /m/037gjc mark harmon (Q296774) /m/01pctb heidi klum productions (Q60036) /m/03ct7jd eagle eye (Q158474) /m/0ymgk worcester college chapel (Q780745) /m/02ntb8 starsky & hutch (movie) (Q847646) /m/02dq8f university of new york state teachers college (Q1780816) /m/0dq16 albany, new york (state) (Q24861) /m/0304nh the view (american tv series) (Q1197928) /m/02f72_ mtv video music award for best art direction (Q917698) /m/04qdj olympic capital (Q807) /m/027b9j5 london film critics' circle award for actor of the year (Q1868950) /m/0klw clarke, arthur c. (Q47087) /m/07hhnl hal pereira (Q1229499) /m/0584j4n frank mckelvy (Q2386182) /m/017f3m doink-doink (Q321423) /m/05b_7n jeremy merton sisto (Q449863) /m/0cm89v sean mcnamara (director) (Q3476760) /m/04h6mm stevens, andrew (Q507640) /m/0dfw0 stass allie (Q181069) /m/0j63cyr 2012 toronto film festival (Q3950963) /m/0lyjf richter library (Q738258) /m/01j6t0 lethargic (Q9690) /m/0hg11 hypothyreosis (Q16501) /m/01vqc7 rcd mallorca (Q8835) /m/031x2 falkland islands war (Q48249) /m/01cblr the counting crows (Q178549) /m/017_qw score composer (Q492264) /m/08c9b0 patrick doyle (Q363241) /m/01ckrr grammy award for best rock instrumental performance (Q1542186) /m/03ndd hammered dulcimer (Q1588017) /m/03vrp italo calvino (Q154756) /m/03f0324 kafkasque (Q905) /m/019dwp west virginia university at morgantown (Q115376) /m/06w7v slide guitar (Q428152) /m/01mwsnc ron wood (Q211094) /m/01bcq blythe danner (Q40064) /m/033fqh meet the parents (film) (Q623724) /m/0fbtbt Q1268432 /m/01j2xj samuel alexander "sam" mendes (Q223233) /m/0svqs sean aston (Q189351) /m/025_64l /m/025_64l /m/0ll3 aug. (Q122) /m/01pp3p john ford/comments (Q51114) /m/0j80w quiet man (Q470560) /m/051wwp robert elmer balaban (Q621490) /m/02qfhb jason schwartzmann (Q313705) /m/01d0fp kim bassinger (Q131380) /m/04w1j9 edward r. pressman (Q357726) /m/0hz55 24 (television) (Q56194) /m/03_1pg rajskub (Q230510) /m/013bqg wycombe (Q64116) /m/03xb2w kevin james iii (Q44561) /m/03lgg henry rollin (Q318509) /m/0br1xn 2007 men's division i ncaa tournament (Q2081786) /m/027yf83 /m/027yf83 /m/05hjnw brokeback mountain (Q160618) /m/09swkk gustavo santaolalla (Q312434) /m/034487 noise-pop (Q2545135) /m/05xq9 pixies (band) (Q188464) /m/022p06 sam goldwyn (Q72579) /m/02h8hr isida akira (Q418736) /m/0yshw lima high school (Q983974) /m/03h304l roger birnbaum productions (Q945551) /m/0641g8 milt franklyn (Q3090628) /m/02d6cy frank romer pierson (Q1336850) /m/0fgg4 jennifer connolly (Q103343) /m/07k2mq requiem for a dream (Q487181) /m/02lfp4 leslie bricusse (Q1305608) /m/0df_c grasanòbol (Q1289) /m/07_fj54 marmaduke (film) (Q48734) /m/0345_ guatelmala (Q774) /m/09f2j university of california, los angeles (Q174710) /m/023v4_ scott moore (sergeant) (Q37628) /m/0g_g2 bon jovi songs (Q259254) /m/03qbnj grammy award for best pop album (Q1027891) /m/01dcqj colorectal cancer (Q188874) /m/09889g history of michael jackson (Q2831) /m/022g44 /m/022g44 /m/096gm bucharest (Q19660) /m/0194zl iris (2001 movie) (Q1364697) /m/07ldhs taylor daniel lautner (Q23359) /m/044mrh kim dae-hyeon (Q299700) /m/06lht1 jenkins, richard (Q313043) /m/0fb7sd the kingdom film (Q467582) /m/04205z emily blunt (Q193517) /m/016k6x sir ben kingsley (Q173158) /m/0cqnss the music man (film) (Q762649) /m/01jwxx battle of britain (movie) (Q714989) /m/03d8m4 2015 paraguay national football team results (Q172020) /m/082wbh club libertad (Q848642) /m/0280mv7 john bailey (cinematographer) (Q367813) /m/0859_ wind instrument (Q173453) /m/05683p jamie denton (Q317516) /m/03f6fl0 ben folds (Q435681) /m/05jbn west nashville (Q23197) /m/0f4vx0 2007 nba draft lottery (Q959860) /m/01n6r0 u of oregon (Q766145) /m/03bwzr4 m.s. degree (Q950900) /m/0zlgm reading, berks county, pennsylvania (Q237896) /m/03f1d47 macy grey (Q232456) /m/01t21q chelsea, london, england (Q743535) /m/03j7cf trabzonspor a.ş. (Q192641) /m/04ls81 /m/04ls81 /m/0dpqk eric idle (Q210741) /m/041c4 john cleese (Q25014) /m/0t_gg un/locode:usmqi (Q49143) /m/0k3kg norfolk county, massachusetts (Q54079) /m/02xs6_ hannibal (movie) (Q722682) /m/0lkr7 brawley nolte (Q188018) /m/046488 hotel riwanda (Q223884) /m/07tf8 /m/07tf8 /m/01fmz6 k.c. & the sunshine band (Q1130581) /m/01fwf1 susanna york (Q225509) /m/03cx282 philippe rousselot (Q750718) /m/0dzlbx iron man (2008 movie) (Q192724) /m/015t7v bernard hill (Q310515) /m/0c3jz thora birch (Q236875) /m/09q23x charlie wilson's war (film) (Q273568) /m/03tn80 congo (movie) (Q598860) /m/071fb mgao dialect (Q7838) /m/081k8 william shake-speare (Q692) /m/01gstn 16th united states congress (Q4552253) /m/01gtc0 25th united states congress (Q4632330) /m/05xbx pbs radio (Q215616) /m/035w2k mission impossible (film) (Q1741232) /m/0fjfh capsicum (Q201959) /m/0h1vz amino acid k (Q178430) /m/01vq3 chirstmas (Q19809) /m/091rc5 the santa clause 3 (Q1325828) /m/011ycb quiz show (movie) (Q651722) /m/0bqytm ballhaus, michael (Q62547) /m/0tln7 history of natchitoches, louisiana (Q2278195) /m/062zm5h the avengers (2012 movie) (Q182218) /m/04nm0n0 good (film) (Q2601102) /m/0b6jkkg filmfareawardbestfilm 2011-2030 (Q1414525) /m/04fcx7 adam mckay (Q350405) /m/0421ng bullets over broadway (Q1004531) /m/04fcjt universal records (defunct record label) (Q2482872) /m/0278x6s geraghty, brian (Q460563) /m/03359d ali larter (Q201994) /m/0prrm jsbsb (Q832190) /m/0dryh9k indian (Q862086) /m/0fr7nt sayaji shinde (Q7429093) /m/048xg8 ssc napoli (Q2641) /m/02ll45 the mission (1986 film) (Q302490) /m/0191n blue velvet in popular culture (Q660950) /m/069nzr kyle chandler (Q359604) /m/0dc_v astronomic (Q333) /m/04088s0 /m/04088s0 /m/05y5fw benioff, david (Q503997) /m/03772 g r r martin (Q181677) /m/01bcwk queensland university (Q866012) /m/06y57 sydneian (Q3130) /m/0s5cg oak park, ill. (Q331397) /m/043n0v_ yip man (film) (Q573743) /m/09v0wy2 /m/09v0wy2 /m/06kb_ rudyard kipling (Q34743) /m/048q6x robert xavier morse (Q218122) /m/0d7wh /m/0d7wh /m/015q43 julie frances christie (Q181413) /m/0413cff /m/0413cff /m/02x8fs ghostbusters ii trivia (Q492214) /m/0b9l3x michael chapman (cinematographer) (Q487094) /m/02rcwq0 damages (tv series) (Q912437) /m/015x1f curtis lee mayfield (Q310170) /m/04r68 lois m. bujold (Q229369) /m/0265wl nebula award for best novella (Q1086189) /m/03mz5b antwone fisher (film) (Q610339) /m/04yg13l ironclad (movie) (Q1150930) /m/0dthsy 35th academy awards (Q917148) /m/09zf_q the time machine (2002 movie) (Q499633) /m/029d_ drexel university publications (Q603034) /m/02g7sp irish community in britain (Q6071674) /m/01w3lzq fish people (Q636) /m/06wm0z zach efron (Q45229) /m/01vt9p3 marie dionne warrick (Q234695) /m/05f4vxd breadstix (Q152178) /m/09v6gc9 brad falchuk (Q315750) /m/01ykl0 chiltern primary school (Q810196) /m/018jz base-ball (Q5369) /m/02_l96 marlon wayons (Q310785) /m/01z_g6 julianna margolis (Q229714) /m/07bwr lebowski (Q337078) /m/01rwpj sexy beast (film) (Q552036) /m/01h8rk wsu (Q597236) /m/06d4h fear of social diversification (Q8461) /m/0dt8xq borat: cultural learnings from america for make benefit the glorious nation of kakakhstan (Q186323) /m/01hwgt e. cotbuss (Q107818) /m/045c7b googlr (Q95) /m/034cm gt. brit (Q23666) /m/05mrf_p ghost writer (Q157879) /m/03pnvq 集英社 (Q844822) /m/01xhb_ chiyoda city (Q214051) /m/0xwj atari computers (Q207922) /m/019z7b consumer-electronics (Q581105) /m/018fmr lana turner (Q201034) /m/014kkm the bad and the beautiful (Q1345583) /m/0642xf3 the lightning thief (movie) (Q244333) /m/0586wl danubio fútbol club (Q584316) /m/024d8w kilmarnock f c (Q210961) /m/02f46y university of reading science and technology centre (Q1432632) /m/02dj3 dalhousie university faculty of dentistry (Q579321) /m/0j0pf alistair reynolds (Q380869) /m/018fq michael bruce sterling (Q312995) /m/0n5yh hillsborough county, new hampshire (Q54439) /m/0bh8tgs battleship (film) (Q474033) /m/0wq3z gulfport, miss. (Q490587) /m/0c5tl tomas khardi (Q132805) /m/0gg5qcw the ides of march (2011 film) (Q543581) /m/0ftyc northern hills junior high (Q41057) /m/01w1kyf shirley beaty (Q95026) /m/02r_pp the trouble with harry (Q1413227) /m/0b2qtl guerra e pace (Q643811) /m/01kb2j julie anne moore (Q80405) /m/05znxx provasik (Q156309) /m/042z_g anthony howard "tony" goldwyn (Q224754) /m/03flwk julius dassin (Q260969) /m/0d9xq ella jane fitzgerald (Q1768) /m/0jmxb cwmry (Q23066) /m/03_l8m lauren ambrose (Q232098) /m/0bkbm spy films (Q2297927) /m/047c9l kristin chenoweth (Q231811) /m/02nfjp jay chow (Q238819) /m/03c_cxn en-ra-ha (Q669591) /m/01s73z barden cablevision (Q1113804) /m/0b44shh beginners (film) (Q814343) /m/04wv_ /m/04wv_ /m/07d3z7 amy ryan (actress) (Q231203) /m/05925 ea maxis (Q220317) /m/03h4fq7 schmucks (Q1226599) /m/05vz3zq russia (1922–91) (Q15180) /m/0ptj2 fribourg-en-brisgau (Q2833) /m/09fc83 stand (Q1752538) /m/09krm_ yale theological college (Q10723329) /m/01bcp7 bladder neoplasms (Q504775) /m/02lvtb howard andrew williams (Q214548) /m/0dfjb8 nassar (actor) (Q3521977) /m/07c9s thamizh language (Q5885) /m/07z6xs the black dahlia (movie) (Q313874) /m/025m98 /m/025m98 /m/0rkkv santa maria filipina (Q486306) /m/0149xx rostropovitj (Q152043) /m/03h502k /m/03h502k /m/07l75 sedmohradsko (Q39473) /m/08phg9 star trek (2009 film) (Q213081) /m/0jqj5 chuck aspegren (Q201674) /m/03pp73 michael moriarty (Q531869) /m/01tdnyh stephen hawkins (Q17714) /m/0127gn horowitz, vladimir (Q192506) /m/053y4h mary kay place (Q238924) /m/0k0rf rope (film) (Q109564) /m/047wh1 planet of the apus (Q469624) /m/089g0h on-set dresser (Q3054941) /m/0kb07 hold back the dawn (Q1171247) /m/01qzt1 classic rock (genre) (Q1096120) /m/07bzz7 the beatles: yellow submarine (Q1131791) /m/015xp4 etta james and the peaches (Q182725) /m/01qgry booker t. jones (Q703767) /m/0bt3j9 hairspray (2007 movie) (Q222041) /m/013d7t un/locode:usshv (Q80517) /m/017gxw penelope wilton (Q544165) /m/0b1xl loyola university chicago (Q1537759) /m/06n9lt william wellman, jr. (Q290962) /m/0d04z6 p:cub (Q241) /m/0bk5r c.g. jung (Q41532) /m/02mj7c de paul university law school (Q1179603) /m/03_0p isaac stern (Q311317) /m/016k62 יצחק פרלמן (Q215905) /m/08sfxj amazing grace (2006 film) (Q456017) /m/0g2mbn assif mandvi (Q303538) /m/0jm8l fort wayne pistons (nba) (Q169661) /m/076zy_g unstoppable (2010 movie) (Q644276) /m/0372kf daniels, jeff (Q53680) /m/05q_dw the squid and the whale (Q1197427) /m/01rgdw appstate.edu (Q620640) /m/05ns4g franja azabache (Q604589) /m/026cl_m marblecake also the game (Q604370) /m/09d6p2 /m/09d6p2 /m/0j3d9tn /m/0j3d9tn /m/05njyy mendik library (Q3339059) /m/0pbhz dijonnaise (Q7003) /m/03qjlz julius j. epstein (Q795022) /m/05m9f9 timothy "tim" van patten (Q713066) /m/015cz0 אוניברסיטת תל אביב (Q319239) /m/06mxs stokholm (Q1754) /m/04jm_hq the messenger (2009 film) (Q466358) /m/01vswx5 the edge (Q714845) /m/03f77 brown, gordon (Q10648) /m/06fmdb /m/06fmdb /m/0l2v0 history of san luis obispo county, california (Q49014) /m/0r5lz un/locode:uscsl (Q49012) /m/051n13 sport-club freiburg e.v. (Q106394) /m/0sx92 1984 winter olympics (Q9657) /m/06zgc speedskating (Q192431) /m/02bq1j /m/02bq1j /m/04gb7 /m/04gb7 /m/02qkk9_ Q7574756 /m/01n44c lena calhoun horne (Q112307) /m/0crlz beach water polo (Q7707) /m/0cq8qq how green was my valley (film) (Q244448) /m/026g801 donald sumpter (Q3713649) /m/0dl9_4 eastern promise (Q752017) /m/06sff iso 3166-1:sm (Q238) /m/02sfnv the cannonball run ii (Q646806) /m/02_p8v francis michael gough (Q299302) /m/0n83s cristal connors (Q532264) /m/05cws2 halesowen town fc (Q18474) /m/02vl_pz giuseppe colucci (sportsman) (Q290913) /m/054bt3 bailout (film) (Q380237) /m/02hrh0_ honolulu, oahu (Q18094) /m/01t032 golden retreiver (Q38686) /m/062cg6 patrick loubert (Q10346114) /m/0bjkpt william joyce (writer) (Q1385774) /m/01pqy_ kelly palzis (Q236842) /m/048rn king kong (1933) (Q309048) /m/0g092b monster movie (Q1342372) /m/0fn5bx jayma suzette mays (Q231006) /m/05_5_22 infant sorrow (band) (Q940139) /m/027km64 susan blu (Q3142726) /m/03f19q4 juelz santana (Q445386) /m/05g49 new york titans (football) (Q219602) /m/08_83x amy nuttall (Q2844572) /m/02w670 victor young (Q365199) /m/0bl8l aston villa f.c. (Q18711) /m/01s7qqw brendon (comedian) (Q2496575) /m/0gd70t ferom urziceni (Q324596) /m/0n_2q chatham county, georgia (Q384890) /m/0lhn5 savannah ga (Q83813) /m/0ptxj the towering inferno (movie) (Q372959) /m/01s3vk edward scissorhands (character) (Q217182) /m/03rzvv romantic fantasy (Q930383) /m/07s95_l michael gladis (Q6420832) /m/03v1jf january jones (Q223786) /m/01h8f bruce campbell (Q309932) /m/06jnv /m/06jnv /m/0vhm animaniacs (Q547744) /m/0kbf1 the song of bernadette (movie) (Q669749) /m/01y9st ontario college of art & design university (Q1632007) /m/03f1r6t regis philben (Q463673) /m/0178rl tim rice/comments (Q298295) /m/025mbn /m/025mbn /m/01pq5j7 death of amy winehouse (Q15897) /m/0n9dn borough of camden (Q202088) /m/01j59b0 skillet (band) (Q374747) /m/02dwj dr. strangelove or: how i learned to stop worrying and love the bomb (1964) (Q105702) /m/07l2m tennessee titans coach navbox (Q320484) /m/0mb8c a better tommorow (Q641346) /m/0556j8 buddy comedy (Q663106) /m/0135g alameda, ca (Q490744) /m/0j5m6 sabresgm (Q131206) /m/02qvdc /m/02qvdc /m/09qrn4 Q1285551 /m/01vnbh my cool uncle charlie (Q189267) /m/0ftlx tehran office tower (Q3616) /m/09wv__ new york art students league (Q705737) /m/0gmtm lily claudette chauchoin (Q203819) /m/01fx2g christina ricci (Q184103) /m/06khkb nady al-'ayn (Q812720) /m/02k4b2 lacy chabert (Q232910) /m/01pvxl dimitri (anastasia character) (Q486609) /m/0l_q9 rockwell, alaska (Q29445) /m/02xwgr elliot gould (Q314805) /m/046zh julia fiona roberts (Q40523) /m/0f42nz om shanti om (Q330468) /m/0dx97 christopher michael wren (Q170373) /m/02hcxm the president, council, and fellows of the royal society of london for improving natural knowledge (Q123885) /m/01cbt3 john barry (composer) (Q111074) /m/01gtcq twenty-seventh congress (Q4632667) /m/01_jky f.k. crvena zvezda beograd (Q173009) /m/07cbs 3rd president of the united states (Q11812) /m/01sby_ /m/01sby_ /m/01grqd 7th us congress (Q1906490) /m/03yvgp malta national football team (Q188782) /m/0b_6h7 1980 ncaa tournament (Q3994960) /m/0d9y6 lexington, ky (Q49241) /m/01gl9g cnbc logos (Q1023912) /m/0bv7t chloe anthony wofford (Q72334) /m/080r3 the death of the moth (Q40909) /m/026w_gk jeffrey wayne richmond (Q641975) /m/02778yp kay cannon (Q4251124) /m/01k_r5b travis tritt (Q188235) /m/016lh0 gold, peace, and prosperity (Q15257) /m/0d9jr 舍路 (Q5083) /m/01jb26 elisa dushku (Q210200) /m/07mqps dutch-american (Q1058496) /m/0bc1yhb iron man 4 (Q209538) /m/047vnkj /m/047vnkj /m/05511w universidad de chile (soccer club) (Q737753) /m/058nh2 turk thrust (Q850385) /m/04g61 luxembourgh (Q32) /m/01q2nx deep impact (film) (Q49498) /m/01drsx disaster movies (Q846544) /m/047csmy transformers2 (Q191100) /m/0bm2x the lost weekend (film) (Q237134) /m/06nv27 openfaced mako (Q741661) /m/07vhb cal-santa cruz (Q1047293) /m/09hgk german charles-ferdinand university (Q31519) /m/02ck7w david wenham (Q296328) /m/01ps2h8 vigo mortensen (Q171363) /m/0rqyx clear water harbor, florida (Q244146) /m/01xzb6 don henly (Q316454) /m/02gs6r kiki (witch) (Q196602) /m/0534v boro the catepillar (Q55400) /m/02zd460 university of california extension - cmil (Q168756) /m/09bx1k hugo w friedhofer (Q1350676) /m/0gs973 '' inkheart '' (Q310734) /m/01qtj9 history of the canton of berne (Q11911) /m/04zw9hs fc raketa gorky (Q643083) /m/0cbv4g the devil wears prada (film) (Q223316) /m/035_2h d.a fletcher (Q1209853) /m/0278rq7 silver screen partners iii (Q3483998) /m/07y9ts primetime emmy award winners, 2005 (Q1122380) /m/01v0fn1 keith forsey (Q1315512) /m/02_jkc philip ramone (Q204323) /m/02c6pq simon baker denny (Q192021) /m/02k_kn smooth rock (Q217191) /m/01vswwx bono (u2) (Q834621) /m/02m__ exeter, england (Q134672) /m/02mq_y the bad seeds (band) (Q1051182) /m/0y_9q dances with wolves (Q20456) /m/012s1d spiderman i (Q484442) /m/0217m9 howard university hospital (Q1068752) /m/01p4wv that '70s show (Q208072) /m/02b10g stockport county f c (Q18526) /m/03v40v bill meléndez (Q862316) /m/012vd6 eddie franklin (Q125121) /m/05pzdk /m/05pzdk /m/094xh stevie knicks (Q234691) /m/01f6x7 shang-high noon (Q849475) /m/0283ph /m/0283ph /m/0glqh5_ contraband (2012 film) (Q1129080) /m/01f6zc oldman, gary (Q83492) /m/04zl8 trojan bunny (Q25043) /m/0353xq quadrophenia (film) (Q962987) /m/02t_w8 volodymyr palahniuk (Q193653) /m/01zfzb city slickers (Q1094020) /m/0212zp sōdai (Q274486) /m/02bxjp shouhei imamura (Q309950) /m/011yn5 melvin udall (Q221594) /m/01jszm providence college (Q1439629) /m/03vtbc silver color (Q317802) /m/0c5_3 county borough of coventry (Q6225) /m/03bdv london mean time (Q30192) /m/03cv_gy john adams (tv series) (Q1516431) /m/014_lq p:qotsa (Q1243718) /m/02f2p7 charlotte rampling (Q234679) /m/09r94m united 93 critical reception (Q282804) /m/06ltr robert coltrane (Q296008) /m/0b0pf dan chernenko (Q455780) /m/06hmd r. e. howard (Q207640) /m/013pp3 philip m. roth (Q187019) /m/02kz_ hemingway (Q23434) /m/06x4c sugars, sucrose (Q11002) /m/0gn30 sylvester gardenzio stallone (Q40026) /m/02glc4 /m/02glc4 /m/01vvzb1 fly with me later (Q223769) /m/05hywl g. d. estoril-praia (Q634829) /m/02rxbmt fernando rodriguez trueba (Q381934) /m/0333wf stephen dorff (Q334195) /m/07sqm1 sivasspor (Q372599) /m/0282x jane belson (Q42) /m/049gc kurt vonnegut jr (Q49074) /m/02ylg6 punch, drunk love (Q580716) /m/03n6r humprey bogart (Q16390) /m/02jp5r 70th oscars (Q536749) /m/081jbk hilary haag scarborough (Q5760981) /m/0c00lh jason reitman (Q314502) /m/05nqz nazi german invasion of the soviet union (Q83055) /m/04t9c0 mighty aphrodite (Q1354109) /m/06fp11 printz honor award (Q1928373) /m/01fbr2 hard bopper (Q181010) /m/06h2w ron carter (Q434593) /m/02d_zc csu–fort collins (Q1111640) /m/02pg45 four rooms (Q1137372) /m/0jzc arabic language (Q13955) /m/07dzf republic of tanzania (Q924) /m/04fv5b book of shadows: the blair witch project 2 (Q300842) /m/034f0d live entertainment (Q2865801) /m/016yvw /m/016yvw /m/043zg a suivre: jennifer lopez (Q40715) /m/05tgks marisa ava marie ventura (Q749661) /m/0bs8d elias kazantzoglou (Q72717) /m/0bm7fy tony award for best direction (Q640374) /m/0fhmf linz an der donau (Q41329) /m/0ftlxj 33rd academy awards nominees and winners (Q917071) /m/016gkf peter alexander baron von ustinow (Q55796) /m/098n_m the creed of violence (Q670296) /m/03t79f the haunting (1999) (Q786019) /m/0971v meat grades (Q192628) /m/025s0zp infobox manganese isotopes (Q731) /m/017_4z beaulieu park rail station (Q210985) /m/02ly_ essex, england (Q23240) /m/029_l delroy lindo (Q362559) /m/0k54q unicron crisis (Q250378) /m/08jyyk avant rock (Q1641839) /m/0b6p3qf oklahoma city american hockey league team (Q1518434) /m/0c_m3 the blues city (Q16563) /m/0329nn rumania national football team (Q168397) /m/01gj8_ nandamuri taraka ramarao (Q2646553) /m/09c6w hyderabad india (Q1361) /m/0134tg the allman brothers band (Q507327) /m/0vjr liza bump (Q244803) /m/08q3s0 jack bender (Q362793) /m/03cd0x catwoman (movie) (Q115760) /m/0854hr gordon hugh willis, jr. (Q560108) /m/0352gk /m/0352gk /m/03h_fqv tom fucking waits (Q184805) /m/09p3h7 2002 golden globe awards (Q730491) /m/01kws3 l. music (Q143230) /m/0362q0 david zucker (director) (Q452794) /m/018qb4 london 1908 (Q8111) /m/0486tv free-style wrestling (Q327223) /m/03n52j edward james begley (Q464425) /m/02w_6xj los angeles film critics association award for best director (Q505449) /m/0fsw_7 dominique duval (Q107724) /m/0bhwhj an inconvenient truth: a global warning (Q204670) /m/0dq2k john c calhoun (Q207191) /m/0789n secretary of states (Q736559) /m/02b0y3 brentford f. c. (Q19571) /m/01dbk6 anne bancroft filmography (Q183532) /m/01vvlyt india.arie (Q258750) /m/07yklv new rock revolution (Q1899347) /m/01k_yf modestmouse (Q431355) /m/03cn92 jo-beth williams (Q237809) /m/0gr07 best short subject, two-reel (Q1324407) /m/05bpg3 jeremy samuel piven (Q315083) /m/0n3g anguilla/military (Q25228) /m/03n69x sanders, deion (Q954184) /m/01yg9y kathy lee gifford (Q465695) /m/06lc85 g.s.e. and antonis papadopoulos stadium (Q141688) /m/05ys0wz berlinale 1984 (Q32166) /m/015hr international film festival of berlin (Q130871) /m/02w3w fiddle and violin (Q510487) /m/026lgs contact (1997 american film) (Q270215) /m/0jmmn rochester seagrams (Q166105) /m/0135nb christopher roland waddle (Q352878) /m/0t_71 somerville, ma (Q49199) /m/06j8wx dance, charles (Q309690) /m/02508x richard hamond (Q297265) /m/07ym47 funk-jazz (Q38656) /m/02prwdh breakfast on pluto (film) (Q903819) /m/01jzyx st. augustine hall (Q1138374) /m/02rf1y jeffrey duncan jones (Q377662) /m/019lxm santos foot-ball club (Q80955) /m/02psgq la dolce vita (Q18407) /m/0dh8v4 detective conan: the phantom of baker street (Q1196712) /m/01rlxt richard keith berman (Q502314) /m/046mxj ronald dowl moore (Q549942) /m/0449sw french togoland national football team (Q191595) /m/01tz6vs léon tolstoï (Q7243) /m/01v9724 charles john huffam dickens, frsa (Q5686) /m/0hdf8 proggressive metal (Q484344) /m/027dpx mike portnoy (Q221468) /m/08ff1k walter wanger productions (Q1351511) /m/01h0b0 partick thistle f.c (Q822722) /m/016z51 dick crenna (Q318607) /m/04cbbz rambo iii (Q392355) /m/02jq1 vernon and gladys presley (Q303) /m/03ds83 amy smart (Q235272) /m/0y1mh bahasa melayu (Q9237) /m/0167v human rights in brunei (Q921) /m/03hh89 rose bryen (Q228717) /m/04crrxr wyatt cenac (Q5605949) /m/017gry un/locode:deess (Q2066) /m/0m28g lake havasu city-kingman, az msa (Q58696) /m/02lhm2 cedric kyles (Q492327) /m/05wvs plant protein (Q8054) /m/016s_5 john cameron fogerty (Q326538) /m/088vb zamibia (Q953) /m/020_95 laura linney (Q223281) /m/0bb57s tony award for best actress in a play (Q185299) /m/03q2t9 bryan mcknight (Q1153370) /m/06tw8 jumhūriyyat al-sūdān (Q1049) /m/05szq8z clash of the titans (2010) (Q192979) /m/092_25 1999 screen actors guild awards (Q1809499) /m/046m59 s. epatha merkerson (Q1198897) /m/014v6f cuba gooding junior (Q136209) /m/0f5xn samuel l jackson (Q172678) /m/0n5fz hudson county prosecutor of the pleas (Q490505) /m/0xn5b bayonne city, new jersey (Q812589) /m/0fjyzt the quiet american (2002 film) (Q464653) /m/0d8jf takoma park folk festival (Q754271) /m/028r4y christopher grace (Q277978) /m/01c6l brian de palma films (Q189526) /m/027n06w /m/027n06w /m/0c9xjl robert clark gregg (Q113206) /m/03zv9 lnp serie a (Q15804) /m/02wvfxl /m/02wvfxl /m/0hv8w another slow night in modesto (Q375855) /m/0ldff california-sonora gold belt (Q46422) /m/0qy5v chico, california (Q432152) /m/0kvjrw ilaiyaraaja (Q2720141) /m/0jfvs ligurian cuisine (Q1256) /m/01yzl2 list of the neptunes awards and nominations (Q866207) /m/02x_h0 dupri (Q349434) /m/01w4c9 djimbe (Q537750) /m/096g3 bologna (Q1891) /m/04g5k iso 3166-1:lv (Q211) /m/0jml5 phoenix suns (Q164177) /m/012dr7 william powell (Q105960) /m/01pk8v krate beckinsale (Q179414) /m/0g8rj university of virginia investment management company (Q213439) /m/034h1h aau.edu (Q743812) /m/07y8l9 america says (Q967130) /m/04z542 michael lerner (actor) (Q527303) /m/04kr63w alison brie schermerhorn (Q235328) /m/086hg9 /m/086hg9 /m/04wp3s sam rockwell (Q316446) /m/0kr_t clodplay (Q45188) /m/018x3 brian peter george st. john le baptiste de la salle eno (Q569003) /m/016zp5 sir ian holm (Q223091) /m/07l50vn the secret of her eyes (Q748851) /m/04zx08r japan academy prize for director of the year (Q1387050) /m/03_xj jersey (island) (Q785) /m/0gt1k ninochka (Q589894) /m/03fbb6 antonino giovanni ribisi (Q224081) /m/054k_8 donnie yen (Q311723) /m/01bl7g shanghai knights (Q595595) /m/0cm2xh world war ⅰ (Q361) /m/02x7vq dianne wiest (Q217573) /m/06vsbt vincent paul kartheiser (Q445116) /m/048_p kim stanley robinson (Q130779) /m/02k4gv matthew fox (Q185554) /m/0jn5l mark allen mothersbaugh (Q1351259) /m/0cy__l '' mildred pierce '' (Q979726) /m/07xl34 principal & vice-chancellor (Q61061) /m/0269kx north carolina central university (Q1518804) /m/02jqjm toto - night of the proms (Q207472) /m/0d4htf /m/0d4htf /m/04cr6qv joseph adam "joe" jonas (Q191088) /m/0qmhk missing (1982 film) (Q400985) /m/027b9ly london film critics circle award for director of the year (Q1868927) /m/03wh49y the colour of magic (film) (Q1890400) /m/01z77k television miniseries (Q1259759) /m/09p3_s passage to india (Q1323132) /m/02tjl3 shattered glass (film) (Q466436) /m/09zmys laura dern (Q220901) /m/06xpp7 /m/06xpp7 /m/01nzz8 john southworth ritter (Q314812) /m/04mp9q téfécé (Q19518) /m/0tj4y history of bowling green, kentucky (Q694545) /m/09pbb proline (Q484583) /m/092kgw golin, steve (Q7612676) /m/0627sn freddie francis (Q1337082) /m/026bfsh /m/026bfsh /m/01h6pn n w europe 1940 (Q151340) /m/0bxjv axis states of world war ii (Q43056) /m/04_1nk peter lamont (Q1370251) /m/027ct7c fiddler on the roof (film) (Q934036) /m/05zpghd invention of lying (Q178966) /m/0zqq argovia (Q11972) /m/01vsgrn slim (Q5608) /m/0k9ctht rko (Q267282) /m/039zft the unbirthday song (Q189875) /m/01b_d4 the university of east anglia (uea) (Q1045828) /m/013xrm german peoples (Q42884) /m/01pk3z anna faris (Q4491) /m/05dtwm jude ciccolella (Q733776) /m/01kd57 santiago (omni series 2) (Q935369) /m/0415mzy one world (redone song) (Q323470) /m/017khj old habits (film) (Q363271) /m/06xj4w fk baku (Q54988) /m/0dw4g u2 (band) (Q396) /m/09yg6l al-ismaily (Q1329368) /m/025s7j4 /m/025s7j4 /m/01bczm brian adams (singer) (Q482907) /m/02pjzvh /m/02pjzvh /m/03fnmd fc utrecht/doc (Q24680) /m/0c3zjn7 real steel 2 (Q261759) /m/01m2v2 environmental issues in butte, montana (Q467664) /m/0pv54 michael collins (movie) (Q430535) /m/07j8kh eliot goldenthal (Q264565) /m/03cbtlj /m/03cbtlj /m/01nrgq tim conway (Q1304952) /m/02tkzn edward asner (Q154421) /m/09b9m elbflorenz (Q1731) /m/0431v3 weeds (tv show) (Q23609) /m/044f7 muppet meeting films (Q191037) /m/0ksrf8 rebecca hall (Q230534) /m/03yvf2 fight club (movie) (Q190050) /m/0mm1q guy ritchie (Q192990) /m/01_ztw mandy moore single (Q187832) /m/08132w droylsden f.c. (Q661543) /m/061zc_ rajesh khannaa (Q107130) /m/03_48k fred ward (Q350714) /m/0295sy hook movie (Q646389) /m/03cxsvl dianna agron (Q228792) /m/06c97 nixon, richard m. (Q9588) /m/045cq frankenheimer, john (Q262820) /m/06jw0s amy robach (Q4395066) /m/05fjy forty-seventh state (Q1522) /m/0gbfn9 fast food nation film (Q770000) /m/04kf4 leipzig, east germany (Q2079) /m/0ddj0x the commitments (film) (Q644065) /m/0jf1v troll metal (Q213149) /m/01jwt hellish metal (Q132438) /m/037fqp marquette u (Q188370) /m/03l295 dwayne tyrone wade (Q31683) /m/099pks king of the hill (Q1135966) /m/0yyn5 working girl (soundtrack) (Q126183) /m/03nnm4t 60th primetime emmy awards (creative arts) (Q1338928) /m/03rwng jean smart (Q239069) /m/01mxt_ steven siro vai (Q193397) /m/0gtt5fb the great gatsby (2013 film) (Q892735) /m/044mfr adam levine (Q219631) /m/0g6ff russian ethnicity (Q49542) /m/022_q8 mike leigh (Q315756) /m/0275n3y satellite awards 2006 (Q1959196) /m/025b5y katherine marie heigl (Q189554) /m/01fx1l chicago hope (Q1071958) /m/059_gf wright, jeffrey (Q343059) /m/035ktt uno department of recreation and intramurals (Q1474157) /m/02pk6x famke jannsen (Q190794) /m/01npcx irina (james bond) (Q19089) /m/06czyr ramírez, sara (Q40069) /m/03bxh george frideric handel (Q7302) /m/05kh_ george orson welles (Q24829) /m/02vyyl8 yes man (film) (Q269887) /m/07kcvl /m/07kcvl /m/015lhm chuck norriss (Q2673) /m/01bzr4 leon schlesinger (Q762558) /m/0g8_vp /m/0g8_vp /m/064_8sq franska (Q150) /m/01l_pn charlie's angels 2 (Q229603) /m/034rd 1st us president (Q23) /m/04mg6l armand assante (Q310511) /m/02cqbx edith head (Q234961) /m/058vp prust (Q7199) /m/02mxbd sandy powell (costume designer) (Q289952) /m/03qsdpk /m/03qsdpk /m/011s0 no ads (Q37038) /m/065ydwb anna ragsdale camp (Q1150316) /m/08s_lw christopher bauer (Q39979) /m/03d9d6 mark stoermer (Q220730) /m/01whvs a.f.c. wimbledon (Q48851) /m/05drr9 seth myers (Q14536) /m/01vs5c university of oklahoma norman (Q640652) /m/0l3h 🇦🇬 (Q781) /m/01vsyg9 charles obscure (Q165467) /m/01sfmyk brain posehn (Q912938) /m/0bx_q brooke christa camille shields (Q189400) /m/014gf8 laurence fishburn (Q193048) /m/06bd5j basic instinct 2 (film) (Q810012) /m/07h565 jacob vargas (Q962944) /m/04h6m latin hip hop (Q3827483) /m/016_nr east coast hip hop (Q876171) /m/01kpt bronze stars (Q928314) /m/0cks1m pupuran (Q566098) /m/01cl2y reprise records (Q645889) /m/0kxbc reverend strychnine twitch (Q712592) /m/054g1r buena vista distribution company (Q1323594) /m/016890 kool & the gang (Q850290) /m/02bqy dartmouth (Q49116) /m/0h1fktn glee 3d (Q1186557) /m/01wqlc /m/01wqlc /m/03ytj1 georgian national football team (Q186268) /m/04pz5c jeffrey todd "jeff" garlin (Q983082) /m/0603qp larry charles (Q722115) /m/0dll_t2 this means war (film) (Q1049480) /m/0382m4 michael c. hall (Q203268) /m/07q1m the straight story (Q1139454) /m/027kmrb tisch, steve (Q7482626) /m/049xgc the aviator (2004 film) (Q201924) /m/07l4zhn get low (film) (Q451272) /m/029h45 dorothy fields lyrics (Q435241) /m/027mdh the university of san francisco (Q1887879) /m/07t3gd research associate (Q3151032) /m/05bm4sm michael semanick (Q1705192) /m/02tx6q /m/02tx6q /m/03x6xl panionios (football) (Q460494) /m/0466p0j 51st grammy awards nominees and winners (Q1481140) /m/03xnq9_ drift (emily osment song) (Q188401) /m/013m_x abilene regional medical center (Q128295) /m/0bvg70 jonathan murray (Q1703265) /m/02rmxx patty duke astin (Q232538) /m/03ym1 sir ian mckellen (Q170510) /m/02nwxc lili taylor (Q233502) /m/0c3xpwy the walking dead (show) (Q232737) /m/02xc1w4 greg nicotero (Q2633389) /m/01pcvn katherine ann moss (Q212531) /m/043g7l /m/043g7l /m/074rg9 may munro (Q471423) /m/01_k1z george a. romero films (Q51511) /m/016bx2 michael powell (Q55234) /m/0281rb tarzana, los angeles, california (Q2708222) /m/06b_j russkiy yazyk (Q7737) /m/0ch3qr1 jack and jill (2011 film) (Q1505923) /m/05489 mafioso (criminal) (Q1458155) /m/05rfst tom stall (Q300439) /m/0568qz bradford park avenue f.c. (Q896965) /m/0151b0 dinner bell (Q201735) /m/0988cp /m/0988cp /m/059ss island of newfoundland (Q48335) /m/022jr5 memorial university of newfoundland and labrador (Q1895354) /m/06sw9 sport in seychelles (Q1042) /m/0c8hct mike nawrocki (Q6848167) /m/064r97z grey gardens (soundtrack) (Q2271049) /m/0786vq universitatea craiova (Q584629) /m/01f39b alice in wonderland (1985 movie) (Q2996045) /m/0f1pyf keith andrews (footballer) (Q316704) /m/085v7 the baggies (Q18744) /m/07_k0c0 a-team (Q471746) /m/0dr89x bridges of madison county (Q399823) /m/0c3z0 cast away's wilson (Q213411) /m/0h27vc jack mcbrayer (Q560896) /m/04f7c55 good girls (nick jonas song) (Q201656) /m/03ctv8m oswald norman morris (Q721174) /m/031y07 anthony quayle/comments (Q347711) /m/02704ff burn after reading (Q381731) /m/057bxr milan politecnico (Q392904) /m/02l6h currency of the netherlands (Q4916) /m/0bl06 greatest show on earth (Q641061) /m/05_z42 godless killing machine (Q1130799) /m/03y_46 mark williams (actor) (Q343463) /m/036b_ bissau-guinean (Q1007) /m/0b6css african bank of development (Q340195) /m/05cwl_ /m/05cwl_ /m/02yvhx 74th oscars (Q753167) /m/0h95zbp chronicle film (Q1087883) /m/09cd3s s.v. waldhof mannheim (Q170134) /m/0284b56 before the devil knows your dead (Q1321503) /m/0d810y bryan batt (Q2138235) /m/043t1s rc lens (Q191843) /m/0cc63l david dhawan (director) (Q725970) /m/050fh manutd (Q18656) /m/0bl5c best years of our lives (Q645094) /m/0k4p0 tootsee (Q221249) /m/0cc97st vanellope von schweetz (Q28891) /m/026g4l_ /m/026g4l_ /m/03llf8 hal smith (actor) (Q2713545) /m/021wpb character actress (Q948329) /m/016cjb bluegrass gospel (Q180268) /m/024zq charles mingus (Q107432) /m/0f2rq lake cliff park (Q16557) /m/01l1rw elmer bernstein (Q111436) /m/01d259 lost highway (1997 film) (Q289204) /m/03j0dp neo noir (Q2421031) /m/0fk0xk 36th academy awards (Q917143) /m/0415ggl amelia (2009 film) (Q461447) /m/02z2mr7 loss of a teardrop diamond (Q176370) /m/030jj7 bruc (Q3699593) /m/02wszf middle infielder (Q1147776) /m/09lmb immunity (reality television) (Q182415) /m/05yh_t henry hunter hall (Q31293) /m/0992d9 15 minutes (Q180395) /m/037xlx gabe walker (Q824389) /m/05pyrb naruto the movie: legend of the stone of gelel (Q696366) /m/03zj9 ithaca college bombers (Q3540690) /m/02g2wv saturn award for best actor (Q1259362) /m/0h21v2 /m/0h21v2 /m/02qpt1w vicky, christina, barcelona (Q212123) /m/02zd2b wiu (Q1474005) /m/0c4b8 union of s.a. (Q193619) /m/01gkg3 associates degrees (Q14625016) /m/05qjc theatre and dramatic arts (Q184485) /m/07bch9 scottish-americans (Q3476361) /m/0rlz 7th president of the united states (Q11817) /m/0175wg sienna guillory (Q236010) /m/01clyr polygram (Q155152) /m/01l87db bob geldof (Q216608) /m/02qsqmq st trinian's (film) (Q93443) /m/0660b9b the men who stare at goats (film) (Q1164779) /m/03x22w emilie de ravin/comments (Q215523) /m/0ksy_ recretivo huelva (Q12249) /m/01nnsv ivory 503 (Q432637) /m/0bpk2 tangergine dream (Q153616) /m/0kvgnq the unbearable lightness of being (film) (Q1122571) /m/02ln0f clermont college (ohio) (Q153265) /m/0355dz small forward (basketball) (Q308879) /m/0jm4b orlandomagiccoach (Q161337) /m/01pbs9w nitzschephone (Q709857) /m/01_p6t tonita (Q229291) /m/03prz_ orlando (movie) (Q188384) /m/01dwrc black eyed peas (Q134541) /m/02ywhz 71st academy awards nominees and winners (Q263239) /m/01dqhq new wave metal (Q370515) /m/026y23w wayne dyer (footballer) (Q4018598) /m/03dj6y montserrat national football team (Q497989) /m/024_fw /m/024_fw /m/013b2h 44th grammy awards (Q637650) /m/0ndwt2w /m/0ndwt2w /m/02bgmr gustavo cerati (Q533284) /m/03_wvl jorge garcia (Q264914) /m/08k881 james le gros (Q1334830) /m/0fpzwf un/locode:usmes (Q36091) /m/09r9m7 waldo green (Q664592) /m/06rny santa clara 49ers (Q337758) /m/0xmlp ampere, new jersey (Q988515) /m/010y34 morgantown, west virginia metropolitan area (Q653636) /m/0g8bw cochinchinese democratic party (Q180573) /m/06bw5 richard f. scholz (Q1140775) /m/080z7 wellington teachers training college (Q1150437) /m/066l3y monica jean rial (Q4115624) /m/02zcz3 contemporary west (Q1787152) /m/03ktjq joel silver (Q539718) /m/0df92l man cheng jin dai huang jin jia (Q51737) /m/0d7k1z history of irvine, california (Q49219) /m/02vrr symptomatic epilepsy (Q41571) /m/013zyw wes craven films (Q223992) /m/067nv preachers (Q432386) /m/0db79 /m/0db79 /m/058s44 chris evans (american actor) (Q178348) /m/0jvs0 msdw (Q334204) /m/04z0g m friedman (Q47426) /m/03mgx6z taken (2008 film) (Q277080) /m/026z9 mid-2010s disco revival (Q58339) /m/015srx the jackson 5 tv performances (Q43267) /m/02pjvc linda cardelini (Q234204) /m/025rvx0 empire of the sun (movie) (Q271281) /m/0x3r3 rawlesian (Q172544) /m/07c37 hobbes (Q37621) /m/01vvyc_ black magic (50 cent album) (Q6060) /m/03t5n3 best rap song (Q1123766) /m/0dcsx altzheimer (Q11081) /m/0k95h hyper tension (Q41861) /m/0c_jc douglas macaurthur (Q127417) /m/012gx2 biden, joseph r., jr. (Q6279) /m/0fj9f political leader (Q82955) /m/034zc0 jt walsh (Q502128) /m/0ks67 rutgers, the state university of new jersey (Q499451) /m/05lfwd grey anatomy (Q438406) /m/06s6hs kate walsh (actress) (Q229979) /m/0828jw lost (television series) (Q23567) /m/0bwx3 thoreauvian (Q131149) /m/016ky6 big (count visits) (Q858467) /m/02sh8y robert loggia (Q361238) /m/0k0sv croatian (language) (Q6654) /m/01l7cxq smokin' section (tom scott album) (Q1651279) /m/03_80b ismail noormohamed abdul rehman (Q732397) /m/04ld94 james ivory (director) (Q51577) /m/0ktpx spellbound (1945 film) (Q497311) /m/02w9k1c duchess (Q466514) /m/08n__5 brett mckenzie (Q910486) /m/0hwbd faye dunaway (Q168721) /m/03wnh the indianapolis colts (Q193753) /m/02cgb8 philippa braithwaite (Q2631586) /m/02qysm0 academy of canadian cinema and television award for best achievement in sound editing (Q4376978) /m/067ghz nostromo (alien) (Q103569) /m/0gl02yg sister peach (Q167432) /m/0ggbfwf salmon fishing in the yemen (Q602256) /m/01rl_3 fc middlesbrough (Q18661) /m/035bcl meet joe black (film) (Q676513) /m/0bx0lc charlie cox (Q454231) /m/0dyztm aleksa palladino (Q433106) /m/06jrhz dini, paul (Q636303) /m/020trj miriam spickler (Q233054) /m/01z7s_ emilio sheen (Q220918) /m/01znj1 gallipoli (1981 movie) (Q1077160) /m/01f_3w louisiana ca$h (Q27184) /m/0ygbf winston salem, nc (Q49227) /m/02dw1_ the incredible string band (Q1500510) /m/05650n list of happy feet characters (Q126800) /m/02ch1w madeline gail wolfson (Q234068) /m/02lp0w tony award for best performance by a leading actress in a musical (Q1537996) /m/01p5xy strassler family center for holocaust and genocide studies (Q1095773) /m/0kbhf since you went away (film) (Q1620639) /m/0146hc university of central florida/doc (Q143451) /m/067z2v old golds (Q3886119) /m/01t38b firth college, sheffield (Q823917) /m/0640y35 alvin and the chipmunks: the squeakuel (Q378311) /m/01wc7p kirstie allie (Q151935) /m/02h22 das boot versions (Q62730) /m/037mjv caledonian thistle f.c. (Q309059) /m/0b2h3 san luis rey de francia (Q81033) /m/024rwx /m/024rwx /m/06nns1 lisa edelstein (Q229197) /m/04mkft family entertainment (warner home video) (Q1188361) /m/01l2m3 causes of heart failure (Q181754) /m/0jwvf lisa fremont (Q34414) /m/05css_ saboteur (film) (Q502091) /m/013w2r styx (band) (Q590102) /m/046n4q rkc waalwijk (Q24699) /m/02__94 borzage (Q369190) /m/09j_g headgames publishing, inc. (Q200491) /m/087yty joesph biroc (Q717851) /m/0d085 pulitzer-winning playwright (Q289214) /m/04g51 literature portal (Q8242) /m/0rh7t gainesville, fl (Q487999) /m/01_s9q spelman seminary (Q7575916) /m/0psxp history of evanston, illinois (Q462799) /m/0172jm colby quarterly (Q1075116) /m/06mr6 thomas sean connery (Q4573) /m/01kf5lf goldfinger (movie) (Q106440) /m/02b61v m:i2 (Q505790) /m/01bpnd sour mash records (Q193459) /m/0cq86w oliver! (film) (Q141359) /m/0k3kv plymouth county, ma (Q54086) /m/0t_hx brockton (ma) (Q49193) /m/0ggx5q /m/0ggx5q /m/02qyv3h rautataivas (Q158398) /m/01jfr3y deborah ann gibson (Q233817) /m/0167km richard lewis springthorpe (Q707446) /m/074tb5 dermot mulrooney (Q363386) /m/02hhtj wilmer valderrama (Q347436) /m/01wbsdz lbw entertainment (Q312173) /m/01wgjj5 adam and the ants (Q348658) /m/0hwqz jaime lee curtis (Q106997) /m/0c9cp0 al-gharafa doha (Q428211) /m/0fq9zdv british independent film award - best british independent film (Q4835650) /m/025rcc university of portland (Q513658) /m/03cglm frank theodore “ted” levine (Q433520) /m/0m66w sara jessica parker (Q170530) /m/02lxrv ed wood (movie) (Q639481) /m/011k11 decca label (Q557632) /m/0bxqq cities of sacramento county, california (Q108131) /m/07bcn the capitol city (Q18013) /m/03wd5tk richard sylbert (Q1409480) /m/0k_p5 woodland hills, california (Q1337818) /m/077rj sondheim, stephen (Q153579) /m/0b_6rk 1990 ncaa division i men's basketball tournament (Q3994966) /m/026fd david kronenberg (Q55422) /m/01pcz9 portia de rossi (Q215366) /m/0db86 /m/0db86 /m/01wgfp6 mc hammer (Q295923) /m/02glmx 76th academy awards (Q458646) /m/05g2v southern mediterranean (Q27381) /m/01k_mc vandross (Q311306) /m/08lpkq jazz vocal (Q1530455) /m/0127s7 christinaaguilera.com (Q41594) /m/01jq4b wake forest u (Q392667) /m/031rq5 castle-rock entertainment (Q622848) /m/041738 indie dance (Q2187392) /m/06lvlf channing matthew tatum (Q212064) /m/01_sz1 electropunk (Q476983) /m/04jwp byron (Q5679) /m/01p4r3 lloyd bridges (Q317817) /m/011v3 ac milan (Q1543) /m/04s430 thomas christopher "chris" parnell (Q1077635) /m/02cpp depeche mode (Q482964) /m/01b30l incorporated association of organists (Q765778) /m/01xn5th xolos academy l.a. (Q1103168) /m/01y81r tenplay (Q767920) /m/01xrlm uwcc (Q1035745) /m/0g2ff konzertina (Q593050) /m/02wk4d xiè tíngfēng (Q380579) /m/09v8db5 hong kong film award for best supporting actor (Q5894567) /m/0bzknt 44th annual academy awards (Q289412) /m/023kzp william h macy (Q224159) /m/0cfdd drum computer (Q831698) /m/011ypx good will hunting (Q193835) /m/05smlt senior media creative (Q667982) /m/03nqnnk searching for debra winger (Q4101775) /m/07cw4 charles palantine (Q47221) /m/02p0qmm colleges (Q189004) /m/012v1t nancy pelosy (Q170581) /m/0261w5 fredrikstad f. k. (Q216131) /m/05r6t 1970s punk rock (Q3071) /m/0b1zz epithamy of you (nirvana album) (Q11649) /m/02q3fdr jezebel's ponyo (Q236728) /m/0jxy japanese animated cartoon (Q1107) /m/05f7w84 list of characters in kid vs. kat (Q749629) /m/09fp45 kathleen barr (Q2509482) /m/0p__8 michael john myers (Q185724) /m/017v71 wellesley blue (Q49205) /m/02cbs0 eccleston, christopher (Q312380) /m/01xyt7 tom brady (Q313381) /m/03q3sy cera, michael (Q309555) /m/05t0_2v scott pilgrim (Q753899) /m/063zky the flintstones meet the jetsons (Q2392121) /m/0bg4j_ sv wehen-wiesbaden (Q310621) /m/0127ps conspiracy theory (film) (Q506661) /m/02ryx0 scott grusin (Q502923) /m/011yg9 sense and sensibility (1995 film) (Q643263) /m/0dvld kate elizabeth winslet (Q202765) /m/01k4f greater basel (Q78) /m/04255q busan i park (Q495027) /m/0fzyg p:avia (Q765633) /m/016ztl kurenai no buta (Q498375) /m/01yfp7 the gap inc. (Q420822) /m/09v0p2c writers guild of america awards 2009 (Q8038500) /m/02f9wb marti noxon (Q1421616) /m/024rdh sony pictures classics (Q1320443) /m/0f4_2k angels and demons (film) (Q192934) /m/0123j6 bethasda softworks (Q684425) /m/0bxbr bethesda, us-md (Q584451) /m/01tm2s rose city (Q212289) /m/02q87z6 the village (soundtrack) (Q465227) /m/0mgfs champagne ardenne (Q14103) /m/04h41v the opposite of sex (Q2116797) /m/04cjn nathiagali beach (Q8660) /m/05xb7q islamia law college (Q1661751) /m/01p_ly cebú city (Q1467) /m/056ws9 dreamworks animation/comments (Q500088) /m/03crcpt jim clark (film editor) (Q360002) /m/0t0n5 mayors of cedar rapids (Q486439) /m/02q42j_ eric fellner (Q1351291) /m/01r2l iso 639:zho (Q7850) /m/01fyzy you can do it! (Q192217) /m/02q7fl9 primary colors (film) (Q1480617) /m/06r713 /m/06r713 /m/0424m 4th president of the united states (Q11813) /m/02t__3 timothy hutton (Q310324) /m/0hv81 the anatolian smile (Q1217057) /m/03bmmc pratt institute, new york (Q1204714) /m/03c0vy st.mirren (Q319136) /m/0k9wp us space academy (Q1331280) /m/0n1s0 wag the dog (Q623443) /m/0gt_0v post-bop (Q1092837) /m/03clrng /m/03clrng /m/015ln1 dulwich college boat club (Q1264867) /m/0h0p_ sir p wodehouse (Q207515) /m/019tzd bicycling/offroad (Q520611) /m/0192l “a set of bagpipes” (Q8347) /m/06__m6 thank you for smoking (movie) (Q840872) /m/0g5q34q heartbeats (film) (Q2336453) /m/0196bp sunderland afc (Q18739) /m/04jr87 college of sapienza (Q209344) /m/0k2mxq james pickens, jr. (Q39965) /m/095b70 isiah washington (Q40048) /m/04k4rt fortune global 500 (Q621102) /m/0mpbj history of augusta county, virginia (Q285625) /m/0d02km zachery quinto (Q139642) /m/027j9wd ice age: dawn of the dinosaurs (Q179503) /m/09pl3f secret hideout (Q432598) /m/0cc8q3 2009 ncaa championship game (Q2948728) /m/02py8_w /m/02py8_w /m/0gw7p the sting (film) (Q62665) /m/051ys82 killer inside me (Q1409165) /m/03l6bs beloit university (Q2904557) /m/0dgq_kn the girl with the dragon tattoo (american film) (Q474093) /m/0bqs56 liza powell (Q486740) /m/0b7l4x smokingaces (Q605453) /m/02y6fz general manager asia pacific (Q1210069) /m/02zft0 Q1857066 /m/0cvbb9q /m/0cvbb9q /m/04j13sx ecumenical liberation army (Q572165) /m/031ldd 無間道iii: 終極無間 (Q248354) /m/05qmj dialogues of plato (Q859) /m/01zpmq symantec endpoint virtualization suite (Q677085) /m/0h7dd ginger rogers (Q95089) /m/04k9y6 lemony snicket's (Q116905) /m/021s9n stanford law library (Q8012895) /m/03lvwp portrait of a lady (Q186504) /m/01gsvp 19th united states congress (Q4595829) /m/05fyy5 /m/05fyy5 /m/0bbm7r elizabeth i (miniseries) (Q624806) /m/07z2lx Q3062694 /m/018gqj burt freeman bacharach (Q212762) /m/025sf8g se (element) (Q876) /m/01mvjl0 walter becker (Q921204) /m/0143wl timothy peter dalton (Q41233) /m/0b9rdk flash gordon (film) (Q1427252) /m/0sxgv the right stuff (film) (Q1197185) /m/02l6dy gretchen moll (Q255268) /m/01nkt cheese (Q10943) /m/04zjxcz ashes (Q152079) /m/0ylvj exeter college, oxford (Q81173) /m/02r3cn joel madden/comments (Q756563) /m/040_lv i heart huckabee (Q695389) /m/0hky huxley, aldous (Q81447) /m/01y9qr dept of botany, university of guelph (Q795988) /m/05kms making oboe reeds (Q8377) /m/03fnnn willem ii (tilburg) (Q332664) /m/037d35 paul schrader (Q363989) /m/01wrcxr diana ernestine earle ross (Q36290) /m/012jfb michael moore and us foreign policy (Q165394) /m/0ljl8 american kennel society (Q38216) /m/056wb constant c productions (Q172140) /m/02zdwq 2nd line technical support (Q366580) /m/0h3lt un/locode:ushtd (Q5917) /m/01cmp9 chicago (2002 film) (Q189889) /m/082brv stella mogis (Q449224) /m/0rn8q coral gables, florida (Q427559) /m/0n228 mahoning county (Q485502) /m/012j5h raymond hart massey (Q531461) /m/05qbbfb the last airbender casting controversy (Q11593) /m/0fn2g bangkok (Q1861) /m/0g5ff peter held (Q312632) /m/05zl0 forrestal research center (Q21578) /m/03cwqpm seattle mls 2010 (Q632511) /m/03vyw8 mrs. parker and the vicious circle (Q175278) /m/01tnbn a spy in the house of me (Q108941) /m/05hgj history of novels (Q8261) /m/0432b james cageny (Q94041) /m/06r_by robert richardson (cinematographer) (Q364017) /m/05s_c38 chris wood (footballer, born 1991) (Q74548) /m/01x4wq barnsley f.c. (Q19442) /m/01q20 Q3330103 /m/01x_d8 meena suvari (Q223303) /m/018y81 roger meaddows-taylor (Q15880) /m/025j1t dark haul (Q349852) /m/0bs4r bridge on the river kwai (Q188718) /m/03nt59 entourage (u.s. tv series) (Q253205) /m/05fyss dennis lehane (Q311744) /m/05gp3x simon, david (Q720435) /m/0hnp7 eroll flynn (Q93188) /m/02__x marlins baseball (Q652879) /m/02zkz7 mcneese state (Q634396) /m/03hj5lq wrestler (Q139326) /m/0g5pvv quarrel, jr. (Q27204) /m/04pk1f charlie and the chocolate factory (film) (Q218235) /m/05sy_5 crash: music from and inspired by crash (Q188000) /m/01y6dz kelley missal (Q624611) /m/027m5wv the shipping news (film) (Q1334930) /m/09glbnt eone entertainment (Q1344736) /m/09s5q8 usf tampa library (Q500606) /m/0n1rj tampeño (Q49255) /m/06g2d1 terryology (Q296500) /m/058frd bruce cohen (Q543498) /m/02qlkc3 /m/02qlkc3 /m/0dyl9 un/locode:usmke (Q37836) /m/0jmbv bucksgm (Q169637) /m/03q_g6 grammy award for remixer of the year, non-classical (Q1542169) /m/014l4w indian film crew (Q1530721) /m/0hm0k c.b.c. (Q461761) /m/064q5v why we fight (2005 film) (Q1462630) /m/0dnw1 breakfast at tiffany's (film) (Q193066) /m/0bq6ntw fast & furious 5 (Q401976) /m/0cdf37 dean tavoularis (Q940271) /m/0y_yw licio lucchesi (Q202326) /m/02tq2r king kumar (Q233748) /m/0473rc bedazzled (2000 film) (Q464252) /m/0bykpk grapes of wrath (Q676039) /m/06rqw third-wave ska (Q54365) /m/07h76 books/the clash (Q125603) /m/05q7874 the runaways (film) (Q206336) /m/02qmncd jerry hey (Q6183733) /m/05tr7 republic of belau (Q695) /m/0djgt jammu and kashmīr (Q1180) /m/0126t5 instrumental metal (Q1650296) /m/09k5jh7 15th critics' choice awards (Q2704237) /m/0b256b bursaspor sk (Q203573) /m/05pdd86 sorcerer's apprentice (Q477865) /m/0ptx_ dog day afternoon (Q458656) /m/095kp columbia university graduate school of business (Q907481) /m/01jfrg jennifer garner filmography (Q172044) /m/01flv_ catch me if you can (2002 film) (Q208108) /m/09cdxn charles b. lang, jr. (Q486883) /m/087v17 milton r. krasner (Q1396531) /m/02m4yg insinoeoeri (amk) (Q798132) /m/01kymm 堀江由衣 (Q50033) /m/0287477 wanted 2008 (Q4444) /m/01nrnm south kensington schools (Q1753535) /m/064lsn the pianist (2002 movie) (Q150804) /m/016xh5 hugh grant (Q163286) /m/01cwdk newcastle university spin-out companies (Q837164) /m/0277c3 me'shell ndegeocello (Q72720) /m/03mnn0 standing in the shadows of motown (Q977471) /m/02f77l best rock video (Q915228) /m/0gjv_ list of chancellors of the university of london (Q170027) /m/0jm64 milwaukee hawks (Q159893) /m/016jfw all in your name (barry gibb song) (Q296872) /m/01g0p5 royal academy of music library (Q1144673) /m/02z81h sir richard rodney bennett (Q959863) /m/0hsb3 london school of economics and political science (lse) (Q174570) /m/026zlh9 the go-between (1971 film) (Q664020) /m/09l9xt shane smeltz (Q215481) /m/0f6_j putnam county (ny) (Q115266) /m/0dc3_ history of dutchess county, new york (Q115148) /m/06cm5 raging bull 2 (Q220780) /m/06hx2 bobby kennedy (Q25310) /m/060ny2 /m/060ny2 /m/0241y7 the hunchback of notre dame (1996 movie) (Q213787) /m/02qdyj fragdoll (Q188273) /m/0xpp5 new brunswick, nj (Q138338) /m/0n5df middlesex county, nj (Q496862) /m/03h_0_z ciara (Q203223) /m/025vw4t charles pratt, jr. (Q2960052) /m/01r_t_ hukasaku kinzi (Q470779) /m/0776drd japan academy prize for picture of the year (Q378567) /m/04pmnt the new world (film) (Q28193) /m/016ks5 mona lisa (movie) (Q574057) /m/07_53 mintonette (Q1734) /m/013w7j diddy (entertainer) (Q216936) /m/02y9ln seol ki-hyeon (Q359789) /m/016gp5 reading fc (Q18729) /m/0h9qh monstrophy (Q276453) /m/04wqsm diablos rojos (Q670186) /m/04htfd pepsi beverages company (Q334800) /m/01515w edward harrison norton (Q125904) /m/013hxv durham station, north carolina (Q49229) /m/033cnk egg proteins, dietary (Q93189) /m/041r51 mufa (Q650973) /m/02b1k5 hereford united football club (Q18516) /m/01w9wwg william james adams (Q185610) /m/02zjd scott fitzgerald (Q93354) /m/025cn2 paul francis webster (Q1620897) /m/09ly2r6 european film award for best composer (Q1377736) /m/051z6rz craig barron (Q8372) /m/05r3qc space cowboys (Q502189) /m/0gj96ln hotel transylvania (film) (Q249967) /m/077q8x bird (1988 film) (Q865056) /m/02qssrm /m/02qssrm /m/020ffd meredith viera (Q434497) /m/03bxpt0 /m/03bxpt0 /m/025tm81 /m/025tm81 /m/0sxns hannah and her sisters (Q845057) /m/0gg5kmg kill them softly (Q136264) /m/0gmgwnv lincoln (film) (Q32433) /m/01tx9m waco university (Q812573) /m/02v_r7d luther (2003 film) (Q611404) /m/0cgwt8 fc toronto (Q327238) /m/03_qj1 algeria fc (Q181903) /m/0hv27 the african queen (1952) (Q384397) /m/07ncs0 peter facinelli (actor) (Q192052) /m/02dsz radio deejaying (Q130857) /m/02jxbw glory (1989 film) (Q862317) /m/02fs_d ul monroe (Q1552010) /m/07r1h katie holmes and tom cruise (Q37079) /m/01x96 un/locode:uscon (Q28249) /m/08bqy9 feroz khan (indian actor) (Q1058806) /m/01h910 raymond romano (Q220836) /m/014j1m apple blossoms (Q89) /m/06jry bisulase (Q130365) /m/02kzfw london business school (Q1481050) /m/0rjg8 pompano beach, fl (Q671458) /m/0k3nk cascade mountain range (Q4558) /m/018dcy city of guelph (Q504114) /m/05mdx osteophoroses (Q165328) /m/02nt3d along came polly (Q426396) /m/03bxp5 little women (1994 movie) (Q850522) /m/071nw5 little children (movie) (Q841203) /m/03y5ky northern indiana normal school (Q186047) /m/0123r4 ba i (Q806231) /m/04flrx jan de bont (Q376107) /m/06c44 salfenergy/anonymous (group)/operation skankbag (Q1511) /m/01mszz alan smithee film: burn hollywood burn (Q369900) /m/0cwfgz lock up (film) (Q281480) /m/01htxr tony bennett (Q296729) /m/07r4c footer albums tori amos (Q193744) /m/01kjr0 fwwm (Q1140578) /m/01fh36 horn rock (Q105527) /m/012ykt 楊紫瓊 (Q214289) /m/093g7v agrupación deportiva plus ultra (Q12217) /m/0jsf6 the godfather part ii (Q184768) /m/0k5fg smiler grogan (Q1306890) /m/0jyb4 orca (jaws boat) (Q189505) /m/06fcqw bolt (soundtrack) (Q212792) /m/0fb7c leslie nielsen (Q82786) /m/03rg2b in harm's way (film) (Q1362240) /m/05znbh7 bodyguards and assassins (Q2131160) /m/02f6ym mtv video music award for best female video (Q1091031) /m/015p3p harold "harry" dean stanton (Q314290) /m/01jw67 the rose (1979 film) (Q1752518) /m/05d9y_ kiev shevchenko university (Q84151) /m/0j8p6 grand concourse trail (Q2082) /m/01vng3b joshua homme (Q1708504) /m/03gh4 hawaii (u.s. state) (Q782) /m/05kwx2 timothy spall (Q287824) /m/01q99h gary ziegelman (Q941662) /m/02q8ms8 the brothers bloom (Q990840) /m/073tm9 deaf jam recordings (Q654283) /m/01vvyd8 ladies love cool james (Q52440) /m/02q9kqf christopher newman (sound engineer) (Q1086864) /m/02lp3c walter murch (Q1394956) /m/0l8g0 ronald jones (musician) (Q523184) /m/05b6rdt the cabin in the woods (Q45394) /m/01xv77 daryl hanna (Q207596) /m/01lw3kh widescreen (album) (Q1383270) /m/09p30_ 60th golden globe awards nominees (Q1027063) /m/0c12h huston, john (Q51575) /m/0cf2h spencer tracy (Q71275) /m/07bzp the doors (band) (Q45354) /m/04bdzg joshua lucas easy dent maurer (Q53651) /m/0gl3hr /m/0gl3hr /m/05b_gq swept away (2002) (Q600364) /m/02ph9tm you don;t mess with the zohan (Q958417) /m/0lh0c ollie hardy (Q72911) /m/09v9mks bel ami (2011 film) (Q544664) /m/016zfm happy days (Q518589) /m/0f2c8g cochin haneefa (Q2460693) /m/0fl2s kochi, kerala (Q1800) /m/01l79yc rachel portman (Q261314) /m/0n5gq essex county, nj (Q128077) /m/0hptm st. philips academy (Q25395) /m/06rhz7 pursuit of happyness (Q220515) /m/015pvh bonnie lynn hunt (Q272952) /m/02c7k4 hopper (a bug's life) (Q216153) /m/02s8qk duquesneuniversity (Q74343) /m/06ns98 david robb (Q2491464) /m/01x4sb elizabeth mcgovern (Q233868) /m/0dq9p bronchopneumonia (Q12192) /m/015gy7 melvin douglas (Q312084) /m/060j8b john krasinksi (Q313039) /m/0cms7f oscar nuñez (Q1139248) /m/01vw37m chris 'ludacris' bridges (Q193676) /m/01yl6n lubelskie voivodeship (Q54155) /m/034_t5 barrrow a.f.c. (Q18507) /m/03cp4cn shutter island (film) (Q210364) /m/026yqrr rebel rock entertainment (Q9288038) /m/0286gm1 who's afraid of virginia woolf? (movie) (Q325643) /m/0g9zljd separation (Q640561) /m/015q1n mccollum hall (Q52413) /m/041td_ topsy-turvy (Q769347) /m/048xyn messenger: the story of joan of arc (Q1140257) /m/06chvn jerry weintraub productions (Q365844) /m/01_f_5 sophia coppola (Q193628) /m/03h0k1 s.s.d. reggio calabria (Q8476) /m/0fdjb supranature (Q80837) /m/0gx_p michelle pfieffer (Q159778) /m/017r13 john gavin malkovich (Q172261) /m/02_cx_ east tennessee state (Q634669) /m/03xf_m ray (film) (Q797242) /m/01fx5l alexander, jane (Q242717) /m/0gmd3k7 savages (2012 film) (Q1143802) /m/0f63n greene county (ny) (Q115216) /m/01645p avocado (Q37153) /m/02y_3rf betavit (Q306135) /m/02f75t best rap video (Q917008) /m/01chpn adaptation (movie) (Q352431) /m/0x3n aayliyah (Q11617) /m/0flpy barry eugene white (Q213647) /m/0gs0g nelson region (Q1995856) /m/02pd1q9 /m/02pd1q9 /m/02tktw what lies beneath (Q570481) /m/02663p2 cal golden bears football (Q3650742) /m/0tygl history of pittsfield, massachusetts (Q49184) /m/0k3gj berkshire county (Q54165) /m/0hhtgcw 38th people's choice award (Q2697337) /m/017d93 alex latorno (Q196665) /m/078g3l john matthew heard, jr. (Q462327) /m/0y_hb awakenings (film) (Q842073) /m/04764j sydney f.c. (Q330143) /m/0lkm /m/0lkm /m/02qkt asia/europe (Q5401) /m/07t_x üzbekiston respublikasi (Q265) /m/016dj8 ford p.o.s (Q51416) /m/04xn_ birmania (Q836) /m/0f5zj6 suzzanne roshan (Q233619) /m/0jqd3 north by norhtwest (Q223139) /m/02nd_ emperor state building (Q9188) /m/01vrlr4 adolph green (Q329849) /m/02756j kareena kapoor khan (Q184885) /m/02ctyy karishma kapoor (Q464578) /m/0c3p7 close, glenn (Q372311) /m/08qnnv indiana university system (Q6608367) /m/02_n7 nine mile, indiana (Q49268) /m/0bw7ly /m/0bw7ly /m/015_z1 gillingham football club (Q48943) /m/040_t john updike (Q105756) /m/05gpy nathaniel hawethorne (Q69339) /m/0gg8z1f carnage (2012 film) (Q169564) /m/0dsx3f friday night lights (tv show) (Q4507) /m/05hmp6 25th academy awards (Q614408) /m/018ygt alexander rae baldwin iii (Q170572) /m/0d331 un/locode:depot (Q1711) /m/08r98b fort lauderdale strikers (2011) (Q972741) /m/03mfqm colleen atwood (Q258156) /m/02zrv7 daphne aguilera (Q367094) /m/06cmp /m/06cmp /m/01pm0_ adam west (Q351156) /m/029ql doris day album (Q104372) /m/03hxsv /m/03hxsv /m/07ccs texas a & m university (Q49212) /m/0kvbl6 the postman (film) (Q1122688) /m/0n4mk lockwoods folly town, north carolina (Q504329) /m/036jp8 james king aurness (Q470190) /m/026b7bz /m/026b7bz /m/02f_k_ robert hammond patrick jr. (Q272977) /m/02h2vv murphy brown (Q521718) /m/0j47s rangers f.c. (2012) (Q19597) /m/01rp13 malcolm tv (Q242596) /m/06crk ofey (Q39246) /m/05n6sq lords of dogtown (Q836622) /m/0bzm__ 56th academy awards nominees and winners (Q47193) /m/02gd6x fanny och alexander (Q165651) /m/08sk8l spiderwick (film) (Q461768) /m/05j12n /m/05j12n /m/021f30 swallows (Q1324392) /m/08z0wx extreme gothic metal (Q178145) /m/0296y black/death (Q483251) /m/01vsksr william george perks jr. (Q312559) /m/08mg_b wyatt earp (film) (Q1355172) /m/02b0_6 pine villa (Q19601) /m/09_b4 freestyle skiier (Q189472) /m/0690dn espérance sportive troyes aube champagne (Q501693) /m/03hy3g jim sheridan (Q55429) /m/02cft baile atha cliath (Q1761) /m/015dcj marc christian (Q184378) /m/026v437 paz de la huerta (Q272633) /m/02sb1w dabney coleman (Q446717) /m/0807ml giancarlo esposito (Q726142) /m/03_gz8 elizabeth:the golden age (Q727846) /m/01jgpsh tracy ullman (Q130549) /m/05qt0 politics/comments (Q7163) /m/03n3gl america, fuck yeah (Q907640) /m/01w2v el zaher (Q85) /m/0r8c8 un/locode:usjto (Q208447) /m/0178kd in excess (Q489801) /m/03v1w7 richard zanuck (Q359311) /m/0465_ keatsian (Q82083) /m/014tss history of the united kingdom (1707–1800) (Q161885) /m/038b_x /m/038b_x /m/027wvb list of schools in patna (Q80484) /m/01d1yr printemps (album) (Q313596) /m/0b6m5fy late shift (Q7746316) /m/01f85k 花樣年華 (Q1056853) /m/01d9r3 congressional republic (Q49892) /m/0249fn best contemporary blues album (Q3492779) /m/0bjkk9 /m/0bjkk9 /m/02s2wq marisol maldonado (Q754094) /m/02b1b5 barnet f. c. (Q9408) /m/01wd9lv q (Q193645) /m/0g824 alicia keyz (Q121507) /m/01ldw4 richard steinman (Q281908) /m/05g9_ new age (Q183308) /m/061v5m /m/061v5m /m/047myg9 the last station (Q535081) /m/05b2gsm patrizia von brandenstein (Q2058196) /m/04gkp3 antigua and barbuda national football team (Q267972) /m/02v_4xv hulk (footballer) (Q62786) /m/0177gl fc porto (Q128446) /m/0cj16 35mm film (Q226528) /m/0kh3 /m/0kh3 /m/0cmdwwg 50/50 (2011 film) (Q859448) /m/09d4_ 京都市 (Q34600) /m/04s934 lowell alumni association (Q6693219) /m/03nkts matthew lyn lillard (Q29086) /m/032q8q mike o'malley (Q703484) /m/0bvzp louis bernstein (Q152505) /m/06lbp virginibus puerisque (Q1512) /m/06q1r the scottish nation (Q22) /m/02tv80 robert dean stockwell (Q345212) /m/0142rn it director (Q2589465) /m/0dmtp cisco hierarchical model (Q173395) /m/01zkhk falkirk (town), scotland (Q623687) /m/01386_ tankian (Q486063) /m/027qpc dominion of new zealand (Q2594990) /m/07kg3 toscana (Q1273) /m/0cht6 music of lucca (Q13373) /m/0nvt9 chicago county (Q108418) /m/01738w the gorgonites (Q1332263) /m/0zchj un/locode:usbzo (Q671288) /m/04cygb3 reliance entertainment (Q3634702) /m/05v954 sabat, christopher (Q2966652) /m/02z44tp rich man, poor man (tv miniseries) (Q14798167) /m/02f77y mtv video music award for best pop video (Q617869) /m/01t0dy queens college (cuny) (Q1760438) /m/013423 now that everything's been said (Q217787) /m/0ny75 nottingham uni (Q472316) /m/014nvr alexandre dumas, père (Q38337) /m/02hv44_ /m/02hv44_ /m/02qk3fk ps, i love you (film) (Q593726) /m/02wzv pōrīnetia farāni (Q30971) /m/01vzxmq jonathan rhyss meyers (Q213567) /m/02754c9 pinocchio (2002 film) (Q19356) /m/01tt43d roberto benigni (Q23301) /m/02nczh boys don't cry (film) (Q465646) /m/0j4b república de angola (Q916) /m/01gwk3 Q192142 /m/026n047 juan manuel mata (Q168740) /m/01699 causes of food insecurity in burkina faso (Q965) /m/01314k kingston college of technology (Q2503809) /m/012vf6 catharina myrna adele williams (Q105941) /m/01vg13 brooklyn bulldogs men's basketball (Q371625) /m/0166b ba (Q225) /m/0747nrk /m/0747nrk /m/06v36 administrative divisions of eswatini (Q1050) /m/05zy3sc the blind side (2009 film) (Q206497) /m/04p5cr house series (Q23558) /m/0bdt8 ingrid bergman (Q43247) /m/026wp democratic regime (Q7174) /m/08d6bd vinod khanna (Q2038656) /m/0b7t3p /m/0b7t3p /m/012q4n stormare (Q295148) /m/05v38p aurélien parent-koenig (Q220423) /m/089j8p mrs henderson presents (Q1423667) /m/091yn0 jorm taccone (Q545634) /m/0404j37 hurt locker (Q183066) /m/014zz1 wheel lyre (Q207821) /m/0bz3jx paris j'taime (Q310617) /m/01l2b3 bilb (Q369492) /m/02b5_l teen films (Q1146335) /m/01smm greenfield estates (Q16567) /m/0bxbb moco chinatown (Q327022) /m/026vcc pepperdine (Q117876) /m/0k1bs clifford garcia (Q312870) /m/03_87 james augustine joyce (Q6882) /m/08966 zurich (city) (Q72) /m/0bj8m2 family movie (Q2143665) /m/02xpy5 the lumberjack (northern arizona university) (Q139901) /m/01t110 this way (michelle branch song) (Q234685) /m/09l0x9 2006 national football league draft (Q2447844) /m/02g2yr saturn award for best actress (Q1413741) /m/0lbd9 rome (1960) (Q8415) /m/0193qj japanese imperial (Q188712) /m/057xlyq /m/057xlyq /m/01l47f5 black, clint (Q320264) /m/0xq63 long branch city, new jersey (Q995231) /m/04bgy moon the loon (Q211696) /m/02g0rb melanie griffith (Q176455) /m/0143q0 she speaks the language (Q292061) /m/011ykb jerry mcguire (Q329131) /m/02vs3x5 /m/02vs3x5 /m/0g768 atlantic record (Q202440) /m/07mvp rolling stomes (Q11036) /m/025352 singer-lyricist (Q822146) /m/02_lt fulhamerica (Q18708) /m/0n5gb gloucester county, new jersey (Q502463) /m/01pfpt kosmische musik (Q320592) /m/02825cv walk hard (film) (Q2060077) /m/01t6xz noah wyle (Q315208) /m/0180mw chief of emergency medicine county general hospital (Q207375) /m/02bft /m/02bft /m/017s1k lou garrig disease (Q206901) /m/03ys2f peter farrelly (Q1368300) /m/03ysmg bobby farrelly (Q888535) /m/01mh_q 1997 grammies (Q1542308) /m/03_bcg hal b. wallis (Q472520) /m/06fqlk m.i.3 (Q288173) /m/0n5j7 camden county, nj (Q497810) /m/0pzmf camden city, nj (Q138367) /m/0ds6bmk tyrannosaur (movie) (Q1189317) /m/098s2w girl, interrupted (film) (Q463101) /m/02sn34 kyiw (Q1899) /m/0rsjf daytona beach, fl (Q490595) /m/05r1_t t.u.f (Q2072393) /m/0g_wn2 anchorage municipality (Q39450) /m/02lcrv heure avancée du yukon (Q3238805) /m/04xx9s mr. cruz (Q1104158) /m/026hxwx white bitch (Q841118) /m/01ljpm president of vassar college (Q2093794) /m/0457w0 ricardo dwayne fuller (Q438051) /m/0k_l4 southampton f.c. (Q18732) /m/03f47xl /m/03f47xl /m/0lbfv university of manchester (Q230899) /m/018qpq shizuoka-ken (Q131320) /m/095z4q allenville penitentiary (Q1131669) /m/05c3mp2 prison film (Q586250) /m/03c_pqj /m/03c_pqj /m/027gy0k speed racer(movie) (Q312078) /m/0125q1 north yorkshire (Q23086) /m/08304 kelmscott chaucer (Q182589) /m/06cp5 punk rap (Q3930216) /m/05km8z john box (Q327391) /m/01rrd4 matthew leblanc (Q186896) /m/04cppj road trip (film) (Q841515) /m/02kd8zw cis-d5,8,11,14-eicosatetraenoate (Q407699) /m/06rrzn don black (lyricist) (Q1238931) /m/0c_drn walter scharf (Q1231447) /m/02bg55 butterfly effect (Q221109) /m/05mph oklahoma (state) (Q1649) /m/02b1gz chester city fc (Q1070732) /m/0d1swh craig rocastle (Q1776271) /m/01cwq9 port vale f.c. (Q48948) /m/01cpqk tam farrow (Q202725) /m/03c0t9 club atlético san lorenzo de almagro (Q218282) /m/0gfh84d the wettest county in the world (film) (Q253901) /m/0dc_ms hellboy film (Q461540) /m/06823p talk to her (Q478780) /m/01lrrt tear jerkers (Q191489) /m/01_0f7 kingdom of heaven extended director's cut (Q207698) /m/0cmt6q craig robinson (actor) (Q926912) /m/02n72k list of james bond villains in octopussy (Q204398) /m/01_6dw tony kushner (Q704433) /m/02ldv0 gary sinese (Q180272) /m/09gmmt6 let me in (2010 film) (Q264869) /m/01s0t3 heart of midlothian fc (Q202093) /m/03w4sh neal mcdonough (Q445125) /m/07g7h2 ryan murphy (writer) (Q316844) /m/03_wm6 le pacte des loups (Q1123891) /m/02km0m trinity university (tx) (Q1311379) /m/04knkd derry city f.c (Q459622) /m/0421v9q the proposal (movie) (Q108586) /m/01x209s leonardo gordon (Q230151) /m/01ky7c u mass, amherst (Q15142) /m/0g9zcgx ve neill (Q519473) /m/03nbbv mantlo, bill (Q2323986) /m/0yls9 christ church, oxford/comments (Q745967) /m/05_2h8 george barnes (cinematographer) (Q721897) /m/03nb5v breckin erin meyer (Q360674) /m/05x72k street fighter ii v (episode list) (Q1314180) /m/0y9j alkmaar 54 (Q191264) /m/011yhm fargo (soundtrack) (Q222720) /m/02j_j0 working title television (Q2060840) /m/01snm cincinnati, ohio, usa (Q43196) /m/05dss7 very bad things (Q767643) /m/0kfhjq0 /m/0kfhjq0 /m/0gs1_ charles robert redford jr. (Q59215) /m/05r7t /m/05r7t /m/04rtpt imagine television (Q511731) /m/077yk0 jessalyn gilsig (Q233546) /m/05sq20 pam tillis (Q464232) /m/0xl08 teaneck township, new jersey (Q991387) /m/0152n0 skeleton(sport) (Q186190) /m/0fnpj keyboard player (Q1075651) /m/0329t7 macedonian national football team (Q188568) /m/0136jw danbury (Q49198) /m/03q43g will arnett/comments (Q355116) /m/025v1sx /m/025v1sx /m/07zqnm viborg f.f. (Q837956) /m/03548 iso 3166-1:ga (Q1000) /m/067nsm c."tricky" stewart (Q2026379) /m/02d6ph racal-millicom (Q122141) /m/029g_vk telecoms (Q418) /m/01vw917 alvin nathaniel joiner (Q189078) /m/0gs6vr selenator (Q83287) /m/01y9jr charlie's angels (movie) (Q229599) /m/02_340 fisher stevens (Q464169) /m/03cl8lb /m/03cl8lb /m/058wp mother of all settlements (Q5806) /m/0gsrz4 east african time (Q1773949) /m/0b_75k 1998 ncaa division i men's basketball tournament (Q3994974) /m/027ydt jelly bucket (Q1278206) /m/016j68 denholm elliot (Q313047) /m/05gh50 polyunstaturated fatty acid (Q3604509) /m/07s3m4g paranormal activity (2009 film) (Q381028) /m/034qbx the stepford wives (2004 film) (Q1212768) /m/0js9s sir peter jackson (Q4465) /m/04glx0 hallmark hall of fame production (Q1247468) /m/02f6s3 walter brennan (Q219521) /m/016sqs george harvey strait (Q366584) /m/01f2f8 sirio bernadotte (Q53011) /m/02pgky2 80th oscars (Q215132) /m/026kqs9 golden globe awards 1970 (Q2303715) /m/0km3f booper (Q38726) /m/03ffcz the singing detective (Q1040028) /m/0r5y9 san mateo city (Q169943) /m/0350l7 alex kingston (Q232187) /m/0q9vf richards, michael (Q314945) /m/018cvf tiff. (Q390018) /m/04bfg kent state university/doc (Q1473615) /m/094g2z father of the bride part 2 (Q1304560) /m/0gnjh top hat (Q1139031) /m/012kyx rage (virus) (Q221075) /m/0c4hgj 40th academy awards nominees and winners (Q1065291) /m/05qm9f in the heat of the night (film) (Q622240) /m/02cjlk lookout! (Q430070) /m/01tv3x2 the silencers (ska band) (Q503710) /m/07ghv5 fullmetal alchemist the movie (Q699684) /m/04b_46 pac manhattan (Q797078) /m/0dgskx jim carter (actor) (Q976829) /m/06tp4h christopher french (musician) (Q127471) /m/09dv8h high school musical the ice tour (Q53110) /m/03t95n the scorpion king 1 (Q461682) /m/0yxf4 hope and glory (film) (Q1624413) /m/0n03f the weather in waterford (Q183551) /m/03x400 john peter sarsgaard (Q315099) /m/02pw_n garden state (film) (Q59931) /m/0mbql the goonies (Q636043) /m/0h63gl9 magic mike (soundtrack) (Q1197932) /m/05p92jn elizabeth claire "ellie" kemper (Q72077) /m/0248jb best traditional blues recording (Q3107449) /m/033qdy red dragon (2002 film) (Q9125658) /m/01585b stalk and slash (Q853630) /m/0b_j2 william martin "billy" joel (Q194333) /m/07gghl showtime (film) (Q1091168) /m/0bxxzb i-spy (film) (Q772451) /m/013t9y dr. d studios (Q446960) /m/05t4q doctor behaviour (Q39631) /m/09p2r9 2005 golden globe awards (Q860885) /m/05lb30 ricardo antonio chavira (Q350459) /m/0cl0bk denman, david (Q64560) /m/0cj36c kate flannery (Q3028200) /m/015cxv los lobos (Q370400) /m/047bynf me and orson welles (Q287599) /m/07vjm uc-san diego (Q622664) /m/02630g michael.hines/sandbox (Q1345971) /m/0137hn robin-john gibb (Q188482) /m/0gvt8sz /m/0gvt8sz /m/08hhm6 manoj kumar (Q2341602) /m/063fh9 prince caspian movie (Q222023) /m/05cgy8 mike figgis (Q710131) /m/01jpyb u nevada (Q1185955) /m/0wsr falcons (Q272059) /m/02r6nbc ian fleming steel dagger (Q2336530) /m/02xlf fictional (Q8253) /m/01th4s mute records (Q240804) /m/0bh72t dragon ball z movie four (Q1815243) /m/01w23w star whackers (Q316647) /m/019f9z patty labelle (Q31013) /m/01cw7s /m/01cw7s /m/0hv4t jake 'j.j' gittes (Q644987) /m/01wd3l armando ianucci (Q646929) /m/09d11 eosinophilic meningitis (Q48143) /m/03p41 /m/03p41 /m/016kkx james bumgarner (Q108510) /m/0436kgz jose antonio dominguez banderas (Q41548) /m/01vw_dv lil' jon & the east side boyz (Q294449) /m/0bw87 katharine hepburn (Q56016) /m/0k7tq dial m for murder (Q496255) /m/01t265 roach, hal (Q72792) /m/03m6pk rhys ifans (Q215017) /m/01mkn_d john debney (Q48975) /m/025t3bg air travel (Q376880) /m/05szp paula abdul songs (Q185465) /m/048j1q alianza f.c. (el salvador) (Q1969256) /m/0m0hw robert mitchum/comments (Q16472) /m/01fx6y ryan's daughter (Q1423795) /m/023fb chelsea football club (Q9616) /m/03gfvsz /m/03gfvsz /m/05mcjs baron fellowes of west stafford (Q336018) /m/01t_vv comedic drama (Q859369) /m/01w_sh sx:tv (Q1075104) /m/0537b motorola general systems group (Q259011) /m/03l3ln kalpen suresh modi (Q220536) /m/05gnf the national broadcasting company (Q13974) /m/0drnwh memoirs with a geisha (film) (Q45839) /m/01k7b0 the diary of anne frank (film (Q707986) /m/04y9mm8 piranha 3d (Q733995) /m/04jspq john a. lasseter (Q269214) /m/0djd3 duke city (Q34804) /m/07pd_j janine stifler (Q220713) /m/05md3l channel 11 (korea) (Q482607) /m/03tn9w redgrave speech (Q282159) /m/0262yt hugo award for best novellette (Q1056265) /m/05x8n winston p. saunders (Q220883) /m/0n2q0 government of cuyahoga county, ohio (Q251267) /m/0d_skg shamberg, michael (Q13409484) /m/02k8k republica de el salvador (Q792) /m/04l19_ patton oswald (Q374065) /m/049fgvm louis ck (Q15079) /m/0b005 veterinarian's hospital (Q2120540) /m/0mndw newport news, va. (Q335017) /m/0fjzsy /m/0fjzsy /m/0nh0f stearns county, mn (Q491148) /m/01vb6z cameron bruce crowe (Q318287) /m/09lwrt paramore (band) (Q473466) /m/02_0d2 zack galifiniakis (Q139325) /m/05dtsb xander berkeley (Q361610) /m/01skmp love (Q255070) /m/0f04v san jose, usa (Q16553) /m/02wyzmv /m/02wyzmv /m/03j70d maccabi tel aviv f.c. (Q223728) /m/02qkq0 stuart markowitz (Q1247212) /m/03d_zl4 brynn omdahl (Q366834) /m/0g8st4 stephen john dillane (Q707538) /m/0jlv5 zhang ziyí (Q180852) /m/0c78m diagnosis of asthma (Q35869) /m/03295l fil-am (Q1413685) /m/01gst9 15th u.s. congress (Q4551057) /m/0gv2r lewis mileston (Q285928) /m/07d2d trip-hop (Q205560) /m/011z3g outkast (band) (Q472595) /m/0163r3 isaac haynes (Q206439) /m/064f29 gameloft (Q689093) /m/02779r4 mark johnson (producer) (Q1279758) /m/047gpsd my sister's keeper (film) (Q814771) /m/0m32h prostatic neoplasm (Q181257) /m/017180 quills (Q761302) /m/063hp4 singin’ in the rain (Q309153) /m/01_k0d grant morrison (Q943047) /m/09v7wsg /m/09v7wsg /m/0bpjh3 ethnic bengali (Q402913) /m/02r1ysd pushing daisies (tv) (Q515621) /m/06ls0l aarhus gf (Q301431) /m/070mff one hundred twelfth united states congress (Q170447) /m/099ck7 bfca critics' choice award for best actor (Q922322) /m/01kgv4 josh hartnet (Q303957) /m/01svry the faculty (film) (Q373267) /m/0gdm1 president of amherst college (Q49165) /m/01sgl bicyclist (Q53121) /m/03ts0c french (Q121842) /m/0dj5q charles de gaulle (Q2042) /m/06gbnc cymry (Q188353) /m/046chh jon polito (Q203205) /m/045346 bahrain national football team (Q210460) /m/019bnn grammy award for best comedy album (Q1326340) /m/0p_tz gownies (Q731082) /m/04c636 mithun chakraborthy (Q379604) /m/06bss robert bryd (Q276524) /m/04h1rz /m/04h1rz /m/0bw6y barbara stanwick (Q94002) /m/01938t susan hayward (Q248837) /m/059lwy over the top (film) (Q901148) /m/03_wpf margaret grace denig (Q218542) /m/043hg john sayles (Q2141212) /m/01vtmw6 harry nilsson iii (Q281034) /m/011xjd lon chaney jr. (Q318261) /m/0372j5 dumb & dumber (Q462418) /m/065_cjc paul (film) (Q1164753) /m/05zjd língua portuguesa (Q5146) /m/046fz5 kenya national football team (Q239520) /m/01520h richard dreifuss (Q181799) /m/0_jm /m/0_jm /m/0154gx mississagua, ontario (Q50816) /m/041rhq geoffrey lewis (actor) (Q562257) /m/064xm0 video clip director (Q2340668) /m/0w7c /m/0w7c /m/05ft32 daniel balint (Q466593) /m/047rkcm the ugly truth (film) (Q922630) /m/01j_5k villanova u (Q1466001) /m/0n9r8 hampstead, united kingdom (Q25610) /m/0g69lg mark tinker (Q3294262) /m/07fzq3 golitzen, alexander (Q323271) /m/05_61y hearts and minds (film) (Q3280602) /m/0f7fy l. b. johnson (Q9640) /m/0f2tj crime in new orleans (Q34404) /m/01hnb bob jones college (Q2740389) /m/052hl mel brooks films (Q104266) /m/073x6y betty lou knight (Q207873) /m/05t54s live free: die hard (Q50861) /m/01ydzx from the floorboards up (Q371986) /m/0l2lk salinas, ca msa (Q108072) /m/0kq39 county of fresno, california (Q271915) /m/05nzw6 bruce mcgill (Q447960) /m/01j5ql courage under fire (Q1339523) /m/0bk4s george iii of hanover (Q127318) /m/0j5fv encephalalgia (Q86) /m/035482 /m/035482 /m/07jnt shawshank redemption (Q172241) /m/01x6v6 newman, thomas (Q319996) /m/02bbyw universitá di pisa (Q645663) /m/03z0dt moldova national football team (Q191142) /m/0cpjgj john swasey (Q4119009) /m/016wyn haverford college (Q579611) /m/01f8f7 2046 (film) (Q164702) /m/01m4pc tamebridge (Q504530) /m/0515_6 krc genk (Q216032) /m/05l4yg mary mccormack (Q242650) /m/016732 clive jay davis (Q1101938) /m/0ckh4k list of neighbours episodes (Q908708) /m/05d1dy don mckellar (Q372256) /m/0kp2_ tydelemony snicket (Q1060636) /m/01wd02c the great knock (Q9204) /m/092ggq leighton meister (Q199931) /m/0g7pm1 '' date night '' (Q1139801) /m/03vyh instrumental composition (Q639197) /m/02qbjm teletoon (canadian tv channel) (Q1183935) /m/01c3q fagott (Q159998) /m/0br1x_ march madness 2008 (Q2082282) /m/03by7wc kentucky wildcats basketball (Q6392428) /m/022q4l9 patrick gallagher (actor) (Q119966) /m/04b675 symphonic death metal (Q486415) /m/02q7yfq machete kills again (Q128493) /m/02x0bdb william t. orr shows (Q8019110) /m/02l0sf ann sothern (Q235289) /m/026v_78 ernie hallor (Q431611) /m/037jz chesterton's gate (Q183167) /m/01tpvt uni zurich (Q206702) /m/07vfqj /m/07vfqj /m/05f33tk south korea national under-23 football team (Q488454) /m/03tw2s university of south carolina columbia (Q1024426) /m/0kpzy eden, ca (Q107146) /m/017y6l judson and joyce green center for the performing arts (Q1179599) /m/02w5q6 mario lopez (Q372559) /m/0838y =w= (Q209956) /m/02pt7h_ jerry wonda (Q6183524) /m/06mx8 /m/06mx8 /m/06z5s suicide and evolution (Q10737) /m/02zyq6 robert alba keith (Q710862) /m/07l8f tb rays (Q650865) /m/02zc7f middle tennessee state (Q1784748) /m/03xn3s2 marcia wallace (Q264603) /m/0642ykh chronicles of narnia: voyage of the dawn treader (Q474082) /m/05cc1 republique du niger (Q1032) /m/0fpkxfd sundance 2011 (Q1164477) /m/0py8j peninsula war (Q152499) /m/0j5b8 napoleón bonaparte (Q517) /m/0199gx birmingham city f.c (Q19444) /m/03cyslc infinite playlist (Q1462822) /m/04pcmw italo-disco (Q744417) /m/0r4qq arrowhead country club (california) (Q486168) /m/06mt91 rihanna in popular culture (Q36844) /m/01zn4y journal of physics special topics (Q1333399) /m/02hmw9 newnham college cambridge (Q1247589) /m/0130sy jon anderson (Q313749) /m/0dr1c2 vampire knight (Q270595) /m/02z5x7l evangelion, neon genesis: 1.11 you are (not) alone (Q579209) /m/05l8y iso 3166-1:om (Q842) /m/0694j lower quebec (Q176) /m/026cmdc /m/026cmdc /m/01m4yn actress rose mcgowan (Q211040) /m/027rqbx baltimore-towson metropolitan statistical area (Q4852987) /m/01y20v wheaton science center (Q747179) /m/02r2qt7 /m/02r2qt7 /m/02_ssl basketball center (Q222052) /m/023n39 volcanic eruptions (film company) (Q310060) /m/01cyjx fairuza alejandra balk (Q233826) /m/05lb65 brenda strong (Q31970) /m/0lfbm jessica tandy (Q182104) /m/02p_04b daytime emmy award for outstanding younger actor in a drama series (Q5243456) /m/0178_w dave shogren (Q506670) /m/0bxsk '' heat '' (Q42198) /m/0jkhr campus of north carolina state university (Q1132346) /m/0m593 jack leonard warner (Q72614) /m/0l2l3 mono county (california) (Q156366) /m/01tbp applications of chemical engineering (Q83588) /m/018wdw academy award for sound editing (Q488645) /m/05q7cj 68th academy awards nominees and winners (Q903494) /m/0gfmc_ /m/0gfmc_ /m/01rxw congo republic (Q971) /m/037q31 when we were kings (Q1779974) /m/01sjz_ st. catharine's hall, cambridge (Q256754) /m/03m9c8 telecharge (Q2414216) /m/05p5nc frances conroy (Q233882) /m/0646qh passanante (Q3807701) /m/01xqqp 1993 grammys (Q1542296) /m/01540 biology portal (Q420) /m/05r_x5 karlsruhe sc (Q105853) /m/02079p madame speaker (Q1758037) /m/0879xc david raymond carney (Q316619) /m/01kj5h blackpool f. c. (Q19449) /m/055hc malopolskie (Q54159) /m/0ycp3 matt chaikin (Q622947) /m/0ddkf paul simon (singer) (Q4028) /m/08_vwq tony award for best leading actor in a musical (Q1723064) /m/01v6480 jim dale (Q1689081) /m/01rc4p brothers o'toole (Q458464) /m/07nxnw beowulf 2007 film (Q644933) /m/043tvp3 terminator: salvation (Q191543) /m/01h1b billy cristal (Q186485) /m/039cq4 saturday night live spain (Q13979) /m/02m77 caer eiddyn (Q23436) /m/0gwjw0c django unchained (film) (Q571032) /m/03bxz7 votes for deletion/biopic (Q645928) /m/04pbhw superhero motion picture (Q1535153) /m/0kryqm moyer, stephen (Q316622) /m/0gnkb anthony adverse (Q1305647) /m/05_swj murphy, walter (Q534419) /m/04b8pv british guiana national football team (Q330125) /m/019n8z oco'88 (Q9658) /m/0cwx_ cmu (Q190080) /m/05fjf demographics of new jersey (Q1408) /m/07l1c baseline studio systems (Q2529982) /m/02nx2k anna valerious (Q211009) /m/0nht0 chisago county, mn (Q486309) /m/04lhc4 erin brockovich (film) (Q220955) /m/02z0f6l young victoria (Q755171) /m/0bkf4 robert bob nesta marley (Q409) /m/05vw7 plymouth devon (Q43382) /m/028n3 devonshire, england (Q23156) /m/02yr3z teresa court (Q3106542) /m/0k3hn essex county, ma (Q54076) /m/01p_ng newport county fc (Q18523) /m/0fpjyd young, christopher (Q504078) /m/01dthg aut-uob (Q223429) /m/02qyntr bafta award for best editing 1968–1984 (Q787145) /m/05y7hc escape (craig armstrong song) (Q674456) /m/096hm a blake edwards production (Q56093) /m/0gl5_ boston university's (Q49110) /m/01my4f david e. kelley/comments (Q504720) /m/02b29 bambi vs godzilla (Q269927) /m/0qmjd the verdict (Q679373) /m/01f7dd wilhelm defoe (Q188772) /m/0479b filmography of keanu reeves (Q43416) /m/02scbv rambo: first blood part ii (Q319783) /m/017v3q william & mary (Q875637) /m/02lgfh schirripa, steve (Q380904) /m/0fmqp6 edward carfagno (Q466680) /m/0294zg days of heaven (Q670378) /m/07fsv toovaloo (Q672) /m/08cfr1 slaughterhouse-five (film) (Q648299) /m/01bm_ universitas brunensis (Q49114) /m/06c7mk vejle b (Q737936) /m/06br8 /m/06br8 /m/018ty9 russ meyer (Q315325) /m/02ckm7 toowoomba carnival of flowers (Q478302) /m/0167q3 bridgeport (Q49174) /m/09v3jyg backson (Q922193) /m/027pfg big fish (2003 movie) (Q278997) /m/024tkd one hundred-seventh congress (Q2057259) /m/0cgbf lucille fay lesueur (Q40475) /m/01d1st ncredible entertainment (Q348533) /m/01xk7r sfai (Q586735) /m/01my_c 19 management (Q367691) /m/023r2x bass clarinet (Q8345) /m/02qsjt alone & acoustic (Q314208) /m/0277j40 get shorty (movie) (Q261923) /m/02y74 /m/02y74 /m/04b7xr sembello, michael (Q1929388) /m/06z4wj abram solman borowitz (Q318138) /m/02z2xdf /m/02z2xdf /m/05w3y royal philips lighting (Q170416) /m/026s90 polygram international (Q700359) /m/01vrnsk richard starkey, jr. (Q2632) /m/03yxwq warner bros animation (Q13416804) /m/03ryks yann tiersen (Q157256) /m/0r80l visalia-porterville-hanford, ca csa (Q495373) /m/01gvyp estelle louise fletcher (Q182372) /m/0lphb birmingham, alabama (Q79867) /m/01jq0j flordia state university (Q861548) /m/0n1xp portage county (oh) (Q336337) /m/038czx transylvania college (Q956056) /m/0j0k climate change in asia (Q48) /m/03s9b ingmar bergman (Q7546) /m/04r7p liv ullman (Q191064) /m/06c62 rome/comments (Q220) /m/071vr city of san diego (Q16552) /m/0d0mbj latter life of rabindranath tagore (Q7241) /m/06sn8m timothy daly (Q351479) /m/06c0ns tango & cash (Q571197) /m/047fwlg aus fb a-league gc (Q868579) /m/04cwcdb voivodship podlaskie (Q54177) /m/0rvty un/locode:usdcg (Q986200) /m/0286vp i shot andy warhol (Q1582860) /m/0n8bn fresh hell (Q311453) /m/081bls screen gems (Q1370297) /m/026n9h3 /m/026n9h3 /m/02wb6d franz wachsmann (Q213611) /m/058j2 marvel comics/doc (Q173496) /m/05x_5 books/purdue university (Q217741) /m/01nln country cameroon (Q1009) /m/05np2 oscar wilde/things you can do/tasks (Q30875) /m/04vn5 miami dolphins logos (Q223243) /m/03mp9s michelle ingrid williams (Q156796) /m/02jhc moral philosophers (Q9465) /m/057176 jesse adam eisenberg (Q219512) /m/0zcbl paul edward valentine giamatti (Q208649) /m/0cp0790 barney's version (film) (Q264307) /m/0ql7q the second crusade (Q51654) /m/0303jw azerbaijani national football team (Q180800) /m/02825kb forgetting sarah marshall (Q201379) /m/06q5t7 jason siegel (Q202304) /m/02vgh e.l.o. (Q218255) /m/0mzww madison elementary school (pasadena, california) (Q485176) /m/02gn8s pasadena city lancers (Q7141532) /m/05r9t popular music或pop music (Q373342) /m/0jbyg art garfunkle (Q4039) /m/0dyjz west midlands (county), england (Q23124) /m/01n244 west bromwich, sandwell (Q212826) /m/01p1z_ john cassavetes (Q51488) /m/01v1ln tomorrow never dies (film) (Q207916) /m/0d23k salem (or) (Q43919) /m/0132k4 john francis pastorius iii (Q211136) /m/016nff julia mary walters (Q228747) /m/0755wz tom hollander (Q312124) /m/02r9p0c appleseed saga: ex machina (Q2704502) /m/0bz60q vernon chatman (Q2383623) /m/029cpw don messick (Q645399) /m/0dbc1s woltz international pictures corporation (Q3018358) /m/0674hk toei studios (Q1066018) /m/02p59ry zou wenhuai (Q1194523) /m/01ck6v grammy award for best rock vocal performance, solo (Q1542199) /m/02psvcf hepatic insufficiency i (Q970208) /m/097ns chirosis (Q147778) /m/03phgz coca-cola bottling co. (Q3295867) /m/0bs8s1p '' we need to talk about kevin '' (Q247470) /m/0p03t jefferson county, co (Q127978) /m/04dbw3 cuban american (Q1790886) /m/09hy79 lovely bones (film) (Q839123) /m/081wh1 g n' r (Q11895) /m/02js9p mary mcdonnell (Q117500) /m/0_9wr scent of a woman (1992 film) (Q321561) /m/07g1sm captain mccluskey (Q47703) /m/05qdh painting (Q11629) /m/01sxd1 sarah brightman (Q151814) /m/026ldz7 /m/026ldz7 /m/0r6rq mistletoe school (Q495361) /m/02l9wl royal central school of speech and drama (Q981195) /m/02238b james christian "jimmy" kimmel (Q4914) /m/02jr26 elizabeth shue (Q207852) /m/06y8v laurence templeton (Q79025) /m/0261x8t kim kardashian123 (Q186304) /m/09r1j5 alou diarra (Q1926) /m/02g1jh david arnold (Q346285) /m/012dtf franchot tone (Q457229) /m/0dd6bf bleach movie (Q804434) /m/07k2x toho film company (Q875920) /m/02xgdv sunil dutt (Q377903) /m/01c4pv turkmenistani (Q874) /m/0gkd1 mellotron (Q212483) /m/059m45 james patrick sheridan (Q1388111) /m/06dfg 🇷🇼 (Q1037) /m/0f5mdz yorum globus (Q1382548) /m/04hzj liberia/comments (Q1014) /m/073hgx 62nd academy awards nominees and winners (Q910864) /m/041_y jerome salinger (Q79904) /m/02b9g4 john renold aufenstein (Q299266) /m/0gqmvn /m/0gqmvn /m/0b_72t 2000 march madness (Q3994976) /m/02vqpx8 david mills (tv writer) (Q1175691) /m/0crqcc richard price (writer) (Q1374243) /m/02l4rh kristen scott thomas (Q208590) /m/06_bq1 blake lively (Q162959) /m/059xnf mark addy johnson (Q342430) /m/02624g peter dinklege (Q310937) /m/017wh bradenburg (Q1208) /m/0p828 frankfurt (oder)-west, germany (Q4024) /m/018ljb 1912 olympic games (Q8118) /m/0l14gg sound tracks (Q217199) /m/01p0vf johnny greenwood (Q286410) /m/01pwz christovao columbo (Q7322) /m/0210f1 constance elaine trimmer willis (Q234700) /m/0j5q3 alicia silverstone filmography (Q199945) /m/0fbdb /m/0fbdb /m/050ks transport in maine (Q724) /m/0nm6k bangor, maine metropolitan area (Q1124743) /m/01slc white sox roster (Q335169) /m/0c_zx åbo (Q38511) /m/0j90s guess whose coming to dinner (Q736969) /m/06v41q franco-american day (Q1369944) /m/0cv72h bret farve (Q267088) /m/04ycjk boston univ. law rev. (Q3064264) /m/0885n york university security services (Q849751) /m/0ys4f un/locode:usmot (Q487201) /m/01ts_3 neil p. jordan (Q55428) /m/0z05l graham greene (actor) (Q311169) /m/0mg1w fine art (Q219625) /m/02y9bj u memphis (Q2094177) /m/02d003 anger management (film) (Q591556) /m/016ywb henry v (1989) (Q114115) /m/013nty bridge street middle school (Q838112) /m/01d34b laguardia high school of performing arts (Q3072747) /m/027_sn william december (Q358345) /m/016xk5 simon callow/comments (Q731187) /m/0ws7 football cardinals (Q224164) /m/08ns5s long snapping (Q530348) /m/08984j mason dixon (rocky balboa character) (Q724455) /m/03q8xj the motorcycle diaries (film) (Q309246) /m/0265z9l shriram lagu (Q3634256) /m/02yv6b rock blues (Q193355) /m/01vs4ff dave gilmore (Q178517) /m/07y_p6 55th primetime emmy awards (Q1338877) /m/07r1_ the samshing pumpkins (Q184217) /m/0bnzd in the bedroom (Q151945) /m/019x62 giorgio moroder (Q312674) /m/0181dw rca victor (sony) (Q202585) /m/02r251z jack giarraputo (Q3157185) /m/012v9y william beedle, jr. (Q95002) /m/01g7_r bryn mawr college library (Q995265) /m/03kbb8 bryce dallas howard filmography (Q229775) /m/05mvd62 ian bryce (Q536964) /m/03wh8kl /m/03wh8kl /m/06s0l bannzil kweyol (Q760) /m/01jvxb university college of the south west (Q1414861) /m/0f67f kalamazoo (mi) (Q167155) /m/02x201b academy award for best original musical (Q4671338) /m/0bzmt8 55th academy awards (Q41918) /m/0ck1d akitania (Q1179) /m/036qs_ mario van peebles (Q126957) /m/0dpl44 crazy in alabama (Q2521211) /m/0nlc7 newham (Q208139) /m/073hd1 63th academy awards (Q910856) /m/04hw4b david goyer (Q352010) /m/04ghz4m the bad lieutenant (Q798737) /m/0194d rules of badminton (Q7291) /m/08b0cj mohamed kallon (Q466127) /m/049f88 vicenza calcio (Q8643) /m/0c_dx pulitzer prize for fiction (Q833633) /m/0133x7 sarah maclachlan (Q224650) /m/01xn6jr orduspor (Q178180) /m/06rzwx the delta force (film) (Q971630) /m/02z4b_8 adele (singer) (Q23215) /m/015ppk nypdblue (Q609274) /m/0347db niel patrick harris (Q485310) /m/06hzsx wm. daniels (Q1359405) /m/0524b41 the game of thrones (Q23572) /m/0gs6m lawyer drama (Q643873) /m/04kjrv matthew belamy (Q190576) /m/01zhs3 ipswich town f.c (Q9653) /m/02ply6j dev patel (Q245075) /m/01hcvm skate punk rock (Q828305) /m/01jcxwp ra díaz (Q899341) /m/0ds1glg we bought a zoo (Q956681) /m/07x4c cullum number (Q9219) /m/03p2xc bob roberts (Q888219) /m/02_06s you can count on me (Q2300341) /m/06kxk2 carl foreman (Q1037848) /m/03_gx juddaism (Q9268) /m/030b93 christine ann lahti (Q232941) /m/02l1fn st. bonaventure college (Q93662) /m/02_7t financials (Q43015) /m/025rsfk copper sheet metal (Q753) /m/0jm74 chicago bull (Q128109) /m/01gbb4 fierstein (Q446481) /m/0l786 george c scott (Q182450) /m/059_w /m/059_w /m/02ts3h vivica fox (Q220396) /m/027r9t almost famous (Q726294) /m/0bc71w tony geiss (Q3531774) /m/06h7l7 /m/06h7l7 /m/02yxh9 69th oscars (Q903336) /m/03clwtw rambo (2008) (Q159870) /m/0dqmt0 avi lerner (Q662934) /m/053xw6 brendan gleeson (Q206659) /m/041jk9 san juan soccer club (Q1224817) /m/01jr4j topaz (1969 movie) (Q224004) /m/01h18v warren schmidt (Q179460) /m/01ym8l radiosat 3 (Q996079) /m/0r2gj elizabeth pearson-schneider (Q1908566) /m/02vq8xn charo santos (Q5880927) /m/01lhdt ludwig maximilian university, munich (Q55044) /m/012j8z walter pidgeon (Q350640) /m/03m6_z ryan thomas gosling (Q193815) /m/048s0r taye diggs (Q534006) /m/0jm4v 76'ers (Q138089) /m/013vdl mae whitman (Q232307) /m/04t2t kung fu movies (Q3072042) /m/0bw20 k-19: the widowmaker (Q662342) /m/0ffgh pied piper of r&b (Q273055) /m/07lly truro civil parish (Q180803) /m/02fybl angakok panipaq (Q484523) /m/0nf3h county of jackson, missouri (Q127238) /m/013gxt independence (city, missouri) (Q24603) /m/01wd9vs marilyn bergman (Q442879) /m/01_k71 hyman arluck (Q448644) /m/01w5gp captain linger (Q379052) /m/02pxst merry christmas mr. lawrence (Q696855) /m/0fs9vc dr. facilier (Q171300) /m/02l_7y steve howe (musician) (Q312691) /m/07yjb /m/07yjb /m/05pcr list of ottawa senators captains (Q203013) /m/02_1kl ryan’s hope (Q1970206) /m/01kr6k treasurers (Q388338) /m/077w0b sprint spark (Q301965) /m/03hdz8 /m/03hdz8 /m/04mkbj Q10859033 /m/067xw sir apropos of nothing (Q1351554) /m/02lmk general erwin rommel (Q14060) /m/0133h8 niederösterreich (Q42497) /m/01hmk9 richard franklin lennox thomas pryor (Q294912) /m/06pr6 art pictures st. petersburg (Q656) /m/063k3h /m/063k3h /m/01qrbf say i'm not alone (song) (Q242924) /m/0c9t0y psycho (remake) (Q979196) /m/0gr69 tom petty & the heartbreakers (Q2117272) /m/03wbzp john wells (producer) (Q2465518) /m/0c7hq campania (Q1438) /m/04_xrs provincia di salerno (Q16271) /m/027571b los angeles film critics association award for best actress 1975-1980 (Q501273) /m/018d6l jack bruce and friends (Q313683) /m/01gvts alice don't live here no more (Q916431) /m/0195pd capital city of philippines (Q1461) /m/0d2t4g philippines standard time (Q3543509) /m/04l5f2 syracuse crunch (Q1640569) /m/01tqfs sheffield utd (Q19607) /m/05nlx4 pirates of the caribbean 3: at world's end (Q54274) /m/02srgf crusty punk (Q825769) /m/04n65n king ad-rock (Q349799) /m/02bhj4 st joe's (Q1475413) /m/01jnf1 /m/01jnf1 /m/0280061 this is england (Q748205) /m/0gv07g theodore shapiro (Q1513322) /m/014dm6 burns, ken (Q616886) /m/03y0pn pirates of the carribbean: dead man's chest (Q161087) /m/0b6l1st the losers (film) (Q1760081) /m/01v90t robert morley (Q965379) /m/05qhnq michael john harvey (Q166565) /m/0135xb stanley turpentine (Q962103) /m/0d9v9q jonathan forte (Q3183366) /m/0m75g sheffield, united kingdom (Q42448) /m/02dr9j peracerdon (Q160215) /m/09v92_x hong kong film award for best director (Q5894560) /m/02mz_6 sing-chi chow (Q311179) /m/0cshrf politics and films (Q2973201) /m/019rl6 yahoo! tv (Q37093) /m/0h1vg α-amino-β-methylvaleric acid (Q484940) /m/0mmp3 industrial band (Q487965) /m/0191h5 john frusciante (Q188980) /m/05mt6w harold f (Q372489) /m/01j1n2 tests of manhood (Q681737) /m/04qz6n laura innes (Q235503) /m/02mmwk war of the worlds (2005 movie) (Q202028) /m/0c6vcj 32nd academy awards nominees and winners (Q917167) /m/01kcms4 king biscuit flower hour presents the steve miller band (Q750927) /m/054187 frank burly (Q657901) /m/025vldk /m/025vldk /m/03bww6 the surreal life (Q3038772) /m/0k4bc shane (film) (Q1045165) /m/012vct george stevens films (Q51490) /m/01lz4tf david michael "dave" navarro (Q352473) /m/0djvzd delroy facey/comments (Q3021900) /m/02b10w wycombe wanderers football club (Q48953) /m/0fpj9pm /m/0fpj9pm /m/0473q jeff lyne (Q314358) /m/0fq117k thomas petty (Q311655) /m/0bl3nn the league of extraordinary gentlemen (film) (Q567577) /m/01m3b1t terrence blanchard (Q967230) /m/06k75 the russian civil war (Q79911) /m/044lyq jared harris (Q362500) /m/0yzbg dead poet's scoiety (Q106316) /m/04pg29 marc cherry (Q526173) /m/040696 антон ельчин (Q314133) /m/01srq2 naked lunch (film) (Q1755864) /m/04991x football club des girondins de bordeaux (Q172476) /m/01jft4 in bruce we trust (Q207816) /m/027t8fw dean semler (Q648611) /m/03sbs dogmatic slumber (Q9312) /m/03s9v newton (Q935) /m/017g21 eric fletcher waters (Q180861) /m/09dv0sz /m/09dv0sz /m/03j63k updown (Q1168760) /m/042ly5 james paul marsden (Q485901) /m/0fx80y plucked string instrument (Q230262) /m/03bw6 george cukor/comments (Q56014) /m/05sq0m patricia lee ramey (Q455939) /m/0677ng life after the party (Q240523) /m/01_qc_ ca head of pancreas (Q212961) /m/015gjr mastroianni, marcello (Q55469) /m/0bdlj mood ellington (Q4030) /m/0292qb lara croft tomb raider 2 (Q1125253) /m/03ftmg forever and a day (novel) (Q279305) /m/04tng0 exodus (1960 film) (Q1355901) /m/02gf_l frank welker (Q296577) /m/03mb9 1990s house music (Q20502) /m/02__7n christine jane baranski (Q229134) /m/0gnbw sir maurice joseph micklewhite (Q123351) /m/09f3c ishbiliya (Q8717) /m/02j04_ jones dormitory (trinity college) (Q1927705) /m/01vsyjy john baldwin (musician) (Q190243) /m/07c5l /m/07c5l /m/0dbpwb /m/0dbpwb /m/0g4vmj8 drive (2011 film) (Q732960) /m/05gnf9 charles, josh (Q472282) /m/01cwcr alan cummings (Q316629) /m/02sjgpq cal tech university (Q161562) /m/01y3_q breakcore (Q903735) /m/0283d fulldress drum and bass (Q188994) /m/0fc2c history of monroe county, new york (Q115104) /m/010bxh wichita truck (Q128349) /m/0294mx monster (2003 film) (Q459057) /m/0fvwg annapolis, md (Q28271) /m/01lk0l /m/01lk0l /m/01z1r charlton f.c. (Q19462) /m/05b7q korean people's democratic republic (Q423) /m/04mlh8 jeff glen bennett (Q311103) /m/0fn8jc cory monteith (Q296484) /m/04s2z matematiker (Q170790) /m/0274v0r /m/0274v0r /m/02fwfb adventures of priscilla, queen of the dessert (Q255328) /m/027m67 a fei jingjyuhn (Q1306553) /m/03xh50 samurai blue (Q170566) /m/02n1p5 hema malini (Q33635) /m/04hcw wittgensteinian (Q9391) /m/0byh8j state of kerala (Q1186) /m/04wzr mar. (Q110) /m/0q9b0 man on the moon: the andy kaufman story (Q1125282) /m/06nzl scientologist religion (Q131036) /m/0h5jg5 bryan burk (Q439543) /m/02zhkz lance henrickson (Q312077) /m/03sb38 kinowelt (Q2450848) /m/031hcx harry potter and the order of the phoenix (2007) (Q102235) /m/031786 goblet of fire movie (Q102225) /m/0d07s university of cambridge/st johns college (Q691283) /m/011yxy viskningar och rop (Q830874) /m/08qs09 /m/08qs09 /m/0k3l5 suffolk county, massachusetts (Q54072) /m/04sry martin scorsese characters (Q41148) /m/0g9z_32 aladeen (Q464964) /m/0487_ kansas city chiefs statistics (Q223522) /m/027bs_2 john ortiz (Q210094) /m/047vp1n youth in revolt (film) (Q1144479) /m/09cl0w dynamo (Q328313) /m/02_3zj /m/02_3zj /m/05p9_ql nurse jackie (Q23614) /m/06gb2q larry miller (entertainer) (Q943028) /m/01qbg5 gia (Q429557) /m/072zl1 pride and prejudice (2005 film) (Q270385) /m/0vm4s royal oak, mi (Q529165) /m/03bkbh irish genetics (Q170826) /m/09q17 slapstick (Q624771) /m/06q8hf bob weinstein (Q888311) /m/0ctzf1 transformers the rebirth (Q602883) /m/018_q8 video & audio communications (Q214346) /m/08mhyd john seale (Q918558) /m/0b2lw saint paul, minnesota, usa (Q28848) /m/016jny pop-folk (Q186472) /m/0nm3n york county, maine (Q390141) /m/01vtj38 cleo (Q12003) /m/041xl jg ballard (Q140201) /m/08h79x thelma schoonmaker (Q166887) /m/0l99s james, henry (Q170509) /m/0969vz g. asrani (Q3595129) /m/0bdjd forrest gump (Q134773) /m/03zz8b amanda seyfreid (Q189226) /m/01qgr3 east tennessee college (Q1150105) /m/0c41qv new regency (Q466459) /m/01xn57g asteras tripoli f.c. (Q757320) /m/0m93 abu-ali al-husayn ibn abdalah ibn-sina (Q8011) /m/01d5vk richard ewing powell (Q287977) /m/0nrqh polk county, iowa (Q485808) /m/0415zv zambia national soccer team (Q206350) /m/0f_y9 annie denver (Q105460) /m/026r8q matt dillon (actor) (Q193070) /m/06jwys spvgg unterhaching (Q158121) /m/01k0xy american pie: the wedding (Q466423) /m/06qn87 geoffrey unsworth (Q489951) /m/04p_hy chapman panthers (Q1805085) /m/0123gq harbin, heilongjiang (Q42956) /m/07h5d gilliam, terry vance (Q25078) /m/01tzm9 mark bignell (Q236309) /m/0258dh bodyguard (1992 film) (Q725946) /m/01f2xy confraternitas historica (Q327116) /m/01b7lc los angeles art center (Q3272069) /m/04mjl bridegrooms (Q334634) /m/07sqnh vestel manisaspor (Q128148) /m/01k_n63 field trip (song) (Q559819) /m/0fv4v art of ivory coast (Q1008) /m/01xr66 spokeswoman (Q17221) /m/02kc5rj lunac p 95 (Q209727) /m/0lvng leiden repository (Q156598) /m/09gvd enduracin (Q134658) /m/01fs__ scrubs (tv show) (Q485668) /m/01g3gq volee air (Q7561043) /m/04lp8k julie m. benz (Q230320) /m/0l2jt mendocino county (california) (Q108087) /m/0l35f sonoma transportation authority (Q108067) /m/0cf08 mac lee green (Q188652) /m/0g1w5 lower hutt cbd (Q1015681) /m/03wy70 clarence j. "clancy" brown iii (Q4488) /m/07xvf gunther wassner (Q576367) /m/01g2q bipolar 3 (Q131755) /m/0484q kurtcobain (Q8446) /m/05zj6x afc telford (Q18505) /m/06l22 madrid cf (Q8682) /m/0bzrxn 1995 ncaa division i men's basketball tournament (Q3994971) /m/032clf dirty dancing (film) (Q253978) /m/03d1y3 richard brooks (Q434342) /m/02t_st gregory "greg" kinnear (Q269869) /m/04t969 peter weller (Q360477) /m/0glb5 region of brittany (Q12130) /m/02vx4c2 robert elswit (Q279100) /m/015dnt trevor wallace howard-smith (Q343037) /m/082db mosart (Q254) /m/0nj07 brownell middle school (Q195664) /m/0xckc livonia township, michigan (Q853552) /m/01xn6mc c.f. atlante (Q849949) /m/018p5f amfm radio licenses, l.l.c. (Q477993) /m/040z9 jack lemmon (Q94123) /m/0ylsr corpus christi, oxford (Q1135137) /m/02vz6dn nemo nobody (mr. nobody) (Q732022) /m/02h7qr maryland state teachers college at towson (Q1474129) /m/03b78r kevin clash (Q1029467) /m/046f25 grenada national football team (Q270666) /m/03jgz amateur historian (Q201788) /m/011vx3 peter seeger (Q244441) /m/06wpc seattle mariners (sports) (Q466586) /m/082mw william maugham (Q134942) /m/01yfm8 stuart bruce greenwood (Q342788) /m/04x1_w olivia wild (Q200355) /m/06mnr usage statistics (Q12483) /m/0bjy7 history of montpelier, vermont (Q26426) /m/07_f2 religion in vermont (Q16551) /m/01kk32 canton de zurich (Q11943) /m/01dq9q the eurythmix (Q207706) /m/0qpn9 mesa, az (Q49261) /m/0m27n mericopa county, arizona (Q58691) /m/011lvx laurie anderson (performance artist) (Q235066) /m/0k0q8q /m/0k0q8q /m/04vmp mumbai (bombay) (Q1156) /m/04hqz libán (Q822) /m/013qvn dean martin (Q215359) /m/02qr3k8 terror in the aisles (Q3984794) /m/018cqq oecd report (Q41550) /m/0nm42 washington county, massachusetts (Q507256) /m/03cz83 knox (il) prairie fire (Q669442) /m/08821 israeli airlift of 1973 (Q49100) /m/0fr61 charles county, md. (Q501319) /m/0mn78 history of prince william county, virginia (Q183263) /m/092bf5 buddhism/doc (Q748) /m/03j79x berner sport club young boys (Q190526) /m/08y2fn bleak house (2005 tv series) (Q883300) /m/042fgh superman two (Q267672) /m/025vl4m robert guza, jr. (Q7345011) /m/0cqh57 donald mcalpine (Q1240097) /m/035gnh 3000 miles to graceland (Q348534) /m/0124ld vinter-ol 1952 (Q9623) /m/01mk6 /m/01mk6 /m/09gwd l-phe (Q170545) /m/01hv3t the truman show (film) (Q214801) /m/03gvm3t /m/03gvm3t /m/026fs38 /m/026fs38 /m/01q9mk heisman winners (Q1035067) /m/02l96k garage-psych (Q236932) /m/021r7r raymond daniel manzarek (Q108912) /m/053j4w4 george r. nelson (Q1508118) /m/019pwv fourth district normal school (Q1249251) /m/0155w urban blues (Q9759) /m/0ldqf melbourne olympic games (Q8411) /m/03v52f ggp inc. (Q3100500) /m/09451k fc ingolstadt 04 seasons (Q170117) /m/0hwpz true lies: music from the motion picture (Q110397) /m/07245g hapoel tel aviv fc (Q206585) /m/01mv_n winchell-mahoney time (Q731316) /m/01r3w7 fdu knights men's soccer (Q1393301) /m/016ckq motown records (Q43327) /m/01vnt4 timbalero (Q379248) /m/025v26c /m/025v26c /m/027s4dn golden globe ambassador (Q1449316) /m/09pnw5 2000 golden globe awards (Q639202) /m/03zmc7 senegal national football team (Q207441) /m/03xx3m ryan, robert (Q350680) /m/07_nf the war of vietnam (Q8740) /m/073q1 south-east asia region (Q11708) /m/0gsgr cnn student news (Q48340) /m/0gm34 rodney stephen steiger (Q273215) /m/0jsg0m peter thorkelson (Q597433) /m/0jrtv orange county, florida (Q488543) /m/06fz_ rhine (river) (Q584) /m/02v570 farenheit 911 (Q221852) /m/02fj8n blood pack (blade) (Q159638) /m/040whs democratic people's republic of korea national football team (Q14132) /m/021gzd the civil war (documentary) (Q672443) /m/0b2ds montery, california (Q487315) /m/0nr2v basilicata (Q1452) /m/015jr b.c. (Q1974) /m/02vg0 eli herschel wallach (Q104067) /m/02yxbc the contender (2000 film) (Q598983) /m/04f0xq merck & co inc (Q247489) /m/01ptsx fortune 1000 (Q285800) /m/06w2yp9 deborah woll (Q232990) /m/0hfml buzz aldren (Q2252) /m/0727_ stuttgart, west germany (Q1022) /m/048xh craftwerk (Q44892) /m/028hc2 lyle lovett (Q543637) /m/0mnsf hampton city public schools (Q342043) /m/0165b knapton hill (Q23635) /m/02vjp3 homages in sky captain and the world of tomorrow (Q669628) /m/05pt0l lantana (film) (Q690463) /m/07bx6 general hummel (Q216720) /m/01n4nd the weather in colchester (Q184163) /m/0hhqw ronaldo fenômeno (Q529207) /m/019m60 cruzeiro esporte clube (Q188277) /m/04ngn luton town f.c (Q18520) /m/05cx7x david krumholtz (Q356086) /m/06qwh star trek the original series (Q1077) /m/084m3 william shatner scifi dvd of the month club (Q16297) /m/01fgks eastern roman catholic churches (Q49376) /m/01qb559 cameron poe (Q607910) /m/0n5bk pasaic county (Q495974) /m/0btpm6 you either die a hero or you live long enough to see yourself become the villain (Q163872) /m/0dgrwqr red state (2011 film) (Q1255499) /m/060_7 picassoan (Q5593) /m/0lbp_ arlington national cemetery (Q216344) /m/0p01x larimer county, colorado (Q127970) /m/09v82c0 /m/09v82c0 /m/0132_h yomiuri kyojin giants (Q1197407) /m/0mwxz seal of bucks county, pennsylvania (Q494192) /m/0gd92 alyssa jones (Q40115) /m/0233bn 李心兒 (Q714057) /m/0gls4q_ /m/0gls4q_ /m/01zp33 rani mukherjea (Q485557) /m/02fgm7 noble, john (Q312399) /m/024dw0 robert wyatt (Q312693) /m/0h5j77 mikael salomon (Q487069) /m/0m7yh rheinische friedrich wilhelms universität (Q152171) /m/048cl k marx (Q9061) /m/027gs1_ primetime emmy award for outstanding directing for a comedy series (Q1277961) /m/01lv85 3rd rock characters (Q870490) /m/01q9b9 dr. maya angelou (Q19526) /m/017_pb james baldwin (Q273210) /m/06x43v shy shen (Q498109) /m/0bzlrh 51st academy awards (Q1065282) /m/0bh8drv another year (2010 film) (Q568133) /m/03vrnh ajay singh deol (Q944546) /m/026mj education in delaware (Q1393) /m/0gdk0 richmond, cali. (Q495377) /m/0kq1l richmond, california casino proposals (Q108058) /m/02y_j8g prix d'interpretation feminine (Q840286) /m/0d608 daniel edward aykroyd (Q105221) /m/070tng fc sibelektromotor tomsk (Q329510) /m/01cm8w penny (the rescuers) (Q39722) /m/01mqc_ christian michael leonard slater (Q204590) /m/03rwz3 sony pictures entertainment (Q822314) /m/06crng rusell brand (Q296609) /m/0fqjks john de cuir (Q180645) /m/0cbhh un/locode:frtls (Q7880) /m/04954 kevin norwood bacon (Q3454165) /m/087z12 nasiruddin shah (Q469945) /m/09gdh6k hereafter (film) (Q185490) /m/01yvvn dh rule (Q727270) /m/02flpq /m/02flpq /m/02f73b mtv video music award for best editing (Q847813) /m/01r7pq irene cara (Q234169) /m/070bjw joseph lashelle (Q351563) /m/035zr0 /m/035zr0 /m/02px_23 /m/02px_23 /m/034ls bush snr. (Q23505) /m/02gpkt detective james carter (Q255342) /m/0flddp henry king (director) (Q269505) /m/048wrb steve merchant (Q23814) /m/07m4c bob dylan & the band (Q600344) /m/0bwfn university of new york (Q49210) /m/01_qgp school of land and environment, university of melbourne (Q319078) /m/0bqvs2 fat joe (Q309888) /m/0mnm2 lexington, va (Q501761) /m/02p2zq donald jay fagen (Q506554) /m/02h0f3 harold morgan (Q355125) /m/014gjp mash (Q494244) /m/0b7gxq aaron shure (Q302696) /m/01wqmm8 earthly women (Q161877) /m/01mgw yu chiao-lung (Q273978) /m/01kmd4 kobe bryant philanthropy (Q25369) /m/01vttb9 nothing to lose (henry mancini song) (Q185928) /m/0xpq9 pestel amberg (Q985592) /m/07t2k ulysses s. grant presidential library (Q34836) /m/043d4 francis joseph haydn (Q7349) /m/02xfj0 alien nation (album) (Q73035) /m/0164r9 robert shaw (english actor) (Q313727) /m/0d2by chinese in united states (Q1146100) /m/03bzjpm he's just not that into you (film) (Q155559) /m/01m94f hanover (town), new hampshire (Q131908) /m/0n5yv grafton county, nh (Q54445) /m/05h95s pai sho (Q11572) /m/0mkdm waukesha county, wisconsin (Q370654) /m/0mkqr milwaukee county, wisconsin (Q502294) /m/01kgxf paul william walker (Q213864) /m/01dw_f debbie harry (Q215026) /m/01hrqc michael stipe discography (Q215182) /m/08c7cz friedrich holländer (Q213900) /m/09pj68 2006 golden globes (Q683766) /m/031vy_ hindu college, kolkata (Q2749583) /m/09b_0m national & kapodistrian university of athens (Q547867) /m/0gy3w louisiana tech (Q1872239) /m/0bt7w britpop revival (Q189045) /m/01k3qj cubic u (Q234598) /m/01k0vq american pie 2 (Q329127) /m/04165w nick roud (Q208204) /m/01wf86y cynthia ann stephanie lauper (Q1545) /m/01s7j5 /m/01s7j5 /m/087qxp /m/087qxp /m/093l8p transamerica (movie) (Q742614) /m/07nx9j dylan baker (Q726128) /m/074m2 /m/074m2 /m/01vz80y footer movies joss whedon (Q298025) /m/09rntd chelmsford town f.c. (Q2305609) /m/0fz0c2 14th academy awards (Q508406) /m/08s6mr fantastic mr. fox (film) (Q465275) /m/0d2b38 advertising in malaysia (Q5762300) /m/03fw60 prem chopra (Q3401588) /m/0xnt5 lahore central business district (Q11739) /m/02v703 /m/02v703 /m/05mc99 joe morton (Q459007) /m/012mzw notre dame magazine (Q178848) /m/03c3yf little feet (Q946124) /m/05zjx pewee herman (Q720581) /m/05f_3 iso 639:no (Q9043) /m/01m9f1 swasey parkway (Q990504) /m/01vzx45 list of awards and nominations received by coolio (Q310357) /m/01h3dj french 3rd republic (Q70802) /m/05n19y leroy shield (Q38253) /m/079kdz peter horton (Q130034) /m/0dx_q joan collins (Q152843) /m/01l78d tony award for best play (Q1799442) /m/0432cd brian mannion dennehy (Q313545) /m/01k9cc sevilla futbol club (Q10329) /m/01j7z7 jada pickett (Q228787) /m/0451j 李阳中 (Q159577) /m/070j61 michael patrick king (Q979221) /m/01w5n51 william graham/mgmt (Q391969) /m/029q_y holly marie donoho (Q162578) /m/01s1zk wycleff (Q202663) /m/039x1k maureen stapleton (Q230841) /m/0329r5 uruguayan national football team (Q134916) /m/01wk51 roseanna arquette (Q109232) /m/01bk1y rensselaer polytechnic (Q49211) /m/0522wp uwe boll films (Q61347) /m/06gcn roxy music (Q334648) /m/03dbds rick linklater (Q40035) /m/05c4fys chris nurse (Q2437145) /m/0gl2ny2 list of football players (Q937857) /m/01pjr7 harold ramis (Q286890) /m/03xx9l david alan grier (Q562596) /m/05fm6m bewitched (2005 film) (Q1356410) /m/05lnk0 tom defalco (Q703897) /m/0bcp9b sophie's choice (film) (Q165627) /m/02825nf carol brazier (Q485610) /m/026sdt1 costumier (Q1323191) /m/02gjt4 milton keynes dons f. c. (Q248188) /m/03d0ns jeanne moreau (Q106099) /m/0z90c ebay.com.sg (Q58024) /m/02bwjv allison stoner (Q229263) /m/08nhfc1 crazy heart (Q1128750) /m/01rr_d law - ll.b (Q798137) /m/02qy3py murali (malayalam actor) (Q1990143) /m/013pk3 james hugh calum laurie, obe (Q49017) /m/04b5n0 arminia bielefeld ii (Q105844) /m/0nh1v st louis county, mn (Q111549) /m/049fbh empoli f.c. (Q6703) /m/05f5sr9 south korea national under-19 football team (Q495929) /m/02c_4 detroit lions/comments (Q271880) /m/04fgkf_ /m/04fgkf_ /m/01cz7r notting hill (film) (Q200672) /m/03_wtr harold perrineau jr. (Q310551) /m/08l0x2 /m/08l0x2 /m/09dvgb8 portman, richard (Q187269) /m/04zngls hugo award for best artist (Q5933763) /m/0250f chuck jones (Q312657) /m/0h95927 the silver linings playbook (film) (Q116845) /m/025s0s0 magnessium (Q660) /m/0b_xm mgt1966/sandbox (Q184386) /m/01633c '' in & out '' (Q1475611) /m/0d8rs groningen province (Q752) /m/011x_4 groundhog day movie (Q488655) /m/028k2x curare (batman beyond) (Q1339570) /m/02bv9 netherlands language (Q7411) /m/0m25p gila county, arizona (Q58686) /m/01qd_r university memorial center at the university of colorado, boulder (Q736674) /m/02f8zw universidad nacional de buenos aires (Q194223) /m/06vlk0 venlose voetbal vereniging (Q24689) /m/04zkj5 ed helms (Q328790) /m/046f3p kinsey (movie) (Q83656) /m/03676 republique de guinee (Q1006) /m/0jqkh radio raheem (Q1141252) /m/023zd7 boca juniors vòley femenino (Q170703) /m/01vrx35 jaime robbie robertson (Q117249) /m/02rnns craig bellamy foundation academy (Q190515) /m/06b_0 polanski (Q51552) /m/05dptj /m/05dptj /m/07f_t4 this is sparta (Q131390) /m/01d_s5 rap house (Q601235) /m/01jdxj aberdeen f.c. (Q187326) /m/03m49ly skip lievsay (Q7535711) /m/0c2tf gary cooper (Q93957) /m/0gndh the lives of a bengal lancer (film) (Q139258) /m/0gvvf4j piranha 3dd (Q328208) /m/0739y spike milligan (Q561401) /m/0gh6j94 habemus papam (film) (Q1235281) /m/0k_kr parlophon (Q208909) /m/01323p careless memory (Q58381) /m/043c4j matt chamberlain (Q1388748) /m/015qyf james allen whitmore (Q313040) /m/095bb animation movie (Q202866) /m/0gfp09 nea kavala f.c. (Q296050) /m/03krj borden ball (Q8418) /m/0jkvj bids for the 1976 summer olympics (Q8444) /m/0mn8t portsmouth, virginia chronology (Q342803) /m/05rrtf spyglass entertainment (Q512858) /m/026m9w best female country vocal performance (Q5593802) /m/0bt4g /m/0bt4g /m/0m63c lion king characters (Q36479) /m/02q0k7v body of lies (film) (Q578312) /m/085h1 organización mundial del comercio (Q7825) /m/03qmfzx justin spitzer (Q3811598) /m/0235l carson city (Q40881) /m/0frnff ferris webster (Q1114628) /m/05gsd2 calcio padova (Q8428) /m/0cp08zg cave of forgotten dreams (Q582979) /m/02jxkw alan silvestri (Q313537) /m/06fpsx andy stitzer (Q1139794) /m/0fw2d3 gsfanc/dündar siz (Q444341) /m/0cxbth us valenciennes (Q212269) /m/03jg5t edward woodward (Q712968) /m/0lsw9 zorn, john (Q298726) /m/01jt2w temple university (philadelphia, pa) (Q1420239) /m/04pnx p:la (Q12585) /m/05c74 republica de nicaragua (Q811) /m/08s3w_ rot weiss essen (Q155218) /m/0pd64 frog one (Q220735) /m/0215n /m/0215n /m/0fxmbn the man with the golden gun (film) (Q309289) /m/01grr2 eighth congress of the united states (Q4645488) /m/01grp0 3rd u.s. congress (Q223336) /m/01n_g9 texas tech college (Q1423756) /m/05rx__ jonathan benjamin (Q276273) /m/02dztn martin patterson "pat" hingle (Q165283) /m/0dj75 pyaz (Q23485) /m/025s7x6 element 15 (Q674) /m/0gkxgfq 38th daytime emmy awards (Q2547465) /m/07kdkfj eat pray love (film) (Q304030) /m/03kx49 the muppet movie (Q1518589) /m/02rsl1 2nd base (Q1368195) /m/07l8x washington senators (1961–1971) (Q329816) /m/0cf8qb the sum of all fears (film) (Q1048846) /m/0c0wvx pasagium (Q12546) /m/026f__m starship dave (Q838381) /m/05pxnmb imagine that (film) (Q228585) /m/0bl60p max casella (Q368913) /m/04wg38 edward burns (Q314485) /m/02nfhx george amos (Q498820) /m/01pj5q joe pesce (Q20178) /m/022840 american indian wars (Q849680) /m/0gpx6 all about my mother (Q329805) /m/0d6br sussex, uk (Q23346) /m/0ht8h history of east sussex (Q23293) /m/01y9r2 list of characters in the road to perdition (film) (Q468033) /m/069_0y wai-keung lau (Q715330) /m/02404v ho fung to (Q457890) /m/01xq8v bram stokers dracula (Q107325) /m/09wlpl ron allen (actor) (Q2187693) /m/056252 giant/warner bros. records (Q1402435) /m/02ldmw /m/02ldmw /m/03q91d dietrich bader (Q449947) /m/0h0yt steven fry (Q192912) /m/07f1x th (Q869) /m/01xbgx books/cambodia (Q424) /m/0frmb1 johnathon madden (Q1345694) /m/02vnmc9 funny girl (film) (Q1364076) /m/02kv5k ray stark (Q466254) /m/05l0j5 twig clark (Q254766) /m/03mszl gillian welsh (Q442207) /m/0421st shelley duval (Q235478) /m/0298n7 seabiscuit (film) (Q179018) /m/08bytj henrickson's home plus (Q859050) /m/02ljhg tombstone (film) (Q1420651) /m/08t7nz william fraker (Q489559) /m/0gt3p william stacey burr (Q336877) /m/017kz7 (i've got a) golden ticket (Q936327) /m/0237jb brian thomas helgeland (Q912327) /m/09v6tz eric roth (Q942932) /m/01w565 star child (record label) (Q1328605) /m/01wphh2 nana mizuki live theater -acoustic- (Q229347) /m/0hvvf bonnie and clyde (film) (Q181776) /m/01k2xy sj quakes (Q575370) /m/0418154 golden globes 2009 (Q324976) /m/043mk4y recount (film) (Q1768366) /m/0281y0 encino, calif. (Q1190590) /m/01vsl colorado springs, colo. (Q49258) /m/029kpy amritsar, punjab (Q48403) /m/0j862 dramatic tenor (Q27914) /m/0jv5x swindon active service (Q19634) /m/0fm3kw goya award for best actress (Q1379415) /m/01f1kd 1976 winter olympics (Q9651) /m/06dn58 bobby canavale (Q428819) /m/057wlm the citadel military college of south carolina (Q1806300) /m/03m2fg sunjay dutt (Q310867) /m/0c35b1 anthony dwane mackie (Q511554) /m/0252fh james caan (actor) (Q95043) /m/089pg7 p! @ the disco (Q277551) /m/09bxq9 dante spinotti (Q179657) /m/05z43v the gathering storm (2002 film) (Q3778705) /m/0p_rk heaven can wait (1978 film) (Q637180) /m/0n1v8 townships in stark county, ohio (Q421974) /m/0n1tx summit county (oh) (Q485536) /m/01n951 columbia journal of gender and law (Q1149089) /m/09lvl1 tony award for best featured actor in a musical (Q674165) /m/0dkv90 chi bi dian ying yuan sheng da die (Q815606) /m/06mvq svenne (Q165192) /m/0295r iso 639:da (Q9035) /m/02rrh1w vantage point (film) (Q274887) /m/01dtcb the universal music group (Q38903) /m/01k23t annie lennox (Q151231) /m/03q45x amy poeler (Q230203) /m/030tj5 dick clement (Q711682) /m/02qw2xb lea michele (Q228733) /m/01cwm1 stoke city fc (Q18736) /m/017l4 benny andersson/comments (Q214582) /m/02wgbb the flintstones in viva rock vegas (Q939084) /m/01bn3l melanie silver (Q602094) /m/0y4f8 vocal music (Q685884) /m/03h_yfh nat “king” cole (Q137042) /m/07q0g5 jennifer leann carpenter (Q230641) /m/0276jmv david zayas (Q439438) /m/0b3n61 madagaskar 2 (Q188474) /m/02kcz equatorial guineans (Q983) /m/0jmwg hardcore rock (Q10922) /m/0pmn7 pôrto (Q36433) /m/0187x8 edmond marceau (Q22151) /m/024my5 katherine e. soucie (Q262910) /m/0qtz9 pine bluff, arkansas metropolitan area (Q80012) /m/05fgr_ ject runway (Q1122661) /m/01fxck vince gallo (Q362353) /m/0184jw curtis hanson (Q263486) /m/015y3j dickinson college (Q1210045) /m/02cq61 master of comparative law (Q754848) /m/01g6l8 imperial alexander university in finland (Q28695) /m/025rxjq high fidelity (tv series) (Q1473804) /m/021mkg f.c. basel (Q189671) /m/0gm8_p william delano wilson (Q718135) /m/0dp7wt island of dr. moreau (Q1091580) /m/06fc0b adrian grennier (Q240869) /m/05sj55 /m/05sj55 /m/01p87y john richard schlesinger (Q55303) /m/0sn4f hammond, in (Q856860) /m/084kf city of waterloo, black hawk county, iowa (Q496381) /m/014ps4 gene wolfe (Q361149) /m/0882r_ novara calcio (Q8416) /m/01p4vl ashton kushner (Q164782) /m/0mz73 hilary swank filmography (Q93187) /m/0fphf3v new year's eve (film) (Q1052260) /m/0jdx albania (balkans) (Q222) /m/01cycq bug hunt at outpost nine (Q478626) /m/033m23 ming wen (Q254205) /m/0mdyn mindy feldman (Q375419) /m/0g2lq ron howard (american director) (Q103646) /m/02sch9 punjabi peoples (Q854323) /m/08vxk5 jothika (Q2749279) /m/03d96s rich gang (Q1047366) /m/025sppp investors (Q557880) /m/048hf kyle machlachlan (Q207506) /m/02x3y41 imperial life in the emerald city (film) (Q632328) /m/0g0x9c invincible (2006 film) (Q1070160) /m/06m6p7 samuel pack "sam" elliott (Q311314) /m/0p9tm butch cassidy and the sundance kid (Q232000) /m/0xynl jamestown, ny (Q983861) /m/08d9z7 lawrence gordon productions (Q575806) /m/02z9rr portugreek (Q272595) /m/07kjk7c primetime emmy award for outstanding writing for a limited series, movie or a dramatic special (Q3403230) /m/079ws stephen j. "steve" ditko (Q355652) /m/07q3s tulaytula (Q5836) /m/05ch98 the jacket (Q465607) /m/01g1lp gus greene van sant junior (Q25186) /m/01r4hry george clinton (soundtrack musician) (Q364631) /m/02bn75 alex north (Q349448) /m/04b2qn sideways (film) (Q675937) /m/03j1p2n strange cargo (band) (Q366804) /m/03mp4f metalists stalino (Q388972) /m/06jcc ray douglas bradbury (Q40640) /m/02g3gw saturn award for best writing 2011-2030 (Q981030) /m/01vrlqd betty comden (Q175078) /m/0cbn7c the maltese falcon soundtrack (Q221462) /m/02k5sc maroon 5's third studio album (Q182223) /m/016kb7 gurpegui (Q181936) /m/087_wh dina pathak (Q5277861) /m/0knhk scorpions (band) (Q124147) /m/0l14v3 /m/0l14v3 /m/01lqnff vincent peter "vinnie" jones (Q296822) /m/01nyl central africa republic (Q929) /m/03g5_y dane jeffrey cook (Q359969) /m/06bpt_ power groove (Q241662) /m/019389 william patrick "billy" corgan, jr (Q311382) /m/073hhn beroe stara zagora (Q374254) /m/051x52f emile kuri (Q506888) /m/0yc7f mt. vernon, new york (Q835831) /m/06znpjr gulliver's travels (2010) (Q1320997) /m/0dwly children's book series (Q131539) /m/04jplwp nine (soundtrack) (Q752989) /m/01hq1 batman/batman returns (Q189054) /m/01z9_x malcolm john rebennack jr. (Q511074) /m/0llcx witness (1985 movie) (Q488041) /m/09306z 58th academy awards nominees and winners (Q938235) /m/045m1_ /m/045m1_ /m/0l1pj van nuys, los angeles, california (Q769446) /m/04z_3pm mary & max (Q1128756) /m/0kz1h australian royal (Q259502) /m/014dfn /m/014dfn /m/0_kq3 beaufort, south carolina (Q813376) /m/0fd_1 d. clinton (Q527462) /m/07kbp5 /m/07kbp5 /m/02n9k eleanor roosevelt/doc (Q83396) /m/0f4hc c9h17no5 (Q179894) /m/02rlj20 bury my heart at wounded knee (film) (Q3280456) /m/03k3b collection (hawkwind album) (Q285966) /m/03np63f the house of mirth (2000 film) (Q129037) /m/03fnjv sv kerkrade (Q24719) /m/08k05y sv ried (Q457460) /m/02nvg1 the kellogg school (Q1142073) /m/08wjf4 /m/08wjf4 /m/03f3_p3 nina simone (Q174957) /m/06t8b peter andrews (soderberg) (Q103917) /m/0fpxp hollywood squares (home game) (Q2572270) /m/04fgzb0 /m/04fgzb0 /m/03kts anita connick (Q313755) /m/0841zn lars hirschfeld (Q77412) /m/01vs73g rodney "darkchild" jerkins (Q727151) /m/03f3yfj brandy rayana norwood (Q690974) /m/02d9nr punahou (Q3273124) /m/08zrbl there will be blood (film) (Q244315) /m/06b19 queens university (Q1420038) /m/0crvfq dw moffett (Q1151457) /m/01grrf 9th u.s. congress (Q4646693) /m/0n23_ lickin county (Q490150) /m/0n2m7 franklin county, oh (Q113237) /m/072r5v apocalypto (Q188035) /m/0gl6f the university of warwick (Q865528) /m/0z20d akron ohio (Q163132) /m/01p79b bowling green state university popular press (Q895457) /m/02h3tp patrick w. swayze (Q49004) /m/0y_pg ghost (1990 film) (Q49003) /m/02t_vx david paymer (Q373989) /m/03t852 noel marx (Q311256) /m/01t8gz burnley, lancashire (Q209096) /m/02hwhyv modern corean language (Q9176) /m/014bpd heavy metal film (Q1471965) /m/02r2j8 frank herbert's dune (Q987305) /m/08jfkw austin pendleton (Q572004) /m/0ggh3 /m/0ggh3 /m/04vn_k ternana unicusano calcio (Q8623) /m/01qbjg stephen j cannell (Q470282) /m/06jtd rheinland-pfalz (Q1200) /m/09ksp northern rhine westphalia (Q1198) /m/025hwq revolution studios (Q1160868) /m/04110lv 81st oscars (Q190441) /m/018phr martie maguire (Q1373347) /m/048j4l fender p-bass (Q727758) /m/01qwb5 tuskegee golden tigers men's basketball (Q1682329) /m/0bzjvm 48th academy awards (Q388978) /m/03b1l8 the fabulous baker boys (Q685245) /m/06cmd2 welling united f c (Q955872) /m/030tjk ian la frenais (Q5982007) /m/01h7xx thirtieth congress (Q4634661) /m/02_fz3 face / off (Q223887) /m/0kjgl michael kirk douglas (Q119798) /m/04gcyg the year we make contact (Q211784) /m/0mrs1 fort bend county, tx (Q26895) /m/0d1xh brazoria county (Q27034) /m/01dbns adelaide graduate school of business (Q15574) /m/01vt5c_ maya arulpragasam (Q204019) /m/07rhpg lesley sharp (Q458252) /m/031kyy tenjho tenge manga censorship (Q613634) /m/0nm6z oxford county, massachusetts (Q502592) /m/01l3mk3 marvin hamlisch (Q337206) /m/0ws0h greenville, mississippi (Q988112) /m/010v8k spokane, washington metropolitan area (Q187805) /m/04__f marlon brando (Q34012) /m/040981l vincent piazza (Q4013057) /m/05y8n7 disco punk (Q1643549) /m/03txms donald payne, sr. (Q1240103) /m/0454s1 rollo smolt thorpe (Q216748) /m/01z5tr debra messing (Q228739) /m/0l2xl santa clara county, calif. (Q110739) /m/054knh golden globe award for best foreign language film 2010-2029 (Q387380) /m/013rfk death cult (band) (Q887376) /m/0f2sx4 chuck and larry (Q832456) /m/03cmsqb all about steve (film) (Q590813) /m/03fw4y yash chopra (Q30876) /m/0py9b dell, inc. computer company (Q30873) /m/0ymb6 st edmund's hall (Q973884) /m/0326tc home invasion: in concert at the royal albert hall (Q352766) /m/01gsvb 18th u.s. congress (Q4557675) /m/02chhq hilary jackie (Q1424066) /m/06yykb ghost rider film (Q41754) /m/02xnjd avi arad (Q545394) /m/0335fp bradley whitford (Q352180) /m/0k2m6 ichimonji hidetora (Q565231) /m/036nz /m/036nz /m/020h2v the foot shooting party (Q497155) /m/02bj6k stan tucci (Q223117) /m/016mhd billy elliott (film) (Q458629) /m/0c33pl sherri shepherd (Q268549) /m/0gd9k smith, kevin (Q489831) /m/0clzr county cork, ireland (Q162475) /m/0jtf1 county waterford (Q184594) /m/0j6cj joseph satriani (Q194287) /m/0g57ws5 61st berlin international film festival (Q573108) /m/015bpl star trek vi (Q579757) /m/03ljr the house of commons of the united kingdom (Q11005) /m/0lwyk boise st (Q891082) /m/05wqr1 sanderson, william (Q1372770) /m/0tl6d lafayette (la) (Q128891) /m/02rvwt north indian music (Q1770695) /m/0pj8m ravi shankar (musician) (Q103774) /m/04gxf lincoln, nebraska (Q28260) /m/01w1ywm richard hunt (muppeteer) (Q561809) /m/01d30f 👩‍🏫 (Q37226) /m/05gc0h /m/05gc0h /m/0b4lkx all the president's men (film) (Q466781) /m/02qkwl i robot (movie) (Q200572) /m/017g2y edward goldenberg robinson (Q83812) /m/0nj1c history of tuscola county, michigan (Q82367) /m/01w9ph_ james douglas "jim" morrison (Q44301) /m/0rhp6 melbourne (fl) (Q949779) /m/01t9qj_ red skeleton (Q1277029) /m/0hpyv burlington vt (Q31058) /m/01q7q2 the university of vermont and state agricultural college (Q1048898) /m/0b06q rus orthodox church (Q60995) /m/01m42d0 telly savalas (Q209471) /m/0172rj funeral doom metal (Q186170) /m/01wt4wc joey jordison (Q295817) /m/01mh8zn marc shaiman (Q979312) /m/0214km music soloist (Q270827) /m/0c53vt 27th academy awards (Q608130) /m/02yxjs altgeld hall (niu) (Q1191344) /m/01hvv0 the fairly odd parents (Q39037) /m/09h4b5 vanessa anne hutchinson (Q123174) /m/081l_ wilhelm wenders (Q55411) /m/02jyhv hayden pantierre (Q171571) /m/053mhx lamda examinations (Q385471) /m/02661h tony shalhoub (Q107249) /m/0jpmt tobacco use disorder (Q152100) /m/05zn92p /m/05zn92p /m/03nsm5x 7 pounds (Q635924) /m/0281s1 sherman oaks, ca (Q1015874) /m/06x2ww umgn (Q4043197) /m/01xbxn a shark tale (Q120367) /m/08w4pm the kinks (band) (Q188713) /m/04f6df0 into the storm (2009 film) (Q886403) /m/01738f hardcore funk (Q667659) /m/0xsk8 william collins (musician) (Q452411) /m/04hhv lao please don't rush (Q819) /m/0c8br l sprague de camp (Q316313) /m/095x_ rex rundgren (Q364875) /m/0338g8 craig t. nelson (Q329807) /m/0jnrk team teal (Q206381) /m/02pby8 chris o’donnell (Q107069) /m/0296vv emmett richmond (Q500093) /m/03kxp7 kaley cuco (Q16759) /m/029m83 sydney polack (Q51522) /m/02hfp_ anthony minghella (Q188726) /m/032md fritz lang (Q19504) /m/018mmw forest lawn, hollywood hills (Q1302545) /m/04qsdh ruby dee (Q234360) /m/02gnh0 cal poly kellogg (Q1026868) /m/038hg symbolism of green (Q3133) /m/0dw3l leslie edward claypool (Q514985) /m/02vcp0 kim carnes (Q4070) /m/01c1px isadore “friz” freleng (Q457864) /m/04mp75 sec bastia (Q208399) /m/015g1w ra (Q270920) /m/032nl2 /m/032nl2 /m/03ydlnj boat that rocked (Q856805) /m/0fc1_ madison county, ny (Q115166) /m/06182p american academy for dramatic arts (Q389336) /m/0jq2r short back and palais glide (Q1247701) /m/014pg1 the mystic knights of the oingo boingo (Q1887278) /m/0drtkx golden globe award for best animated feature film (Q878902) /m/06mj4 chillis (Q10708) /m/0sw6g hand azaria (Q202056) /m/04sskp merlin (movie) (Q1500095) /m/01718w training day (Q308929) /m/02xs5v brian cox (artist) (Q34975) /m/02633g martin fitzgerald lawrence (Q183542) /m/031k24 david straithairn (Q310318) /m/01zlwg6 history of redlands, california (Q753830) /m/048tv9 blade: trinity (Q217008) /m/04bbpm robert e. cook honors college (Q1661325) /m/02pv_d payne, alexander (Q313566) /m/02mc79 keenen wayans (Q323201) /m/02mc5v scarier movie (Q642501) /m/01zh29 shah rukh kahn (Q9535) /m/052_mn mein hoon na (Q1503700) /m/03nfnx list of soundtracks for shrek the third (Q486588) /m/026mml grammy award for best bluegrass album (Q5593755) /m/08cl7s なのは (Q1143644) /m/0134wr bee-gees (Q133405) /m/04cxw5b nba oklahoma city (Q180950) /m/09h_q игорь фёдорович стравинский (Q7314) /m/02l3_5 cloris leechman (Q230131) /m/02dgq2 syrian protestant college (Q469482) /m/03bzc7 ambient industrial (Q756956) /m/02cbhg cold mountain (movie) (Q390097) /m/0448r milton, j. (Q79759) /m/0n24p townships in lake county, ohio (Q288606) /m/04xn2m bill condon (Q361336) /m/01xhh5 choson people (Q484464) /m/01gglm any given sunday (Q482662) /m/017236 chongquing (Q11725) /m/02q3bb honeypot productions (Q231807) /m/02w29z steve the pirate (Q349350) /m/0100mt el paso (tx) (Q16562) /m/0brkwj drew goddard (Q922368) /m/02mp0g university of wyoming (Q1326975) /m/01lj_c tony award for best revival (musical) (Q2018307) /m/046rfv baby meena (Q3276006) /m/0999q malayālam (Q36236) /m/01nms7 jenna malone (Q233368) /m/02p68d michael bolton (Q312514) /m/04s04 /m/04s04 /m/03_qrp gold coast national football team (Q172014) /m/01933d sarah jane mayfield (Q95055) /m/04jb97 wong chau-sang (Q381561) /m/0jbn5 新疆 (Q34800) /m/02rxrh scotland men's national soccer team (Q34044) /m/0k_9j indiana jones and the temple of doom (Q179215) /m/0jch5 san juan county, utah (Q26622) /m/02b0yk cfc village (Q48935) /m/040j2_ gary sheffield (baseball) (Q3098626) /m/07147 san diego padres/players of note (Q721134) /m/04g73n chicken little (2005 movie) (Q270940) /m/059fjj kyra sedgewick (Q229572) /m/02mx98 13111 (Q364873) /m/0vfs8 muskegon public schools (Q952097) /m/07mz77 udo kier (Q77035) /m/0dgr5xp /m/0dgr5xp /m/08cn_n joe berlinger (Q5637614) /m/0ft18 play it once, sam (Q132689) /m/01rc6f university of arkansas-fayetteville (Q1070333) /m/01nn79 vluu l83t/ samsung l83t (Q20718) /m/01w_10 katie couric (Q230739) /m/01flzq hardcore hip hop music (Q966564) /m/03j149k mr. meth (Q298694) /m/06q07 sony.com (Q41187) /m/08mh3kd physics of semiconductors (Q11456) /m/0rql_ downtown west palm beach, florida (Q163749) /m/09qftb 55th golden globe awards (Q1534980) /m/01dhpj daniel barenboim (Q152768) /m/0bwhdbl /m/0bwhdbl /m/02hzz sextet devo (Q908848) /m/0q9jk taxi tv show (Q427529) /m/025tn92 nba draft 2008 (Q1321371) /m/0kjrx uma thurman (Q125017) /m/078mgh jeremy davies (actor) (Q312337) /m/0kygv history of cannes (Q39984) /m/0gtx63s the lady (2011 film) (Q971941) /m/0161rf /m/0161rf /m/09px1w akiva schaffer (Q419466) /m/0kq2 agnostician (Q288928) /m/024_41 /m/024_41 /m/01xmxj yeovil town f c (Q19651) /m/01wvxw1 ben harper and relentless7 (Q380849) /m/05ll37 sports broadcaster (Q2986228) /m/0pz04 dana carvey (Q545924) /m/078jnn rasheeda jones (Q540608) /m/01tnxc dennis quade (Q200768) /m/033pf1 casper (film) (Q1048166) /m/01whg97 james osterberg (Q182665) /m/0bzkvd 41st academy awards (Q544731) /m/0d6d2 paul newman (Q41871) /m/04m2zj ambeon (Q455959) /m/0czp_ academy award for best story (Q504298) /m/0lcd european alps (Q1286) /m/0c31_ three war films (Q106685) /m/046p9 jamiroquai's concert tours (Q202041) /m/0fv_t un/locode:uscae (Q38453) /m/01n30p ghost world (movie) (Q139460) /m/02hy9p robert evans (producer) (Q1826885) /m/02dlfh david wayne spade (Q298658) /m/020x5r paul mazursky (Q270560) /m/0bs8ndx super (2010 american film) (Q122113) /m/02z3zp shandling (Q1374481) /m/0b2_xp penny wise (Q3177566) /m/01516r the melvins (Q385618) /m/0bs1g5r peter gene bayot hernandez (Q1450) /m/01_njt sandra oh/comments (Q40337) /m/06ch55 jazz pianist (Q13403364) /m/01vz0g4 notorios big (Q179157) /m/0181hw mca music, inc. (Q304509) /m/0qkcb the jackson school (Q49196) /m/06rvn snaredrum (Q208421) /m/0n5c9 morris county nj (Q498163) /m/01lfy kbh (Q1748) /m/0h44w mandatory palestine. (Q193714) /m/0gvvm6l amour (2012 film) (Q637820) /m/03_f0 bach, j s (Q1339) /m/0n22z lucas county, oh (Q112107) /m/01mqnr martin landau (Q294641) /m/07ftc0 wu yanzu (Q277193) /m/04sqj mexico city (mexico) (Q1489) /m/0888c3 home for purim (Q3076762) /m/0418ft pamela suzette grier (Q233862) /m/016_v3 new orleans rap (Q1253172) /m/02vwckw florida (rapper) (Q213538) /m/0jnm_ flamescoach (Q194126) /m/05jg58 alternative grunge (Q379671) /m/01qz5 the chariots of fire (Q207921) /m/015l4k the 1968 winter olympics (Q9642) /m/09_9n normal hill (Q7718) /m/0bsnm concordia (Q326342) /m/0fkhl oswego county (Q487581) /m/03z9585 the tourist (2011 film) (Q629975) /m/0355pl the championship (Q19510) /m/01dtl bristol city 1982 (Q19456) /m/010p3 carolla, adam (Q4119) /m/06srk indigenous cultures, kingdoms and ethnic groups of senegal (Q1041) /m/0193f big-beat (Q858579) /m/016lmg theprodigy (Q7256860) /m/0dt1cm operations of nature (Q32849) /m/0287xhr guangzhou hengda f.c. (Q130521) /m/06fq2 university of rice (Q842909) /m/07k51gd kurt hummel (glee) (Q211566) /m/06sy4c john thomas gordon ruddy (Q247312) /m/01zlh5 richard clark, jr. (Q366563) /m/01f492 alex rodriguez (baseball player) (Q558664) /m/05f8c2 sk puntigamer sturm graz (Q206343) /m/04fyhv andrew george vajna (Q383528) /m/01y8d4 jerry siegel (Q380113) /m/02mpb edgar rice burroughs (Q148234) /m/03gvpk gil kane (Q1365108) /m/06cn5 rīga (Q1773) /m/0g7yx messina (Q13666) /m/026wlxw get smart (movie) (Q570652) /m/04_jsg thomas matthew delonge (Q4270) /m/01rgn3 c.e. shain library (Q1797448) /m/04v89z longest day (Q468484) /m/03m5y9p w. (film) (Q959051) /m/0jgk3 broward county, fl (Q494624) /m/0c5x_ university of california irvine, california (Q868421) /m/037mh8 filosophy (Q5891) /m/04mlmx margot kidder (Q234471) /m/014xf6 kings college london (Q245247) /m/02qsfzv genie award for best achievement in costume design (Q4376971) /m/027vps joseph l. mankiewicz/comments (Q51583) /m/017lb_ blondie (band) (Q202741) /m/016cff venus ebone starr williams (Q11578) /m/0jmcv d-mavs (Q132893) /m/0cp9f9 matt weiner (Q924283) /m/02yw1c melodeath (Q253918) /m/04mx__ tom fontana (Q2116124) /m/043tg lacan (Q169906) /m/0399p transcendental empiricism (Q184226) /m/06_sc3 re: extinction (Q156069) /m/064jjy peter berg (Q183141) /m/042zrm friday night lights (movie) (Q1156648) /m/07xyn1 premium outlets (Q2287759) /m/0bxs_d 54th primetime emmy awards (Q256550) /m/02wbm comestible (Q2095) /m/012gbb marlena dietrich (Q4612) /m/0zqq8 state college, centre county, pennsylvania (Q1187041) /m/03fmw_ banants f.c. (Q757253) /m/014d7f /m/014d7f /m/09rsr0w dalian yifang (Q1157920) /m/0y3k9 un/locode:usiag (Q128133) /m/027hm_ the charlie daniels band (Q551478) /m/02wk7b secrets & lies (film) (Q391172) /m/03rqww caleb deschanel (Q49020) /m/021_0p christian courier (Q1272775) /m/0cqhb3 screen actors guild award for best actor - drama series (Q2414252) /m/0214m4 bromly (Q122892) /m/0k3p mokum (Q727) /m/06s7rd ne yo (Q193710) /m/0jvtp james mason (Q209186) /m/054nbl newgrass (Q3307225) /m/02s_qz nathan fillian (Q342549) /m/029pnn tom arnold (actor) (Q353755) /m/05ldxl a clockwork orange (film) (Q181086) /m/0fy59t 13th academy awards (Q508554) /m/04_1l0v coterminous us (Q578170) /m/023qfd glen a. larson (Q604524) /m/0342vg du qifeng (Q470104) /m/0c1d0 providence, rhode island/comments (Q18383) /m/09krp hassen (Q1199) /m/02nt75 la adiccion (Q768253) /m/07q9q2 a.c. perugia calcio in european football (Q16344) /m/0234j5 jackie brown (film) (Q431252) /m/0p50v robert bolt (Q26062) /m/01j5sd gabriel byrne (Q296616) /m/0j8js floridapanthersgm (Q204623) /m/02rnmb /m/02rnmb /m/01mr2g6 gregory walter graffin (Q437255) /m/0725ny kevin michael richardson (Q488335) /m/036dyy zach braff (Q139330) /m/0drc1 richard rodgers (Q269094) /m/0n5jm burlington county, nj (Q138141) /m/02r858_ sweet hereafter (Q135315) /m/05vtw psychiatric treatment (Q7867) /m/0291hr high anxiety (Q1449248) /m/0hfjk western film (Q172980) /m/07vfz ucsf mission bay campus (Q1061104) /m/01q_wyj john lowrey (Q449658) /m/04gp58p rachel getting married (Q1117613) /m/02p76f9 interview with the vampire film (Q318910) /m/03yrkt brittany anne snow (Q229975) /m/0l5yl ben k. benney (Q148732) /m/02x9g_ agricultural college of the state of montana (Q1861687) /m/0164w8 conrad l. hall (Q706993) /m/05jt_ aggro metal (Q263734) /m/099md career soldier (Q4991371) /m/030vnj luke wilson (Q107769) /m/0cmf0m0 cat in boots (Q324262) /m/0g34_ geelong, victoria (Q231765) /m/01722w westminster upper school (Q1341516) /m/06yrj6 /m/06yrj6 /m/06gn7r utpal dutt (Q2723876) /m/0cvw9 city of bombay (Q1348) /m/037ls6 coconut milk (Q841779) /m/05d1y tesla, nikola (Q9036) /m/0d1yn gratz, austria (Q13298) /m/016ynj peter finch (Q294454) /m/04j14qc rent (movie soundtrack) (Q1049095) /m/01y998 /m/01y998 /m/0mb2b nameaug (Q49146) /m/01vtg4q bo didly (Q208881) /m/0xnc3 prince charles, wales (Q43274) /m/015nhn jackson, glenda (Q182408) /m/04mx7s al jourgensen (Q713807) /m/01vl17 tezuka (Q193300) /m/0196pc Q2489362 /m/02vr7 declan patrick aloysius mcmanus (Q206939) /m/02b19t burton albion f c (Q48929) /m/02wwsh8 jury prize (Q164200) /m/014l7h Q15077122 /m/07zlqp abc 5 sports (Q4015057) /m/0gvsh7l homeland (tv) (Q23594) /m/0r2kh pelican hill (Q268873) /m/0h99n childhood adhd (Q181923) /m/02_t2t rufus in concert (Q192402) /m/09cxm4 mean green mother from outer space (Q1199259) /m/01zrq0 cill mhearnaig (Q576562) /m/0jfqp chapel hill, n.c. (Q671812) /m/01r0t_j /m/01r0t_j /m/0dhrqx ben sahar (Q342364) /m/0263tn1 robert james-collier (Q3070813) /m/045xx juventus football club s.p.a. (Q1422) /m/01fm07 neosoul (Q268253) /m/02rn_bj chris seefried (Q2964857) /m/03h42s4 punt return specialist (Q7317272) /m/0yx1m broadcast news (film) (Q1539062) /m/056jm_ grammy award for best dance/electronic album (Q1542147) /m/07sbk chemical brothers, the (Q208507) /m/0l6wj thomas leo mccarey (Q332530) /m/01jllg1 harry warren (Q938810) /m/015cqh nomota llc (Q464749) /m/01q940 bmg japan (Q770103) /m/0697kh lindelof, damon (Q310556) /m/0cj_v7 derby county f c (Q19470) /m/02qnbs gerry conway (Q525314) /m/016fly prof. (Q121594) /m/01wmjkb hawaii senate bill 465 (Q194045) /m/0mbw0 margaret moran cho (Q257243) /m/0xrz2 passaic-clifton orthodox jewish community (Q170433) /m/01jfnvd glen fry (Q472051) /m/016dmx st. neot margin (Q368831) /m/050zr4 virginia madsen/comments (Q229784) /m/03gyp30 screen actors guild awards 2007 (Q1518310) /m/02_j8x matthew richard "matt" lucas (Q317251) /m/011xg5 artificial intelligence: ai (Q221113) /m/0kcrd jefferson county, alabama (Q112271) /m/0l1k8 kingdom of fib (Q201149) /m/03f7m4h manilow (Q302762) /m/028kk_ band director (Q1198887) /m/01hjy5 case western reserve university (Q1047060) /m/01d6jf ella geisman (Q232863) /m/04qy5 legions of merit (Q724443) /m/04rkkv the national institute of dramatic art (Q1815371) /m/0456zg alfie (2004 movie) (Q1356395) /m/015ynm hawaiian roller coaster ride (Q36092) /m/0c2rr7 houssine kharja (Q350721) /m/049bp4 robur siena s.s.d. (Q2756) /m/01wg25j richard w. penniman (Q82222) /m/0k__z cal state university at northridge (Q1026939) /m/09d28z nyfcc award for best picture (Q1983066) /m/05w6cw jesse mac (Q191842) /m/05z_p6 robson, mark (Q31225) /m/011ywj gosford park (Q165392) /m/0mn6 architect (Q42973) /m/02fv3t /m/02fv3t /m/07ghq the terminator (soundtrack) (Q162255) /m/024y6w vera jane palmer (Q229507) /m/0cg2cj fussballclub aarau 1902 (Q603271) /m/0bs8hvm germany in autumn (Q664532) /m/023361 the thunder of imperial names (Q235077) /m/0q9zc pretty good (Q23728) /m/06hgym shawn pyfrom (Q362876) /m/0ds2l81 big miracle (Q609236) /m/07fb6 tonga (Q678) /m/02g5q1 mortal kombat: devastation (Q426837) /m/09r_wb shreya saran (Q292943) /m/0h2zvzr midnight's children (film) (Q1649787) /m/0mb5x harold pinter, ch, cbe (Q41042) /m/04xfb mahatama gandhi (Q1001) /m/015k7 prabudha (Q9441) /m/01skxk jangle-pop (Q1190565) /m/016ybr power-pop (Q837837) /m/019lvv sc corinthians paulista (Q35933) /m/0q9t7 steven wright (Q1969967) /m/0683n paul auster (Q214642) /m/07ym0 voltairian (Q9068) /m/01693z stevie ray vaughan (Q202937) /m/04gmlt skg music, llc (Q1899781) /m/01jkqfz eddie rivers (Q732733) /m/05d6q1 ifc midnight (Q2910457) /m/069d68 bob bryan (Q53340) /m/03nymk langley falls (Q210311) /m/0315rp jp2 movie (Q200873) /m/028dcg bfa degree (Q2878277) /m/017yxq cheese sondwich (Q315826) /m/04v9wn krylya sovietov samara (Q274778) /m/057bc6m ray moyer (Q1728848) /m/0523v5y van nest polglase (Q1474823) /m/03wjb7 the egyptians (band) (Q931909) /m/0nk72 e b ashton (Q60025) /m/04s0m /m/04s0m /m/03_lsr panama national football team (Q223748) /m/0n8_m93 85th academy awards nominations 2013 (Q248688) /m/0kb3n mario cleri (Q182870) /m/03ncb2 best contemporary jazz album (Q1542130) /m/0170yd affliction (1997 film) (Q1193825) /m/033smt technical director (Q2399424) /m/01ccr8 bernadette peters (Q231391) /m/02kc4sf pamolyn 100 fg (Q207688) /m/0gy30w barrow, alaska. night work (Q224117) /m/09thp87 /m/09thp87 /m/086m1 invasion of canada (1812) (Q26013) /m/01hnp british colonial system (Q8680) /m/02ln1 husserlian (Q58586) /m/02002f sinhala (language) (Q13267) /m/06m_5 srilanka (Q854) /m/0193fp 岐阜県 (Q131277) /m/0myhb warren county oh (Q489576) /m/0kftt julie elizabeth wells (Q161819) /m/027n4zv rich summer (Q1150569) /m/0690ct le mans uc 72 (Q210864) /m/025jbj vincent minnelli (Q51535) /m/021996 california state university–san jose (Q498526) /m/0fw4v city of san juan, puerto rico (Q41211) /m/01lf293 bs&t (Q48995) /m/0ct9_ groupe d'information sur les prisons (Q44272) /m/022yb4 jimmy smitts (Q73416) /m/06qgjh hong, james (Q358990) /m/06bng robert henlein (Q123078) /m/02lv2v pace setters men's basketball (Q556098) /m/0fx2s greek tradgedy (Q80930) /m/02cbg0 house of sand and fog (film) (Q508841) /m/012bk sharon, ariel (Q60206) /m/03cvvlg doubt (2008 film) (Q640450) /m/01rcmg brad garrett (Q331720) /m/059j1m david michael koechner (Q164328) /m/0c1fs d. h. (david herbert) lawrence (Q34970) /m/02kcv4x oxidized linoleic acid metabolite (Q407426) /m/02ywwy the avengers (1998 film) (Q494985) /m/045qmr crests (digimon) (Q689114) /m/0btpx saron stone (Q62975) /m/03shpq the manchurian candidate (2004 movie) (Q3589) /m/0fczy niagara county, new york (Q114969) /m/0r3tb el paseo (palm desert, california) (Q399976) /m/02k1b republic of ecuador (Q736) /m/0h953 frederick austerlitz (Q100937) /m/0chrx omaha city (Q43199) /m/06hgj wilson, robert anton (Q314215) /m/01kkk4 ne revolution (Q309095) /m/03zrc_ south africa football team (Q170327) /m/01xbp7 kaizer chiefs football team (Q247731) /m/02k1pr '' the poseidon adventure '' (Q874496) /m/034xyf thoroughly modern millie (Q2574548) /m/02f777 best dancing in a video (Q847054) /m/02py7pj screen actors guild life achievement award (Q1631998) /m/063_t peter sellers filmography (Q177984) /m/01lbcqx evelyn tremble (Q591272) /m/03y2kr samuel z. arkoff (Q358702) /m/04cnp4 /m/04cnp4 /m/03_jhh shanachie entertainment (Q1503081) /m/05dfy_ street fighter ii (film) (Q929998) /m/04f6hhm venus van dam (Q171254) /m/0gf28 send up (Q170539) /m/0nbwf longbeach,california (Q16739) /m/027rfxc dorothy spencer (Q528379) /m/013n2h midland, texas (Q128321) /m/0cp0t91 on the road (2011 film) (Q938858) /m/0k57l will b. good (Q315202) /m/0gyy0 walter john matthow (Q202172) /m/01dc0c seven (movie) (Q190908) /m/05p7tx music conservatoire "giuseppe verdi", milan (Q2045972) /m/012201 nino rota (Q214665) /m/078mm1 cassandra crossing (Q706586) /m/0bzjgq 49th academy awards (Q611050) /m/01hx2t oregon state university college of oceanic and atmospheric sciences (Q861888) /m/03y3dk carlo ponti sr. (Q299419) /m/07ffjc melocore music (Q542703) /m/02clgg paula sutor (Q311976) /m/059g4 north american (Q49) /m/02czd5 mad about you (sitcom) (Q752365) /m/0f13b leonard simon nimoy (Q16345) /m/0f3m1 eg-4 (Q181795) /m/014yzm choline ion (Q193166) /m/012vm6 twenty-two thousand days (Q211965) /m/01cl0d /m/01cl0d /m/06rgq cheryl crow (Q200586) /m/01nr36 timothy robbins (Q95048) /m/087vnr5 the other guys (film) (Q376807) /m/05f3q nobels fredspris (Q35637) /m/051cc rev. martin luther king, jr. (Q8027) /m/0ds5_72 the greatest muppet movie of all time (Q550558) /m/0cvkv5 volver film (Q209667) /m/01l_w0 the guess who? (Q1141238) /m/09j9h /m/09j9h /m/02r6gw6 2007 major league baseball draft (Q4608826) /m/0gx1673 2012 grammies (Q1337556) /m/03wj4r8 cadallac records (Q149431) /m/05314s provincia di cagliari (Q16149) /m/0glyyw bruce berman (Q4977147) /m/049d_ kc wizards (Q329812) /m/02fm4d /m/02fm4d /m/05fly n.s.w. (Q3224) /m/04zwc macquarie uni (Q741082) /m/01zwy carl edward sagan (Q410) /m/02rhfsc alex graves (Q4717090) /m/02wd48 alan thicke filmography (Q277895) /m/03zrhb republic of korea national football team (Q543842) /m/0420td suwon samsung bluewings f.c. (Q482449) /m/02y0yt gilbert gottfired (Q221464) /m/023vwt climate of sialkot (Q643883) /m/096cw_ fc barcelona reserves (Q10467) /m/0fbtm7 /m/0fbtm7 /m/0285r5d list of major league baseball managers in 2007 (Q128559) /m/037h1k rough trade america (Q385558) /m/02m92h bob odenkirk (Q888178) /m/01z9v6 pitcher (baseball) (Q1048902) /m/01v3x8 kinki nippon (Q129164) /m/08xwck shore z productions (Q434272) /m/0c58k diabetus (Q12206) /m/01hbgs old-age (Q191089) /m/019n9w pomona sagehens football (Q7227384) /m/04v048 fleischer, richard (Q262735) /m/0b_6v_ 1992 ncaa men's division i basketball tournament/comments (Q3994968) /m/091tgz /m/091tgz /m/025ygws list of mlb managers 2003 (Q2628156) /m/02wmbg rajanikanth (Q60068) /m/055qm marathi-language (Q1571) /m/05yzt_ carmine coppola (Q658614) /m/05zr0xl modern family (tv series) (Q16756) /m/0c4xc sitcomy (Q170238) /m/07jrjb werner entertainment (Q2484170) /m/016tvq the opening credits of the cosby show (Q463999) /m/02029f wigan athletic afc (Q18750) /m/026ssfj nyu stern school of business (Q770467) /m/01w9mnm david sylvian (Q519273) /m/06hhp uk royal navy (Q172771) /m/0jnpc wild wing (mascot) (Q192751) /m/09th87 nba draft 06 (Q1471357) /m/01934k loretta young (Q253384) /m/070yzk justin theroux (Q316596) /m/02c0mv phil collinson (Q3378750) /m/0mmr1 grays harbor, washington (Q493222) /m/0mm0p /m/0mm0p /m/06vdh8 lucien ballard (Q348093) /m/018h8j oldham, greater manchester (Q202628) /m/04k3jt gambia national football team (Q270181) /m/03pc89 m*a*s*h (movie) (Q494085) /m/0nvd8 lake county, ill. (Q484263) /m/0sbbq waukegan (Q578289) /m/0fkwzs googleplex mall (Q217679) /m/04qk12 o fair one (Q1046841) /m/01wqflx eddie veder (Q221535) /m/060__7 snow falling on cedars (movie) (Q582147) /m/027jk republic djibouti (Q977) /m/05cl8y koch international (Q5573308) /m/02y7sr duff (band) (Q251865) /m/0k1dw /m/0k1dw /m/0gzlb9 battlefield earth 2 (Q811023) /m/0gdhhy mark damon (Q541554) /m/01d8wq southend-on-sea, essex (Q203995) /m/05q2c io triumphe (Q1346110) /m/0djywgn crrano color (Q23760) /m/02cff1 gina mckee (Q257293) /m/050_qx david rasche (Q729572) /m/07fr_ tc (Q18221) /m/04jpg2p list of characters from alice in wonderland (2010 film) (Q174385) /m/0p17j victoria spelling (Q229050) /m/027d5g5 tonio guerra (Q460095) /m/033rq frederico fellini (Q7371) /m/02mpyh peter smith kingsley (Q390052) /m/0qmfz atlantic city (1980 film) (Q756329) /m/0gtgp6 michael o'neill (football manager) (Q1778362) /m/05xf75 list of awards and nominations for tom hardy (Q208026) /m/0pk1p hudson hawk (Q518127) /m/01vs4f3 sid barrett (Q173061) /m/0hhggmy taken 2 (Q1057015) /m/024qqx blockbuster motion picture (Q505119) /m/03h2p5 adam austin (Q1266750) /m/031x_3 this christmastide (Q240937) /m/01f1jf bids for the 1964 winter olympics (Q9636) /m/04ltf /m/04ltf /m/038981 2004 national basketball association draft (Q1474606) /m/03hhd3 ron pearlman (Q220698) /m/0jhd azerbaijan (Q227) /m/01q8hj picker art gallery (Q1191335) /m/0bkf72 /m/0bkf72 /m/015zql dan curtis (Q692808) /m/03gn1x antiochcollege.org (Q4775012) /m/01crd5 vietman (Q881) /m/07y9k uefa.org (Q35572) /m/09tkzy '' a room with a view '' (Q203574) /m/0hz_1 micheal j.fox (Q395274) /m/02q5bx2 raw (character) (Q1968020) /m/07m69t glyn oliver myhill (Q439302) /m/01nkxvx abel (song) (Q232214) /m/0g7k2g /m/0g7k2g /m/015g7 pozsony (Q1780) /m/0chgzm p:mel (Q3141) /m/02_l9 free-mason (Q41726) /m/0dhqyw /m/0dhqyw /m/01jmyj james marshall (character) (Q407184) /m/02wwr5n pachuca (football) (Q736937) /m/0226cw john david, jr. dingell (Q600393) /m/04cf_l jackass: the movie (Q509256) /m/020l9r philip john clapp jr. (Q295034) /m/01lk02 strike freedom (Q696206) /m/04gvyp disney imagineering (Q2140930) /m/01jw4r sally m field (Q187033) /m/04pk9 lutheran church、lutheranism (Q75809) /m/0jn38 dream theater (Q162586) /m/0f61tk /m/0f61tk /m/0m2fr fairfield county, connecticut (Q54231) /m/0bkq7 gentlemans agreement (Q898840) /m/0r0f7 sentinel field (Q621549) /m/02lj6p bernard jeffery mccullough (Q176323) /m/016zwt doen tv (Q837) /m/02v49c dave thomas (actor) (Q2627090) /m/09tqx3 prakash raj (Q1322453) /m/01z3d2 kings lynn and west norfolk (Q1742192) /m/0nv2x peoria county (illinois) (Q113079) /m/03ynwqj i love you, man (Q958257) /m/03lvyj barbara hershey (Q229042) /m/0m123 the waltons (Q48777) /m/09g_31 ben 10 classic (Q207746) /m/044_7j richard cardona (Q952156) /m/01vx3m hoebridge (Q646225) /m/01_1hw simon peter gruber (Q106871) /m/09q2t pale sandy brown (Q47071) /m/057__d legend of bagger vance (Q1141877) /m/01g42 bert lancaster (Q160528) /m/08xz51 david depatie (Q543171) /m/0k60 brad strider (Q223161) /m/0qmny the funkadelics (Q523957) /m/05vk_d megan green (Q80069) /m/07bbw speed rock (Q211723) /m/020hh3 lars ullrich (Q106193) /m/03y7ml mcclatchydc.com (Q1660027) /m/05dbyt bob gunton (Q352203) /m/01hr11 mit center for ebusiness (Q142740) /m/06dfz1 prison break dvd releases (Q80044) /m/0jgwf lean, david (Q55260) /m/05zvzf3 un prophete (Q1061541) /m/0ncq_ wandsworth, london, england (Q2166359) /m/08lmt7 randers fc (Q729560) /m/0g5y6 mag-yars (Q133032) /m/02ztjwg hungarian (language) (Q9067) /m/0cl_m william sherman (Q188936) /m/09d5d5 jeremy thomas (Q1365966) /m/0rng city of aberdeen (local government district, grampian region) (Q36405) /m/0qr8z un/locode:usyum (Q79820) /m/023p18 university of iowa writers' workshop (Q662801) /m/042v2 irving, john (Q310379) /m/030z4z k2h2 (Q623336) /m/09bw4_ jumper (2008 film) (Q541079) /m/0dw6b alexander pushkin (Q7200) /m/02xcb6n outstanding writing for a drama series (Q3123491) /m/02fgp0 howard ashman (Q1334295) /m/09p0q donald siegel (Q358322) /m/05cl2w dan hedaya (Q724804) /m/03hfmm de-lovely (Q595612) /m/017c87 darren aronofsky (Q192762) /m/09glw himaleyas (Q5451) /m/015g_7 ryan o'neil (Q272923) /m/02qjv1p the pacific (tv series) (Q598499) /m/01wyq0w robert ludwig (Q981970) /m/04h4c9 un long dimanche de fiançailles (film) (Q936425) /m/04257b seongnam ilhwa chunma fc (Q482540) /m/01rmjw south lambeth (Q148349) /m/0284gc coventry city f. c. (Q19580) /m/01jmv8 judy davis/comments (Q307882) /m/01gkcc acute ulcerative pharyngitis (Q2085267) /m/01b_5g gastrointestinal reflux (Q223591) /m/09d3b7 a star is born (1976 film) (Q300568) /m/0dwz3t the bluebirds (Q18662) /m/023g6w dogville (Q327681) /m/035sc2 morgan spurlock (Q364421) /m/04rlf meaning (music) (Q638) /m/0bmfnjs jane eyre (2011 film) (Q258979) /m/05jjl marvin neil simon (Q315808) /m/0b7xl8 /m/0b7xl8 /m/0154d7 nathan hamill (Q210447) /m/02qfh eastenders off set episodes (Q607514) /m/059z0 /m/059z0 /m/026kmvf thiago emiliano silva (Q210453) /m/03v9yw fc dinamo-moskva (Q17497) /m/027x7z5 queen of the damned (Q202982) /m/032wdd tara donna reid (Q211082) /m/06dkzt akiva goldsman (Q419454) /m/0bdxs5 destiney cyrus (Q4235) /m/011xy1 trinty college dublin (Q258464) /m/01dvry dynasty reunion: catfights and caviar (Q584025) /m/03xyp_ daniel nestor (Q298542) /m/01wx_y dundee united f.c. (Q192873) /m/02b14q cheltenham town f. c. (Q48932) /m/04093 verne, jules (Q33977) /m/01vh096 v., hugo (Q535) /m/02zk08 fame (franchise) (Q1351911) /m/013zs9 jane horrocks (Q237178) /m/019m9h fluminese (Q80987) /m/0c0k1 harrison ford (Q81328) /m/01c9dd best rap album (Q1367988) /m/0trv arizona state teachers college (Q670897) /m/0jhz_ duval fl (Q493605) /m/01vn0t_ farokh bulsara (Q15869) /m/08z956 radio program boss (Q2722764) /m/05c5xx9 /m/05c5xx9 /m/0kvb6p the robe (film) (Q1139023) /m/0fp_xp jermaine easter (Q93828) /m/02q6cv4 mike barker (producer) (Q3305570) /m/0d075m democratic party of the united states of america (Q29552) /m/01wv24 admu (Q533235) /m/01yf85 jessica marie alba (Q44077) /m/02v5xg razefon (Q95072) /m/0821j william gibson shortfic (Q188987) /m/05b2f_k les dilley (Q1743733) /m/027y_ douglas copeland (Q322060) /m/01cf93 elektra entertainment group (Q726251) /m/01w5jwb cee lo (Q4042) /m/09rvcvl we want sex equality (Q53096) /m/09nzn6 enosis paralimni (Q959341) /m/0n5_g keene, nh micropolitan statistical area (Q54443) /m/0m2cb pinal county, arizona (Q58712) /m/0m2by tucson, az msa (Q58688) /m/026xxv_ chapel hill men's basketball (Q4412061) /m/0fsd9t mansfield park (film) (Q291180) /m/05ccxr davis, carl (Q584221) /m/01bjv bus trip (Q5638) /m/0281rp studio city (Q3143067) /m/0dl6fv david copperfield (1999) (Q943386) /m/0hsn_ jessica phyllis lange (Q173585) /m/0h3k3f the country girl (1954 film) (Q1305029) /m/0gltv patriot (Q646633) /m/025twgf dr.no(film) (Q102754) /m/01fjfv the double headed dog network (Q3241928) /m/02x0dzw jennifer lawrence filmography (Q189490) /m/026rm_y christopher walz (Q76819) /m/01p85y kim cattrall (Q209175) /m/04wlh mosambique (Q1029) /m/06z8gn christopher mcdonald (actor) (Q349857) /m/0gs5q john grisham (Q106465) /m/04swd moskva, russia (Q649) /m/03x16f dana welles delany (Q228925) /m/0g_bh experimental post-rock (Q209137) /m/05dkbr msv duisburg matches (Q154293) /m/023nlj eric roberts (Q207969) /m/03x6m internazionale milano f.c. (Q631) /m/01yj2 greater cape town (Q5465) /m/076xkdz summer wars (Q715526) /m/0yxl translucia baboon (Q205739) /m/01wg3q allan holdsworth (Q285254) /m/020d8d new victoria theatre (bradford) (Q22905) /m/04qr6d vishal bhardwaj (Q2742292) /m/0v1xg bay city, mi (Q746820) /m/01tl50z jones, shirley (Q230218) /m/0dk0dj /m/0dk0dj /m/03jl0_ abs-cbn (tv network) (Q2022113) /m/01cspq emeric pressburger (Q55230) /m/09bymc golden satellite awards 2004 (Q771761) /m/037bm2 golan globus (Q1033465) /m/0336mc diane krüger (Q57118) /m/08qxx9 fassy (Q57147) /m/0n5kc atlantic city, new jersey metropolitan area (Q497928) /m/041jlr haneke, michael (Q84199) /m/07dnx mann, thomas (Q37030) /m/0bj25 eve harrington (Q200299) /m/025ts_z 24 - redemption (Q217232) /m/052bw manchester, u.k. (Q18125) /m/015np0 richardson, sir ralph david (Q381285) /m/0cq806 a man for all seasons (1966 film) (Q218999) /m/05xpv falk, peter (Q484881) /m/07zhjj himyd (Q147235) /m/0x2sv canadian senate (Q841180) /m/01gvxh 38th canadian parliament (Q2816426) /m/06s9y west samoa (Q683) /m/03ff65 omonia fc (Q240783) /m/03kxdw bobcat goldthwait/comments (Q369424) /m/04sj3 island of the moon (Q1019) /m/01vxqyl robert matthew van winkle (Q313578) /m/0gpprt thomas mccarthy (director) (Q514527) /m/01r4zfk jay mohr (Q492321) /m/09_99w fury, david (Q2452126) /m/02pq_x5 2005 major league baseball draft (Q4604536) /m/048vhl daredevil (movie) (Q751805) /m/03n0cd harry block (Q500460) /m/02txdf akron university (Q1346135) /m/02bqvs cheaper by the dozen (2003 film) (Q822930) /m/0cqr0q american psycho (film) (Q1405126) /m/03h3vtz kevin mchale (actor) (Q314427) /m/0227vl paris hilton energy plan (Q47899) /m/02qydsh shrek four (Q208131) /m/025czw wrexham afc (Q18529) /m/032dg7 hollywood pictures home entertainment (Q1348264) /m/04ftdq alpha sigma beta fraternity (Q2749572) /m/0gg8l bluegrass music/comments (Q213714) /m/02f1c here i am (dolly parton song) (Q180453) /m/051z6mv william s. darling (Q1666270) /m/01phtd mira sorvino (Q212026) /m/034q3l martin henry balsam (Q312107) /m/01vsy9_ bing crosby (Q72984) /m/02b19f york city (Q48954) /m/06q7n decline of soap operas in the united states (Q23739) /m/01d_h dreaming (bt song) (Q361431) /m/048gd_ cd olímpia (Q1023208) /m/0jcjq environmental issues in tooele county, utah (Q484548) /m/09949m islambul (Q406) /m/01q0l qustantiniyye (Q16869) /m/0q_xk arcadia, california (Q534536) /m/02r6c_ jane campion (Q230448) /m/018yj6 william baldwin (actor) (Q313546) /m/05b49tt rick simpson (Q2151619) /m/0l3n4 lancaster, pennsylvania metropolitan area (Q142369) /m/0l4vc lancaster, pa (Q320514) /m/0b275x the cw network (Q212252) /m/01yb1y (wwe) smackdown (Q35622) /m/01j590z eat 'em and smile band (Q313992) /m/02pbzv bucharest university (Q608338) /m/0975t6 crimea-nauchnij (Q936126) /m/020ddc maine business school (Q1307345) /m/062qg p:per (Q3183) /m/05g_nr 2005 final four (Q3994981) /m/02x9cv montana–missoula (Q2302336) /m/03x6w8 fc braga (Q75684) /m/01fwzk ''they shoot horses, don't they?'' (Q1140171) /m/0g251 stratford-upon-avon (england) (Q189288) /m/01wj5hp krs-1 (Q432552) /m/01t94_1 nathan birnbaum (Q344793) /m/0438pz dick wolf (Q550381) /m/051m56 joe diffie (Q1691384) /m/0173s9 marlborough collegers (Q1902016) /m/0m4mb boarding school (Q269770) /m/01d0b1 michael jeter (Q329716) /m/043y95 guinean national football team (Q235411) /m/05sy0cv abc after school special (Q3600481) /m/01sg4_ transport in kandy (Q203197) /m/01x0yrt shania twain, oc (Q131433) /m/044mjy josh holloway (Q216793) /m/01hc9_ 村上春樹 (Q134798) /m/0grw_ international impac dublin literary award (Q1362723) /m/02qrwjt canadian screen award for best achievement in art direction/production design (Q4376982) /m/03mdw3c /m/03mdw3c /m/06frc early italian campaigns (458-396 bc) (Q17167) /m/0170k0 batman:tas (Q673517) /m/0k0r0n7 electro-house (Q627906) /m/01lqf49 rupaul's thunderdome (Q705715) /m/07zft the collection (vangelis) (Q153172) /m/021q2j nyu poly blue jays (Q75478) /m/021w0_ california state university long beach (Q1026926) /m/01btyw jalisco es méxico (Q13160) /m/0_lr1 downtown greenville (Q574192) /m/0fc_p history of onondaga county, new york (Q114904) /m/03ytc computing and it (Q11661) /m/01f9zw apple pie (song) (Q346565) /m/0164v republic of benin (Q962) /m/0mfj2 john franklin candy (Q218532) /m/063_j5 jonny gossamer (Q1423695) /m/0g3b2z fanis gekas (Q201885) /m/06ybz_ ae larissa fc (Q275626) /m/0jpdn miller, frank (Q207676) /m/0fpzt5 orson card (Q217110) /m/070b4 סוניק יות' (Q188626) /m/053_7s apache wars (Q617827) /m/020d5 the confederate states (Q81931) /m/03lfd_ vote for pedro (Q1133772) /m/059dn nsto (Q7184) /m/088tp3 michi e no armor shinka (Q715731) /m/0fhzwl dexter (show) (Q23577) /m/03lmzl keith ian carradine (Q433417) /m/0cj2k3 /m/0cj2k3 /m/0232lm andrew w.k (Q505898) /m/03f7jfh kamaal fareed (Q42025) /m/01x9_8 rachael lee cook (Q232101) /m/01d_4t casey casem (Q1047230) /m/018q42 jp-40 (Q123258) /m/02ny8t tpop (Q739138) /m/0211jt keiō gijuku daigaku (Q815432) /m/0262x6 hugo award for best novella (Q549884) /m/0hkpn history of yekaterinburg (Q887) /m/0157g9 lesser antilles (Q93259) /m/04vg8 /m/04vg8 /m/035yg christianity in grenada (Q769) /m/01rlzn leicetser city f.c. (Q19481) /m/076xkps '' priest '' (Q967683) /m/0knjh l'intégrale (serge gainsbourg album) (Q1698) /m/0cbkc renée deneuve (Q106418) /m/018jcq ōsaka prefecture (Q122723) /m/03b1sb grifters (Q304488) /m/0gwlfnb gi joe retaliation (Q1146345) /m/02fp3 detroit falcons (hockey) (Q194116) /m/02byfd freddie james prinze, jr. (Q309756) /m/02d02 detroit creams (Q650855) /m/0rv97 un/locode:usmge (Q852684) /m/07m77x jane marie lynch (Q228852) /m/02tf1y damon kyle wayans (Q382420) /m/0h7pj tallulah willis (Q2680) /m/0175tv hannoverscher sportverein von 1896 (Q33748) /m/02s58t tyrone iii power (Q309989) /m/07l4z level of excellence (Q650829) /m/01c_d buffalo bills (Q221626) /m/01wqg8 harvard medical (Q49121) /m/05zdk2 raakhee gulzhar (Q3196775) /m/015gsv clifford parker robertson iii (Q181899) /m/09lxv9 press secretary jerry ross (Q271690) /m/0tr3p history of bangor, maine (Q327012) /m/02y49 fritz leiber jr. (Q313185) /m/040_9s0 locus award for best fantasy novel (Q607354) /m/0lpk3 cornhill utica ny (Q2495519) /m/042tq jackson, mich. (Q984374) /m/01lpx8 list of calgary stampeders starting quarterbacks (Q1026679) /m/013w8y the idea of you (Q832086) /m/02vr30 blues of tehran (Q455971) /m/01pd60 fortune 200 (Q76615) /m/07ypt victoria, bc (Q2132) /m/0kt64b lalita pawar (Q6480391) /m/015y2q pune city (Q1538) /m/0mcf4 blue note (Q885833) /m/03d6q giuseppe verdi/comments (Q7317) /m/016s0m tracey chapman (Q187814) /m/0grmhb jon stone (Q3183242) /m/03c74_8 1909 major league baseball season (Q1986271) /m/029b9k frances rose shore (Q466502) /m/01zc2w english studies (Q27968) /m/08gwzt klaas-jan huntelaar (Q26069) /m/01pllx duh, winning (Q103939) /m/01p6xx joel schumacher (Q295207) /m/02hdky best new age album (Q5593841) /m/0373qt university college, dublin (Q1068258) /m/01qygl procter & gamble productions (Q212405) /m/09t4t manufacturing industry (Q187939) /m/04glr5h andre jacquemetton (Q4754809) /m/01b39j target com (Q1046951) /m/02z2lj rochdale, greater manchester (Q474605) /m/0s6jm st john lutheran school (wheaton) (Q575315) /m/02482c university of new mexico at albuquerque (Q1190812) /m/082_p tell me the truth about love (Q178698) /m/03p7r state of haryana (Q1174) /m/01f1q8 chandigarh, india (Q43433) /m/029jt9 samson and delilah (movie) (Q426352) /m/01v5h mr demille (Q72267) /m/0qlnr catherine cymone fourshey (Q3444679) /m/0xqf3 broad street, red bank (Q1010539) /m/0d8_wz al-arabi sc (qatar) (Q283760) /m/019l3m ann baxter (Q228906) /m/017b2p hamazaki ayumi (Q188111) /m/07f5x healthcare in togo (Q945) /m/0dv0z united dutch provinces (Q170072) /m/01v80y barry levinson films (Q269692) /m/024bqj mita chuugakkou (Q190088) /m/013mj_ odessa (texas) (Q128361) /m/046k81 cl financial san juan jabloteh (Q473599) /m/058dm9 zamalik (Q286504) /m/0g4pl7z senna (film) (Q534785) /m/0947l milán (Q490) /m/03f5mt gui-board (Q1112687) /m/01ppq cyprus goods (Q229) /m/01gvpz lady sings the blues (movie) (Q1754478) /m/03zbg0 jamaica national football team (Q235399) /m/06d6y matheson, richard (Q325130) /m/04g7x linguistic scientist (Q8162) /m/0mgp adelaide, south australia, australia (Q5112) /m/09gkdln 14th satellite awards (Q2092755) /m/01xvjb splash (movie) (Q1127184) /m/01qqtr jennifer jason leigh (Q232902) /m/03j6c hindusim (Q9089) /m/0nj7b oakland county sheriff (Q498024) /m/0vm39 michigan fallen heroes memorial (Q847596) /m/03hfxx mehmood (actor) (Q355748) /m/012gk9 st-tff (Q241218) /m/01fh0q stanley clarke (Q453406) /m/0677j pembroke college cambridge (Q956501) /m/01ynzf sidney schechtel (Q105118) /m/02fbpz lalettan (Q2050534) /m/04mx8h4 list of recurring characters in the penguins of madagascar (Q323335) /m/02z0j frankfurt on main (Q1794) /m/01wg6y george duke (Q536322) /m/08c6k9 fast and the furious: tokyo drift (Q213208) /m/0pc6x college park, maryland (Q668676) /m/040dv mrs. ann cawley (Q36322) /m/02jmst hastings law school (Q3577853) /m/0151zx peter cushing (Q309589) /m/0kt_4 hamlet (1948 movie) (Q27178) /m/04x4nv tucker: the man and his dream (Q1421355) /m/0163t3 sahron osbourne (Q1806985) /m/02tgz4 mr. deeds (Q59595) /m/01kwh5j kuwashima hoko (Q239389) /m/081m_ legend of warsaw (Q270) /m/0bdd_ /m/0bdd_ /m/03_js john adams, jr (Q11806) /m/0b_6s7 1991 ncaa tournament (Q3994967) /m/0fsb8 climate of charlotte, nc (Q16565) /m/02f6yz best group video (Q543729) /m/01d6g milwaukee brewers (1894-1901) (Q650816) /m/01sg7_ allan iverson (Q190094) /m/0dz46 lloyd chudley alexander (Q366643) /m/027x4ws /m/027x4ws /m/0bk1p history of queen (Q15862) /m/0k9j_ gregory peck/comments (Q108366) /m/01f_mw orion pictures (Q891732) /m/0ndsl1x marley and me (film) (Q1129290) /m/05ls3r 1.fc magdeburg (Q155730) /m/07t31 parliament of the usa (Q11268) /m/04zpv lowfat milk (Q8495) /m/012m_ austro-hungarians (Q28513) /m/02vjzr 2000s adult contemporary (Q378988) /m/016vqk /m/016vqk /m/023t0q abbās kiyārostamī (Q55210) /m/0qpjt chandler, az (Q49272) /m/03w9sgh /m/03w9sgh /m/0hh2s breakbeat-footer (Q663519) /m/09nwwf funk rock (Q835891) /m/05bht9 henri léopold de fiennes (Q457250) /m/030dx5 shemp howard (Q1287517) /m/0bz6sq spiceworld the movie (Q1137856) /m/06r2h first contact (film) (Q221236) /m/025ttz4 halibutt/uw (Q144488) /m/0425_d gwangju sangmu fc (Q484536) /m/0g_92 deborah kerr-trimmer (Q104146) /m/0f6lx cool blues (Q103767) /m/022fj_ flaint (Q1065809) /m/01tf_6 Q114953 /m/01k9lpl lennie bruce (Q460876) /m/01vg0s wits faculty of humanities (Q534643) /m/04lh6 metropolitan borough of liverpool (Q24826) /m/04hqbbz a.k. hangal (Q3595806) /m/017ztv faculty of humanities (university of copenhagen) (Q186285) /m/034fl9 search for tomorrow (Q588602) /m/02rk45 elaine iva berlin (Q454156) /m/043h78 scooby-doo (2002 movie) (Q936302) /m/03y317 new brunswick county, north carolina (Q203385) /m/0chw_ alicia foster (Q41351) /m/03nc9d best jazz vocal album (Q3113384) /m/04v09 malian republic (Q912) /m/01vh08 dick chamberlain (Q295847) /m/02qcr eyes wide shut (Q209481) /m/05yjhm /m/05yjhm /m/02n1gr dharmendra singh deol (Q379157) /m/06yyp sikh literature (Q9316) /m/05mgj0 ukfc (Q922857) /m/01b8w_ hammersmith, london (Q277162) /m/06hzq3 blues punk (Q2551540) /m/03v1xb david brown (producer) (Q369175) /m/014zws harvard university law school (Q49122) /m/03_nq 6th president of the united states (Q11816) /m/0drs7 olean, new york micropolitan area (Q114923) /m/049n2l caso catania (Q2018) /m/0jmm4 portland trial blazers (Q167253) /m/0fs54 yangon, myanmar (Q37995) /m/06nnj republic of suriname (Q730) /m/03fd8x fc vaduz (Q216773) /m/0nz_b cobb county, ga (Q484247) /m/022h5x bachelor of business studies (Q798129) /m/019l68 shelley also known as shirley (Q202144) /m/09sr0 jfk (movie) (Q741823) /m/07qv_ history of the tagalog language (Q34057) /m/0fv89q 28th academy awards (Q279914) /m/0m_h6 love is a many-splendored thing (movie) (Q714941) /m/02p86pb born on the fourth of july (film) (Q471159) /m/018dhx history of belleville, ontario (Q34227) /m/02x2t07 j.m. riva (Q543832) /m/0cx7f artrock (Q217467) /m/01m7f5r edward shearmur (composer) (Q496207) /m/0k3k1 history of middlesex county, massachusetts (Q54073) /m/03l78j florida atlantic university (Q429863) /m/04z_x4v boris leven (Q893712) /m/0ljbg queens park rangers f. c. (Q18723) /m/02q0v8n along came a spider (film) (Q922402) /m/012xdf shaq o'neal (Q169452) /m/0jpn8 hybrid electric vehicle technologies, inc (Q659706) /m/04vs9 health care in mauritius (Q1027) /m/064177 frances marion (Q463883) /m/01k47c john douglas lord (Q192114) /m/0dh1n_ mitchell leisen (Q276130) /m/097h2 the price is right (u.s. game show) (Q5231565) /m/0sxdg fox filmed entertainment (Q185278) /m/02hrb2 philipps-universitat marburg (Q155354) /m/0l5mz international trade relations (Q166542) /m/09rwjly berlinale 2010 (Q574075) /m/0d8qb /m/0d8qb /m/06w7mlh /m/06w7mlh /m/01tz3c anthological (Q105420) /m/036hf4 ryan rodney reynolds (Q192682) /m/04qt29 kristen bell (Q178882) /m/03cp7b3 william cheung suk ping (Q6123628) /m/0kj34 demetre georgiou (Q154216) /m/09l9tq chris killen (Q356038) /m/01634x ardwick a.f.c. (Q50602) /m/0n57k warren county, new jersey (Q502468) /m/02t7t neo-evangelical (Q194253) /m/02b18l southend united f c (Q48951) /m/040p_q story writing (Q586060) /m/06qc5 wave audio (Q11461) /m/0dqcm audrey hepburn filmography (Q42786) /m/07rnh the fall (band) (Q909916) /m/05hrq4 sheldon bershad (Q1545340) /m/0sw0q the andy griffith show (Q526035) /m/028pzq aria maria vittoria rossa argento (Q232052) /m/072192 a place in the sun (1951 film) (Q733627) /m/0mwjk mercer county (pa) (Q497216) /m/041288 the acp states (Q294278) /m/0147jt ryan smith (filmmaker) (Q357515) /m/0jgld citrus county (Q488821) /m/06y3r steven jobs (Q19837) /m/09j028 alexander manninger (Q197697) /m/0138mv udinese (Q2798) /m/01v3k2 university college of wales, swansea (Q1420500) /m/01cw24 norway football (Q184387) /m/07tjf uppsala school of engineering (Q185246) /m/04sh3 medical office (Q11190) /m/0d58_ bayreuth unrra displaced persons camp (Q3923) /m/02hxcvy urdu (language) (Q1617) /m/01sqd7 maverick records (Q2016567) /m/0g0z58 list of oklahoma sooners football conference championships (Q10608114) /m/03vhvp the black keys (Q606226) /m/0167v4 pax-am digital single no. 2 (Q437970) /m/0brgy postprandial anorexia (Q254327) /m/011zdm peritonitis (Q223102) /m/025t8bv cbs records (founded 2006) (Q3233924) /m/014dd0 dischord (Q1228431) /m/04wsz countries and territories of the middle east (Q7204) /m/0124jj peairt agus ceann rois (Q207679) /m/0g133 perth constituency (Q203000) /m/07b2yw university college of ibadan (Q1169487) /m/03c5bz jaime presly (Q231197) /m/095p3z ray heindorf (Q713301) /m/01d4cb the prodigal son (ry cooder album) (Q318374) /m/0n_hp blow (film) (Q631515) /m/09cn0c nyfcc award for best actress (Q1790273) /m/02pptm csu–fresno (Q1026919) /m/022qw7 patrick mcgoohan (Q298908) /m/0gy0l_ red sun, black sand(film) (Q275187) /m/01dhjz keith jarett (Q207034) /m/0q9nj real world (tv series) (Q743738) /m/03m3nzf sutapa sikdar (Q360927) /m/0d6n1 1916 ballet premieres (Q41425) /m/06x77g turning point (Q451558) /m/05nqq3 vivek (actor) (Q312783) /m/025mb_ betty white (Q373895) /m/09snz geography of bellingham, washington (Q430267) /m/02q_x_l shackleton (film) (Q2908942) /m/03x3l isle of wight box (Q9679) /m/01yndb henry saint clair fredericks (Q353023) /m/0djkrp the history boys (film) (Q1236851) /m/0b_6qj 1989 march madness (Q3994965) /m/0263cyj /m/0263cyj /m/0d29z chinese in southeast asia (Q779191) /m/0kft kurosawa akira (Q8006) /m/05ftw3 punjab university medical and dental college (Q1549932) /m/095zvfg /m/095zvfg /m/02zfdp ian mcshane filmography (Q234141) /m/06pjs shelton jackson lee (Q51566) /m/01s7w3 twister (1996 film) (Q683663) /m/011_vz wade worthington (Q320499) /m/03swmf ron silver (Q382036) /m/01_8n9 walsall swifts f.c. (Q19644) /m/09lq2c chief administration officer (Q1072283) /m/02x08c widmark, richard (Q320036) /m/026dd2b /m/026dd2b /m/01nfys pauline calf (Q316709) /m/03d9v8 shirley black (Q182580) /m/02sjp ennio moricone (Q23848) /m/030vmc when in hollywood, visit universal studios. ask for babs (Q51564) /m/04n7ps6 /m/04n7ps6 /m/01qqv5 stevens tech ducks (Q657222) /m/07pzc tu-pac (Q6107) /m/071zb st peter urban (Q6226) /m/063y9fp superman batman public enemies (Q2121056) /m/020fgy maurice-alexis jarre (Q105487) /m/05h5nb8 golden bear 1951-1959 (Q154590) /m/06rpd san diego chargers/comments (Q272220) /m/01x53m john maxwell coetzee (Q43293) /m/087pfc click (2006 film) (Q496654) /m/02qd04y warlords (Q699559) /m/01jgkj2 james ingram/comments (Q435789) /m/0kq9l fc sparta (Q209895) /m/01kx1j walther model (Q70536) /m/01vsqvs footer albums nico (Q44634) /m/0f2zc jacobus franciscus "jim" thorpe (Q221482) /m/012lzr fig tree hall, university of new south wales (Q734764) /m/029q3k notts county fc (Q19598) /m/04wddl sabrina (1954 film) (Q152493) /m/01fkxr ann rimes (Q120533) /m/01lsl jim gettys (villain) (Q24815) /m/07371 zuid-holland (Q694) /m/06hdk geography of rotterdam (Q34370) /m/04xbq3 american masters (Q2842976) /m/04grdgy /m/04grdgy /m/0lmgy maui county department of liquor control (Q111409) /m/0jbs5 maui (island) (Q188705) /m/04110b0 1954 major league baseball season (Q3240612) /m/02bj22 the mrs. clause (Q1469426) /m/0fpgp26 ice age: continental drift (Q35951) /m/030g9z dj sw1 (Q370102) /m/0qmpd christian tritsch (Q544024) /m/017510 blues country (Q649823) /m/0mgkg amazon japan (Q10846439) /m/05nyqk get carter (2000 movie) (Q1010099) /m/0dzst duke alumni association (Q168751) /m/056k77g fist of the north star: the movie (Q3814532) /m/0bn8fw mcconnohie, michael (Q3097943) /m/048n7 invasion of south korea (Q8663) /m/06rq2l allen s covert (Q1713151) /m/01rs59 /m/01rs59 /m/017mbb der leppar (Q182890) /m/023mdt margaret ruth "maggie" gyllenhaal (Q202381) /m/063576 gwu law (Q5546035) /m/0crs0b8 brighton rock (2010 film) (Q915845) /m/03d2k the george benson quartet (Q348459) /m/04znsy monique imes (Q229169) /m/0sxgh morgan state lady bears (Q1054905) /m/0353tm michael vs jason vs freddy (Q965859) /m/03c6vl tommy schlamme (Q3099573) /m/05hc96 s.c. beira-mar (Q688300) /m/08j7lh hak se wui (Q2131368) /m/09v51c2 hong kong film award for best film (Q4722629) /m/04wf_b dennis dexter haysbert (Q350208) /m/01399x Q2927648 /m/0cc5tgk /m/0cc5tgk /m/0bxjpy edivaldo da silva (Q204220) /m/06zsk51 lonesome dove (film) (Q2547946) /m/04kngf club alianza lima (Q572957) /m/0n85g virgin records ltd. (Q203059) /m/0g293 el pasito duranguense (Q727781) /m/02_wxh howie mandell (Q1190974) /m/01dyk8 eth-zuerich (Q11942) /m/0cbm64 paul jonas (Q134233) /m/0k39j casper, wyo. (Q223177) /m/068cn region of piedmont (Q1216) /m/0d3f83 aamir bouazza (Q359377) /m/03ywyk cheryl hynes (Q272917) /m/0y62n staten county (Q18432) /m/0jqb8 sullivan’s travels (Q1065711) /m/023w9s preston sturgis (Q546204) /m/02fz3w martin john christopher freeman (Q309486) /m/018t8f colorado college tigers (Q1111261) /m/0582cf dee bradley baker (Q837676) /m/017rbx royal college of music archives and museum of instruments (Q304985) /m/01y64 conservatoire (Q184644) /m/01w5gg6 strummer (Q310052) /m/0425kh incheon united f.c (Q482562) /m/03qy3l atco records (Q585643) /m/037w7r géraldine chaplin (Q230636) /m/0564mx jane espenson (Q289973) /m/0pk41 raitt, bonnie (Q234693) /m/019ltg botafogo futebol e regatas (Q80958) /m/02t8gf /m/02t8gf /m/015fsv michigan state normal school (Q1278221) /m/0581vn8 eugene khumbanyiwa (Q201819) /m/07tp2 the republic of uganda (Q1036) /m/09sxqk worcester city f. c. (Q1882874) /m/01x2tm8 parathasarathi srinivasan (Q381477) /m/03ys48 slovenska nogometna reprezentanca (Q172221) /m/02b16p lincoln city football club (Q18519) /m/01kt17 hume cronyn (Q395205) /m/01gkmx john cusack (Q106175) /m/01z452 being john malcovich (Q649165) /m/0ny1p che-chiang (Q16967) /m/0r22d history of salinas, california (Q488125) /m/0p9rz romeo and juliet (1968 movie) (Q517265) /m/04n2vgk kid cutty (Q299138) /m/01rmnp sakamoto ma'aya (Q235216) /m/031zp2 hnk hajduk (Q181216) /m/0d2fd7 majesco sales (Q403714) /m/01gct2 timothy duncan (Q193020) /m/0dx84s 2005 major league baseball season (Q2392515) /m/02m4t modern thought (Q38066) /m/04bbv7 sonosis (Q2468138) /m/04h4zx malaysia national soccer team (Q318922) /m/03wh8pq /m/03wh8pq /m/05xpms melora hardin/comments (Q269901) /m/02p8q1 unam pumas (Q1143000) /m/015m08 emilia‑romagna (Q1263) /m/0l30v county of shasta, california (Q156350) /m/017m2y heather d. locklear (Q229749) /m/0c5lg 👨🏾‍⚖️ (Q16533) /m/0dfrq seamus heaney (Q93356) /m/05y0cr cyrano de bergerac (1990 film) (Q128982) /m/05rwpb indie/alternative (Q42201) /m/013tcv baz luhrman (Q250545) /m/07c2wt levski plovdiv (Q1124841) /m/035hm gibilterra (Q1410) /m/0gd_s sam delany (Q438164) /m/0265vt nebula award for best novel (Q266012) /m/01t04r sanctuary records (Q1347984) /m/033s6 fleetwood mac (band) (Q106648) /m/04mhbh bing hitler (Q72867) /m/030xr_ colm feore (Q449679) /m/0jrxx palm beach county, fla. (Q484294) /m/068g3p daniel roebuck (Q552031) /m/0h14ln perfume (movie) (Q164813) /m/02bd_f university of torino (Q499911) /m/0m3gy john carpenter's halloween (Q221103) /m/023vrq grammy award for rap performance by a duo or group (Q4809486) /m/04vt98 ken annakin (Q470818) /m/0hr3g richard georg strauss (Q13894) /m/016j2t hank jr (Q552819) /m/0kv2r humboldt county, ca (Q109651) /m/0qzhw eureka, california (Q488702) /m/029ghl bo derek (Q229477) /m/0z2gq warren, ohio (Q862733) /m/05567m the mask: the official movie adaptation (Q219421) /m/02b0zd grimsby town f.c (Q18515) /m/07c98 flora and fauna of tamil nadu (Q1445) /m/09g90vz 16th screen actors guild awards (Q1510826) /m/02kbtf the hamilton college spectator (Q3113011) /m/03jht hermann hesse (Q25973) /m/059wk nintendo president (Q8093) /m/0hsqf kr-11 (Q8684) /m/06nrt saskatchewaner (Q1989) /m/02h53vq /m/02h53vq /m/04353 jonathon demme (Q48987) /m/0fthdk dakota fanning filmography (Q115541) /m/049lr karnatakam (Q1185) /m/059x0w tom rosenburg (Q7817415) /m/03_2td alan dale (actor) (Q350194) /m/0fr9jp bhhs (Q1185037) /m/0c02jh8 san luis futbol club (Q1103153) /m/0c921 audrey young (Q51547) /m/0140t7 phil collins (band) (Q144622) /m/0gwgn1k i hate you, dad (Q32535) /m/01qn8k mischa anne marsden barton (Q207458) /m/0btxr ashleigh judd (Q228645) /m/09bkc6 varese football club (Q8633) /m/08qmfm jeri taylor (Q275707) /m/06r4f /m/06r4f /m/024pcx kingdom of the english (Q179876) /m/034hwx frankie "four-fingers" (Q335160) /m/0kbwb psycho hose beast (Q1146194) /m/0qpqn golf club scottsdale (Q49221) /m/019lrz austrians in serbia (Q237534) /m/0ynfz fargo country club (Q34109) /m/02hy5d john james conyers, jr. (Q1370968) /m/019pkm bochco, steven (Q1350541) /m/0f2nf new haven,ct (Q49145) /m/01x4r3 lewis black (Q180252) /m/024_ql fc schalke 04 (Q32494) /m/03mstc hanna, william (Q263324) /m/05nlzq a pup named scooby-doo (season 4) (Q279189) /m/0f25y santa fé new mexico (Q38555) /m/0grjmv psych-pop (Q383982) /m/02xj3rw independent spirit award for best first screenplay (Q1171956) /m/02nq10 amsterdam institute for advanced labour studies (Q214341) /m/014knw stalag 17 (Q1356753) /m/09f5rr /m/09f5rr /m/01rv7x தமிழர் (Q173491) /m/04cdxc /m/04cdxc /m/0jdr0 harry lime (Q271830) /m/01g03q 6 feet under (tv series) (Q216919) /m/0f6rc nationalist-communist civil war (Q179975) /m/02x8kk sal buscema (Q723788) /m/02x8mt john buscema (Q1395905) /m/01r2c7 christopher columbus (director) (Q75079) /m/0bkmf clarkgable (Q71243) /m/0m6x4 olivia de havilland (Q95068) /m/04rvy8 ronald neame (Q460090) /m/0272vm northern ireland national football team (Q190978) /m/016kft sam waterston (Q284876) /m/04btyz heist film (Q496523) /m/02jkkv out of sight (Q571183) /m/02rsw the episcopal church (united states) (Q682443) /m/0272kv dino delaurentis (Q296796) /m/04xg2f being julia (Q814790) /m/04k8n fat (nutrition) (Q11367) /m/03rrdb peru national under-23 football team (Q212166) /m/04n32 satchmo (Q1779) /m/0ntwb tazewell county, illinois (Q494560) /m/01gjqb indian classical music portal (Q1323698) /m/059t8 nouvelle-ecosse (Q1952) /m/0fvyz bismarck, north dakota (Q37066) /m/024dzn /m/024dzn /m/01vhrz geffen, david (Q115055) /m/026_dq6 brody jenner (Q554091) /m/013gwb springfield mo (Q135615) /m/07ytt the holy see (Q237) /m/09v4bym /m/09v4bym /m/028mc6 tony randall (Q286717) /m/09y6pb next best thing (Q1247216) /m/05zrx3v gary lucchesi (Q5525494) /m/0fmc5 eastown, new york (Q487605) /m/0fb18 adirondaks (Q357546) /m/0p7pw alfie (1966 film) (Q402645) /m/05mlqj william james remar (Q441913) /m/099p5 pauling l (Q48983) /m/02m0sc /m/02m0sc /m/05nw9m pran sikand (Q3111264) /m/0309lm stephen root (Q464320) /m/04d817 s-pulse (Q823384) /m/01z8f0 chichester (city) (Q207639) /m/094tsh6 rick kline (Q2151576) /m/0c43g rafael (Q5597) /m/04lg6 /m/04lg6 /m/0gkgp charleston south carolina (Q47716) /m/09nhvw corbin reivers (Q4617) /m/03975z george fenton (Q920167) /m/0633p0 anna deavere smith (Q286777) /m/0l2wt county of santa barbara (Q108106) /m/02z6fs uom (Q1364464) /m/0d__c3 24th academy awards (Q917184) /m/025g__ japanese pops (Q131578) /m/0135k2 throtmanni (Q1295) /m/034hck lauri harjola (Q318712) /m/01vh18t raiford chatman davis (Q515632) /m/0r15k historic boystown - west hollywood (Q846421) /m/017lqp turk thrust 2 (Q134333) /m/024qwq i'm rick james bitch (Q248207) /m/01ycfv michael arnold kamen (Q156300) /m/0jhjl pku (Q16952) /m/0dv1hh leon cort (Q569028) /m/09m465 carl cort (Q1037408) /m/01r5xw /m/01r5xw /m/07m2y /m/07m2y /m/0_rwf rapid city (Q213325) /m/02rrsz penelope miller (Q235002) /m/01gsry /m/01gsry /m/0k9p4 anaheim canyon (Q49247) /m/01w58n3 gloria estefan & the miami sound machine (Q184697) /m/03qk20 faulty products (Q2265719) /m/01pr6n scunthorpe (Q913386) /m/0ct2tf5 /m/0ct2tf5 /m/03d6wsd suresh oberoi (Q3595455) /m/02l101 ralph rexford bellamy (Q364135) /m/0f7hw soul glo (Q493755) /m/0mfc0 john varley (author) (Q504805) /m/0h1yy (s)-b-amino-3-hydroxypropionic acid (Q183290) /m/0m40d traditional pop (Q1196752) /m/048z7l american jewry (Q678551) /m/032sl_ enemy of the state (movie) (Q177930) /m/02f93t john boorman (Q55277) /m/02cg41 2004 grammy (Q1542330) /m/0gvt53w the master (2012 film) (Q283586) /m/035bpp gotha (Q6986) /m/02qhlm pompey f.c. (Q19604) /m/04twmk john laroquette (Q471003) /m/025sqz8 zinc metabolism (Q758) /m/04wx2v melissa leo (Q229410) /m/012qjw vomitive (Q127076) /m/02qjpv5 gordon, mark (Q2417149) /m/01nmgc hongkong university (Q15568) /m/02qdrjx barry nottingham (Q726464) /m/01hgwkr k.d. lang and the reclines (Q230454) /m/039d4 gmu press (Q1411222) /m/06q83 software engineering (Q80993) /m/0f1sm harford, connecticut (Q33486) /m/04gm78f medical romance novel (Q718972) /m/03kmyy yale medical school (Q1961140) /m/0f7h2g nathan juran (Q588246) /m/06bzwt david morse (actor) (Q296370) /m/0bx6zs 52nd primetime emmy awards (Q777704) /m/05sdxx gil bellows (Q360313) /m/0c0zq brad dupree (Q25139) /m/013nws history of eau claire, wisconsin (Q122563) /m/0m0nq rooneyesque (Q104081) /m/0jt3tjf administrative divisions of kyrgyzstan (Q693039) /m/0yx_w rain man (song) (Q188845) /m/05ys0xf 1989 berlin film festival (Q469999) /m/05bmq namibian culture (Q1030) /m/034m8 cooperative republic of guyana (Q734) /m/0mpdw albemarle county board of supervisors (Q488653) /m/03kcyd kelly martin (Q235754) /m/01d38t best hard rock album (Q1542160) /m/01shhf lotus (dir en grey song) (Q379852) /m/03wkwg cardinal (color) (Q1426821) /m/05yvfd shakti kapoor (Q312789) /m/0dlv0 neu-delhi (Q987) /m/04mby baum, frank (Q207544) /m/02yy_j john waters (filmmaker) (Q314926) /m/04sv4 microsoft logo (Q2283) /m/0tcj6 kansas city, kansas (Q486472) /m/01x0sy bill faggerbake (Q591238) /m/0l2rj san diego-carlsbad-san marcos metropolitan area (Q108143) /m/02b1ng woking fc seasons (Q18528) /m/02pd1tf /m/02pd1tf /m/02b153 darlington 1883 f.c. (Q909189) /m/035nm general motors corporation llc (Q81965) /m/02cj_f george henry sanders (Q296491) /m/0f8j13 fear and loathing in las vegas (film) (Q23395) /m/05nrkb /m/05nrkb /m/063tn /m/063tn /m/09tlc8 rogue (relativity media) (Q1404450) /m/01npcy7 brian peter green (Q313311) /m/03tdlh lindsay ann crouse (Q238912) /m/0291ck baron beaufort von frankenstein (Q651923) /m/04fh3 /m/04fh3 /m/05g7tj tech death metal (Q1076092) /m/01xdxy al's toy barn (Q187266) /m/01s0l0 الانجليزية (Q9543) /m/07j87 tomatoes-on-the-vine (Q23501) /m/0h1sg alanine metabolism (Q218642) /m/01_c4 city of london wards (Q23311) /m/03mp8k sony/bmg (Q3001888) /m/01j6mff stephen curtis chapman (Q2000598) /m/0chgr2 au-vic (Q36687) /m/013bd1 david suchet (Q211831) /m/03bzyn4 sex in the city movie (Q381751) /m/07hgm talking heads (Q205001) /m/027pwzc list of major league baseball managers in 1985 (Q4273484) /m/0dprg lyoninfos (Q456) /m/02778tk matt hubbard (Q3247693) /m/0g5qmbz pina (film) (Q327027) /m/0bdg5 un/locode:gbbtm (Q22889) /m/04ns3gy /m/04ns3gy /m/0k3ll worcester county, ma (Q54093) /m/0v0d9 uxbridge (ma) (Q208193) /m/0738y5 santosh shivan (Q2615641) /m/01jnc_ the blues brothers 2000 (Q832515) /m/0c1jh weston llewmys (Q163366) /m/0gxb2 nauseated (Q186889) /m/0hgxh yellowing (Q133244) /m/04knh6 los cremas (Q19066) /m/05myd2 michael david rapaport (Q342252) /m/0h3mh3q american horror story (season 10) (Q53922) /m/0j2zj bqstqn bruins (Q194121) /m/0bxg3 fairy tales (Q699) /m/04fv0k marriott (Q1141173) /m/0283xx2 gypsy boy (film) (Q971446) /m/01pw9v sendakian (Q314771) /m/058w5 bonarota (Q5592) /m/0l339 cities of siskiyou county, california (Q156374) /m/01yqqv bradley university provost (Q897052) /m/03d3ht gundam seed destiny: the edge (Q286569) /m/03whyr john carter (movie) (Q235347) /m/01qrb2 /m/01qrb2 /m/01gbn6 kevin delaney kline (Q105817) /m/01rnly the cotton club (movie) (Q639387) /m/01kp_1t priscilla marie winans (Q538696) /m/0gwf191 think like a man (Q548148) /m/06l7jj sweden women's football team (Q726066) /m/01t_z princeps mathematicorum (Q6722) /m/0k4y6 seven years'war (Q33143) /m/02b6n9 dirk diggler (Q291170) /m/037q1z balcon, michael (Q1362106) /m/0mwvq chester county, pa (Q27840) /m/03w1lf film and television institute of india (Q1414326) /m/02c_wc शबाना आज़मी (Q465863) /m/03v0vd adam arkin (Q340213) /m/0mws3 delaware co. pa. (Q27844) /m/06zmg7m /m/06zmg7m /m/0330r elliott bay towers (Q209282) /m/035qgm greece fc (Q134925) /m/07s8qm7 fcn (Q15786) /m/0_24q history of scranton, pennsylvania (Q271395) /m/01hcj2 christina applegate filmography (Q188280) /m/0ngy8 washington county, minnesota (Q485408) /m/04l5d0 norfolk admirals (ahl) (Q1438735) /m/09k0f fidel-castro (Q11256) /m/028v3 private eyes & detectives (Q186424) /m/0gfw56 liberty professionals (Q603633) /m/03_8kz lou grant (television series) (Q421733) /m/02rybfn harold rosson (Q1368602) /m/02b15x kidderminster harriers f.c. (Q18518) /m/0gp_x9 santanam (Q46683) /m/0kwgs madison co., al (Q493715) /m/0q8sw huntsville, alabama (Q79860) /m/027g8gr /m/027g8gr /m/01dycg square enix holdings (Q207784) /m/07dfk tokio (Q1490) /m/0hpv3 s. daniel abraham israel program (Q1048851) /m/0h10vt eddie redmayne on screen and stage (Q28288) /m/07wqr6 bones tv (Q207803) /m/0hdx8 culture of the gambia (Q1005) /m/027j79k chris sheridan (writer) (Q5108046) /m/0hz6mv2 marley (film) (Q1189617) /m/04258w samuel fuller (Q262479) /m/01qklj jeffery gordon (Q313565) /m/0mx0f yamhill county (Q484346) /m/0194xc kennedy, edward (Q134549) /m/05gm16l saskatchewan university (Q1514848) /m/05cqhl david milch (Q1175673) /m/025scjj julius caesar (1953 movie) (Q734950) /m/01j851 ferrah leni fawcett majors (Q102341) /m/037s5h harvey lee yeary (Q454088) /m/07wlt craigdarroch residences (Q1458113) /m/02qk2d5 /m/02qk2d5 /m/01nhkxp linda perry (Q236125) /m/049t4g ian bannen (Q499097) /m/03mv0b arthur stanley jefferson (Q72869) /m/054gwt real world road rule challenge (Q902421) /m/025st2z /m/025st2z /m/0l2sr stockton metropolitan area (Q108499) /m/01l1ls burnett, carol (Q255565) /m/01c7p_ john kander (Q1685876) /m/01k53x rebecca romijn stamos (Q202792) /m/0cg39k /m/0cg39k /m/013sg6 vincent leonard price (Q219640) /m/0fg6k l-town (Q203889) /m/02cw1m hollies albums (Q282925) /m/04btgp /m/04btgp /m/024jvz 2008 united states presidential election controversies (Q45578) /m/07wcy presidential election usa (Q47566) /m/03f4k jacob gershvin (Q123829) /m/02flqd /m/02flqd /m/01rgr pierre charles baudelaire (Q501) /m/0427y joey lewis (Q294927) /m/025b3k elmore john leonard jr. (Q336519) /m/0rrwt sarasota (fl) (Q491540) /m/07l450 the last king of scotland (film) (Q176826) /m/039n1 hegelian (Q9235) /m/012x2b simon jonathan pegg beckingham (Q238464) /m/0285m87 reino de portugal (Q45670) /m/012ycy eonmckai (Q455545) /m/01bh6y jean simmons/comments (Q107656) /m/02frhbc portland (oregon, united states) (Q6106) /m/0dbbz bernardo bertolucci (Q53009) /m/02ngbs tsxu (Q626591) /m/06wvfq baby bhanurekha (Q465826) /m/02t8yb playback singing (Q1755412) /m/0c4y8 tennesse williams (Q134262) /m/0cq8nx mrs miniver (film) (Q478371) /m/031n5b eastman school of music (Q1278284) /m/05br2 subdivisions of nauru (Q697) /m/01q7h2 the firm (movie) (Q821692) /m/041b4j sophia kosow (Q231595) /m/045r_9 early frost (Q4749872) /m/083tk revitalization of welsh (Q9309) /m/05hyzx gil vicente f.c (Q926438) /m/0h1tg l-glutamic acid (Q181136) /m/02l424 dorothy day center for faith and justice (Q1849843) /m/07tcs upsalla (Q25286) /m/057n_g philippe fostier (Q732002) /m/02wwwv5 that's my shit (Q351055) /m/0cf_n augusta maine (Q28206) /m/02wmy las malvinas (Q9648) /m/01qf54 interplay value products division (Q628249) /m/0mwxl county of butler, pennsylvania (Q488672) /m/02kgb7 playboy playmates (Q728711) /m/0j6j8 british carnegie medal (Q1043985) /m/012yc acoustic rap (Q438503) /m/09z1lg calle 13 (artists) (Q1027200) /m/0mhhw haut rhin (Q12722) /m/07gbf list of references to twin peaks in popular culture (Q2085) /m/05z8cq kff (Q644157) /m/0121h7 /m/0121h7 /m/0d7vtk heros - tv series (Q83401) /m/02js9 erotism (Q181001) /m/017959 dire straights (Q50040) /m/0gps0z nicole scherzinger songs (Q167696) /m/0gkr9q outstanding directing for a drama series (Q583972) /m/01337_ james harrison coburn iii (Q4227) /m/02_nsc days of thunder (Q603696) /m/0c_gcr eddie marsan (Q45647) /m/02s6tk hednesford town f.c. (Q18293) /m/02yw0y neoclassical (metal) (Q725011) /m/058kh7 she's having a baby (Q910178) /m/01b9z4 joe pantoliano (Q296883) /m/01336l oriental americans (Q727928) /m/03g9xj smallville beginnings (Q180228) /m/0q1lp mike rosenbaum (Q311613) /m/0ylgz brazen nose college, oxford (Q899030) /m/0ddbjy4 dredd (film) (Q276772) /m/0kbn5 warner blake (Q1333848) /m/01n8qg soloman islands (Q685) /m/02ct_k david hyde-pierce (Q373976) /m/04tnqn tracie morgan (Q14542) /m/07jqjx oliver twist (2005 film) (Q861202) /m/01nm8w ghent university (Q1137665) /m/0c4qzm roland anderson (Q2162645) /m/031y2 folrenz (Q2044) /m/01xg_w meagan good (Q257286) /m/01twmp best buds (film) (Q369174) /m/05jx5r cs sedan-ardennes (Q608988) /m/06rf7 schleswig holstein (Q1194) /m/01syr4 alain fabien maurice marcel delon (Q106529) /m/0vg8x bloomfield hills, michigan (Q885355) /m/0c4hx0 37th academy awards (Q917138) /m/025ljp mad tv (Q1064766) /m/01w613 /m/01w613 /m/0306bt wake up, i'm fat (Q234514) /m/041bnw nonesuch label (Q1849138) /m/0b7l1f taiwo leo awuonda atieno (Q1625059) /m/04135 jean maurice eugène clément cocteau (Q83158) /m/01c979 /m/01c979 /m/01pf21 macys inc. (Q5479360) /m/02f4s3 siuc (Q1472347) /m/07jq_ terrorists and terrorisim (Q7283) /m/0fqz6 acadian-creoles (Q686949) /m/01c9x britishlabourparty (Q9630) /m/0948xk this is paul/books/tony blair (Q9545) /m/01qg7c barry sonnenfield (Q317567) /m/080ntlp diplomat (Q193391) /m/034rd9 carren learning (Q195041) /m/0c_md_ jerry ford (Q9582) /m/01bbwp keith allen (actor) (Q725519) /m/02p8v8 fred d. thompson (Q298016) /m/0h95b81 top chef (Q2298323) /m/020vx9 1st moscow university (Q13164) /m/034lk7 history of staunton, virginia (Q502250) /m/099ks0 yash raj films (Q1696916) /m/0g8fs usn a (Q559549) /m/030wkp kennan thompson (Q552900) /m/02pt27 hackett, steve (Q315811) /m/0l4h_ documentary style (Q459435) /m/05z01 plymouth argyle f.c (Q48947) /m/01fj9_ wexford (Q184599) /m/0czmk1 ross turnbull (Q245022) /m/031f_m ff7ac (Q387674) /m/0b1t1 london ontario (Q92561) /m/01l_yg christopher lloyd (Q109324) /m/0h1x5f little miss sunshine (film) (Q192073) /m/01gssz 14th u.s. congress (Q4550107) /m/06vqdf norman prescott (Q3343707) /m/05w88j charles s dutton (Q706513) /m/0mxbq roseburg, or micropolitan statistical area (Q484395) /m/01fchy ministry (band) (Q425772) /m/0dr5y john h. carpenter (Q95008) /m/061xhr phytosterols (Q412457) /m/01h4rj charles langford modini stack (Q355153) /m/03bdm4 george william crisp (Q367073) /m/06cddt jason sudeikas (Q14539) /m/0mq17 tarrant county, tx (Q110412) /m/0f2s6 city of fort worth (Q16558) /m/0fhnf salzburg state (Q43325) /m/0dcz8_ hellboy: the golden army (Q651196) /m/015cbq sir bob hope (Q94081) /m/02hh8j claude berri (Q298905) /m/06l32y oyez review (Q2124886) /m/0417z2 mark mancina (Q534151) /m/03mg3l lex lovech (Q270420) /m/012lzc /m/012lzc /m/01fd26 sherbrooke, canada (Q139473) /m/026h21_ /m/026h21_ /m/02vnp2 catholic university, washington (Q179036) /m/0g39h queensland (australia) (Q36074) /m/01sgmd cairns (Q189133) /m/0ckcvk levine, james lawrence (Q336388) /m/0kn3g ralph van williams (Q207947) /m/0261m caribbea (Q664609) /m/01p8s iso 3166-1:cr (Q800) /m/01q3_2 kenny clark loggins (Q435965) /m/05z55 the history of pasta (Q178) /m/0h1tz l-histidin (Q485277) /m/0m2b5 show low, az micropolitan statistical area (Q58694) /m/01wxdn3 j, david (Q5235388) /m/0h30_ northampton, united kingdom (Q192240) /m/0d0bsj maccabi netanya fc (Q426513) /m/03rx9 isac asimof (Q34981) /m/06qjgc leo messi foundation (Q615) /m/02bh_v seleccion argentina (Q79800) /m/019vsw goulash (magazine) (Q1247373) /m/01kxxq /m/01kxxq /m/0d6484 laurence mark (Q1808004) /m/0gm2_0 the lookout (2007 film) (Q931158) /m/01jpqb lee and thomas beam music center (Q2302311) /m/0bzh04 sundowns fc (Q784965) /m/01g4bk takeshi kitano (Q26372) /m/0fsb_6 /m/0fsb_6 /m/01_2n list of coronation street episodes (Q945030) /m/016zgj hick rock (Q438476) /m/0nj0m washtenaw county, mi (Q137916) /m/09p5mwg saw vii 3d (Q676284) /m/02v92l yamaguti mituo (Q355173) /m/026670 ghoulardi film company (Q25132) /m/03wy8t life without zoe (Q977372) /m/051gjr koninklijke beerschot antwerpen club (Q646079) /m/06br6t anco (Q547272) /m/02hyt un/locode:usdas (Q668546) /m/05nwr orkney (islands council area of scotland) (Q100166) /m/0bwjj boston celtic (Q131371) /m/0sxlb prizzi's honour (Q460664) /m/03f1zhf erebus pictures (Q207197) /m/02p7xc /m/02p7xc /m/08624h gulshan grover (Q3489680) /m/042f1 napoleon of the stump (Q11891) /m/0bm70b tony award for best direction of a musical (Q377293) /m/0105y2 lubbock, tx (Q49273) /m/027ybp csu slo mustangs (Q1026846) /m/027y151 willie d. burton (Q2581424) /m/0641kkh mtv movie award for most desirable female (Q3841639) /m/02knxx death of old age (Q3739104) /m/02ptczs rosemary's baby (film) (Q607179) /m/02znwv raoul walsh (Q72756) /m/0dc7hc the pink panther 2 (2008 film) (Q815681) /m/02wr6r nautical/september/18/selected article (Q373968) /m/0djbw rabbi and rabbinism (Q133485) /m/01kgg9 rose joan blondell (Q242729) /m/09ggk /m/09ggk /m/0ct_yc justin cochrane (Q1714175) /m/023zsh yohan griffith (Q295974) /m/0f276 hayden christenson (Q192812) /m/0cwtm goldie hawn (Q188459) /m/01g969 kurt russell filmography (Q103157) /m/0517bc emma roberts (Q228598) /m/02tn0_ anthony d.l. scott (Q193648) /m/06bc59 young hannibal (Q3114616) /m/06y_n south park studios.com (Q16538) /m/01b7h8 american idol rules (Q201052) /m/02b71x quietstorm (Q2746831) /m/0g_zyp love affair (1994 film) (Q2070564) /m/016l09 the white stripes (Q268160) /m/052fbt provincia di milano (Q15121) /m/023jq1 doctor who: the writer's tale (Q361981) /m/07d3x terry prattchett (Q46248) /m/05v_8y betainic (Q424763) /m/03c5f7l ray mckinnon (actor) (Q2073496) /m/010xjr harris, richard (Q106775) /m/05lbzg first scottish war of independence (Q3242848) /m/03z8bw équipe du honduras de football (Q180187) /m/027fwmt the wiz (film) (Q428158) /m/08xvpn the color purple (movie) (Q223299) /m/015qy1 char's counter attack (Q1363770) /m/02h659 winter park institute (Q2164222) /m/06y611 annie james (Q729782) /m/07vfy4 water (2005 movie) (Q617395) /m/02bm1v t·hq (Q580866) /m/02tk74 natasha richardson (Q212545) /m/0141kz sir john mills (Q315728) /m/0139q5 maggie cheung (Q234778) /m/034q81 punjab university, india (Q567899) /m/075_t2 charda punjab (Q22424) /m/0f1jhc andy heyward (Q2783694) /m/01ypsj can4 cung1 (Q270672) /m/025rzfc Q7482779 /m/033jj1 sean hayes (actor) (Q223033) /m/0165v republic of bolivia (Q750) /m/03q5dr frances fisher (Q35011) /m/0ck6r pennard primary school (swansea) (Q23051) /m/02184q frederick ironside (Q344973) /m/056jrs helsingborgs (Q207503) /m/04h5_c puerto rico national soccer team (Q477452) /m/019q50 kyōto daigaku (Q336264) /m/0gk7z chantry court (Q459506) /m/04knvh shamrock rovers fc (Q203976) /m/058vfp4 henry grace (Q1606794) /m/07n39 timothy leary terminus (Q211731) /m/05bnq8 gund hall (Q3128016) /m/01ckcd grammy award for best rock performance by a duo or group with vocal (Q1542205) /m/06bvp /m/06bvp /m/01m7pwq aldo nova (Q717638) /m/0xv2x indust rock (Q968730) /m/01xlqd pink ladies (Q267721) /m/03y9p40 /m/03y9p40 /m/01c7qd fred ebb (Q1274807) /m/02hqt6 portland pirates (Q1543744) /m/029rk david hillbert (Q41585) /m/0qdwr adolph zukor (Q361208) /m/0333t sergeant hartman (Q243439) /m/0gy7bj4 anna karenina (2012 film) (Q80204) /m/02p0tjr vaflol (Q18225) /m/02ndj5 mars volta group (Q484993) /m/0bbxd3 greenwalt (Q2413805) /m/0cskb buffy, the vampire slayer (television) (Q183513) /m/0m4yg guildhall school (Q1419737) /m/0fxky3 /m/0fxky3 /m/0dzt9 richmond, virgina (Q43421) /m/0187nd university of missouri – columbia (Q579968) /m/01wk7ql joss stone (Q217280) /m/02nrdp dom deluise (Q348209) /m/0ttxp towson, md (Q755615) /m/04jvt trotskiy (Q33391) /m/087_xx hapoel haifa (Q455991) /m/02qm5j protopunk (Q27190) /m/0gthm eugene luther vidal, jr (Q167821) /m/0d9t0 d-fructose (Q122043) /m/075k5 spanish war (Q10859) /m/059qw nordsøen (Q1693) /m/056xkh get shorty 2 (Q572903) /m/0g57wgv the perks of being a wallflower (film) (Q675468) /m/02hzx8 vizekusen (Q104761) /m/031hxk police invasion of uct campus (Q951305) /m/022q4j cesar julio romero, jr. (Q443585) /m/0p9z5 public library of brookline (Q49142) /m/02t_y3 bruce davison (Q355163) /m/04gd8j smc (Q1033692) /m/0cgzj sir sidney poitier (Q104049) /m/08jtv5 michael bell (actor)/comments (Q925891) /m/0134pk /m/0134pk /m/02py_sj daytime emmy award for outstanding lead actor in a drama series (Q3019364) /m/018txg nîgata prefecture (Q132705) /m/055sjw ken keeler (Q1339527) /m/04ynx7 missing (Q1637139) /m/01dfb6 european american bank (Q219508) /m/01nty grand cayman islands (Q5785) /m/05683cn walter h. tyler (Q2544572) /m/064ndc james robert "radio" kennedy (Q82352) /m/06rk8r fcrbs (Q994811) /m/0k33p un/locode:gbbhm (Q2256) /m/01pcj4 st. stephen's college, new york (Q49109) /m/0jpkw the university of waterloo (Q1049470) /m/01h0kx madchester (Q502886) /m/04vrxh c.e. hugo (Q706641) /m/0174qm gildredge house (Q208262) /m/02w9s færøerne (Q4628) /m/0l14_3 /m/0l14_3 /m/02m501 mickey roarke (Q178552) /m/0kvt9 san bernardino county (Q108053) /m/034qg firearms (Q12796) /m/0bx9y montgomery county, md (Q488659) /m/022411 marcia harden (Q228931) /m/01x1fq angelo badalamenti (Q357014) /m/03cws8h /m/03cws8h /m/0dmn0x the livesof others (Q153882) /m/0ccqd7 fred tatasciore (Q847133) /m/0p54z history of county limerick (Q178283) /m/0kv4k inyo county (Q109670) /m/0vjs6 🕵🏻‍♀️ (Q842782) /m/09jg8 hepatitis antibodies (Q131742) /m/0c4hnm 38th academy awards (Q917067) /m/0qmfk tess (film) (Q1326026) /m/0fh2v5 children of men (Q221090) /m/0j8f09z beasts of the southern wild (Q166462) /m/034ks galileo galilaei (Q307) /m/02qx1m2 henry blanke (Q97511) /m/028kb ㋋ (Q126) /m/0qb0j shandong dialect (Q43407) /m/01j922 banaras (Q79980) /m/0b_6lb 1984 ncaa tournament (Q3994962) /m/026wlnm duke university men's basketball (Q4171772) /m/02zbjwr jung sungryong (Q350199) /m/02yr1q drake (Q5305629) /m/01p896 state university of new york - binghamton (Q863813) /m/0fc_9 oneida county, new york (Q115043) /m/048yqf elektra (2005 movie) (Q610159) /m/025tkqy calcium ions (Q706) /m/031bf1 stanley lloyd kaufman, jr. (Q183347) /m/01j_jh bristol rovers (Q48925) /m/052m7n royal victorian chain (Q2171187) /m/0cmpn king george v (Q269412) /m/0b6f8pf bucky larson: born to be a star (Q2665674) /m/0bvhz9 the 79th academy awards (Q213699) /m/0284h6 millwall f. c. (Q19487) /m/05th69 cbs corp (Q950380) /m/03yk8z jennifer anne ehle (Q235721) /m/031sg0 colleen dewhurst (Q253916) /m/02s9vc u.s.a. men's national soccer team (Q164134) /m/0g8g6 northumbreland (Q23079) /m/016z1c irving g. thalberg (Q438472) /m/095l0 bristol (Q23154) /m/06l9n8 mike epps (Q311962) /m/0jm3b new york freighters (Q572134) /m/05f5rsr 1982 cannes film festival (Q897828) /m/0g02vk parkinsons' disease (Q11085) /m/09nz_c frankie russel faison (Q943589) /m/0133_p '60s punk (Q211573) /m/01gp_d torne valley dialect (Q1412) /m/0jmjr clippers, los angeles (Q976396) /m/0rj4g hollywood beach, fl (Q234453) /m/03jqfx ottoman wars in europe (Q698985) /m/03l5m1 medieval hungary (Q171150) /m/024lt6 margaret yang (Q1347393) /m/03qkgyl /m/03qkgyl /m/09kr66 russian americans (Q1140588) /m/02z1yj ellen barkin (Q229234) /m/03qpp9 /m/03qpp9 /m/015wc0 bernard herman (Q296804) /m/01kvrz smith university (Q49204) /m/0mwx6 johnstown, pa msa (Q490077) /m/02kd0rh industrene (Q209685) /m/0gppg anne inez mccaffrey (Q233046) /m/023ny6 mcmahon and tate (Q1044635) /m/054fvj /m/054fvj /m/06szd3 /m/06szd3 /m/048fz greater corea (Q18097) /m/016y3j atmospheric indie (Q272167) /m/0bzrsh 1986 march madness (Q2948724) /m/0f14q majel barett-roddenberry (Q232917) /m/0r4wn carlsbad, ca (Q491099) /m/02qjb_ kv mechelen (Q113000) /m/04gvt5 tuesday weld (Q239818) /m/0bx_hnp george harrison: living in the material world (Q1139311) /m/0mx48 marion county, or (Q484408) /m/0g476 liza manelli (Q14441) /m/01gz9n arthur grossman (Q709413) /m/0dttf adis abeba (Q3624) /m/0fjcgg tuvalu fc (Q733047) /m/044lbv angola national team (Q192828) /m/0k9ts delta airlines (Q188920) /m/01s3v cardiff/caerdydd (Q10690) /m/0zrlp un/locode:uswct (Q1010244) /m/02s2ys wales fc (Q180857) /m/03cvv4 blair underwood (Q525304) /m/010t4v city of tacoma (Q199797) /m/0b_6pv 1987 ncaa men's division i basketball tournament (Q3994964) /m/03d5m8w /m/03d5m8w /m/0grd7 so'ton (Q79848) /m/0428bc carlo biagio anthony gazzara (Q296287) /m/07tlfx the assassination of jesse james by the coward robert ford (film) (Q388950) /m/04l_pt chinese in thailand (Q2408653) /m/0459q4 /m/0459q4 /m/03hp2y1 the soloist (film) (Q1196958) /m/05qzv dickian (Q171091) /m/02q4ntp /m/02q4ntp /m/01f1ps hukusima prefecture (Q71707) /m/094vy yorkshire (england) (Q163) /m/0144wg doncaster, england (Q58900) /m/037c9s bass (vocal range) (Q27911) /m/0pz6q albert-ludwigs-universitaet freiburg (Q153987) /m/01d650 university of kent at medway (Q1516684) /m/02j7k narrow seas (Q34640) /m/03z0l6 nick broomfield (Q612007) /m/048t8y criterion.com (Q1204187) /m/0kb1g sergeant york (film) (Q939424) /m/0kst7v ashish vidyarthi (Q3595438) /m/0jm9w indianapolis pacers (Q170329) /m/03cwwl resident evil : apocalypse (Q161400) /m/027jw0c neue constantin (Q564960) /m/04vq3h paul guilfoyle (Q464744) /m/01_wfj porcupine tree sampler 2008 (Q213923) /m/03j0d lovecraft circle (Q169566) /m/01p47r scott baio (Q1276587) /m/033_1p beverly d'angelo (Q234551) /m/084n_ weiman republic (Q41304) /m/04vmqg dougray scott (Q452788) /m/01jrs46 mother and father (jerome kern song) (Q313270) /m/03_9x6 haiti national football team (Q236006) /m/015dqj maximillian schell (Q153018) /m/0cbvg napoleonic warfare (Q78994) /m/01flgk napoleonic france (Q71084) /m/0hn821n 2012 primetime emmy awards (Q1338977) /m/02wk_43 /m/02wk_43 /m/03j3pg9 rich yung society clothing (Q349420) /m/06f5j general lee (Q165557) /m/012qdp military officer (Q189290) /m/02b17f oxford utd (Q48946) /m/017vb_ the nine network (Q1432195) /m/026fmqm list of major league baseball managers in 2000 (Q516947) /m/017dtf mahō kishi rayearth (Q696236) /m/0r4z7 escondido, california (Q372454) /m/04x8cp universidad autonoma de guadalajara (football) (Q1023185) /m/01tt27 irem (company) (Q617752) /m/020mfr video game industry practices (Q941594) /m/0pr6f children's tv series (Q1273568) /m/0b2km_ world trade center (2006 film) (Q828547) /m/02yygk jackson, randy (Q337521) /m/03m6zs fc zenit-d saint petersburg (Q29108) /m/06kl0k বিদ্যা বালান (Q159166) /m/026rsl9 latin grammy award for best male pop vocal album (Q6496361) /m/02vzpb thirteen going on thirty (Q224187) /m/03__77 uzbekistan national football team (Q487321) /m/04x8mj pafa (Q1952033) /m/0fg_hg dalip tahil (Q3012414) /m/04y0hj bipasha basu (Q158214) /m/0jnq8 la kings (Q203008) /m/0222qb italian ethnic groups (Q50001) /m/03t4nx archibold alexander (Q909696) /m/05byxm j records (Q121698) /m/06rkfs franklin & marshall diplomats track and field (Q664881) /m/0ftqr nobuo uematsu (Q312327) /m/07z4p5 lee garmes (Q1370195) /m/027jq2 emir kusturica films (Q94882) /m/09bkv westminster, london (Q189960) /m/0fb2l marillon (Q678410) /m/01w65s chicago-joliet-naperville, il-in-wi metropolitan statistical area (Q1754965) /m/01_k7f klawz (Q1783608) /m/041y2 lippmann-dewey debate (Q11030) /m/02gqm3 never say never again (film) (Q180279) /m/09tcg4 angela's ashes (film) (Q1211143) /m/01fx4k women in love (film) (Q630132) /m/01hmb_ vincent donofrio (Q320052) /m/0347xz dennis franz (Q435271) /m/01p0mx wacker burghausen (Q161034) /m/04mhxx georgine ferrera (Q219402) /m/0n5d1 monmouth county sheriff's office (Q502424) /m/02v992 tasmanian university (Q962011) /m/033cw donald stacy (Q312641) /m/06xl8z esbjerg fb (Q389879) /m/039xcr thomas mitchell (actor) (Q317026) /m/0xszy elizabeth city, essex county, new jersey (Q138311) /m/02jxrw frida (movie) (Q35738) /m/0kvsb mira nair (Q466320) /m/01qs54 history of county meath (Q183544) /m/0j95 alberta's (Q1951) /m/0b455l gary ross (Q598675) /m/0pm85 twinkle daddy (Q10926) /m/02rjz5 uc sampdoria (Q1457) /m/0mw5x providence county (Q54253) /m/01j7pt comedy central (Q131439) /m/0gg4h circulatory arrest (Q202837) /m/033gn8 /m/033gn8 /m/0gl6x technology and medicine imperial college of science (Q189022) /m/099bhp mickey's magical christmas: snowed in at the house of mouse (Q656396) /m/05ggt_ eileen brennan (Q238919) /m/0239zv devanand (Q320115) /m/0kc6 andy warhol/comments (Q5603) /m/05q9g1 sampooran singh kalra (Q468339) /m/043n1r5 yentl (film) (Q780469) /m/08z39v david watkin (cinematographer) (Q1177096) /m/0bxtyq bruce broughton (Q991563) /m/065ym0c detective dee and the mystery of the phantom flame (Q2412823) /m/01_gv associazione calcio chievo (Q2037) /m/05zwrg0 never let me go (2010 film) (Q927826) /m/0bmj62v 2010 toronto international film festival (Q3950833) /m/07mkj0 burnett guffey (Q509671) /m/02fbb5 new zealand cricket team (Q1143797) /m/096lf_ ty burrell (Q248179) /m/014vm4 hang-tcheou (Q4970) /m/029v40 bond 16 (Q309086) /m/07g9f x akták (Q2744) /m/03jxw melville, herman (Q4985) /m/048tgl josh freese (Q451076) /m/04pp9s devine, loretta (Q257271) /m/09n5b9 state secretary of state (Q533501) /m/01wdcxk the world of donovan (1972 album) (Q317427) /m/0267wwv jesus christ superstar (1973 film) (Q898465) /m/0tt6k cumberland, md (Q754868) /m/0cymln cp3 (Q46040) /m/0h1_c l-(+)-alpha-aminoisovaleric acid (Q483752) /m/0fydw antwerpt (Q12892) /m/02qwgk dalhousie law school (Q7432967) /m/01wp_jm hicks, billy (Q35851) /m/031b91 /m/031b91 /m/07r_dg abigail breslin (Q201418) /m/0177sq virginia commonwealth u (Q2303536) /m/0bs5f0b life as we know it (film) (Q860734) /m/016lj_ sepultura (Q239074) /m/05w5d pentacostalism (Q483978) /m/0k696 daphne-fairhope-foley, al msa (Q156163) /m/0sw62 cartwright, nancy (Q229211) /m/07h1q theodor wiessengrund adorno (Q152388) /m/04xm_ weberian perspective (Q9387) /m/01kc4s cambridge united football club (Q18509) /m/03qwyc touch and go (Q1853623) /m/0bmhn on the waterfront (Q211372) /m/01tjsl eastern cape (Q130840) /m/02wyc0 abhishek baccan (Q187058) /m/071xj sanjavit ray (Q8873) /m/0p5vf member of british parliament (Q486839) /m/07j9n 30-year war (Q2487) /m/01fvhp stormaktstiden (Q215443) /m/085q5 wally shawn (Q311068) /m/01f9r0 drama-documentary (Q622370) /m/026k4d 4ad records (Q238095) /m/01p8r8 judgemental films (Q434585) /m/0f612 malone, ny µsa (Q115247) /m/01xllf danny trejo (Q223830) /m/03q3x5 jessica walters (Q259468) /m/0190xp power rock (Q57143) /m/04bsx1 dean saunders/comments (Q545303) /m/09wnnb national treasure book of secrets (Q388360) /m/0n58p union county, new jersey sheriff's office (Q502459) /m/0dg3jz charles lemaire (Q506014) /m/01c7j1 wikimedia economy (Q180) /m/0nvg4 kane county, illinois (Q486112) /m/0m5s5 sttvh (Q471842) /m/0fs9jn steven mchattie (Q1321265) /m/0257wh grammy award for best instrumental soloist performance (Q3774292) /m/0bbvr84 kiernan shipka (Q439939) /m/0fqjhm penn dayton badgley (Q311750) /m/06qxh star trek/star trek enterprise (Q380519) /m/0sjqm rockford il (Q233892) /m/02r7lqg /m/02r7lqg /m/0h3tv valencia (Q8818) /m/016wvy john cale (Q45909) /m/0p76z tull (Q192353) /m/01p7b6b ralph burns (Q1966681) /m/04z4j2 ned kelly (2003 movie) (Q391542) /m/02h9_l toxi braxton (Q155412) /m/0dcdp county of albany (Q108408) /m/05nrg oceanians (Q538) /m/05strv herskovitz, marshall (Q925604) /m/05vtbl timm, bruce (Q369717) /m/01w0yrc jason scott greenspan (Q311754) /m/04xzm ershiba hua sheng (Q5816) /m/04y0yc non stop fun (Q2017182) /m/03r8v_ filmfare award for best actress (Q1414482) /m/0n6ds sebastian valmont (Q64151) /m/026hh0m invasion film (Q652592) /m/025s89p animated television series (Q581714) /m/06y9bd shonda rimes (Q242329) /m/01ggc9 rob lowe (Q296505) /m/0n5y4 concord, nh msa (Q54440) /m/013nv_ appleton, wi (Q94928) /m/019fnv douglas shearer (Q8651) /m/0d6yv brighton ferry (Q131491) /m/01j53q tlc (tv network) (Q130866) /m/07ddz9 paul dooley (Q708097) /m/0bgv4g punt returner (Q2438510) /m/02f79n best video from a film (Q1161109) /m/01_r9k sons of oprah (Q1524124) /m/026w398 /m/026w398 /m/05_zc7 govinda ahuja (Q1992008) /m/01kqq7 list of awards and nominations received by wild at heart (Q751382) /m/0346h un/locode:gtgua (Q1555) /m/03fgm grinnellplans.com (Q2982991) /m/01gqg3 the 9 years' war (Q152218) /m/0gmkn stirling, scotland (Q182923) /m/01tntf /m/01tntf /m/07nvmx grella (Q310965) /m/020hyj luis miguel (Q1069140) /m/01vzxld sheena easton (Q465977) /m/04228s road trip film (Q628165) /m/0164b belieze (Q242) /m/04rg6 macksennett (Q317574) /m/01zhp /m/01zhp /m/03_2y wú yusen (Q55432) /m/05t0zfv bleach: fade to black - i call your name (Q1363909) /m/044mvs somerhalder (Q130447) /m/02_t6d liechtenstein national football team (Q186690) /m/0j11 iso 3166-1:aw (Q21203) /m/0crd8q6 '' horrible bosses '' (Q908556) /m/01sbv9 madagascar (soundtrack) (Q174555) /m/09n70c djoko (Q5812) /m/0356gk france–croatia football rivalry (Q134479) /m/0hkwr high fiber (Q215210) /m/02rh_0 slbenfica (Q131499) /m/013nky king's college cambridge (Q924289) /m/01wqpnm list of billy idol awards and nominations (Q73437) /m/02k6hp cardiovascular disease (Q389735) /m/02jxsq harihar jethalal zariwala (Q1974722) /m/0bm2nq stranger than fiction (2006 film) (Q151898) /m/0x2fg homicides (Q149086) /m/02r38 sir edward william elgar, 1st baronet, om, gcvo (Q179631) /m/0mch7 /m/0mch7 /m/0xxc university of acadia (Q337382) /m/01_3rn sixth coalition (Q138107) /m/0p9xd free-jazz (Q211781) /m/09rfpk war and peace (tv) (Q7968572) /m/023p29 shangri la studio (Q587361) /m/0frz0 /m/0frz0 /m/0rgxp un/locode:usilg (Q174224) /m/02pzck jamie h. kennedy (Q355133) /m/010tkc forest park (everett) (Q392599) /m/08k1lz richard riehle (Q1889124) /m/025y9fn david nutter (Q1279660) /m/04h68j james wong (filmmaker) (Q698951) /m/03818y atlanta lions (Q4572296) /m/09py7 marshall zhukov (Q124617) /m/02j4sk peter graves (actor) (Q156532) /m/02klny toledo university (Q2302319) /m/07t3x8 raj babbar (Q3595480) /m/040v3t world fantasy award-short fiction (Q3405406) /m/02_gzx leningrad state conservatory (Q178416) /m/02tc5y hugh michael horace dancy (Q314603) /m/0466s8n never kilt a man (Q738052) /m/0htcn king wallis vidor (Q51133) /m/01nbq4 steakgate (Q216160) /m/0tgcy covington, kentucky (Q747599) /m/0d2rhq rockmentary (Q430525) /m/076df9 /m/076df9 /m/0392kz aya hisakawa (Q49573) /m/04x56 michael j. moorcock (Q316138) /m/04j0s3 ektaa kapoor (Q3630005) /m/053x8hr sherlock (bbc tv programme) (Q192837) /m/0myn8 trumbull county, oh (Q336229) /m/0bq4j6 alex gibney (Q2832952) /m/023322 bill bruford (Q312797) /m/04mvk7 /m/04mvk7 /m/01p95y0 elmo lewis (Q204943) /m/0vkl2 brunei gallery (Q220144) /m/0bs5vty midnight in paris (Q206124) /m/019fm7 assam (india) (Q1164) /m/01k_0fp roger harry daltrey (Q311672) /m/07zr66 rory fallon (Q439949) /m/0k_mt franz walsch (Q44426) /m/023vcd shooter mcgavin (Q1313063) /m/0f0sbl cyrnos (Q14112) /m/049dzz hertha (Q102720) /m/01ft14 larry david (character) (Q23722) /m/02pvqmz celebrity fame academy (Q2408777) /m/07bty thomas edison the inventor (Q8743) /m/03sbb coinventor (Q715679) /m/0bs09lb omaha ufl (Q2081806) /m/07s7gk6 /m/07s7gk6 /m/096jwc /m/096jwc /m/0mxsm oklahoma- county, oklahoma (Q485038) /m/01v0sxx the who: performance (Q93346) /m/093h7p disney dvd & video (Q3053254) /m/016tbr david schwimmer (Q188792) /m/037cr1 peter pan (2003 film) (Q1364029) /m/0_g_6 greensburg, pennsylvania (Q734974) /m/04wp63 burtt, benn (Q816456) /m/0mjn2 eagles, the (Q189635) /m/01bt59 ieor (Q4489420) /m/01dpts cof (Q487479) /m/01zcrv relationshep (Q902771) /m/0n6rv elko county, nv (Q484401) /m/07phbc nicole (pink panther) (Q844497) /m/07bz5 ambush at ithilien (Q15228) /m/06196 prometheus award (Q142392) /m/014hdb chang i-mou (Q55430) /m/0dmy0 sormersetshire (Q23157) /m/01jxlz taunton, england (Q845619) /m/0d87hc the nutty professor (1996 movie) (Q936576) /m/03hpr harlan j. ellison (Q311253) /m/01bjbk pillow talk (film) (Q832487) /m/0dxmyh henrie, david (Q297128) /m/03r0rq failure in the venture bros (Q2636213) /m/04wmvz laa of a (Q743309) /m/0ftccy /m/0ftccy /m/03qncl3 james g. robinson (Q2483321) /m/0356dp julian wyatt glover (Q499644) /m/03fn16 dinamo-2 tbilisi (Q201006) /m/02gl58 battelstar galactica (2004) (Q237072) /m/0283sdr university of otago (uoc)-cdhb (Q1201513) /m/03rz4 indian sea (Q1239) /m/019g65 jeff garcia (Q1373024) /m/0l2p7 county of plumas, california (Q156342) /m/01w9k25 justin blaze (Q956870) /m/03ckfl9 experimental (music) (Q1640319) /m/01gtdd 28th congress (Q4632843) /m/03_lf joseph stalin and religion (Q855) /m/06ppc4 altrincham f.c. (Q18660) /m/01nc3rh klaus badelt (Q57833) /m/03115z beifanghua (Q9192) /m/02rv1w cs-fullerton (Q1026925) /m/027l4q pacific palisades, calif. (Q1370207) /m/0pnf3 reiner, carl (Q287793) /m/0296rz hoffa (film) (Q978974) /m/07qcbw walon green (Q1660432) /m/0206v5 south shields (Q279000) /m/03hpkp university of richmond, virginia (Q1115878) /m/07_l61 fc wismut aue (Q141882) /m/01kkjq 1996 colorado rapids season (Q642408) /m/09jw2 glamour rock (Q76092) /m/0k345 avante garde (Q102932) /m/0ltv /m/0ltv /m/09rfh9 saw 3 (Q276392) /m/04gr35 larry the cable dude (Q331728) /m/0c630 catania, sicily (Q1903) /m/01qckn konami of australia (Q45700) /m/07lp1 thomas ruggles pynchon, jr. (Q35155) /m/0fp5z limerick (ireland) (Q133315) /m/01_yvy ahilyanagari (Q66616) /m/02ddq4 /m/02ddq4 /m/0341n5 thomas hayden church (Q311615) /m/03jsvl roots-rock (Q1929352) /m/01gjw the ballad (Q182659) /m/02twdq morning musume '16 (Q174291) /m/013g3 alexandriabot (Q87) /m/078vc gora sikh (Q582779) /m/0688f shahmukhi punjabi (Q58635) /m/01csqg taipei imperial university (Q32746) /m/033p3_ dorothy eloise maloney (Q230126) /m/01wwnh2 lukasz gottwald (Q350588) /m/03vfr_ the spongebob squarepants movie 2: road trip's most wanted (Q579928) /m/05hks nicholas ii, emperor and autocrat of all the russias (Q40787) /m/01wkmgb bret michael sychak (Q365042) /m/04jq2 history of library and information science (Q199655) /m/0cqcgj pridvi raj (Q3595178) /m/0557q musical theatre/selected article/july, 2007 (Q2743) /m/02gkxp middlebury college (Q1357891) /m/0150n history of bonn (Q586) /m/02b1jf ebbsfleet united (Q18511) /m/03xk1_ ackland, joss (Q471879) /m/0ds460j 2011 tonys (Q1582879) /m/015cj9 cheltenham, clooucestershire (Q206988) /m/01lpwh toronto argonauts football, 1970–1979 (Q142349) /m/09hd6f javier grillo-marxuach (Q3302999) /m/02xwzh new trier water polo (Q7012169) /m/037ts6 heerenveen s.c. (Q200321) /m/0cy8v columbia, maryland (Q397905) /m/01f2w0 bbc one + 1 (Q191472) /m/07g0_ den hagg (Q36600) /m/0dw4b0 swimming upstream (Q943003) /m/06pqy_ agovv apeldoorn (Q292618) /m/01clyb magdalen chapel (Q776807) /m/09qycb catch 22 (film) (Q1050533) /m/0nmj ames, iowa, united states (Q470273) /m/03z8w6 war of independence of 1857 (Q129864) /m/01n2m6 the new and "untouchable" death row records (Q847018) /m/04d_mtq kevin jonas bio (Q210172) /m/0gdqy godardian (Q53001) /m/0k2h6 clare hall, cambridge (1338-1856) (Q760967) /m/07348 geography of sabah (Q179029) /m/0f0z_ moscow idaho (Q499927) /m/0rk71 naples (fl) (Q257830) /m/02760sl /m/02760sl /m/0fz27v bernie brillstein (Q826535) /m/0234pg carl weathers/comments (Q320218) /m/0h0wd9 hello, dolly! (1969 film) (Q475293) /m/05j0wc crispin freeman (Q1140193) /m/0106dv cottonwood creek golf course (Q128244) /m/0mqs0 mclennan county (Q111368) /m/0621cs garage punk (fusion genre) (Q2296495) /m/0fxwx montgomery county, tx (Q26756) /m/02rky4 university of san diego (Q262663) /m/09x7p1 war in pakistan (2004-2008) (Q179275) /m/07wj1 hqusaf (Q1465252) /m/03_x5t eva mendes (Q170606) /m/0m76b the doorway (film) (Q318292) /m/01tzfz lancaster university (Q262854) /m/069z_5 henry corden (Q707717) /m/08chdb /m/08chdb /m/093xh0 lewes f c (Q1927145) /m/01_4lx global star software (Q94933) /m/0183z2 free and sovereign state of chihuahua (Q655) /m/0jgm8 naples, florida metropolitan area (Q488531) /m/02stgt administrative organisation (Q31728) /m/053ksp ronald horwitz (Q706668) /m/049nq /m/049nq /m/0d8s8 groningen (city) (Q749) /m/012vby mervyn leroy (Q103788) /m/0133ch queen's park sports centre (Q823600) /m/026036 stuyvesant hs (Q3098911) /m/067z4 geography of pretoria (Q3926) /m/0m9v7 chows (Q181425) /m/08vk_r genoa c.f.c (Q2074) /m/017fx5 imax films (Q188575) /m/02jfc educated (Q8434) /m/0mwm6 lackawanna county, pa (Q501350) /m/0ymff wadham, oxford (Q2537765) /m/03dq9 graham a. chapman (Q24962) /m/0408m53 i know what boys like (film) (Q466959) /m/01797x peter kenneth frampton (Q337089) /m/085wqm end of days (film) (Q849656) /m/0jbp0 stewart, patrick (Q16296) /m/0l2q3 riverside county, california (Q108111) /m/0r3wm downtown riverside, california (Q49243) /m/044n3h kim yunjin (Q229389) /m/01slcv dundee fc (Q335483) /m/015p6 bird (Q5113) /m/01s9vc the birds (film) (Q110043) /m/0d6_s lara croft: tomb raider (Q464014) /m/05tgm pagan religion (Q29536) /m/03p01x kevin williamson (screenwriter) (Q360642) /m/03hfxkn /m/03hfxkn /m/0jmh7 los spurs (Q159729) /m/02lyx4 angie dickinson (Q235989) /m/01bmlb sammy davis jnr (Q297816) /m/016jll johnny mercer (Q363698) /m/0gjw_ the battle of the somme (Q132568) /m/032c7m mitsubishi urawa red diamonds (Q218883) /m/06jz0 rob reiner (Q287607) /m/0cw67g richard a. baker (makeup artist) (Q495321) /m/01r4k civilian engineering (Q77590) /m/0dt645q 古川登志夫 (Q517337) /m/08z84_ sunsoft (company) (Q2298387) /m/0dsfnd beijing football club (Q814738) /m/02qw_v hobart statesmen lacrosse (Q4119316) /m/05k4my lady in the water (Q621529) /m/01gc7h jason priestly (Q311769) /m/04m8fy δδδ (Q1184880) /m/02x0fs9 lars & the real girl (Q926789) /m/01trtc intersope records (Q231694) /m/04qzm bizkit (Q240767) /m/0fwc0 city of norfolk, virginia (Q49231) /m/01wgr czech (language) (Q9056) /m/027z0pl gary barber (Q3758467) /m/0t_3w lowell (ma) (Q49162) /m/026m3y centre for anglo-german cultural relations (Q195668) /m/0rmby fort meyers (Q506451) /m/01sdzg third baseman (Q1368170) /m/0k419 roman holiday (Q201293) /m/02pfymy nbgi (Q1194689) /m/020_4z eric burdon (Q44648) /m/07zl1 zones of thought (Q312405) /m/046_v fred sande (Q311607) /m/0typ5 /m/0typ5 /m/0b_71r 1999 ncaa men's division i basketball championship (Q3994975) /m/03hmr_ martin mull (Q575795) /m/03j6_5 pfc cska moscow (Q176371) /m/047g98 us cagliari (Q1900) /m/02p5hf david carradine (Q187038) /m/0gyv0b4 kill bill: volume ii (Q928019) /m/07s8z_l /m/07s8z_l /m/06vnh2 ingenieur büro stengel gmbh (Q71265) /m/02237m central saint martin’s college of art and design (Q1053996) /m/06s_2 republic of sierra leone (Q1044) /m/04vjh moritani (Q1025) /m/023sng muhammad yousuf khan (Q377789) /m/075pwf prifac 2906 (Q422613) /m/02784z herbert schluderpacheru (Q165357) /m/03tbg6 cats & dogs (film) (Q1051315) /m/03ss47 Q3953320 /m/0162b bengali people's republic (Q902) /m/03x45p dnipropetrivsk (Q48256) /m/0gldyz iron lotus (Q1212139) /m/025rpb0 /m/025rpb0 /m/01vvybv marvin lee aday (Q152929) /m/07f0tw waheeda rahman (Q465859) /m/032498 kp legia warsaw (Q193749) /m/09xrxq peter dougan capaldi (Q732661) /m/0_z91 brownsville, texas metropolitan area (Q51693) /m/06g4l ruth gordon (Q232562) /m/029n80 cambuur leeuwarden (Q875120) /m/03j755 apoel fc (Q131378) /m/0c1ps1 joseph r. gannascoli (Q1367775) /m/06t2t2 shopgirl (film) (Q2005056) /m/03339m experimental metal (Q641357) /m/01vcnl maccabi haifa f.c. (Q2129100) /m/023s8 calista flockhart (Q26424) /m/02cqny hi-nrg (Q606393) /m/047p798 whip it! (film) (Q303213) /m/01c6yz western normandy (Q16954) /m/03c602 alejandro sanchez pizarro (Q276170) /m/06thjt newschoolers (Q599316) /m/0c82s dordogne (Q3357) /m/0h1n9 mb crohn (Q1472) /m/021j38 chittagonian people (Q376749) /m/0b25vg amy adams (actress) (Q481832) /m/01m3dv landgrave of hesse-cassel (Q168651) /m/047m_w hllyaks (Q1585857) /m/0d2ww super models (Q865851) /m/05qqm history of the polish language (Q809) /m/0bxy67 bomman irani (Q834338) /m/01jz6x jerry stiller (Q316857) /m/0ddct Q10729326 /m/0mrq3 galveston county, tx (Q26587) /m/030hbp mary louise-parker (Q229957) /m/0199wf star wars holiday special (Q1538082) /m/04h5tx cape verde national football team (Q330039) /m/02cb1j jalandhar (Q33377) /m/0bzjf veneto region (Q1243) /m/07_pf sports in venice (Q641) /m/02m0b0 bennington college (Q817902) /m/01fml history of the liberal party (uk) (Q622441) /m/09gnn baron keynes (Q9317) /m/0h25 an rayn (Q132524) /m/03dj48 mexican national soccer team (Q164089) /m/016vn3 the cars (band) (Q858388) /m/02jd_7 zoetrope studios (Q467348) /m/03qx_f m3 productions (Q1998195) /m/0208wk world fantasy award for best novel (Q898527) /m/017dpj norman lear shows (Q1270283) /m/0b5hj5 pritzker school of law (Q7060409) /m/0nqv1 greenwich market (Q179385) /m/09fqgj caspartine (Q244398) /m/07wf9 adams-clay democratic-republican party (Q42186) /m/042d1 monroe, james (Q11815) /m/04j_gs robert corddry (Q1378118) /m/03f2fw ethical and religious directives for catholic health care services (Q2300423) /m/0d1xx clark county youth commission (Q156287) /m/0dnkmq incredible hulk (film) (Q466611) /m/0b22w jim garfield (Q34597) /m/026zt danube (river) (Q1653) /m/034ns geography of the earth (Q1071) /m/07qzv telaviv (Q33935) /m/03crmd gretta sachi (Q235351) /m/04bdqk lesley anne warren (Q237214) /m/06s26c peters entertainment (Q2563751) /m/01fsz baroquesque music (Q8361) /m/070zc saxonian (Q1202) /m/01q24l councilmember (Q708492) /m/0r2dp eastside christian school (Q494723) /m/020jqv paul williams (songwriter) (Q927415) /m/0mwcz somerset, pennsylvania micropolitan area (Q490908) /m/0mwq_ fayette county, pennsylvania (Q488683) /m/01prf3 transactions of the american philosophical society, new series (Q466089) /m/0glbqt doctor zhivago (film) (Q323827) /m/02rtlp5 /m/02rtlp5 /m/02bf2s jim brown (football) (Q927916) /m/0ftvg little rock, ark. (Q33405) /m/09v42sf kaboom (2010 film) (Q1720855) /m/098sx philip pullmann (Q190220) /m/07mgr turin (city) (Q495) /m/052gtg provincia di torino (Q16287) /m/028qyn tijuana brass (Q344822) /m/025hzx roth films (Q919992) /m/05f2jk marvin hatley (Q1906085) /m/0f3zsq tak fujimoto (Q488925) /m/03h_f4 34th parliament of canada (Q2816274) /m/059ts les territoires du nord-ouest (Q2007) /m/0xhmb nashua (nh) (Q48274) /m/0hyyq rytprūsiai (Q103801) /m/01pbwwl anthony newley (Q573709) /m/01ppdy pen/faulkner (Q1188661) /m/0kvf3b the nun's story (film) (Q781608) /m/03y8cbv independent spirit award for best documentary feature (Q7027841) /m/070ltt snme (Q1783207) /m/05g7q nelson rolihlahla mandela (Q8023) /m/0425yz jeonbuk hyundai motors football club (Q483152) /m/0hsmh robert earl wise (Q59821) /m/06xkst eureka seven in other media (Q962161) /m/02flq1 /m/02flq1 /m/01l0__ nagoya grampus eight (Q249662) /m/07wdw whig party (us) (Q42183) /m/0dbb3 billy holiday (Q104358) /m/01xwv7 dave chappelle filmography (Q40321) /m/09jm8 manic hedgehog demo (Q44190) /m/0ky1 arthur conan ignatius, sir doyle (Q35610) /m/02s838 dorchester (boston, mass.) (Q1024037) /m/0p7vt rocky mount, north carolina (Q1021026) /m/0c9l1 /m/0c9l1 /m/0nh57 ramsey county, minn. (Q491201) /m/0nhmw hennepin county, minnesota/comments (Q486229) /m/0dt_q_ atromitos f.c. (Q757754) /m/0604m palestinan authority (Q42620) /m/03f02ct rishi kapoor (Q258820) /m/0czhv7 /m/0czhv7 /m/0160nk university of louisiana (Q1193547) /m/065d1h tseng tse-wei (Q445608) /m/02g40r atticus ross (Q520346) /m/06w58f /m/06w58f /m/0g2jl washington university at st. louis (Q777403) /m/03rgvr jerome flynn (Q1687736) /m/05cv8 the metaweb (Q312853) /m/05vzql trisha (actress) (Q2748513) /m/02hwyss turkey turkish (Q256) /m/03wxvk como province (Q16161) /m/0ggyr albate (Q1308) /m/0jsw9l ed lachman (Q616171) /m/03b12 gary neighborhoods (Q184116) /m/01gqfm sand volleyball court (Q4543) /m/01d26y chaffey-burke elementary (Q244025) /m/021r6w dmytryk, edward (Q72229) /m/021b_ carol kane (Q235302) /m/04wp2p phil alden robinson (Q1387617) /m/080dfr7 /m/080dfr7 /m/01rwcgb yuvan shankarraja (Q1387724) /m/01yzhn george stevens hamilton (Q359416) /m/0f87jy mike henry (voice actor) (Q1056114) /m/0b_756 2004 march madness (Q3994980) /m/01kt_j jeffery mckeen (Q117396) /m/028kj0 orange county (film) (Q913965) /m/02wypbh grand prix du cinema de creation (Q510175) /m/0mb0 howard allen frances o'brien (Q184785) /m/0g5ptf list of james bond allies in the spy who loved me (Q320423) /m/04f4z1k 1997 mlb draft (Q4592603) /m/0cc1v pgc-md (Q26807) /m/07jmgz /m/07jmgz /m/0h924 berks (Q23220) /m/01hf6 baluchestan province (Q163239) /m/0h336 johann christoph friedrich schiller (Q22670) /m/0x0w æsthetically (Q35986) /m/01tpl1p pirate honey brown seductress of the seven seas (Q262838) /m/06kkgw wong tung jim (Q266521) /m/053vcrp hugh b. hunt (Q389849) /m/03902 protestant rome (Q71) /m/02x8s9 englehart, steve (Q964815) /m/0frq6 porc (Q191768) /m/014w_8 gonococcal septicaemia affecting skin (Q183134) /m/03bdkd wilson (1944 film) (Q606928) /m/08w6v_ /m/08w6v_ /m/04n8xs équipe de guinée équatoriale de football (Q255771) /m/01gw8b jill clayburgh (Q230665) /m/01fszq golden girls (Q912467) /m/03xj05 untergang parody (Q152857) /m/03k48_ andy richter (Q497851) /m/02sdwt /m/02sdwt /m/015wd7 /m/015wd7 /m/0dgq80b spirit of vengeance (film) (Q41854) /m/016nvh paul okenfold (Q321339) /m/01y_rz chad smith (Q269500) /m/0ywqc sutherland, donald (Q103784) /m/0138t4 jerwood library (Q1244704) /m/01w20rx the diverse city band (Q364884) /m/0fvppk icon film distribution (Q2669403) /m/05vjt6 club deportivo tenerife, s.a.d. (Q216661) /m/01nx_8 terrence mcnally (Q1566335) /m/01hpnh in-up (Q1498) /m/059nf5 coritiba foot ball club (Q478317) /m/0csdzz alexandre desplat (Q313362) /m/03zbws strike squad (Q192149) /m/04h54p singapore national football team/comments (Q239528) /m/01yx7f bank of america nt & sa (Q487907) /m/01grmk 1st us congress (Q162932) /m/03q_w5 sxdx (Q976882) /m/027ht3n michelle suzanne dockery (Q259760) /m/04999m us lecce (Q13391) /m/05vc35 dragonball z movie 9 (Q1255010) /m/07myb2 carrie washington (Q232104) /m/0jnnx canucksgm (Q192890) /m/0sx5w howard stern (Q348603) /m/046qpy richard darling (Q23901) /m/0c031k6 /m/0c031k6 /m/01dkpb charles buchinsky (Q36105) /m/01p5_g cheesecake photo (Q151092) /m/03_fk9 vittorio storaro (Q363413) /m/09qljs halloween 9 (Q909063) /m/0g5llry /m/0g5llry /m/065mm1 edie mcclurg (Q262738) /m/042q3 johann wolfgang goethe (Q5879) /m/0q8jl florence-muscle shoals, al metropolitan statistical area (Q79743) /m/01z0lb melvin van peebles wid laxative (Q2531955) /m/0qymv concord (california) (Q490441) /m/0fxz4 montgomery county oh (Q485600) /m/01l8t8 benedict computer center sunysb (Q969850) /m/01rs5p lauren elizabeth metcalf (Q236711) /m/06qv_ star trek/star trek tng (Q16290) /m/02d6c davenport, iowa (Q26887) /m/01r9c_ stephen berkov (Q529849) /m/04994l cercle athlétique messin (Q221525) /m/01qxs3 floyd of the jungle (Q652421) /m/01dzg0 old main (mississippi state university) (Q1939211) /m/047cqr brian vaughan (Q849628) /m/04g_wd wong jim (Q709317) /m/02py9yf chuck (tv show) (Q2293) /m/0167xy the sun goes down (thin lizzy) (Q202314) /m/04k05 lead zeppelin (Q2331) /m/0ds2sb kirschner, david (Q3018205) /m/0b_6mr 1985 ncaa tournament (Q3994963) /m/02gsvk tamil rupee (Q80524) /m/014g9y julie delpy (Q110462) /m/02z7f3 metal hardcore (Q183862) /m/0969fd wadiʿ (Q201538) /m/039yzf world fantasy award-novella (Q3405409) /m/0707q /m/0707q /m/03dbww sterling holloway (Q725507) /m/01s5nb pilgrim press (Q426316) /m/0k1wz nikolai rimski-korsakov (Q93227) /m/03pzf barton township, ontario (Q133116) /m/05sxr_ tarzan (1999 film) (Q208696) /m/04rcl7 disney animation studios (Q1047410) /m/06mvyf cleveland institute of music (Q5132172) /m/0gx1l so-cal (Q844837) /m/04s9n list of muhammad's wives and companions (Q9458) /m/01b8bn campbell award (best new writer) (Q958630) /m/0jnng bob naegele, jr. (Q206357) /m/01tsq8 bressa (Q6221) /m/03d17dg the wire season 4 (Q3005851) /m/024tj clarence brown (Q435029) /m/024jwt winkler, henry (Q343983) /m/0pkr1 sammo hung kambo (Q311219) /m/06j8q_ timothy busfield (Q714610) /m/03c7twt emily lewin (Q379994) /m/0n56v bernalillo county (Q156297) /m/0206k5 tribune media company (Q2140077) /m/01m5m5b mychael danna (Q1336515) /m/0301bq lapaglia, anthony (Q308124) /m/0n6mc washoe county, nevada (Q484340) /m/09bcm noh ek (Q313) /m/05br10 vilmos zsigmond (Q963628) /m/03r8gp /m/03r8gp /m/0bzty lumbardia (Q1210) /m/04m_kpx /m/04m_kpx /m/0d6hn havana (cuba) (Q1563) /m/0h1sz aspartic acid/comments (Q178450) /m/02cgp8 blue ridge belt (Q166755) /m/09w6br conductor (the polar express) (Q862197) /m/016376 isley brothers, the (Q178134) /m/0gx159f st. johns icecaps (Q2297053) /m/0flj39 /m/0flj39 /m/03h40_7 /m/03h40_7 /m/04_by mary wollstonecraft shelley (Q47152) /m/0cjf0 pyrogens (Q38933) /m/0nlh7 edmonton (canada) (Q2096) /m/01fcmh viking f k (Q211177) /m/09myny george folsey (cinematographer) (Q329176) /m/04z1v0 psych-folk (Q1500364) /m/07p12s jose yero (Q840495) /m/09fqd3 meckstroth (Q3807787) /m/016dgz anthony perkins (Q193146) /m/03l7tr ross county f. c. (Q180420) /m/0rd6b education in greenwich, connecticut (Q49202) /m/041p3y unart records (Q1542119) /m/0ps8c alkmaar, netherlands (Q972) /m/02j8z theory evolution (Q1063) /m/04vlh5 pound foolish (Q919608) /m/0cs134 mode magazine (ugly betty) (Q276528) /m/04b_jc station agent (Q1653448) /m/0mlw1 bellingham, wa metropolitan statistical area (Q156623) /m/0dlxj un/locode:bymsq (Q2280) /m/03plfd egypt standard time (Q190252) /m/0f9rw9 march madness 2010 (Q2948730) /m/0b1hw list of awards and nominations received by soundgarden (Q174817) /m/017f4y steven stills (Q354496) /m/04gdr musée napoléon (Q19675) /m/016ppr destiny's child awards and accolades (Q153056) /m/07djnx harry stradling (Q607280) /m/034b6k elena montero (Q309621) /m/0301yj peter gallagher (Q309900) /m/01t8399 ricky blackmore (Q192183) /m/01s560x the gallagher brothers (Q382890) /m/02r9qt sports illustrated sportsman of the year (Q1653207) /m/0262s1 /m/0262s1 /m/01bs9f /m/01bs9f /m/06zn1c the pirate movie (Q731335) /m/021j72 raj kapoor (Q55407) /m/01n43d vetona (Q2028) /m/01k5y0 victor, victoria (Q936037) /m/01n7rc sunderland, county durham (Q188304) /m/0c1j_ rosie o (Q272929) /m/0jbqf avscoach (Q206297) /m/015196 whodat and boojang (Q354654) /m/0fnff thăng long (Q1858) /m/015nvj sir carol reed (Q95143) /m/023zl the city university of newyork (Q762266) /m/035kl6 tom skerritt (Q320093) /m/0njlp ingham county, michigan (Q133853) /m/043z0 jackson, mi metropolitan statistical area (Q497702) /m/0sqgt evansville (indiana) (Q486459) /m/02kxg_ eastern campaign (Q189266) /m/09hrc sachsen-anhalt state, germany (Q1206) /m/07nf6 saxony-thueringen (Q1205) /m/0frf6 lock haven, pa µsa (Q494093) /m/0dhml frederick (md) (Q472675) /m/0ddf2bm crazy, stupid, love. (Q519490) /m/0168dy britanny murphey (Q168847) /m/042kbj samuel grosvenor "sam" wood (Q457269) /m/010m55 mclean hamlet (Q963138) /m/02x2097 utv motion pictures (Q3547550) /m/09yxcz rang de basani (Q924135) /m/0d117 saint remi basilica (Q41876) /m/0q74c gadsden, alabama (Q79389) /m/022q32 nichole ritchie (Q232495) /m/02wwmhc rum diary (Q830376) /m/01rt5h cancer of the testicles (Q324464) /m/014g_s dwayne the rock johnson (Q10738) /m/0425hg yukong football club (Q482617) /m/01c1nm गोंय (Q1171) /m/03fwln young and free (priyanka chopra song) (Q158957) /m/03j76b sparta prague (Q193481) /m/0534nr dave goelz (Q2761980) /m/01ngxm harrogate bus station (Q215829) /m/0k4j /m/0k4j /m/01l3wr germany national football team kit (Q43310) /m/0n048 south yorkshire county (Q23095) /m/01fbb3 barnsley, south yorkshire (Q54212) /m/058vy5 american book award (Q463606) /m/05ry0p samantha matthis (Q237190) /m/0fqww drenthe (Q772) /m/02_vs fryslan (Q770) /m/0hwqg reynard productions (Q162389) /m/0dtzkt leonard cohen: i'm your man (film) (Q1438833) /m/017371 rockabilly (Q203720) /m/019kn7 nise japanese (Q161652) /m/07vn_9 zodiac: songs from the motion picture (Q218172) /m/0h7t36 synecdoche, new york (Q860479) /m/01d8l czechs (bohemians) (Q39193) /m/01mxnvc wood, roy (Q918484) /m/01gt99 20th us congress (Q4630820) /m/0cb1ky farida jalal (Q157803) /m/07bsj tiffani thiessen (Q230045) /m/04q827 /m/04q827 /m/04llb ptlis (Q597) /m/03bnb general electric co. (Q54173) /m/0bq_mx /m/0bq_mx /m/0cw51 bhojpal (Q80989) /m/0d8lm chordal instrument (Q1798603) /m/049mr koninklijke luchtvaart maatschappi (Q181912) /m/0ycfj mammoth (Q190155) /m/0404wqb ariel winter filmography (Q26378) /m/0fkh6 orange county (new york) (Q108618) /m/0x335 missoula, montana (Q189602) /m/03078l sk rapid wien (Q131215) /m/05m0h lord protector oliver cromwell (Q44279) /m/026m0 dalton trumbo (Q350666) /m/0mrhq harrisburg county, tx (Q26676) /m/0nzlp the gwinnett county police department (Q490065) /m/017drs baseball second baseman (Q1143358) /m/06zdt7 manoel peterson (Q597250) /m/029qzx roberts university (Q3121493) /m/0kcnq county of jackson, alabama (Q366959) /m/0564x tonari no totoro (Q39571) /m/0275kr good morning america weekend (Q825946) /m/0gp8sg /m/0gp8sg /m/0jz71 1101 park avenue (Q1811134) /m/02b1hb dagenham & redbridge (Q48938) /m/0ckrnn death on the nile (1978 film) (Q1059914) /m/014jyk victoria university, liverpool (Q499510) /m/06924p country/pop music (Q2280497) /m/016zdd leelee sobieski (Q229228) /m/0fd6qb edward g. boyle (Q1292284) /m/03zv2t un/locode:selud (Q2167) /m/0jm7n cavs (Q162990) /m/016sd3 john b. stetson university (Q2341039) /m/02056s greenock morton f c (Q867876) /m/09rx7tx jackass 3 (Q1066098) /m/02m3sd bam margera (Q297173) /m/08g_jw the namesake (2007 film) (Q1557308) /m/0l15f_ g flute (Q544352) /m/0kc8y discovery tv (Q43404) /m/0nn83 jefferson county, kentucky (Q500776) /m/02pzy52 /m/02pzy52 /m/0j46b celtic glasgow (Q19593) /m/0jdm8 /m/0jdm8 /m/01w1sx 1st cold war (Q8683) /m/07z4p analogue video (Q34508) /m/01pg1d ilyana douglas (Q269669) /m/0nbfm queen anne street (Q123634) /m/0l8gh chamber musician (Q189201) /m/0133sq nick park (Q336206) /m/05xd_v michael murphy (actor) (Q492789) /m/02m4d east river (Q212862) /m/04mp8g stade malherbe caen calvados basse-normandie (Q193377) /m/01vqq1 government house (new westminster) (Q876122) /m/0ym17 st. alban hall, oxford (Q82513) /m/049w1q the clearing (film) (Q488345) /m/02mzg9 university-denver (Q519427) /m/09hz7t 2009athleticswc (Q152772) /m/02jp2w ncaa division i men's basketball tournament (Q996954) /m/057xn_m hayley from paramore (Q201562) /m/0r89d oxnard, california (Q209338) /m/02d45s djimon honsou (Q298682) /m/06_9lg life insurance corp. of india (Q2767170) /m/01nf9x launceston tasmania (Q339527) /m/03qdm cuny hc (Q1446181) /m/03j90 hans christian andersen (Q5673) /m/018zvb thomas wolfe jr. (Q216195) /m/01ydtg spoken word artist (Q1428637) /m/06cgf rocky horror (Q751921) /m/067hq2 lori alan (Q2748093) /m/0dy6c9 tours fc (Q822021) /m/0sgtz belleville, il (Q79892) /m/0ntxg saint clair county, il (Q486507) /m/04mrfv perth glory fc (Q852033) /m/014g91 evans, bill (Q208205) /m/03c6v3 lauren helen graham (Q228755) /m/026mmy grammy award for best compilation soundtrack for visual media (Q5593771) /m/02p4jf0 eone music us (Q1273666) /m/0cyhq marie (irving berlin song) (Q128746) /m/032j_n dimension pictures (Q908662) /m/0fmyd abidjan (Q1515) /m/01wk3c filmography of robert carlyle (Q207307) /m/09cpb dorcet (Q23159) /m/07hyk t. roosevelt (Q33866) /m/01hl_w siacyl1/sandbox (Q1517021) /m/03hzkq k balachander (Q3520369) /m/0g5gq atcvet code qa05ba90 (Q180341) /m/025vwmy /m/025vwmy /m/0k3gw history of bristol county, massachusetts (Q54082) /m/0tyww taunton (ma) (Q127506) /m/06myp sigmond freud (Q9215) /m/03lygq chinese soccer team (Q130582) /m/02j490 ray liotta filmography (Q211280) /m/03cs_xw carter l. bays (Q2656047) /m/01fsv9 j-sette (Q1747601) /m/08g5q7 intraparenchymal hematoma (Q1368943) /m/045g4l jerry howard (Q924567) /m/02qlp4 lost in space (movie) (Q502908) /m/0fkbh kalikut (Q28729) /m/0mzy7 93888 (Q43301) /m/013tjc don rickels (Q269890) /m/04f9r2 michel colombier (Q1930698) /m/01tw31 rory gallagher (Q331922) /m/03915c ticats (Q44149) /m/029k55 richard anthony marin (Q73007) /m/013807 cesar chavez student center (Q1256981) /m/02_1ky loving (soap opera) (Q607295) /m/0pml7 gatineau, quebec, canada (Q141844) /m/059y0 niels bohr (Q7085) /m/0gqrb yul brinner (Q102813) /m/019n7x carson jones daly (Q2739748) /m/0r6cx santa clara (ca) (Q159260) /m/060pl5 jim reardon (Q1689199) /m/09rvwmy solitary man (film) (Q1753498) /m/015p37 janeanne garofalo (Q40143) /m/02vtnf stanley donen (Q48765) /m/03fn34 pfc neftchi baku (Q218074) /m/049kw kingston upon thames, england (Q2321706) /m/07_m2 fan-ku (Q5582) /m/01nz1q6 warzone (yoko ono album) (Q117012) /m/0829rj robert chartoff (Q721027) /m/060ppp scrippsnews (Q283457) /m/0v53x director of missions (Q1351880) /m/02hmvc short movie (Q24862) /m/0161h5 angela lansbury (Q206856) /m/0jrv_ melodic thrash (Q483352) /m/06pyc2 pat garret and billy the kid (Q1169098) /m/02kx4w brutal emo (Q11363) /m/03p7rp post-hc punk (Q377910) /m/08kp57 mohnish behl (Q3626525) /m/0122wc san sebastián foot-ball club (Q10315) /m/01tjvv city of durban (Q5468) /m/0r771 petaluma, calif. (Q720087) /m/09jvl nofx (Q265222) /m/0x0d diamondbacks (Q670376) /m/02bzh0 camberwell school of art and crafts (Q2934669) /m/030ykh bridgeport sound tigers (Q913775) /m/0gfzfj the family guy movie (Q684288) /m/01f7jt back to the future part ii (1989) (Q109331) /m/027zz david fincher filmography (Q184903) /m/01jsk6 boston college college of arts & sciences (Q49118) /m/0mm_4 williamsburg, va. (Q492346) /m/0f6zs warren county, new york (Q56151) /m/01gvsn way we were (Q910900) /m/01njxvw alberto iglesias (Q335515) /m/0jnr_ list of nashville predators captains (Q207980) /m/04fc6c list of island def jam music group artists (Q947109) /m/0zgfm hillsboro oregon (Q81824) /m/02pl5bx island-pop (Q1606591) /m/0lm0n appalachians (Q93332) /m/03yf5g carlos ruíz gutiérrez (Q475730) /m/056zf9 club puebla (Q646596) /m/02_l39 comcast nbcuniversal (Q724759) /m/025tlyv mca universal home video (Q4005797) /m/02vptk_ james e. cayne (Q2454247) /m/02ndy4 a league of their own (Q1306472) /m/05jhg united states current events (Q38926) /m/023cjg the lord of the rings (1978 movie) (Q378913) /m/01xwqn cuddly muffin (Q712452) /m/06l6nj brackett, charles (Q385055) /m/01j5sv claudia cardinale (Q107006) /m/0ftn8 tunis, tunisia (Q3572) /m/0mnk7 lynchburg, virginia (Q844012) /m/01rw116 scatman crothers (Q501996) /m/029fbr pigfuck (Q181861) /m/0hmt3 islescoach (Q194369) /m/0lfyd ticino, switzerland (Q12724) /m/01c744 districts of the canton of valais (Q834) /m/0g10g virgina gumm (Q11637) /m/01vdrw joyce carol oates (Q217557) /m/073_6 surrealist verse (Q39427) /m/0m2mk seaford μsa (Q156213) /m/03b04g sporting c.p.(football club) (Q75729) /m/02ghq brian coffey (Q272076) /m/0kr7k sigeru miyamoto (Q12382) /m/0dqyw ôsaka, ôsaka (Q35765) /m/09b83 un/locode:frsxb (Q6602) /m/04lyk kip smithers (Q8731) /m/05nwfr guingamp (Q459148) /m/02b1j1 stroud a.f.c. (Q18512) /m/02ql_ms /m/02ql_ms /m/0177g benito amilcare mussolini (Q23559) /m/077jpc cfr ecomax cluj (Q205998) /m/0ljsz princeton nj (Q138518) /m/02s6sh andrew maurice gold (Q596698) /m/0329gm belgium men's national soccer team (Q166776) /m/0f4y3 hudson, ny msa (Q115200) /m/03x8cz list of fueled by ramen artists (Q1046066) /m/01fy2s tartu riiklik ülikool (Q204181) /m/02bvc5 girton college (Q797846) /m/0t_4_ medford (ma) (Q54145) /m/06zpgb2 /m/06zpgb2 /m/01t9_0 j. arthur rank organisation (Q1535788) /m/0223g8 daws butler/comments (Q2412586) /m/0fm3nb goya award for best supporting actress (Q429700) /m/0r3tq 92264 (Q488004) /m/07tj4c emma (1996 theatrical film) (Q1338008) /m/04fkg4 penumatsa ram gopal varma (Q1391329) /m/0ymcz oxford, st. john's college (Q609646) /m/03082 laographer (Q36192) /m/0dkb83 fc kuban (Q29103) /m/022fhd stalybridge celtic football club (Q1849964) /m/0c408_ /m/0c408_ /m/01507p david boreanez (Q206364) /m/02lwv5 the couture council (Q844999) /m/02w7fs grammy award for best latin pop performance (Q4542504) /m/0p9qb sir reginald "rex" harrison (Q181887) /m/0ftjx sofía, búlgaria (Q472) /m/05bjp6 olga kostritzky (Q2061176) /m/03tm68 province of cuneo (Q15091) /m/014y6 head, anthony (Q342962) /m/02qjb7z /m/02qjb7z /m/02sg4b centre field (Q5059480) /m/06g4_ darwin's rottweiler (Q44461) /m/0hqly steve seagal (Q82110) /m/01f7d man booker prize winners (Q160082) /m/05rnp1 charles band (filmmaker) (Q738410) /m/03h0byn brothers (2009 film) (Q948635) /m/0cx6f bop era (Q105513) /m/04pwg /m/04pwg /m/0hkb8 basilica of st. denis (Q184407) /m/01s7ns kike (Q47122) /m/0symg dead man (film) (Q547189) /m/0n2sh butler county oh (Q485561) /m/0yt73 hamilton township, butler county, ohio (Q852673) /m/05hjmd jesse lasky (Q1384661) /m/04kjvt sparrow records (Q2504576) /m/0d63kt the gays (Q592) /m/02xhwm americas next top model cycle 9 (Q31426) /m/03zrp ira gershwin (Q61059) /m/06r1k star trek: the animated series/comments (Q20922) /m/0234_c purchase state college (Q4359408) /m/05dl1s black robe (film) (Q880515) /m/04h9h latin (language) (Q397) /m/0k5px ydd (Q1321622) /m/0173b0 hair metal (Q188539) /m/04399 jesuit priest (Q36380) /m/043p28m /m/043p28m /m/066wd wrestling (Q131359) /m/098r1q fc metallurg zhdanov (Q837704) /m/0dr31 darmstadt, hessen (Q2973) /m/013h9 hunting creek warehouse (Q88) /m/018w0j operation: desert storm (Q37643) /m/03nl5k /m/03nl5k /m/0d2kt thames crossing (Q19686) /m/0__wm irving, texas, usa (Q51690) /m/07_dn verizon.net (Q467752) /m/04ty8 republic of maldives (Q826) /m/0dbxy ah-ni-yv-wi-ha (Q105405) /m/0151xv derek bogaerde (Q299190) /m/02sdx enrico fermi nobel prize (Q8753) /m/05snw physicists (Q169470) /m/02_pft lee jacob cobb (Q348351) /m/07l5z toledo (oh) (Q49239) /m/0lbl6 politics of hubei (Q46862) /m/019_6d fisk university (Q49087) /m/06x76 2019 los angeles rams season (Q337377) /m/0mx3k multnomah county (or) (Q450374) /m/03lb76 fc st pauli (Q6463) /m/01n3bm /m/01n3bm /m/0n08r heaven's gate (movie) (Q148204) /m/025s1wg spy kids 3-d (Q550196) /m/0bbz66j australian (Q1318423) /m/02x4wb grammy award for best metal performance (Q919095) /m/0652ty saul rubinek (Q976176) /m/02brqp numinous technology (Q73801) /m/01rt2z ナムコ (Q309996) /m/0b_yz city of reading (Q161491) /m/01ry_x the little mermaid live! (Q190135) /m/0jqzt little maria (Q546829) /m/0113sg nikolai v. gogol' (Q43718) /m/0c5wln fussball club schaffhausen (Q172247) /m/0d__g philip johnson (Q183528) /m/026v1z テレビ朝日 (Q908436) /m/0405l james r. jarmusch (Q191755) /m/03qbm hearst newspapers, llc. (Q1065024) /m/0mbhr joanna lumley (Q254886) /m/02vjhf degrassi: tng (Q1182912) /m/0fms83 goya award for best director (Q1540553) /m/02tzwd astrid lindgren memorial award (Q430035) /m/03m3mgq computer scientists (Q82594) /m/0y1rf rochester journal (Q49218) /m/073h5b 65th academy awards nominees and winners (Q222461) /m/0d3k14 early years of john f. kennedy (Q9696) /m/05f4p usa space agency (Q23548) /m/01r4bps erin grey van oosbree (Q13938) /m/03dn9v peter cullen (Q910625) /m/0bt23 útek zo zlatej krajiny (Q45765) /m/01fxg8 pontificia università gregoriana (Q467025) /m/052q4j convent school (Q1138671) /m/088q1s royal house of the hellenes (Q209065) /m/0n2z grath (Q1524) /m/02wh0 neeche (Q9358) /m/0cgfb victoria beckham (Q19810) /m/0ql76 1st crusade (Q51649) /m/057_yx kevin dunn (Q706117) /m/03kbr shrimant (Q10090) /m/03_fmr brook. l. rev. (Q1812600) /m/03czqs bhubaneswar/comments (Q171771) /m/03j2gxx lūyis kāral (Q38082) /m/07v4dm rolfe kent (Q860670) /m/0781g symphonic rock (Q719927) /m/0pqp3 doug ferguson (musician) (Q612471) /m/02xh1 film black (Q185867) /m/0jnh /m/0jnh /m/0k20s z (1969 film) (Q136605) /m/0b6k40 gresham’s school (Q61228) /m/020yvh groton school (Q872541) /m/04zwtdy elie samaha (Q381545) /m/02tcgh kal ho na ho (Q507490) /m/09v478h hong kong film award for best supporting actress (Q5894572) /m/0cw5k p'yŏngyang-si (Q18808) /m/025r_t derby city, england (Q43475) /m/07gkgp michael dobson (actor) (Q6829877) /m/03f68r6 george duning (Q457727) /m/0fztbq bond 6 (Q107894) /m/0qf5p fairbanks, al (Q79638) /m/0c3mz second battle of flanders (Q426227) /m/0k6yt1 set it on fire (Q239464) /m/0fy2s1 sukumari (Q3530068) /m/0gy4k foreign correspondent (film) (Q848388) /m/0hg45 angina pectoris (Q180762) /m/05vyk pianoist (Q486748) /m/01pdgp st. olaf oles football (Q1515763) /m/0nt6b lake county,indiana (Q512951) /m/0ns_4 porter county, in (Q506752) /m/0f1k__ ac bellinzona (Q289112) /m/022dp5 polish americans (Q1189552) /m/08p1gp louisa michelle christian (Q4115622) /m/06k5_ radjasthan (Q1437) /m/0n7q7 cass county, nebraska (Q484239) /m/0mhhc bas-rhin (département) (Q12717) /m/0j603 mysore city corporation (Q10086) /m/017jq british archipelago (Q38272) /m/01rly6 blackburn f.c. (Q19446) /m/0nm8n hancock county, massachusetts (Q506351) /m/07_hy anti-vegan (Q181138) /m/01grq1 6th us congress (Q2395126) /m/01xr6x newport, south wales (Q101254) /m/0n_ps history of weld county, colorado (Q94783) /m/0qjfl walkoffame.com (Q71719) /m/04j5fx sakurai takahiro (Q459902) /m/04_m9gk /m/04_m9gk /m/01qdmh cast of spy game (Q1049139) /m/016017 a star is born (hercules song) (Q271189) /m/0nv6n history of mchenry county, illinois (Q487403) /m/0f1m8 skidmore owings & merrill (Q459464) /m/06cl2w joel edgerton (Q381768) /m/080_y club valencia de futbol (Q10333) /m/03gyvwg naruto the movie 5 (Q703524) /m/0k525 max vonsydow (Q203215) /m/03hfwhq /m/03hfwhq /m/08jcfy /m/08jcfy /m/0ylzs hertford, oxford (Q81090) /m/0hpz8 karloff (Q203219) /m/012jc heavy drinker (Q15326) /m/018gkb robert steven belew (Q363019) /m/01x7jb imperial records (Q1660305) /m/013l6l sioux falls, iowa (Q131335) /m/0jxh9 lakeland, florida metropolitan statistical area (Q501043) /m/0drr3 allegany county, ny (Q47944) /m/0fc1m livingston county (new york) (Q487578) /m/0htqt bilbao, spain (Q8692) /m/01k8vh charlotte hornets (1988–2002) (Q163480) /m/041wm julius caesar (Q1048) /m/03x31g tabassum fatima hashmi (Q158233) /m/01xyqk verve (mgm) (Q1124849) /m/051ls maastricht, the netherlands (Q1309) /m/04q42 limburg (netherlands) (Q1093) /m/01d2v1 ghost buster (Q108745) /m/01nsyf inoue kikuko (Q1154469) /m/027024 northampton town f. c. (Q48945) /m/044bn joseph cheshire cotten, jr. (Q95148) /m/03j70t f.c. copenhagen (Q188430) /m/0cqhmg screen actors guild award for best actress - comedy series (Q377317) /m/03g62 howard hawk (Q51581) /m/0290rb districts of bihar (Q1165) /m/03x82v juan esteban aristizabal (Q43189) /m/0flry /m/0flry /m/02vsw1 /m/02vsw1 /m/01n4w_ washington and lee u (Q1785291) /m/01304j carlos santana (Q819016) /m/0fpn8 sheriff of ulster county, new york (Q56152) /m/0z07 american airlines incorporated (Q32396) /m/04fhps 39th parliament of canada (Q2816456) /m/034_7s 35th canadian parliament (Q2816325) /m/06hpx2 Q3594060 /m/0df2zx jackass the movie 2 (Q1138620) /m/06q6jz /m/06q6jz /m/0c66m un/locode:itbri (Q3519) /m/0kwv2 athletic club de bilbao (Q8687) /m/01lwfr pampanga (Q13870) /m/05l64 christiana, norway (Q585) /m/01cwkq amanda bynes filmography (Q212002) /m/069vt qantas aircraft (Q32491) /m/01sbhvd the weasel (Q1384822) /m/012wxt /m/012wxt /m/0mzg2 pomeranian voivodeship (Q54180) /m/0123qq angel (series) (Q212156) /m/0mczk yvelines department (Q12820) /m/09stq9 le havre ac (Q328658) /m/05b6c neuroscince (Q207011) /m/01gpy4 karnten (province) (Q37985) /m/03h8_g steve o (Q451501) /m/04fjzv grady's daughters (Q186341) /m/0b_6q5 1988 march madness (Q2948726) /m/018jkl 宮城県 (Q47896) /m/03vpf_ kenneth mars (Q1356690) /m/0170xl gods and monsters (film) (Q686533) /m/02465 clive barker: the dark fantastic (Q298761) /m/015fs3 wmich (Q1546191) /m/0gfhg1y jasmine revolution in libya (Q81545) /m/01cpjx maj-gen: (Q157148) /m/0ccck7 to kill a mockingbird (movie) (Q177922) /m/024yxd hal david (Q449030) /m/02d6n_ michael connell biehn (Q241510) /m/0q48z un/locode:usanb (Q79474) /m/05g8n ninjatune (Q1358555) /m/01xyy kreta (Q34374) /m/0_jq4 york, pa (Q821105) /m/03ylxn nigeria super eagles (Q181930) /m/0gqm3 kanagawa-ken (Q127513) /m/0kstw geography of yokohama (Q38283) /m/0mpzm travis county (Q110426) /m/02w6bq cairo school of law (Q194445) /m/0fdtd7 golden screen award (canada) (Q2549777) /m/03wf1p2 2000 cannes film festival (Q1089696) /m/0lpfh lima (Q2868) /m/01vsn38 thomas jacob black (Q483907) /m/027r0_f dal mckennon (Q2544573) /m/0nt4s marion county, ind. (Q506230) /m/0c75w espoo finland (Q47034) /m/03khn helsingfors (Q1757) /m/0pkgt jerry herman (Q1363692) /m/0b_dh cecil antonio "tony" richardson (Q52411) /m/0mpbx arlington virginia (Q107126) /m/03zv3n helsingborg (Q25411) /m/0175zz dream pop (Q592330) /m/01km6_ birkenhead, merseyside (Q746718) /m/02gnmp csu la golden eagles (Q1026932) /m/0p0fc /m/0p0fc /m/0fvyg raleigh north carolina (Q41087) /m/02k_px province of santa fé (Q44823) /m/01ly8d buenos aires province (Q44754) /m/0kcdl ua/col (Q248713) /m/01cvtf henry goldblume (Q1247241) /m/0m9c1 a michael curtiz production (Q51491) /m/017lvd 東大 (Q7842) /m/0kz4w bologna f.c. 1909 (Q1893) /m/04f2zj multi instrumentalist (Q1327329) /m/013h1c un/locode:usjln (Q317865) /m/02cvp8 moses harry horwit (Q1281212) /m/0jgj7 palm bay-melbourne-titusville, fl msa (Q488517) /m/01p2b_ markus staiger (Q158886) /m/015076 river jude bottom (Q106514) /m/0b5x23 premnath (Q6055867) /m/018mrd hollywood park cemetery (Q1624932) /m/0fvt2 stephen baxter (author) (Q314416) /m/01tgwv arthur c. clarke award (Q708830) /m/018_lb mary kathleen turner (Q222008) /m/01lc5 roy export company establishment (Q882) /m/0d500h christine vachon (Q436847) /m/07b8m1 denizlispor (Q643107) /m/03b6j8 poland fc (Q166196) /m/0kq08 butte meadows, ca (Q156181) /m/02kc008 glycinate (Q620730) /m/0hcvy henry graham greene om ch (Q128560) /m/0cjcbg primetime emmy award for outstanding animated program (Q337926) /m/027lf1 mwy (Q149947) /m/0qjd aix-la chapelle (Q1017) /m/0m2dk yavapai county, arizona (Q58711) /m/04ltlj frankenstein (1994 film) (Q833180) /m/03bggl emmett evan heflin jr. (Q350678) /m/037q2p /m/037q2p /m/051y1hd darrell silvera (Q537849) /m/0521d_3 albert d'agostino (Q509050) /m/02_33l basil poledouris (Q83906) /m/03vrv9 fred "the hammer" williamson (Q1452569) /m/01xjx6 fontana records (Q729590) /m/02c7lt not wanted (Q148669) /m/02hkv5 megastar mammootty (Q2721855) /m/030dr bacon, francis, 1561-1626 (Q37388) /m/0jt86 glen david brin (Q315069) /m/08_hns david h. petraeus (Q28591) /m/01nqj cabo verde (Q1011) /m/042kg jimmy earl carter (Q23685) /m/0187wh the wb television network (Q844972) /m/01txts astralwerks (Q1200368) /m/0mwht east stroudsburg, pa micropolitan statistical area (Q495588) /m/0mwkp nescopeck pass, pennsylvania (Q501292) /m/0fwwkj /m/0fwwkj /m/03k8th bourne 2 (Q156608) /m/0l15n john guilbert avildsen (Q260125) /m/0k29f john byrne (comics) (Q475618) /m/0h1k6 duluth, mn (Q485708) /m/0n920 camberwell st giles (Q385060) /m/0dt39 nobel prize in physics laureates 1901-1925 (Q38104) /m/0b1q7c burn gorman (Q981821) /m/03_c8p sony computer entertainment asia (Q18594) /m/01nds capcom production studio 3 (Q14428) /m/0l9k1 lubitsch (Q51562) /m/02mg7n chelsea school of art and design (Q860450) /m/09969 central nervous system tumor (Q233309) /m/0l_tn matanuska-susitna census area, alaska (Q512925) /m/02pp1 england soccer team (Q47762) /m/044kwr joseph m. schenck (Q1707966) /m/01hkck jeanette helen morrison (Q205314) /m/03w7kx olympique lyon (Q704) /m/0by17xn limitless (film) (Q753517) /m/0bn3jg pietro scalia (Q1970454) /m/0r6ff city of sunnyvale (Q208459) /m/01zq91 finmin (Q7614320) /m/01mqh5 selma blair beitner (Q264748) /m/02ldkf a&t (Q1476484) /m/01q1j cerniw (Q23148) /m/02vpvk sport club do recife (Q219098) /m/01g7zj mexican-americans (Q581921) /m/0cj2w dudley stuart john moore (Q310343) /m/059yj comissioner of football (Q1215884) /m/027r7k murder by decree (Q968292) /m/0225z1 eidos interactive (Q679933) /m/03k1vm vance debar colvig (Q945591) /m/018mlg holy cross cemetery, culver city (Q1625328) /m/07tvwy cameron mitchell (actor) (Q493340) /m/017cw byzatine empire (Q12544) /m/098sv2 sándor trauner (Q599840) /m/0t_07 concord (massachusetts, united states) (Q523240) /m/04s1zr the gift (2000 film) (Q246711) /m/03d8jd1 crossfire (batman: gotham knight) (Q2287397) /m/0127xk stephen patrick william allen (Q553276) /m/0bqch sad young man in a train (Q5912) /m/0qmk5 robert 'bob' rebadow (Q739780) /m/01rlz4 the trotters (Q19451) /m/0h3vhfb /m/0h3vhfb /m/042rlf list of al hilal s f.c. managers (Q73965) /m/02b13j boston united (Q894605) /m/01c7y bengali language topics (Q9610) /m/01z7dr soundtrack video games (Q1062702) /m/09hzw mecklenburg-west pomerania (Q1196) /m/02p10m univisión television network (Q731824) /m/0rqf1 palm beach, florida (Q695411) /m/07k2p6 holland taylor (Q235198) /m/093142 bayi chaoneng (Q472752) /m/05sbv3 gigi (1958 movie) (Q577757) /m/01p7x7 cooper union school of the arts (Q130981) /m/02mw6c wellington college, berkshire (Q114306) /m/02wtp6 the dreamers (film) (Q822946) /m/07_fl venice beach, los angeles, california (Q773853) /m/01vsb_ kyŏnggi province (Q20937) /m/01q8fxx adjani (Q106383) /m/02q_ncg treasure of the sierra madre (Q251559) /m/09d38d star is born (Q1305622) /m/0p_jc cornelius crane "chevy" chase (Q310926) /m/026xt5c daniel haller (Q2342548) /m/08809 ypsilanti, michigan (Q1021681) /m/0fdpd history of schenectady, new york (Q331380) /m/03m1n houton astros baseball team (Q848117) /m/025twgt ian fleming's 'from russia with love' (Q106571) /m/01k3tq bull dog (Q38383) /m/016ggh john gielgud (Q204685) /m/06rv5t p.a.s. giannina (Q280679) /m/0mlvc yakima, wa metropolitan statistical area (Q156629) /m/0kf9p yakima, washington (Q499203) /m/032yps milwaukee wings (Q1267828) /m/01rwf_ stockport, greater manchester (Q18655) /m/0bm9xk hans j. salter (Q85707) /m/01wlt3k the god box (album) (Q708506) /m/0419kt speed ii: cruise control (Q831800) /m/08nz99 michael piller (Q957711) /m/08gf93 /m/08gf93 /m/0cm5m heidelberg, west germany (Q2966) /m/0rxyk history of valdosta, georgia (Q1010240) /m/025x1t douglas douglas (Q917608) /m/01lhf /m/01lhf /m/046vvc thailand national football team (Q239549) /m/015qq1 paul winfield (Q344576) /m/04zqmj joel moore (Q371786) /m/01bkb /m/01bkb /m/05hcy nassau, the bahamas (Q2467) /m/09dfcj county of cumberland, pennsylvania (Q494134) /m/01c9d barry lyndon (Q471716) /m/02t_8z josh weinstein (Q2604225) /m/0325dj troy state university (Q1817686) /m/04hddx neustadt prize (Q580574) /m/02qdymm mel shavelson (Q117479) /m/0fvly newcastle united (Q18716) /m/049l7 loach, ken (Q55238) /m/0lcdk anæmia (Q5445) /m/098s1 aids-related viral infections (Q166231) /m/03mghh aek larnaca (Q291447) /m/05ypj5 glenn miller story (Q698962) /m/016z68 stephen rea (Q313042) /m/02hp70 university of new hampshire pep band (Q49207) /m/0tz41 newburyport, massachusetts chronology (Q54134) /m/02zl4d richard roxburgh (Q361630) /m/0hnkp lionel herbert blythe (Q295593) /m/0btmb costumed crimefighters (Q188784) /m/05mxw33 kravenworks (Q11989370) /m/0p2rj history of pulaski county, arkansas (Q61160) /m/0pqzh ron serling (Q435920) /m/02qfv5d political thrillers (Q622291) /m/02b1d0 livingston football club (Q867921) /m/010cw1 hackensack fire department (Q138458) /m/01rvgx newbury (district) (Q1473780) /m/0h1yf 5-[(aminoiminomethyl)amino]-l-norvaline (Q173670) /m/019gz bram stoker (Q36184) /m/0lzcs h h asquith (Q166714) /m/084nh the wind among the reeds (Q40213) /m/02g3w theodore geissel (Q298685) /m/05b6s5j wwe superstars ii (Q35752) /m/02j416 student recreation center (georgia state) (Q1509333) /m/033dbw beloved (1998 film) (Q250954) /m/07bxqz radio days (Q685109) /m/05gjfk sandefjord fotball (Q861524) /m/01gf5 bakı şähäri, azerbaijan (Q9248) /m/0jmhr new orleans jazz (Q170649) /m/049f05 vfr eintracht wolfsburg (Q101859) /m/0gxsh4 cbs afternoon playhouse (Q2758667) /m/01xpxv noriyuki pat morita (Q298799) /m/0bgv8y Q2301679 /m/02vnpv decemebrists (Q930112) /m/02m_41 johann wolfgang goethe universität frankfurt am main (Q50662) /m/06p8m sega game (Q122741) /m/0dznvw 23rd academy awards (Q917076) /m/0_9l_ howards end (film) (Q913389) /m/0cy41 marburg (Q3869) /m/0cwt70 european theatre of world war i (Q2410539) /m/0cxgc services for young people in surrey county council (Q23276) /m/01bj6y joanne woodward (Q1111542) /m/0148nj punk-skinheads (Q274401) /m/05z775 jan irving (Q272919) /m/03w6sj battle of agedabia (Q625798) /m/06pcz0 thomas lennon (actor) (Q1319539) /m/0cq4k_ zorya voroshilovgrad (Q754307) /m/03m79j_ /m/03m79j_ /m/01lct6 al frankin (Q319084) /m/0cffd history of ferrara (Q13362) /m/01vzz1c cliff richard (Q82238) /m/01vv6xv w. axl rose (Q11885) /m/0sqc8 history of lafayette, indiana (Q638187) /m/0j13b tranmere rovers f c (Q19637) /m/016t00 john couger mellencamp (Q345431) /m/03j367r anil kapur (Q313956) /m/02my3z armin mueller- stahl (Q164117) /m/01r7t9 daniel louis aiello, jr. (Q299314) /m/03hltjb anthony b. richmond (Q572838) /m/040p3y iraq national football team (Q186243) /m/03k7dn dennison u (Q4493503) /m/0146mv list of works produced or distributed by nickelodeon studios (Q154958) /m/07vqnc sand mountain (bikini bottom) (Q83279) /m/015bwt boys 2 men (Q651231) /m/03q27t /m/03q27t /m/011k4g carl stalling (Q598185) /m/03x_k5m /m/03x_k5m /m/01vmv_ queen’s university, belfast (Q877925) /m/0hqgp anna liszt (Q41309) /m/039cpd televisa 4 networks (Q47099) /m/01mz9lt anu malik (Q612167) /m/0blgl charles shultz (Q298920) /m/03p5xs comedy-of-manners (Q222926) /m/07rzf tim currie (Q52392) /m/099flj broadcast film critics association award for best young performer (Q922229) /m/0ghvb university of northern iowa teaching and research greenhouse (Q1781094) /m/049ql1 vivendi (Q1127887) /m/03cd1q arif mardin (Q660545) /m/03k545 emily mortimer (Q230308) /m/0g9wd99 national book award for fiction (Q3873144) /m/01dg3s poole, dorset (Q203349) /m/0jnpv starsgm (Q208652) /m/03bnd9 butler university (Q1017974) /m/0dzlk olivia newton-john (Q185165) /m/0276g40 tera pyaar meri zindagi (Q2839215) /m/043qqt5 tis the season to be smurfy (Q1216045) /m/02tj96 /m/02tj96 /m/01llxp lundendorff (Q58579) /m/01r47h montclair state (Q5018694) /m/0g7vxv albert jarrett (Q2638248) /m/02gjrc gesù di nazareth (Q470572) /m/01f69m ragtime (movie) (Q2604288) /m/0488g9 barbera, joseph (Q190373) /m/0b57p6 phil vischer (Q12969418) /m/025jj7 nelson riddle (Q961851) /m/0m_1s kadum (Q41185) /m/02185j universita di padova (Q193510) /m/03zj_3 ecuador football team (Q987584) /m/013b6_ אַשְׁכֲּנָזִים (Q34069) /m/01x6d4 parti progressiste-conservateur de l'ontario (Q826977) /m/082xp sir winston leonard spencer-churchill (Q8016) /m/0kctd showtime hd (Q23589) /m/04mrgz melb victory (Q316789) /m/03x762 tsv alemannia aachen (Q153535) /m/0f6cl2 anzhi mahachkala (Q19353) /m/0c73z schwämmerl (Q7312) /m/0tk02 lake charles (la) (Q864106) /m/06jkm r.w. emerson (Q48226) /m/0cpvcd von mises, ludwig heinrich (Q84233) /m/027mvrc 2006 major league baseballl season (Q2390139) /m/0l0wv rochester institue of technology (Q2140778) /m/0444x kemp, jack french (Q357676) /m/05njw inquira (Q19900) /m/04_lb hillcrest school (moncton) (Q457334) /m/042g7t atlantic time zone (Q2085376) /m/0175rc f.c. bayern münchen (Q15789) /m/01l3k6 大連 (Q74881) /m/01h5f8 june cash (Q233253) /m/0g9zjp jonathan ronald walters (Q319810) /m/0t6hk larryville, kansas (Q493840) /m/0459z brahms, johannes (Q7294) /m/0p1l2 idlewild airport (Q8685) /m/03193l david grisman (Q1174604) /m/06psyf edmonton, england (Q1997321) /m/01xysf north dakota state university computer center (Q2000624) /m/097df philosophy of science (Q59115) /m/02b185 scunthorpe & lindsey united f.c. (Q19615) /m/02ktrs jennifer hudson filmography (Q192410) /m/05jnl evening newspaper (Q11032) /m/02b13y history of bury f.c. (Q19573) /m/0dn7v sumou (Q40561) /m/07s2s time-traveling (Q182154) /m/07y_r vittorio desica (Q53004) /m/0mmpz martin luther king county (Q108861) /m/09zw90 valhalla motion pictures (Q269895) /m/03dm7 rocco's cafe (Q205380) /m/0bbgly mutiny on the bounty (1935 film) (Q329709) /m/05w1vf the tobolowsky files (Q376131) /m/051qvn mainz 05 (Q105254) /m/08qz1l turkey during world war i (Q1765465) /m/0329qp bulgarian national football team (Q180845) /m/02qtywd larry klein (Q1806079) /m/0gy0n ring (Q212804) /m/06zd1c h. roemfeld (Q453461) /m/01tjt2 southern cape (Q127167) /m/0jrgr folk metal (Q484179) /m/02pcq92 saw iv (Q326319) /m/049tb jhungguo guomindang (Q31113) /m/0fhzf region of belgrade (Q3711) /m/0cv13 alleghany county, maryland (Q156257) /m/059s8 nuvobʁɔnzwɪk (Q1965) /m/01pj3h thomas william selleck (Q213706) /m/08c4yn the proposition (2005 film) (Q180337) /m/036jv reality rap (Q753679) /m/09tc_y fleetwood town fc (Q48941) /m/09v38qj hanna marin (pretty little liars character) (Q32450) /m/01cvxf american international (film studio) (Q465224) /m/0h63q6t wonder woman (2011 tv pilot) (Q8031780) /m/0fm6m8 us boulogne-sur-met côte d'opale (Q309400) /m/0cfgd deep purple (Q101505) /m/072w0 adventist youth society (Q104319) /m/0168t british virgin islands/transnational issues (Q25305) /m/03cdg george bernard shaw (Q19185) /m/06rjp university of stockholm (Q221645) /m/05tfn1 beitar jerusalem f. c. (Q223727) /m/059x3p lakeshore entertainment (Q1321379) /m/01_lh1 genentech, inc (Q899140) /m/02bpy_ liberty online ministries (Q1468607) /m/03tc8d getafe fc (Q8806) /m/0pswc crime in tijuana (Q124739) /m/0d0l91 ron jemery hyatt (Q503013) /m/01psyx kidney insufficiency (Q476921) /m/032jlh schweizer nati (Q165141) /m/0270k40 cirque du freak: the vampire's assistant (Q1464230) /m/01x3g criminologist (Q161733) /m/022tq4 lucknow (Q47916) /m/07rn0z johny lever (Q983571) /m/0mlzk charter amendment one (pierce county, 2008) (Q156459) /m/09fqdt /m/09fqdt /m/01rnpy joan plowright (Q230035) /m/07vk9f sloga novi sad (Q207501) /m/04dyqk bob clark (Q526359) /m/0smfm history of kokomo, indiana (Q913209) /m/0n4yq santa fe, nm msa (Q496511) /m/066dv prophet (judaism) (Q42857) /m/01gvxv virginia cathryn rowlands (Q229258) /m/01dbxr laval, pq (Q141810) /m/058bzgm locus award for best first novel (Q2090893) /m/0cv9fc walter hill (Q350422) /m/03wh95l the cloudland company (Q372921) /m/03mgbf terek grozny (Q240444) /m/014d4v the university of york (Q967165) /m/04kcn lago míchigan (Q1169) /m/0ccvd history of county donegal (Q179424) /m/01423b chester, cheshire (Q170263) /m/02b190 history of swansea city a.f.c. (Q18659) /m/01jrp0 diane ladd (Q234080) /m/06f_qn billy bletcher (Q390047) /m/0349s ellnvika (Q9129) /m/06xbsn sydney olympic sharks (Q782658) /m/025sf0_ na(+) (Q658) /m/03188 f.s. micronesia (Q702) /m/01hznh aik stockholm (Q221602) /m/0z1vw canton (ohio) (Q491239) /m/0d_w7 frank o. gehry (Q180374) /m/015gm8 hud (1963 film) (Q1198073) /m/0ff2k the complete adventures of charlie and willy wonka (Q25161) /m/019g8j rugarts (Q304290) /m/0k_mf northridge, los angeles, ca (Q2050326) /m/0ck91 joyce flynn (Q123849) /m/01v2xl prifysgol cymru, aberystwyth (Q319761) /m/0b4rf3 nigel lythgoe (Q1803708) /m/03d8njj satish kaushik (Q3121114) /m/024_vw rangel, charles (Q368091) /m/076689 harold gould (Q954950) /m/02hwww list of alumni of the university of mumbai (Q406402) /m/06jd89 odense boldklub (Q211912) /m/028q7m tauris, iran (Q80053) /m/03cffvv /m/03cffvv /m/044rv daerah khusus ibukota jakarta (Q3630) /m/02qhm3 lucille langehanke (Q232109) /m/0404yzp syrianska f.c. (Q683351) /m/07tk7 trinity college, cambridge (Q332342) /m/0443v1 the x-files (fight the future) (Q1129381) /m/071wvh bramhananda (Q3765029) /m/08849 death of yasser arafat (Q34211) /m/049912 football club de nantes (Q192071) /m/07l50_1 a single man (Q300559) /m/03l26m kross over entertainment (Q129041) /m/01mxqyk bebe winans (Q339093) /m/0377k9 ministerial offices (Q83307) /m/0f1kwr fc lugano (Q633521) /m/063g7l terry crews (Q271464) /m/03s2y9 irwin allen (Q740071) /m/01hdht douglas fairbanks sr (Q104127) /m/03j_hq muesel (Q507863) /m/017323 delta blues (Q1127539) /m/098z9w wcw worldwide (Q4923560) /m/01rzxl thunder lips (Q44176) /m/0515zg r. charleroi sc (Q19585) /m/0mbwf macewan hall ballroom (Q1067471) /m/01ww_vs gary newman (Q331731) /m/01dzq6 the richmond local history society (Q2500974) /m/01nrz4 papa het (Q484302) /m/03s7h nm electronics (Q248) /m/08658y fussbal club luzern (Q223262) /m/0383f gioacchimo rossini (Q9726) /m/0s9z_ highland park, illinois, u.s.a. (Q576671) /m/013719 richardson hall (Q598841) /m/075znj jvc kenwood victor entertainment corporation (Q1202628) /m/01rxw2 marche region (Q1279) /m/014clr sha’anxi (Q47974) /m/0ght2 kanesville, ia (Q695565) /m/03tc5p atlético osasuna (Q10286) /m/0c61p calabria (Q1458) /m/0bkg87 bappi lahiri (Q3345399) /m/04ld32 university of minnesota school of law (Q7895798) /m/012c6j adolf menjou (Q358379) /m/079yb sienese (Q2751) /m/03jj93 thewlis (Q212790) /m/0hmyfsv facebook, inc. (Q380) /m/0mmty clallam county (washington) (Q156306) /m/02hp6p stn channel 2 (Q747053) /m/0n59f sussex county, nj (Q495998) /m/0fs1v port-aux-crimes (Q34261) /m/01f873 liáng cháowei (Q319001) /m/0l3kx will county, il (Q483942) /m/072hv paranasal sinusitis (Q183344) /m/05mkn okinawa, japan (Q766445) /m/02bb26 trinidad (Q128323) /m/0fs29 belmont (trinidad and tobago) (Q39178) /m/0jnb0 frederick avery (Q319723) /m/05dxl_ robert f. mcgowan (Q3435067) /m/03w9bjf indo briton (Q4115170) /m/0190vc chess records (Q772494) /m/01v27pl 2006 summer smtown (Q485188) /m/04x4gw greystoke: the legend of tarzan, lord of the apes (Q780951) /m/010h9y un/locode:usogd (Q52471) /m/0msyb shelby county courthouse (tennessee) (Q501602) /m/07qht4 teen tv (Q775344) /m/0d99k_ the phantom (1996 film) (Q1170071) /m/02gtm4 hanshin b. c. (Q127635) /m/03m3vr6 hepatic cancer (Q623031) /m/0lb5x aude (Q3207) /m/01vq3nl andy hallett (Q526106) /m/0k3jq hampshire county, ma (Q54161) /m/0fltx weight control (Q12174) /m/04bz2f summer valley school (Q199528) /m/02ckl3 edmund walsh school of foreign service (Q128047) /m/04sh80 the twilight zone movie (Q1330737) /m/0ktx_ mircacle on 34th street (Q1467214) /m/02_h0 /m/02_h0 /m/01tsbmv jonathon pryce (Q312702) /m/017n9 v-k (Q184843) /m/04180vy when in rome (2010 film) (Q1139016) /m/09b69 /m/09b69 /m/0558_1 abilene christian university school of nursing (Q1805145) /m/06p03s imogen jennifer jane heap (Q230484) /m/01ysy9 professional diploma (Q217577) /m/05wkw technology of photography (Q11633) /m/06kcjr hyphey (Q2043175) /m/02p8454 the johns hopkins university school of medicine (Q858729) /m/01qcz7 kanton waadt (Q12771) /m/031rp3 morgan creek pictures (Q3323969) /m/015czt /m/015czt /m/0436zq william demerest (Q1395104) /m/01t_wfl peter cook (Q525970) /m/032xky it (miniseries) (Q1131225) /m/017_hq the b-52's (Q950309) /m/0gys2jp jin ling shi san chai (Q699224) /m/09v1lrz hong kong film award for best new performer (Q5894564) /m/02v3m7 st. louis-st. charles-farmington combined statistical area (Q944269) /m/0560w mega death (Q83431) /m/06s1qy ronald jay bass (Q1857753) /m/09xwz academy of motion picture arts & sciences (Q212329) /m/01xvlc loughborough training college (Q1434547) /m/0r785 santa rosa (ca) (Q212991) /m/03f0qd7 armando christian perez (Q187844) /m/09g0h michael dolenz (Q3239689) /m/04_j5s nyu school of law (Q846173) /m/0gwdy4 /m/0gwdy4 /m/02jztz nm state (Q1353248) /m/03205_ adelphi wildcats softball (Q4682076) /m/015mlw def american (Q466649) /m/0mp08 danville county (Q511922) /m/01z3bz university of technology munich (Q157808) /m/0561xh shankar-jaikishan (Q3631402) /m/0mp36 chesapeake (va) (Q49222) /m/049vhf u. s. gold (Q1930918) /m/0tz14 un/locode:ushav (Q54132) /m/019vv1 charterhouse school (Q1067870) /m/07s72n wubwubwub (Q20474) /m/0190y4 dub reggae (Q212688) /m/04cmrt simran bagga (Q3523130) /m/0ph24 oprah log (Q858778) /m/01hlwv bank of the manhattan company (Q192314) /m/0ml_m okanigan county, washington (Q483958) /m/03n0pv richard m. sherman (Q2318968) /m/0hz35 history of waltham, massachusetts (Q49190) /m/01b8jj historic buildings of brisbane, queensland (Q34932) /m/0n95v chiswick, london (Q845015) /m/023907r /m/023907r /m/0147w8 monticello (fictional) (Q1247581) /m/02x2jl_ state of play (film) (Q733570) /m/03z2rz kazakhstan football team (Q183468) /m/01b4p4 blitz kids (Q597240) /m/0g55tzk 2011 sag awards (Q259957) /m/0167bx /m/0167bx /m/07wtc inter alia (law journal) (Q458393) /m/045931 emmet walsh (Q498420) /m/0f60c essex county (ny) (Q114992) /m/0853g wellingotn (Q23661) /m/01bl8s sui juris marriage (Q1377445) /m/01gb_7 kelowna,bc (Q232226) /m/03w94xt avant-garde classical (Q2332751) /m/05zhg peterborough bus station (Q172438) /m/02b0_m peterborough united (Q19495) /m/016t0h a ha (Q156305) /m/0djtky thomas alexander dekker (Q369292) /m/030s5g jerome wald (Q957347) /m/0ff0x corning, ny msa (Q71100) /m/0fc32 sheriff of ontario county, new york (Q115025) /m/0366c great britain guernsey (Q25230) /m/01cqz5 chulalongkorn, king (Q158861) /m/07mfk way of the elders (Q132265) /m/03lpd0 bea benaderet (Q1285376) /m/0q01m /m/0q01m /m/02856r beat rock (Q546264) /m/036921 culinary institute of america (Q1143412) /m/08l_c1 turnour prize (Q501473) /m/0fn7r history of colombo (Q35381) /m/0n3ll wake county, north carolina (Q506215) /m/0b7gr2 mike b. anderson (Q2741776) /m/03xpfzg matt selman (Q2400678) /m/02ndf1 connelly, michael (Q313193) /m/049msk a.s. bari (Q6641) /m/01hc1j harry s. truman research institute for the advancement of peace (Q174158) /m/013_gg himmelsthur (Q3185) /m/01ygv2 tvbl (Q1195543) /m/083my7 stade reims (Q208228) /m/06kbb6 stirling dale silliphant (Q347945) /m/021y1s county of warwick (Q23140) /m/04hvw culture of lesotho (Q1013) /m/02n4lw Q11356864 /m/04jnd7 electricistas (Q1280895) /m/0gs7x gertruda stein (Q188385) /m/078ds sinhalese people (Q932244) /m/03ybrwc /m/03ybrwc /m/01rddlc 釘宮理恵 (Q49554) /m/02y0dd claudine palmer (Q184612) /m/067sqt jennifer morrison (Q199929) /m/0lnfy lagos, nigeria (Q8673) /m/07zqy /m/07zqy /m/01w3vc wedd's (Q1542352) /m/01k6nm amrish puri (Q333443) /m/05lwjc slow bounce (Q2256407) /m/09gb9xh andrea romano (Q724050) /m/02pyyld /m/02pyyld /m/035yzw universität halle (Q32120) /m/051hhz k.s.c. lokeren (Q221940) /m/0f_j1 free improvised music (Q592060) /m/01zll8 bandung, indonesia (Q10389) /m/0kc40 guildford (Q213465) /m/090q8l stuttgarter kickers (Q170105) /m/0yzyn lorain, ohio (Q609698) /m/0dn44 nicobobinus (Q166159) /m/03gdf1 scottish church college, calcutta (Q849950) /m/049m19 list of awards and nominations received by john abraham (Q313025) /m/058z2d st. stephen’s college (Q5289309) /m/09f07 hari nagar (Q1353) /m/0bqtx south african war (Q215112) /m/0n5hh cumberland county, n.j. (Q497845) /m/0q04f theatrical director (Q3387717) /m/0jm5b chicago zephyrs (Q169165) /m/0266s9 monk (television programme) (Q189068) /m/02grjf vanderwerp hall (Q2698482) /m/01nxzv nathan lane (Q491264) /m/0b85mm rocco et ses freres (Q427186) /m/05_p2 project leader (Q179012) /m/0ftxc feithans high school (Q28515) /m/0yyh āndhra prādesh (Q1159) /m/0716t2 elizabeth banks (Q219373) /m/0jfgk al-aqsa intifada (Q49106) /m/09s93 israeli occupation forces (Q58967) /m/04thp aomen dao (Q14773) /m/0d6qjf c.i.a (Q37230) /m/06k176 rome (tv series) production (Q209878) /m/0mskq bexar county (Q16861) /m/0w7s aeronautical engineer (Q3798668) /m/015wy_ goldsmith's college (Q528231) /m/0342z_ moscow music conservatory (Q215539) /m/01swdw hudson entertainment (Q1049502) /m/09k9d0 fordham school of law (Q5468082) /m/02y8bn chris robert pronger (Q553286) /m/0hn2q philadelphiaflyersgm (Q192083) /m/01wx756 robert "waddy" wachtel (Q1344063) /m/03gbty rochester rhinos (Q1359089) /m/02qr46y brideshead revisited (miniseries) (Q1481423) /m/0420y rousseauan (Q6527) /m/02ps55 hulltimate (Q1474019) /m/070yc science fiction/space opera (Q468478) /m/0f4zv erie county, new york (Q114843) /m/02h7s73 1927 major league baseball season (Q4562076) /m/01l7qw billy connolly (Q298838) /m/0ms1n dallas county, texas (Q111168) /m/032r1 f. a. von hayek (Q1325) /m/05wm88 tyler perry plays (Q686301) /m/072hx4 la marche de l'empereur (Q330113) /m/0f3ys2 solihul (Q397343) /m/09pxc landmarks in palermo (Q2656) /m/06w92 island of sicily (Q4951156) /m/0n6dc yonkers (Q128114) /m/0h69c national league (baseball) (Q858082) /m/09472 lacedaimon (Q5690) /m/0109vk san angelo, tx (Q925598) /m/0mhlq seine et marne (Q12753) /m/0sq2v south bend (Q486877) /m/04czcb spartak-alania vladikavkaz (Q240438) /m/02b7nz harrow, london (Q54961) /m/01f5q5 macaulay calkin (Q103578) /m/0hrcs29 2012 berlin international film festival (Q693466) /m/04jhp university of lund (Q218506) /m/02h30z fairfield university – academic programs (Q1393265) /m/02b1l_ shrewsbury town f.c (Q19626) /m/0343_ gothenberg, sweden (Q25287) /m/01qy6m sympathy for the ri (Q2737528) /m/0525b miranda jane richardson (Q229241) /m/052vwh china time (Q187189) /m/05p606 ed lauter (Q39972) /m/04d2yp gibson, henry (Q225657) /m/02rp117 alternative folk music (Q1317816) /m/0xkyn ridgewood village, new jersey (Q1677925) /m/0d0xs5 stephen woolley (Q7610883) /m/01f9mq james marsters (Q312885) /m/01l3lx antilas (Q166131) /m/09v3hq_ /m/09v3hq_ /m/03lrc hants (Q23204) /m/038w8 22nd president of the united states (Q35171) /m/02kxx1 departments of business management (Q1145306) /m/0djc3s pritam chakraborty (Q3633978) /m/03f2w east germany (Q16957) /m/02q4mt buck henry/comments (Q999332) /m/03nyts ishinomori (Q471103) /m/01z53w worthing, west sussex (Q671348) /m/02qzjj bay, michael (Q59259) /m/0ndh6 st. louis county. (Q498034) /m/04bdpf richard roundtree (Q446493) /m/018p4y pierce brosnan (Q81520) /m/03tck1 villarreal (Q12297) /m/01s7pm ut el paso (Q2093110) /m/05xd8x subhash ghai films (Q2475653) /m/049k4w rightfielder (Q1149560) /m/03061d dylan mcdermott (Q53120) /m/035wq7 steven robert "steve" guttenberg (Q318685) /m/04q_g region of lazio (Q1282) /m/09b93 classe, italy (Q13364) /m/0nlg4 lbth (Q208152) /m/0gp5l6 sapporro (Q37951) /m/0fxrk hokkaidou prefecture (Q35581) /m/011ys5 farceur (Q193979) /m/01m_zd ryanair criticism (Q170614) /m/0xt3t summit, new jersey (Q1000642) /m/02yh8l k-pop music (Q213665) /m/03cf9ly fringe (tv show) (Q3815) /m/09kzxt fc ael (Q291471) /m/01f2q5 end game (the roots album) (Q1052139) /m/03yvln belarusian national football team (Q186252) /m/03fnyk ernest lee "ernie" hudson sr. (Q471018) /m/013dy7 midland, michigan (Q1005953) /m/0q8p8 un/locode:usauo (Q79728) /m/071h5c ben foster (footballer)/comments (Q10585) /m/0xn7q jersey city, n.j. (Q26339) /m/06tgw natural resources in somalia (Q1045) /m/047dpm0 1995 baseball draft (Q4590468) /m/016vj5 simple minds (Q748836) /m/014ktf /m/014ktf /m/01x214 independent record labe (Q1542343) /m/0ptdz family man (film) (Q428551) /m/09r3f indian and french war (Q154697) /m/0cw10 queen of great britain and empress of india victoria (Q9439) /m/04y652m /m/04y652m /m/04bdlg マコ 岩松 (Q318885) /m/0hj6h peshawur (Q1113311) /m/06p0s1 douglas slocombe (Q1252526) /m/023slg tony levin/comments (Q216986) /m/03mgdy servette geneva (Q219235) /m/0739z6 mare winningham (Q235189) /m/04b5l3 buffalo bull (Q1328038) /m/02613 caraïbische zee (Q1247) /m/013ybx sári gábor (Q207405) /m/033g0y austrian national football team (Q163534) /m/0jc7g brigham city, ut msa (Q109641) /m/054c1 michael jordan (basketball player) (Q41421) /m/02__ww will patton (Q361400) /m/039_ym israeli football team (Q191406) /m/09f6b luging (Q273285) /m/011s9r jerry schuster (Q471619) /m/07n3s this might be a wiki (Q420880) /m/0r00l burbank (ca) (Q39561) /m/060kv php5-fpm (Q59) /m/02b0zt hartlepool united f c (Q19592) /m/048kw cantium (Q23298) /m/0pc56 stockton, california, usa (Q49240) /m/0rn0z ocala, fla. (Q918195) /m/04qbv college of the liberal arts (Q1377182) /m/0xhj2 manch-vegas (Q48370) /m/0cyn3 history of nassau county, new york (Q54064) /m/01tlrp enix america, inc. (Q1343212) /m/0k_s5 greater los angeles/did you know/current (Q1050826) /m/02qny_ landon donovan (Q202237) /m/016yxn reversal of fortune (Q1210973) /m/02qwzkm academy of canadian cinema and television award for best achievement in editing (Q4376976) /m/05kb8h motivational speaking (Q1474597) /m/03wjm2 hitchhiker's guide to the galaxy (movie) (Q836821) /m/0135cw bharatiya janata party/comments (Q10230) /m/04mky3 surfjam steve (Q319502) /m/01fwqn subway army (Q19500) /m/0n839 ricahrd branson (Q194419) /m/01f9wm virgin startup (Q494917) /m/0f_zkz hal mohr (Q645627) /m/0202p_ patricia seaton (Q345517) /m/01mskc3 damian marley (Q310796) /m/0ljc_ cartoon network, inc. (Q708290) /m/027ffq preston north end f.c (Q19612) /m/0835q wh harrison (Q11869) /m/04jly7r john creasey memorial award (Q2408776) /m/02t_h3 shawn of the dead (Q858724) /m/01nglk jerry oconnell (Q378672) /m/0nk3g do-wop (Q546359) /m/014zn0 carver dana andrews (Q365633) /m/0blpnz pandro s. berman (Q347473) /m/01bzs9 university of leeds conference auditorium (Q503424) /m/0fvwz jefferson city, mo. (Q28180) /m/02lfwp apted (Q350717) /m/0r8bh san buenaventura ventura (Q490434) /m/0l38x oxnard–thousand oaks metropolitan area (Q108127) /m/0f2sq galveston, tex. (Q135744) /m/03vtfp v2 (record label) (Q1191537) /m/0m_z3 co.galway (Q169923) /m/03msf hertfordshire, england (Q3410) /m/033071 masur, richard (Q979778) /m/02yy88 traditional sludge (Q720959) /m/0mlxt spokane county (washington) (Q485276) /m/050xpd maulana azad institute of dental sciences (Q665105) /m/0285xqh anurag kasyap (Q2839609) /m/06lkg8 eastborne borough fc (Q1278095) /m/02hrlh electric violin (Q685663) /m/0s987 kankakee, illinois (Q578351) /m/0640m69 phantom five (Q121810) /m/03n5v hellas verona f.c. (Q8639) /m/0mk1z teton county, wyoming (Q488912) /m/0bwgc_ list of awards and nominations received by carey mulligan (Q219655) /m/0fzrhn 21st academy awards (Q917170) /m/01vh3r everett, rupert (Q208685) /m/0jrq9 key west, fl μsa (Q263742) /m/0159r9 caius college, cambridge (Q863940) /m/0kbq civil war (u.s.) (Q8676) /m/06gg5c lakshmikant-pyarelal (Q3032420) /m/0j8hd pr negative (Q128581) /m/01dwyd atalanta b c (Q1886) /m/01pgk0 jennifer love heiwt (Q175104) /m/02gt5s detroit-warren-livonia, mi msa (Q1925718) /m/0c5qvw all the king's men (1949 film) (Q817159) /m/048ldh hamilton bulldogs (ahl) (Q748294) /m/03s9kp green mile (Q208263) /m/018yv3 punk country (Q2268922) /m/0bbgvp mutiny on the bounty (1962 film) (Q59084) /m/015btn /m/015btn /m/07gknc drummond, brian (Q26741) /m/06b4wb russi taylor (Q264418) /m/03g52k sk lierse (Q725018) /m/01x6jd elizabeth perkins (Q232047) /m/02_01w gwyllyn samuel newton ford (Q212048) /m/019803 june lucille foray (Q241646) /m/0974y electric boat division (Q1325893) /m/0136kr liberal party(canada) (Q138345) /m/0gsy3b british sex comedy (Q2991560) /m/01g6bk doctorow's law (Q110436) /m/03csqj4 gene callahan (Q1230940) /m/02mdty gt interactive (Q930354) /m/0tz54 salem, massachussets (Q54140) /m/02l48d western national life insurance company (Q212235) /m/02h400t financial industry (Q837171) /m/05jx17 nancy (association football club) (Q19523) /m/01zh3_ laval university of quebec (Q1067935) /m/01wsj0 liberty records (Q1392321) /m/04lgq baggatiway (Q185851) /m/0yl_w lmh (Q951946) /m/01xsc9 william fox (Q310012) /m/0xms9 west orange new jersey (Q932601) /m/0bs31sl /m/0bs31sl /m/0m2kw st. jones county, delaware (Q128137) /m/02g5bf vijay anand (hindi film maker) (Q732416) /m/0r4h3 fontana, ca (Q491128) /m/05qgd9 virginia law (Q7896545) /m/0fkhz history of otsego county, new york (Q114862) /m/02htv6 curtis institute of music (Q60450) /m/04r7f2 pakistan's national football team (Q390989) /m/0266bd5 werder bremen (Q51976) /m/02kxjx western front in world war ii (Q216184) /m/049n3s del duca ascoli (Q6630) /m/019fbp cultural capital of tamilnadu (Q228405) /m/01_f90 center for international development at harvard (Q49127) /m/01400v /m/01400v /m/0qt85 hot springs (city, arkansas) (Q79924) /m/01kkx2 carrol o'connor (Q555487) /m/08y7b9 satish shah (Q1612623) /m/026l1lq list of byu cougars football seasons (Q3632326) /m/055vr mahārāṣṭra (Q1191) /m/044zvm rita wilson (Q234144) /m/05xvj philly phillies (Q650840) /m/03jb2n eintracht francfort (Q38245) /m/01bvx1 canon inc. (Q62621) /m/017j4q southfield park primary school (Q993164) /m/0d8cr0 manivanan (Q6750277) /m/0dq9wx lauren mills (Q230169) /m/0zdkh grant's pass (Q143405) /m/03gr14 club deportivo, social y cultural cruz azul (Q845859) /m/02k9k9 v.f.l. bochum (Q105861) /m/01pxcf anu college (Q127990) /m/02hg53 kevin joseph connors (Q705738) /m/038_l ghosts (Q45529) /m/0sw6y tress macneille (Q237530) /m/01c0h6 jharkhand movement (Q1184) /m/0kq2g el dorado county (california) (Q108093) /m/03mg5f pfc levski (Q144190) /m/012rrr upper austria (Q41967) /m/0b0nq2 kryvbas krivoy rog (Q750434) /m/010016 delta lodge (Q128306) /m/012b30 sub pop records (Q778673) /m/081hvm danny denzogpa (Q575917) /m/06kknt los angeles city college (Q1727138) /m/0c0xr symphoni (Q9734) /m/0c5vh melvin jerome blank (Q349690) /m/041sbd aa publications (Q634951) /m/06kqt3 /m/06kqt3 /m/0n474 guilford county (Q502257) /m/0br0vs levadiakos f.c. (Q824450) /m/01f9y_ jazz-rap (Q255406) /m/04ch23 girish raghunath karnad (Q3518444) /m/0346qt olympique gymnaste club de nice côte d'azur (Q185163) /m/04n7gc6 our lady queen of the angels (Q345) /m/02rfft epic megagames (Q739711) /m/0m2j5 new london county (Q54240) /m/02wlwtm school principal (Q1056391) /m/025txrl havas interactive (Q2264873) /m/033qxt /m/033qxt /m/0mx7f jackson county (or) (Q450159) /m/0zdfp medford (oregon) (Q836663) /m/014nzp notts forest (Q19490) /m/08vlns latin pop / latin stars (Q547137) /m/01n78x saturated fats (Q970537) /m/02hblj carlos alazracqui (Q1075796) /m/06p5g solor system (Q544) /m/07w6r state university of utrecht (Q221653) /m/0jcky utah county, ut (Q27229) /m/0l39b provo, ut (Q23443) /m/01352_ brazilian soccer selection (Q83459) /m/03q58q casablanca records (Q1046707) /m/035s37 finland national football team (Q186532) /m/02vxyl5 santo loquasto (Q2223675) /m/04svwx mu-hime (Q836752) /m/03v9w iberiar penintsula (Q12837) /m/0hv0d tahgc (Q790101) /m/025_nbr travis banton (Q541188) /m/013crh sioux city, ia (Q489255) /m/0cfz_z rajindernath (Q3417981) /m/0d739 amherst, mass (Q49164) /m/01mylz r lee emery (Q353978) /m/0ck9l7 /m/0ck9l7 /m/0163kf gladys maria knight (Q235952) /m/01ty4 charles peirce (Q187520) /m/0fx0j2 helen rose (Q455568) /m/024hbv hlots (Q1247158) /m/05s_k6 20th century fox video (Q2084961) /m/0r03f bompton (Q487119) /m/02bqxb '' the fly '' (Q468700) /m/0195j0 lamintone (Q546635) /m/01zfrt /m/01zfrt /m/0n5hw ocean city, nj msa (Q497795) /m/05wpnx engage the mechanicality (album) (Q675208) /m/0gt14 the gentleman from montana (Q866120) /m/0175yg electric blues (Q640097) /m/01200d wallace beery (Q322179) /m/01g0jn d. jeter (Q353511) /m/03ctqqf cranford (television series) (Q629439) /m/03x1x iroquoian peoples (Q68518) /m/0173kj new plymouth new zealand (Q212984) /m/03fpg television game show (Q846662) /m/01qmy04 robi rosa (Q4381016) /m/07y0n energy conservation investment program (Q11209) /m/021npv thomas michael moore (Q299317) /m/0jmgb minnesotatwolves (Q170558) /m/0847q local government in western australia (Q3206) /m/03x1s8 bama state (Q941524) /m/02tz9z saint louis college (Q734774) /m/022fdt ermanians (Q79797) /m/025syph combat pilot (Q618694) /m/01my95 roger federer (Q1426) /m/0q6lr un/locode:usdhn (Q79519) /m/027b43 north dakota university (Q968559) /m/0yp21 grand forks, nd-mn metropolitan statistical area (Q34144) /m/0r066 un/locode:usjdy (Q488946) /m/074r0 lancaster parish, new brunswick (Q203403) /m/0cn68 /m/0cn68 /m/08x5c_ cary-hiroyuki tagawa (Q381799) /m/059j4x manny coto (Q3182435) /m/08pc1x latin grammy awards of 2004 (Q3218493) /m/07f7jp dan schneider (tv & movie producer/writer/actor) (Q444366) /m/0jmk7 la lakers (Q121783) /m/040hg8 provincia di brescia (Q16144) /m/0mhdz c. t. english middle school (Q747509) /m/01c6zg ĥâote-normaundie (Q16961) /m/05vc71 the queen's medal (Q746756) /m/01lwx chuck darwin (Q1035) /m/06y7d s.j. gould (Q180619) /m/0mbs8 martha campbell carradine (Q267383) /m/01_qp_ dark wave (Q3840596) /m/0z53k lawton, texas (Q503336) /m/0fmtd /m/0fmtd /m/011w20 athena finger (Q464282) /m/0r2bv un/locode:usczm (Q499196) /m/03yf4d butch hartman (Q558143) /m/0_m3k myrtle beach sc (Q839805) /m/0drdv benjamin charles elton (Q436712) /m/035gt8 /m/035gt8 /m/09s1f enterprise (Q4830453) /m/026gb3v bob yari (Q1969128) /m/01mb87 elmira-corning, ny csa (Q934135) /m/02g9z1 shohreh aghdasholou (Q229766) /m/0b_6_l 1997 ncaa division i men's basketball tournament (Q3994973) /m/01rhrd yugoslav socialist republics (Q83286) /m/018n1k tauton, ontario (Q211867) /m/050kh5 tia kar (Q4115199) /m/0214st ivds (Q874342) /m/0jrg aléxandros ho mégas (Q8409) /m/01p7s6 the poles (Q1026) /m/043cl9 jeetendra (Q1686232) /m/07plts jordy blue (Q5149928) /m/05clg8 universal motown republic (Q3551294) /m/01gk3x spahān (Q42053) /m/0pc_l dallas (1978 - 1991 tv series) (Q168708) /m/0glh3 leicstershire (Q23106) /m/036hnm ust (Q1401524) /m/02fgmn police procedure (Q2321734) /m/01f07x logan international airport (Q671475) /m/04qftx celtic rock (Q2662148) /m/01m1y pan-celtic music (Q854451) /m/099d4 fight history of bruce lee (Q16397) /m/0_wm_ dunmire hollow (Q501766) /m/0ckhc history of vancouver, washington (Q234053) /m/01dbgw fumio yamaguchi (Q232282) /m/03zkr8 cata roque (Q214151) /m/03s2dj callum rennie (Q551558) /m/071jv5 hans dreier (Q70495) /m/0yl_j keble college (Q1276338) /m/07zhd7 adolph deutsch (Q365310) /m/050llt aishwarya rai bhachchan (Q47059) /m/01l63 fleming fulton school (Q10686) /m/052zgp hazard united f.c. (Q1340514) /m/092868 2005 latin grammy awards (Q544276) /m/0cw4l /m/0cw4l /m/01mbwlb donny osmand (Q386053) /m/04jt2 lincoln, east midlands (Q180057) /m/0k424 bruges (Q12994) /m/019m5j inter de porto alegre (Q80845) /m/0fhsz napule (Q2634) /m/0d33k rouennais (Q30974) /m/03f22dp kumudlal kunjilal ganguly (Q3899724) /m/023sm8 co. durham (Q23082) /m/0byq6h stade brestois (Q218372) /m/01ngn3 furlanija (Q1250) /m/05g3ss danial khan (Q252290) /m/068l3t accra hearts of oak sc (Q339560) /m/05fh2 /m/05fh2 /m/0byq0v fc lorient (Q48911) /m/0gmf0nj bounce tv (Q2922164) /m/07jmnh kulbhushan kharbanda (Q677439) /m/09c17 vidyaniketan public school (Q1355) /m/0jltp jefferson airplane house (Q488260) /m/01jn5 reading for the bar (Q808967) /m/0gpmp laughton (Q55264) /m/042g97 superman three (Q528095) /m/09n5t_ americana music (Q2407862) /m/047g6 karl r popper (Q81244) /m/01qvcr microsoft rare (Q642707) /m/012g92 isabel huppert (Q106365) /m/01tmng berkshire hathaway inc (Q217583) /m/0h08p big band jazz (Q207378) /m/0n5dt trenton, nj metropolitan statistical area (Q496886) /m/013n0n geography of corpus christi, texas (Q49242) /m/013t2y wakefield rural district (Q216638) /m/0lwkz languedoc roussillon (Q17005) /m/01njml real gimnástico cf (Q8823) /m/04523f bellshill (Q680984) /m/07s363 s. m. entertainment (Q483938) /m/016m5c list of judas priest awards and nominations (Q83468) /m/01xl5 cessna finance corporation (Q308889) /m/070c93 helen (actress) (Q467223) /m/09cvbq fc augsburg (Q15755) /m/091xrc max winters (Q203108) /m/0cv1h washington county, md (Q511164) /m/06l8d restaurant (Q11707) /m/01cpkt 1st major (Q983927) /m/02wf01 mat para (Q1076619) /m/013wf1 huddersfield town hall (Q201812) /m/02dwpf relief pitcher/comments (baseball) (Q1198553) /m/06f0k prelude to nanarchy (Q5902) /m/075npt jay snyder (Q4119907) /m/0m8vm christian rock (Q753520) /m/0797c7 the citadel broadcasting corporation (Q2974368) /m/02tb17 rosario, argentina (Q52535) /m/031c2r rob paulsen (Q311987) /m/03fn5s bate borisov (Q191101) /m/0bsj9 basket full of puppies (Q109871) /m/0qkyj un/locode:usmei (Q118152) /m/0kzcv shanxi, china (Q46913) /m/0qm40 rostock (Q2861) /m/0r0ss nrhp sites in pomona, california (Q486868) /m/04g4w9 veracruz (football) (Q1023235) /m/016lv3 jonathan lynn (Q524711) /m/0m24v flagstaff, az msa (Q58684) /m/024t0y fallen patriot fund (Q318503) /m/0m68w sandra bernhard (Q236181) /m/044pqn fool aur kaante (Q146929) /m/041pnt master d'etudes internationales sciences po (Q859363) /m/019fz benj. franklin (Q34969) /m/015n8 bento d'espinoza (Q35802) /m/030w19 wooster fighting scots track and field (Q1109093) /m/05b0f7 toshiba-emi ltd (Q1365614) /m/0xff العرب (Q35323) /m/0xn7b elysian charter school of hoboken (Q138578) /m/05fx1v kettering town f.c. reserves (Q1513377) /m/0k0q73t /m/0k0q73t /m/0889x malmsteen (Q192260) /m/0cc07 frederick county md (Q501345) /m/01m3b7 broadfield primary school (Q3532) /m/0gfnqh ethnikos piraeus 1923 f.c. (Q1371345) /m/013xh7 rsc anderlechtois (Q187528) /m/02qfyk charleston battery (Q1066683) /m/0880p yiddish (Q8641) /m/0bt9lr dog (domestic) (Q144) /m/066yfh clive a. smith (Q5134470) /m/0dn8b anne arundel county, md. (Q488701) /m/018sg9 st andrews research repository (Q216273) /m/06b7s9 ucla law school (Q8012898) /m/05l3g_ netherlander (Q200569) /m/0466k4 jz msholozi (Q57282) /m/03j9ml maggie roswell (Q272195) /m/088n7 ¥/doc (Q8146) /m/02s529 jonathan mahoney (Q344655) /m/012v8 old albanian (Q8748) /m/0194_r institute for advanced study, princeton (Q635642) /m/07k2d the gray lady (Q9684) /m/0m38x baden baden (Q4100) /m/039wsf lyova haskell rosenthal (Q230184) /m/03ytp3 ukraine national fooball team (Q170403) /m/0c4kv portland (maine) (Q49201) /m/0nm9h cumberland county, me (Q497788) /m/055t01 scott mcneil (Q2702252) /m/03b0q4 harry andrews (Q1340574) /m/01pj48 auckland university college (Q492467) /m/0mr_8 alton, denton county, texas (Q109265) /m/0_565 williamsport, pennsylvania metropolitan area (Q1016159) /m/0mwk9 williamsport, pa msa (Q495633) /m/01m20m west hartford, conn. (Q49140) /m/0h1q6 claude rains (actor) (Q318734) /m/0r111 torrance, usa (Q489197) /m/0vh3 australian capital territory, australia (Q3258) /m/0498yf fc lokomotiv moskva (Q29115) /m/01cf5 barnard zine library (Q167733) /m/0fkzq lt gov. (Q1516453) /m/02pbrn mccoy tyner (Q318619) /m/07cj3 topological analysis (Q42989) /m/0n2kw green county, ohio (Q825807) /m/0s2z0 quincy (il) (Q575750) /m/0nc1c romford, england (Q1339305) /m/0894_x /m/0894_x /m/03fn6z sliema wanderers f c (Q1289495) /m/05wdgq jackie shroff filmography (Q560178) /m/0121sr gu (Q5137) /m/01wx74 rotorua district council (Q208948) /m/0h6l4 plainfield, new jersey (Q544890) /m/06n3y s. america (Q18) /m/01j28z rockumentary (Q1800833) /m/038rz schwarzbrot (Q47629) /m/0814k3 michelle suzanne ruff (Q842585) /m/0nm87 kennebec county, maine (Q497172) /m/0cx2r alsazia (Q1142) /m/03cz4j shinichirou miki (Q719326) /m/0lwkh /m/0lwkh /m/0hcs3 rickey nelson henley (Q601521) /m/0300ml mary beth lacey (Q527916) /m/071rlr ldu de quito (Q249643) /m/03x42 gaeilge (Q9142) /m/08f3yq julie gardner (Q1800397) /m/06ppq silent-era (Q226730) /m/024hh1 meshed (Q121157) /m/05hf_5 the university of ghana (Q2303765) /m/0fnyc history of accra (Q3761) /m/09c8bc fc chernomorets odessa (Q44296) /m/051_y first-degree murder (Q132821) /m/02h48 danny kaye (Q213425) /m/02c98m nāgpur (Q1513) /m/0f4l5 /m/0f4l5 /m/01dnrs st. edmundsbury (Q764754) /m/0k89p basketball hall of famer (Q290922) /m/049sb kaj (Q179051) /m/01fc50 antiwar protest (Q794691) /m/0l2mg truckee-grass valley, ca msa (Q109681) /m/01pn0r short order cook (Q156839) /m/01zzy3 friedrich schiller universitat jena (Q154561) /m/06qln puppet animation (Q308876) /m/03_dj johathan swift (Q41166) /m/0ln16 1960s salsa (Q208239) /m/015010 winifred jacqueline fraser bisset (Q232477) /m/05qtcv bhaagte raho (film) (Q3496304) /m/0cv2m chhatisgarh (Q1168) /m/018c_r @starbucks (Q37158) /m/014v1q burl ives (Q315723) /m/015p1m ficc (banking) (Q319845) /m/0ckm4x colleen clickenbeard (Q2017211) /m/01j48s d.c. united (Q238593) /m/026ck dwgriffith (Q51123) /m/07wkd u new brunswick (Q1112515) /m/012x1l the pretenders (Q667389) /m/0qpsn tempe, ar (Q51685) /m/02js_6 rip torn, elmore rual "rip" torn (Q313522) /m/0jgjn /m/0jgjn /m/018q7 general bernard montgomery (Q152025) /m/06dr9 لواء أنصار الشرقية (Q251395) /m/02cm61 public health science (Q189603) /m/02vkvcz shirley ann russell (Q7498688) /m/03l7qs raith rovers f.c. (Q1046939) /m/06y0xx brian robbins (Q913003) /m/04gc65 theodore scott glenn (Q114179) /m/01lvrm rijksuniversiteit groningen (Q850730) /m/0f83g2 hapoel be'er sheva f. c. (Q986529) /m/026dqjm /m/026dqjm /m/06nvzg /m/06nvzg /m/0ftkx táibei (Q1867) /m/0hkqn nyse:lmt (Q7240) /m/0yl_3 history of jesus college, oxford (Q81174) /m/03cz9_ takehito koyasu (Q464348) /m/05169r cercle brugge k. s. v. (Q364698) /m/02mgp ecologist (Q7150) /m/0c0tzp george hopkins (set designer) (Q1507653) /m/0p0mx picardy (province) (Q13950) /m/06mbny event host (Q815825) /m/0134bf west yorkshire, england (Q23083) /m/01v_0b charles mccarthy (Q272610) /m/0mlyj snohomish county (washington) (Q110403) /m/0fttg montgomery, ala. (Q29364) /m/0jrjb lee county, fl (Q494616) /m/09y2k2 italian cusine (Q192786) /m/03czz87 /m/03czz87 /m/015pkt 1960 squaw valley olympics (Q9634) /m/027h4yd tony award for best costume design (Q3993187) /m/0n6c_ saint lawrence county (Q500569) /m/0fb_1 herkheimer county (Q487564) /m/040rjq martin macdonagh (Q372394) /m/07nnp_ the color of night (Q1111228) /m/097kp malay-indonesian (Q9240) /m/0d8w2n '' shortbus '' (Q930746) /m/07tlg peterhouse college cambridge (Q650068) /m/094vf madînah (Q35484) /m/0579tg2 paul s. fox (Q2062126) /m/011wdm boulogne billancourt (Q172455) /m/0mkv3 la crosse county, wisconsin (Q500871) /m/016z43 the fisher king (movie) (Q466297) /m/085gk whitman, walt (Q81438) /m/03ntbmw human stain (Q697231) /m/0fngf école française de harare (Q3921) /m/0yj9v wilmington, nc (Q659400) /m/01r2lw Q14915990 /m/0163zw electronic body music (Q372103) /m/0mmpm kitsap county, washington (Q484159) /m/01hkg9 arthur quirk bryan (Q2865308) /m/01skcy apogee software ltd. (Q229459) /m/0nj3m saginaw county (Q82505) /m/01nr63 ed mcmahon (Q555370) /m/0114m0 history of la crosse, wisconsin (Q936780) /m/035tjy canada men's national association football team (Q208635) /m/0kdqw cornerstone, pennsylvania (Q995267) /m/026f5s jokr-tv (Q605233) /m/031v3p william bruce davis (Q444312) /m/045xh james tiptree, jr. memorial award (Q1681198) /m/057pq5 ara la gantoise (Q18232) /m/086g2 bengal state (Q1356) /m/04dz_y7 arthur wong (Q2865389) /m/01p0w_ tchock (Q188668) /m/09v8clw pirates of the caribbean: on stranger tides (Q183555) /m/0466hh fc groningen (Q24711) /m/04m064 barry pepper (Q315604) /m/0qyzb walnut creek, calif. (Q493261) /m/014kyy steely dan (Q852435) /m/0s6g4 naperville, illinois (Q243007) /m/0d9fz canadian alliance (Q546881) /m/034hzj cry freedom (Q962363) /m/06d_3 railed vehicle (Q3565868) /m/032s66 gun shot (Q2992372) /m/0n5_t carroll county, new hampshire (Q54446) /m/04x4gj the twilight zone (1985) (Q559270) /m/01wskg oliver reed (Q313588) /m/04xbr4 kevin mccarthy (actor) (Q281404) /m/0322yj republic of krakozhia (Q318766) /m/05glrg fc rostov (Q182930) /m/02drd3 merian cooper (Q446427) /m/01cz_1 medical valley (Q3126) /m/0tfc vile maxim (Q9381) /m/0qplq foothills branch library (Q51682) /m/0j7ng newscastle (Q1425428) /m/07s9tsr /m/07s9tsr /m/0jc6p cache county, ut (Q109790) /m/013f1h traverse city, michigan (Q984544) /m/054kmq 稲本 潤 (Q311191) /m/01c65z malcolm mcdowell (Q117392) /m/014_xj iron maidan (Q42482) /m/0438f jmu 2010 riot (Q258943) /m/0b_6xf 1994 ncaa division i men's basketball tournament (Q3994970) /m/0vlf macromedia.com (Q11463) /m/014vk4 condolezza (Q47216) /m/025rw19 ferric compounds (Q677) /m/01_fjr /m/01_fjr /m/018dk_ pineland public school (Q34218) /m/06q02g heracles almelo (Q11961) /m/024_dt /m/024_dt /m/04sd0 monty python day (Q16402) /m/013fn abc radio (australia) (Q781365) /m/0nbrp paddington, london, england (Q124230) /m/0b_4z cybill sheppard (Q175142) /m/02w59b cd guadalajara (Q503321) /m/0gj95 curse of carlisle (Q192896) /m/01l_9d rio grande do sol (Q40030) /m/02fr2d japanese military detachment (world war ii) (Q276535) /m/02swsm hollywood records (Q387539) /m/02vl9ln prix louis-delluc (Q734335) /m/09xzd chevy auto parts (Q29570) /m/01zz8t olympia dukakis (Q230188) /m/01npw8 mgm mirage (Q568532) /m/0jpy_ newport, r.i., (Q54264) /m/03k99c tom&jerry (Q131144) /m/02rsz0 do anything (Q540787) /m/02_jjm санкт-петербургский государственный университет (Q27621) /m/04rqd google mtv nos (Q43359) /m/0fzs6w ncfc (Q1044425) /m/06yj20 heather werry (Q271127) /m/0bkq_8 eve myles (Q254876) /m/01m4kpp andrew samuel griffith (Q312252) /m/027g6p7 kryptoxanthin (Q392062) /m/035wcs euro dance (Q216961) /m/04cx5 kathmandu (Q3037) /m/04f62k 福山潤 (Q441288) /m/0225bv wlcv (Q1317143) /m/0dr7s war of austrian succession (Q32929) /m/05pq3_ Q13418122 /m/04pry history of lansing, michigan (Q28237) /m/01c57n gardens point campus (qut) (Q1144750) /m/098knd calypso cavaliers (Q912881) /m/0hx5f durham, uk (Q179815) /m/0mymy tuscarawas county (Q421963) /m/0317zz logotron, mindscape, inc. (Q1570468) /m/04v7kt big driis (Q342604) /m/01_5cg apache people (Q102090) /m/0425j7 ulsan hyundai horang-i (Q129673) /m/079kr siouxsie and the banshees (Q323834) /m/05c6073 synth metal (Q325504) /m/0mx5p history of lane county, oregon (Q495409) /m/05bnx3j /m/05bnx3j /m/01qvtwm tomokazu seki (Q284401) /m/0ffjqy croatian americans (Q3003133) /m/0dp90 geography of canberra (Q3114) /m/0njdm macomb county, mi (Q133857) /m/03lpbx fox kids (australia) (Q626178) /m/01518s danzig (band) (Q649175) /m/05v45k william scott elam (Q500155) /m/035v3 greenland (island) (Q13407191) /m/0d3mlc joshua blake kennedy (Q311559) /m/012f86 people of ukraine (Q44806) /m/05lx3 ohio valley (Q4915) /m/05233hy carroll clark (Q458833) /m/015y_n swing (Q203775) /m/0mny8 southeastern alternative high school (Q502213) /m/0mnlq loudon county, va (Q495310) /m/0d_kd suffolk county, new york (Q54065) /m/0bqc_ united states forest service (Q1891156) /m/0q6g3 stephen jones (web administrator) (Q702373) /m/01kp8z cajun music (Q1026089) /m/090gk3 /m/090gk3 /m/026lyl4 deni vachlioti (Q451071) /m/01gh6z minas geraes (Q39109) /m/09xx0m melvin frank (Q41131) /m/02c7tb ludhiana (Q200123) /m/06c0j health of ronald reagan (Q9960) /m/0bg4f9 tsg hoffenheim (Q22707) /m/010bnr laredo, tex. (Q16868) /m/0l38g sonora, california micropolitan area (Q156346) /m/0pksh tsui hark (Q317814) /m/02cvcd loyola new orleans (Q172430) /m/014ck4 liáo (Q43934) /m/03td5v ad rayo vallecano (Q10300) /m/015pnb all in the family franchise (Q1048856) /m/05tjm3 norman rae taurog (Q95111) /m/02rkkn1 flight of the conchords (television show) (Q1428750) /m/0dcp_ mucoviscoidosis (Q178194) /m/03_44z new zealand national soccer team (Q175315) /m/056zdj club sinergia deportiva (Q849823) /m/0hqzm6r /m/0hqzm6r /m/0kv36 el centro, ca msa (Q169952) /m/04l58n hartford wolf pack/ct whale (Q883425) /m/0cp6w nice, france (Q33959) /m/02rg5rm ekbatan f.c. (Q1622208) /m/04zxrt racing club of avellaneda (Q276533) /m/0nzw2 dekalb county board of comissioners (Q486398) /m/013n60 armadillo, texas (Q51691) /m/0dhf5 negeri hang tuah (Q185221) /m/0dl08 jurisconsult (Q2664701) /m/06c53w ajithkumar (Q339896) /m/0l2yf santa cruz county, california (Q108122) /m/0736qr ray wise (Q530646) /m/09n3wz anthology series (Q23653) /m/016wrq rotherham rural district (Q217039) /m/0n2vl ashtabula, oh μsa (Q336322) /m/05f67hw /m/05f67hw /m/01d5g batman (comics) (Q2695156) /m/04s5_s mike mills (Q364864) /m/0ytph mayor of springfield, ohio (Q40325) /m/01ynvx revelation records (Q1759336) /m/01kcty bossa groove (Q486263) /m/01213c argyll and bute (council area) (Q202174) /m/01t7n9 /m/01t7n9 /m/01nl79 queens county, new york (Q5142559) /m/0bhtzw felix bastians (Q573341) /m/063t3j the afterlove (james blunt album) (Q130799) /m/04xhwn clint howard (Q1101612) /m/01fscv green bay, wi. (Q47430) /m/02mv_h dover athletic fc (Q2658370) /m/0d1y7 metro vegas (Q108403) /m/02rtqvb twelfth night: or what you will (1996 film) (Q1525083) /m/02yy8 fd roosevelt (Q8007) /m/026_s_ merge records (Q1921640) /m/0f8x_r /m/0f8x_r /m/02l0xc dominic felix amici (Q310413) /m/03v36 banks, iain (Q312579) /m/071jrc john f. seitz (Q724695) /m/05hwn pakistani frontier province (Q183314) /m/01zst8 st edward's royal free ecumenical middle school (Q464955) /m/01z9z1 wanganui new zealand (Q1015672) /m/03xds i.m. pei (Q46868) /m/0468g4r best screenplay award (cannes film festival) (Q978420) /m/018qpb catherine rosalind russell (Q233854) /m/010z5n parkersburg, west virginia metropolitan area (Q329485) /m/0cg9f richard burton (actor) (Q151973) /m/01pt5w ste. anne de beaupre school (Q1475) /m/0bbc17 gross-out film (Q3778115) /m/020qjg the copley medal (Q28003) /m/0_00 duduzile manana (Q83162) /m/018lbg newmarket, canada (Q52999) /m/02v2lh healing music (Q213121) /m/0ctwqs queensland fc (Q839997) /m/01h2_6 angel of history (Q61078) /m/012x03 the temptations/comments (Q846373) /m/06jjbp euro disco (Q1374731) /m/08s0m7 sneha(actress) (Q3520670) /m/043ttv sequoia (Q1852025) /m/01z28b watford town hall (Q2598) /m/03f0fp winger (sports) (Q1369558) /m/0jcmj weber (county) (Q26754) /m/088cp eoferwic (Q42462) /m/03hkvzc irish classical composer (Q1378776) /m/0py5b casting in john hughes movies (Q311263) /m/0126hc fullham (Q3367868) /m/0tn9j list of mayors of minden, louisiana (Q2752205) /m/02mg5r northampton polytechnic institute (Q1094046) /m/02y9wq dunedin (Q133073) /m/02_nkp lamar odom (Q296403) /m/02x02kb achala sachdeva (Q4673430) /m/01jv68 ikh mongol uls (Q12557) /m/02rk23 south carolina st. (Q7566644) /m/0233qs cubatón (Q202930) /m/04j689 santos laguna current roster (Q745246) /m/015401 central pardis (Q737835) /m/01k56k nebula awards eighteen (Q314553) /m/01b8d6 s.k. brann seasons (Q205685) /m/047jhq juhi chawla (Q158745) /m/0cttx sportsaddicted/feyenoord (Q134241) /m/04_sqm classic metal (Q1133657) /m/01w03jv jellobiafra (Q334288) /m/012gyf universidad nacional autonoma de mexico (Q222738) /m/0gclb daru-salam city (Q2449) /m/02wlk frank l. wright (Q5604) /m/01nn3m jamie cullem (Q356305) /m/019dmc respiratory insufficiency/failure (Q767485) /m/01m41_ /m/01m41_ /m/06lbpz /m/06lbpz /m/01nfl1 sydney (kingsford-smith) airport (Q17581) /m/0dt49 nobel prize/physiology or medicine (Q80061) /m/0f24cc /m/0f24cc /m/06r3p2 shirley knight (Q238884) /m/07kr2 northen ireland conflict (Q815436) /m/016qwt sud tirol (Q15124) /m/01jlsn england's top private schools (Q2418495) /m/013km toriyama akiya (Q208582) /m/02w70 frederick's town (Q2138) /m/0kvtr anarcho-rock (Q486365) /m/026bk 🕺 (Q11639) /m/05bkf nuremburg, germany (Q2090) /m/0xzm /m/0xzm /m/07vj4v abs-cbn film productions (Q7600659) /m/04nlb94 let the right one in (2009 film) (Q144756) /m/019fv4 halle an der saale (Q2814) /m/04t_mf nazarethism religion (Q106039) /m/0fvxg helena, mt msa (Q38733) /m/03c6s24 1908 mlb season (Q1985783) /m/013hvr history of high point, north carolina (Q631194) /m/0g0vx agriculturalists (Q131512) /m/03phtz daylight (1996 film) (Q225916) /m/0935jw neilson ross (Q3053268) /m/06mm1x kirkland, mark (Q2748620) /m/01b0k1 lambert obe (Q2656696) /m/03f4w4 joely kim richardson (Q234131) /m/0fqxc overijssel (département) (Q773) /m/09qbdc eastleigh fc (Q2303493) /m/06kx2 reno, nev. (Q49225) /m/0y617 troy, new york (Q600301) /m/03s0c isle (Q23442) /m/044prt suneil shetty (Q983043) /m/01dpsv reba mcentyre (Q229430) /m/01hyfj teckhouse (Q598593) /m/0d3ff wuppertal, germany (Q2107) /m/0fvvg frankfort, ky msa (Q28603) /m/035l_9 british india national football team (Q212206) /m/01l50r spike tv (Q249674) /m/0d7m90 ecw on tnn (Q72085) /m/02y21l sire records (Q165711) /m/02pdhz davison university (Q2902978) /m/054rw prefecture of sidi youssef ben ali (Q101625) /m/0dbns cooks-winchester college (Q1059517) /m/0ql36 godfather of funk (Q336272) /m/02rr_z4 media asia films (Q6138447) /m/01s5q legal execution (Q8454) /m/01hwkn coalition wars (Q15053704) /m/0g6xq penang state (Q188096) /m/040nwr shirpa shetti (Q270665) /m/04d18d scarlet red (Q2268159) /m/01385g michael scudamore redgrave (Q318263) /m/0mkp7 outagamie county, wisconsin (Q510244) /m/04vq33 jeanne d'arc (film, 1948) (Q1697043) /m/0cv1w howard county, md (Q398939) /m/047s_cr /m/047s_cr /m/09xp_ wikiportal/cricket (Q5375) /m/04bz7q kristine sutherland (Q257254) /m/0prxp vicetia (Q6537) /m/01_q7h kanpur, uttar pradesh (Q66568) /m/0fm3h2 goya award for best actor (Q1520004) /m/0htx8 county of nottingham (Q23092) /m/0dj7p amsterdam, new york micropolitan area (Q487572) /m/0btj0 frigo (Q103949) /m/02h758 network seven (Q908659) /m/0r6c4 mountain view, santa clara, california (Q486860) /m/032d52 burke library (Q1196251) /m/04jn6y7 edge of darkness (2010 film) (Q760093) /m/03fhjz fci levadia (Q210849) /m/0n4z2 sandoval county (Q493255) /m/01m1_d westport, conn (Q586762) /m/01lxw6 lexington (massachusetts) (Q929667) /m/0jbk animal (Q729) /m/03b8c4 /m/03b8c4 /m/026c0p kirsty kinnear (Q715642) /m/024fxq /m/024fxq /m/0mnz0 fairfax county (Q341915) /m/01bqnc liberal party (quebec) (Q1631384) /m/0fvzz memorial middle school for girls (Q25280) /m/0bp_7 wiesbaden, germany (Q1721) /m/03j0ss la academia del fútbol mexicano, los niños catedráticos, los amigos del balon, el equipo del panadero, los zorros, los rojinegros, los niños héroes, la furia. (Q1023532) /m/07lz9l ira steven behr (Q6066272) /m/05808s east west (wmg) (Q2576206) /m/05g56 Q15878 /m/0pgm3 chris elliot (Q377424) /m/01gln9 burton upon trent borough council (Q1000597) /m/034vds love of life (Q2545719) /m/06msq outdoor sculpture (Q11634) /m/05rrw9 first continental congress (Q252612) /m/07kfzsg hong kong film awards for best actress (Q13636514) /m/0mvn6 pauline, glenn-springs, south carolina (Q507488) /m/0mvxt greenville county, south carolina (Q502273) /m/047rgpy music executive (Q3089940) /m/04gm7n priority records (Q522618) /m/02fqxm nick curran (basic instinct) (Q146673) /m/0118d3 racine, wisconsin (Q40340) /m/01qnfc adventures of electric rod boy (Q738544) /m/04nc_7 seasons of mist (Q1548644) /m/02zj61 diane eve warren (Q237354) /m/051ysmf howard bristol (Q1631735) /m/09vzz enlighten: theses (Q192775) /m/04swx البحر المتوسط (Q4918) /m/01gwck portland state (Q1771717) /m/0bqsk5 list of macarthur fellows (Q1543268) /m/0424mc avant-garde film (Q790192) /m/0g4g7 gold coast (queensland) (Q140075) /m/03x23q grambling (Q5593620) /m/01ckhj nigel neill (Q214309) /m/04l57x hershey chocolate b'ars (Q569225) /m/04_xr8 naples province (Q15123) /m/01stj9 norfolk college of the colleges of william & mary (Q1474100) /m/07wm6 manitoba, university of (Q1191833) /m/01qcx_ astoria heights (Q121765) /m/03_b1g veronica mars (Q4529) /m/04bjff aalesunds fk (Q214992) /m/04kwbt thomas griffin dunne (Q470260) /m/032r4n king's college (new york) (Q4569677) /m/02bc74 josh grobin (Q218083) /m/02hgz londonderry-on-the-foyle (Q163584) /m/0627zr vadivel (Q967495) /m/09k23 manchester metropolitan university (Q1888771) /m/013mtx longview, tx (Q852645) /m/05hz6_ rio ave f. c. (Q622432) /m/062yh9 carmine infantino (Q1043824) /m/07w42 lpus (Q558334) /m/08gyz_ irene lentz (Q145245) /m/07gqbk sony music japan (Q732503) /m/0f8grf kimi e (Q519821) /m/0b1s_q david crane (writer/producer) (Q335672) /m/0kf14 vyner, ontario (Q34106) /m/0q34g norwich, united kingdom (Q130191) /m/0hmtk rangerscoach (Q188984) /m/033g54 armenian national football team (Q183326) /m/034p8 greek mythology gods (Q34726) /m/0mzj_ service branch (Q781132) /m/0225v9 neu (Q37548) /m/06lk0_ frank skinner (composer) (Q165686) /m/018rn4 choreography (Q180856) /m/0n2k5 hamilton county, ohio (Q152891) /m/02t901 robert barton englund (Q310389) /m/03mr85 peyton place (film) (Q1532392) /m/0hc8h claudia castra (Q170497) /m/089kpp graeme revell (Q920963) /m/05x2s the philip k. dick award (Q1341487) /m/0qxzd hayward, ca (Q491114) /m/0cbxl0 manish malhotra (Q1563710) /m/01dv21 harland & wolff (Q848977) /m/0fj45 /m/0fj45 /m/036wy greater london county (Q23306) /m/01s7z0 genetic jackhammer (Q44430) /m/0mxhc clackamas county (oregon) (Q484404) /m/03jv8d war of the 4th coalition (Q605977) /m/0ky0b aups maritims (Q3139) /m/01l5t6 librarian (Q182436) /m/019mdt e.c. bahia (Q198032) /m/012hw /m/012hw /m/036kmk grays athletic fc (Q625130) /m/01tmtg jawa barat (Q3724) /m/098phg roma province (Q15119) /m/0339z0 horrorcore rap (Q1139136) /m/0g2hw4 /m/0g2hw4 /m/07_w1l eintracht trier (Q647893) /m/02qx5h george seagal (Q449900) /m/02h2z_ north africa 1941–42 (Q218678) /m/03c9pqt toby emmerich (Q1295611) /m/01pny5 robert william gary moore (Q185147) /m/03x726 cd nacional (Q216459) /m/0ms6_ publius maximus/judge charles f. sandoval (Q111174) /m/0vrmb dearborn, michigan (Q430464) /m/03np_7 university of texas at arlington department of military science (Q1230739) /m/0h6dy chambre des communes (Q383590) /m/0kwmc heron bay, mobile county, alabama (Q495738) /m/0b_770 2001 ncaa division i men's basketball tournament (Q3994977) /m/08141d mona iannotti (Q261865) /m/09qxq7 acoustical music (Q286080) /m/0w9hk rochester, minn. (Q486479) /m/07gdw tréier (Q3138) /m/05q_mg dave lelyveld (Q4115716) /m/06nd8c howie morris (Q322266) /m/0fw3f wyoming state capital (Q39042) /m/0prpt le festival de cannes (Q42369) /m/0ckf6 west ham united (Q18747) /m/03fpx grind rock (Q188534) /m/01wmcbg karen blanche ziegler (Q232333) /m/027kwc foreigner (band) (Q275059) /m/091n7z laura bailey (voice actress) (Q2364867) /m/025snf shows on ytv (Q1789910) /m/01c9d1 best reggae album (Q1542180) /m/04kd5d shangai shenhau (Q725367) /m/051ghn fc brussels (Q1050331) /m/0hz28 /m/0hz28 /m/0d7_n lvov (Q36036) /m/0190yn dancehall reggae (Q474027) /m/0257__ best contemporary classical composition (Q1619268) /m/0g5rg parlor city (Q213814) /m/01nn7r corpus christi college cambridge (Q536282) /m/021mlp john carradine (Q312878) /m/0lk0l sorbonne (Q209842) /m/0r0ls un/locode:uslyj (Q849619) /m/013rds david marley (Q199418) /m/06s27s hensley meulens (Q958652) /m/05s34b abc radio network (Q2974371) /m/0gj4fx nh-02 (Q7008068) /m/0cbl95 all quiet on the western front (1930 film) (Q272599) /m/026y3cf roots the next generations (Q1247494) /m/012x7b psychedelic trance (Q622871) /m/0nlqq flathead county, montana (Q496607) /m/0257pw /m/0257pw /m/0425gc pohang steelers (Q169985) /m/03r00m best urban/alternative performance (Q580509) /m/018dh3 barrie, ontario (Q34183) /m/0chnf solaris os (Q14646) /m/0fpzzp gnu+linux (Q3251801) /m/04ck0_ argentinos juniors (Q220621) /m/07c2yr olympiakos nicosia fc (Q280814) /m/0g72r bukowski, charles (Q76409) /m/0154yf /m/0154yf /m/0mgrh manche (département) (Q12589) /m/02cnqk indo-pak war of 1971 (Q1922071) /m/0mwyq altoona, pa metropolitan statistical area (Q494152) /m/0mww2 centre county (Q494248) /m/01t4p0 soutphort (Q868647) /m/03qhyn8 danilo donati (Q831536) /m/016dp0 the great bear (play) (Q313841) /m/0plw aol inc (Q27585) /m/022s1m john dimaggio (Q313266) /m/06439y nba draft 2005 (Q595916) /m/09hldj metallist kharkiv (Q207462) /m/06mtq s. aust. (Q35715) /m/04kny3 st patricks athletic fc (Q394452) /m/063b4k ddy productions (Q219124) /m/0m__z un/locode:iegwy (Q129610) /m/0kq0q calaveras county, ca (Q271613) /m/0nv99 history of madison county, illinois (Q486448) /m/02b168 lofc (Q19595) /m/0hcm7 accrington stanley f.c. (Q48843) /m/05hyn5 cf os beleneses (Q216510) /m/02c9dj sanctae crucis award (Q2620177) /m/016gb5 koblenz (Q3104) /m/04192r chief marketing officer (Q1072339) /m/09f8q augsburg, germany (Q2749) /m/0xmp9 montclair nj (Q678437) /m/03d49 maltodextrose (Q37525) /m/08htt0 parson's school of design (Q1339626) /m/0dcqh insular sclerosis (Q8277) /m/01fkr_ save the music foundation (Q203078) /m/01fxfk peter hess stone (Q1718449) /m/0vp5f sagnasty (Q719) /m/019c57 kenyon lords and ladies track and field (Q1797768) /m/0q_0z baker's field (Q49256) /m/0l3q2 belo horizonte, minas gerais (Q42800) /m/01y06y karl marx university, leipzig (Q154804) /m/03fhj1 sk tirane (Q210170) /m/01b3l hall of fame (baseball) (Q809892) /m/011xhx kiss (band) (Q124179) /m/0135p7 st. joseph central business district, missouri (Q745120) /m/06vr2 eradicate smallpox (Q12214) /m/0yx74 history of hattiesburg, mississippi (Q384464) /m/01w2dq blackburn, lancashire (Q188313) /m/0njj0 history of kent county, michigan (Q82499) /m/017dbx power rangers generations (Q333156) /m/02b1yn ayr united f. c. (Q793241) /m/0ldd agathe christi (Q35064) /m/015vql michael hordon (Q956867) /m/03x6rj efstratios gidopoulos (Q201584) /m/06w38l phillip yordan (Q327165) /m/0xr0t morristown, new jersey (Q962499) /m/05mc7y eddie selzer (Q974385) /m/072vj world war 3 (film) (Q275402) /m/06c6l rocky mountains (Q5463) /m/0131kb donald pleasants (Q314914) /m/02zy1z earlham quakers track and field (Q5326502) /m/0sd7v bloomington, illinois (Q577802) /m/0ckt6 don't call me shirley (Q497256) /m/02rk3gn panserraikos serres (Q1417287) /m/012ts aucklnd (Q37100) /m/0fzjh l-(-)-tryptophan (Q181003) /m/02pbp9 jeff probst (Q2914539) /m/0gf14 ry high (Q611723) /m/0230rx the saintees (Q268776) /m/05b5_tj /m/05b5_tj /m/06mq7 sciences (Q336) /m/05ff6 northern territorian (Q3235) /m/065ky pyrenaean (Q12431) /m/01jc9d selangor (Q189710) /m/01__z0 united malays national organization (umno) (Q1668154) /m/01p726 westfield, ct (Q49192) /m/039yzs college hardwood (Q48890) /m/02qvhbb /m/02qvhbb /m/013m4v plano texas (Q51689) /m/04kbn invasive species in lake erie (Q5492) /m/0393g guangzhou, guangdong (Q16572) /m/0778_3 the national theatre school of canada (Q3578133) /m/0tz1j history of lawrence, massachusetts (Q49163) /m/079dy /m/079dy /m/0dxyzb lask linz (Q392310) /m/01jz6d le bron james (Q36159) /m/016722 jaipur, rajasthan (Q66485) /m/0hc1z Q15058013 /m/02h8p8 sangyo (Q209961) /m/0qb62 nganhwui (Q40956) /m/0tj9 amitabh bacchan (Q9570) /m/081t6 29th president of the united states (Q35286) /m/034tl guam territory, united states (Q16635) /m/0cv_2 ap news (Q40469) /m/0ycht white plains, new york neighborhoods (Q462177) /m/0fqxw gelderlanders (Q775) /m/03wdsbz paul sylbert (Q2062658) /m/0fzm0g a midsummer night's dream (1999 film) (Q1305200) /m/0xc9x henderson, nev. (Q49267) /m/08tyb_ italia conti drama school (Q348134) /m/0p7tb list of the residence halls at mount holyoke college (Q1140542) /m/0dq23 teledyne vehicle systems (Q502940) /m/05s9tm band manager (Q1320883) /m/02gm9n /m/02gm9n /m/043yj jacksonville, mississippi (Q28198) /m/0nhr5 history of dakota county, minnesota (Q111694) /m/01yfj button (curling) (Q136851) /m/035qv8 strasbourg gymnasium (Q157575) /m/049fcd f.c. modena (Q8408) /m/0mn9x petersburg county, virginia (Q511964) /m/0164y7 frank henry loesser (Q966018) /m/02gnj2 len wein (Q51057) /m/02b1lm northwich victoria football club (Q18486) /m/0g96wd british natives (Q7994501) /m/04gfy7 asian indian (Q2643509) /m/04_bfq delfino pescara (Q2710) /m/0snty bloomington review (Q490385) /m/0frpd5 /m/0frpd5 /m/0jcx1 island of dordrecht (Q26421) /m/051wf the 'spos (Q1148233) /m/0k3j0 greenfield town, ma micropolitan statistical area (Q54163) /m/0fvd03 royal polytechnic institute (Q1247544) /m/01n4bh acid jazz (Q221772) /m/03fqv5 alan j. pakula films (Q51519) /m/0577d magdeburg, germany (Q1733) /m/07663r estelle harris (Q272935) /m/05jphn newfoundland time zone (Q2420151) /m/04hk0w constantine 2 (Q219150) /m/01jb8r filipino-language (Q33298) /m/0p07_ history of eagle county, colorado (Q115551) /m/01hd99 armenian orthodox (Q683724) /m/014kj2 crawley borough council (Q844908) /m/02k76g tim minear (Q526218) /m/029r_2 west dorset district council (Q629802) /m/0jcpw atlantic (region), canada (Q246972) /m/0p2n andean (Q5456) /m/01xbld middlesburgh (Q171866) /m/01rthc college rock (Q783097) /m/0p_r5 brian doyle murray (Q912103) /m/0784z 1967 arab-israeli conflict (Q49077) /m/0jnkr tampa bay lightning (Q201864) /m/021gt5 litchfield, ct (Q755403) /m/01qz69r kazuhiko inoue (Q225654) /m/0f5kw7 m.s. ashdod (Q1138191) /m/01kkfp the fire (Q308683) /m/02681_5 latin grammy award for song of the year 2000s (Q6496408) /m/0b5ysl waitakere united (Q611885) /m/01fv4z kagoshima prefecture (Q15701) /m/0n59t somerset county, new jersey (Q502414) /m/0f3nn lorenz hart (Q725828) /m/01mf0 editing software (Q7397) /m/016_rm west coast rapper (Q429264) /m/020bg carravago (Q42207) /m/0130xz generalship (Q83460) /m/09hyvp pfc metalurh zaporizhzhya (Q935956) /m/0ql86 kings' crusade (Q51655) /m/03vv61 vanguard (welk) (Q2034661) /m/0jyw geography of ankara (Q3640) /m/02hfgl saitama lions (Q325819) /m/0906w9 fc spartak-d nalchik (Q693951) /m/0cbdf1 /m/0cbdf1 /m/0166c7 jiang-su province (Q16963) /m/01qq80 suzhou (Q42622) /m/01g5kv amber nicole benson (Q456862) /m/018s6c israel/people (Q875556) /m/0619m3 swingman (Q2302133) /m/0bx_f_t 58th berlin international film festival (Q82111) /m/0520y3 fc torpedo-d moscow (Q324338) /m/070px syd james (actor) (Q1086861) /m/0ny57 un/locode:ussdx (Q80041) /m/0rwgm rome, ga (Q6580) /m/04mvp8 cyrilian (Q1267987) /m/0tz01 gloucester,mass (Q49156) /m/01c6rd poitou-charentes (Q17009) /m/09xvf7 robert z. leonard (Q269731) /m/0xmqf orange, n. j. (Q1087121) /m/0d9kl bugs the bunny (Q183102) /m/0j6x8 australian aborigines (Q12060728) /m/07db6x nunnally johnson (Q2005146) /m/07wgm adams-clay federalist (Q42189) /m/09s02 telgu (Q8097) /m/0g9pc viral illness (Q808) /m/0_j_z downtown circulator (pawtucket) (Q49200) /m/02rzmzk telugu actor ali (Q4724516) /m/0byb_x /m/0byb_x /m/03gqgt3 casualties of the war on terror (Q185729) /m/03yhgp weymouth football club (Q599356) /m/01f1p9 christian metal music (Q822914) /m/022tfp sky1 tv movies (Q909662) /m/01z1c city of columbia, missouri (Q59670) /m/0422v0 primal fear (film) (Q822057) /m/012q8y fremantle, australia (Q606212) /m/01bdhf up-diliman (Q3176886) /m/0jhwd /m/0jhwd /m/02qdzd fc bruges (Q190916) /m/0nq_b islington, london, england (Q125163) /m/0882j7 a.c. monza (Q289482) /m/0kd69 armagh county (Q192761) /m/055z7 mattel (Q596139) /m/03z1c5 kombëtarja shqiptare e futbollit (Q186262) /m/0h7jp bec-d'ambès (Q12526) /m/01b85 the weather in bordeaux (Q1479) /m/0fsyx the cure the warm-up tour (Q484427) /m/03lgtv /m/03lgtv /m/0kqbh psv eindhoven (Q11938) /m/02qrbbx /m/02qrbbx /m/019x4f Q154549 /m/0bsxd3 2008 national heads-up poker championship (Q662042) /m/0bqthy 2006 ncaa men's division i basketball championship (Q2948727) /m/0l8bg impact of events (Q202387) /m/02q3wl pharmaceutical industries (Q507443) /m/04cw0n4 sol polito (Q716493) /m/0dzbl half (eton) (Q192088) /m/0gxr1c kaidoku funou (Q4384067) /m/0plxn selma, al (Q79941) /m/01g4yw middlesex university london (Q1760791) /m/0727h the war against hannibal (Q6271) /m/03262k russian national football team (Q726080) /m/01n5sn soul-jazz (Q1615483) /m/02vxy_ christian catholic (Q9592) /m/01kcmr bet's notorized (Q880256) /m/073y53 john fritz gold medal (Q6234290) /m/06gst radio corporation of america (Q218038) /m/0qxhc un/locode:usfyv (Q219526) /m/07w8f unitarian-universalists (Q1622507) /m/02zp1t heemstede (nieuw-nederland) (Q3358175) /m/03f4n1 casal d'aragó (Q204920) /m/0430_ jerusulam (Q1218) /m/0tzt_ northampton, ma (Q49186) /m/0n5xb rockingham county, new hampshire (Q54438) /m/0kcd5 tnt usa (Q688333) /m/02skyy wcw monday night nitro (Q1193741) /m/01rdm0 rumanian kingdom (Q203493) /m/06qw_ star strek: deep space nine (Q108774) /m/01glqw peterborough, ontario (Q776930) /m/02b1hq farnborough f. c. (Q2978308) /m/0121rx джон герберт «джекі» gleason (Q454200) /m/06101p wong jing (Q707336) /m/0789r6 goldon lion award (Q209459) /m/03nn7l2 2009 sundance film festival (Q3976987) /m/01y2mq crunk music (Q936573) /m/0133k0 electroklash (Q861823) /m/02fzs happiest place on earth (Q181185) /m/01trxd free university, berlin (Q153006) /m/0fhmy wilten (Q1735) /m/011hq1 sikim (Q1505) /m/0fw9n7 /m/0fw9n7 /m/01hbq0 robert vaughn (Q314834) /m/0jq27 la mosson (neighbourhood) (Q6441) /m/01mvpv cass, lewis (Q503119) /m/02yw26 violent metal (Q465978) /m/01s753 queens college (Q765642) /m/043q2z harvard university divinity school (Q1034225) /m/0lmm3 the hornets (Q2714) /m/03gt0c5 marit allen (Q433537) /m/0zpfy johnstown, pennsylvania metropolitan area (Q1070763) /m/06lhbl rosher, charles (Q774270) /m/06b3g4 michael connor gainey (Q722038) /m/021vlg /m/021vlg /m/0cct7p om prakash chibber (Q7089349) /m/02v2jy mervyn griffin (Q598344) /m/042fk president buchanan (Q12325) /m/01pf6 cardial arrhythmia (Q189331) /m/0841v /m/0841v /m/02zr0z virginia union university (Q1814758) /m/03djpm list of industrial music genres (Q936942) /m/02t1wn rufus alan mckahan (Q1971717) /m/089z0z david buttolph (Q1173882) /m/02lm0t kevin maurice garnett (Q189240) /m/018417 hayes, helen (Q213302) /m/0fq9zcx /m/0fq9zcx /m/06nsb9 john fiedler (Q944638) /m/01qdhx belmont university (Q3298359) /m/03vtrv vertigo records (Q1330417) /m/0fxkr ocala metropolitan area (Q501014) /m/01zt10 manisha koirala (Q186606) /m/014kg4 john arthur kennedy (Q351838) /m/0l3cy city of wuhan (Q11746) /m/03fnqj real betis balompié s.a.d. (Q8723) /m/01q8wk7 r d burman (Q3351160) /m/07y2b upn (television network) (Q206272) /m/01svq8 /m/01svq8 /m/0c5v2 boca raton (florida) (Q29422) /m/03mp37 austria viena (Q131209) /m/01sv6k manglore (Q127041) /m/014dsx travelled (Q61509) /m/0k3jc hampden county, ma (Q54160) /m/0tzls holyoke, massachusetts (Q1637790) /m/02xyl franklin patrick herbert (Q7934) /m/02kc_w5 tetradecanoic (myristic) acid (Q422658) /m/01g04k b.g.desylva (Q80760) /m/04g2mkf /m/04g2mkf /m/025bwc impresaria (Q943995) /m/01j95 warren keffer (Q210146) /m/0d19y2 hiv/aids (Q12199) /m/01c5d5 taschlein (Q589459) /m/0fr5p history of harford county, maryland (Q501284) /m/03d0d7 fc twente enschede (Q19603) /m/0dt5k gwynedd/gwynedd (Q109128) /m/03qkcn9 jefferson starship – the next generation (Q2265203) /m/09xb4h fsv frankfurt squad (Q157352) /m/0154fs brampton, ontario, canada (Q44198) /m/0n6nl nie county, nevada (Q484418) /m/0lzp /m/0lzp /m/02q253 history of marshall university football (Q1379613) /m/0jg77 collected (nine inch nails dvd) (Q11647) /m/0156ts darlington, tees valley (Q213181) /m/04rfq gladys marie smith (Q104109) /m/0p8h0 byrds (Q211526) /m/01_bp acustar (Q181114) /m/0bd67 wielkopolska voivodship (Q54187) /m/03hvk2 elliott hall, wesleyan (Q194266) /m/082237 norcap olympique (Q209509) /m/02jx_v rmit informit (Q1057890) /m/07s5fz shandong luneng taishan f.c. (Q1046367) /m/04mwxk3 europacorp distribution (Q1375196) /m/045hz5 sharmila tagore (Q465830) /m/02w64f spain men's national soccer team (Q42267) /m/0j_1v volusia (Q494541) /m/0b9f7t sawashiro miyuki (Q49552) /m/06z9k8 sd eibar (Q770740) /m/0clpml list of actors who portrayed james bond (Q844) /m/0p9gg charles boyer (Q105987) /m/0n491 gaston county, north carolina (Q511849) /m/0c3dzk tony gaudio (Q460376) /m/06czxq john stephenson (voice actor) (Q3182524) /m/01qjct neath (Q2003342) /m/01gc8c timmins police service (Q991310) /m/0fnb4 dhakka (Q1354) /m/0j6tr toronto leafs (Q203384) /m/0h6sv ben britten (Q150767) /m/0vqcq downtown port huron, michigan (Q1000222) /m/0hkf agricultural methods (Q11451) /m/0l2jb mariposa county, ca (Q156191) /m/01rs62 university preparatory high school (Q428602) /m/01s_d4 hamilton academical football club (Q498473) /m/01r9md lucille f. ryan (Q133112) /m/04lc0h auckland city, new zealand (Q758634) /m/02t1dv mitsuishi kotono (Q18735) /m/06mmr star wars galaxy (Q462) /m/0c0sl the national public radio station (Q671510) /m/07ykkx5 the last song (film) (Q900362) /m/02kwcj fist the north star (Q733498) /m/03q64h akira kamiya (Q418762) /m/016w7b macalester scots men's basketball (Q1141571) /m/0mnyn falls church county, virginia (Q408744) /m/02yy9r dirty pretty things (film) (Q151903) /m/0m241 history of apache county, arizona (Q58771) /m/0hhjk to save and project (Q188740) /m/0x1jc great falls police department (Q466190) /m/09x8ms gilbert adrian (Q1366554) /m/0njcw marquette, mi msa (Q498155) /m/0h98b3k 2010 australian film institute awards (Q4616669) /m/0mbf4 downtown kitchener, ontario (Q200166) /m/02p72j christian-albrechts-universitaet zu kiel (Q156737) /m/0dly0 perugian (Q3437) /m/026mx4 municipalities of manipur (Q1193) /m/02zfg3 durning, charles (Q329784) /m/0dszr0 nicole sullivan (Q273107) /m/06n8j sarajevo, bosnia and herzegovina (Q11194) /m/01jygk telemundo's (Q136538) /m/029t1 delft (Q690) /m/02975m cbs radio inc. of michigan (Q1022995) /m/05m7zg not stalking david tennant (Q214601) /m/0g14f staffordshire (Q23105) /m/0bwd5 businessschools (Q1143635) /m/0njpq flint, mi msa (Q497695) /m/0tnkg lewiston (me) (Q501170) /m/0qx1w ft. smith, arkansas (Q79535) /m/07th_ universitas osloensis (Q486156) /m/0r3w7 rancho mirage, california (Q506446) /m/0s9b_ history of joliet, illinois (Q40345) /m/0b_734 2002 ncaa men's division i basketball tournament (Q3994978) /m/01x2_q dany heatly (Q440283) /m/0j2jr crewe alexandra f.c (Q19587) /m/0bwtj /m/0bwtj /m/038723 greek americans (Q1150312) /m/04ykz pekistanoui (Q5419) /m/04gxp2 university of michigan school of law (Q911830) /m/050g1v southern gospel music (Q2022163) /m/019v67 gaumont distribution (Q913462) /m/061k5 parma (Q2683) /m/017hnw philips academy, andover (Q1432645) /m/01zlx mx-chp (Q60123) /m/0d_rw /m/0d_rw /m/021gk7 origin (software company) (Q1193678) /m/0ly8z rosenborg ballklub (Q186785) /m/05fw6t childrens music (Q2389651) /m/0sl2w un/locode:usmie (Q932981) /m/0hbbx szuchuan (Q19770) /m/01_5bb monmouthshire county (Q207176) /m/04t0p1 tommy boy music (Q1644016) /m/0fcyj caraqueño (Q1533) /m/06nsn socialism/doc (Q7272) /m/0cycc human influenza (Q2840) /m/07z4fy cyril mockridge (Q328857) /m/031zm1 hask gradanski (Q172803) /m/02zbjhq sung-yeung ki (Q313083) /m/07t_l23 british academy television award for best actress 2000-2019 (Q2925697) /m/0443xn mitch pileggi (Q279169) /m/01gbzb st. catherine's, ontario (Q126805) /m/02b0yz colchester united f.c. (Q19578) /m/04hxyv charles adler (voice actor (Q2557451) /m/01z22v wagga wagga, australia (Q459600) /m/0dwcl yosemite entertainment (Q494614) /m/03lb_v national institute of arts and letters (Q463281) /m/03zm00 selección de fútbol de el salvador (Q188228) /m/0n84k qwetta (Q185458) /m/02qcqkl black gospel (Q5967604) /m/01tkgy david kaye (voice actor) (Q3018199) /m/0chgsm windsor fort (Q42646) /m/0c73g schuman (Q7351) /m/05c17 collectivité sui generis (Q33788) /m/04v7k2 vijay (actor) (Q528496) /m/03fhml shelbourne f c (Q394474) /m/01fzpw cocaine smuggling (Q844924) /m/02b17t rochdale a.f.c. (Q48949) /m/01n86 river columbia (Q2251) /m/0r02m claremont, california (Q506398) /m/0cn_tpv /m/0cn_tpv /m/05kjlr aia gold medal (Q3317387) /m/0h407 scots tongue (Q14549) /m/04mrjs adelaide united fc (Q354059) /m/03qrh9 それ行けカープ (Q247577) /m/0m_zm ros comáin (county) (Q179437) /m/012d9h blairnacoi (Q160493) /m/0x82 afrikans (Q14196) /m/02tvsn first fatherland war (Q179250) /m/01nhhz bach system (Q131964) /m/03mq33 dso dynamo praha (Q194393) /m/0rwq6 brunswick, ga (Q994144) /m/0fzb5 sensitives (Q2917466) /m/0czr9_ united states house of representatives, new hampshire district 1 (Q11084135) /m/01ddbl iahl (Q464995) /m/06qmk s s (Q44687) /m/0lc1r picopop (Q135637) /m/03_3z4 united arab republic national football team (Q28089) /m/03t1s mann (Q9676) /m/0nzny fulton, georgia (Q486633) /m/01s9ftn cam arthur clarke (Q876726) /m/026v5 digital equipment corp. (Q690079) /m/0138kk dewsbury bus station (Q525508) /m/03ydry 川澄綾子 (Q49566) /m/013p59 history of merseyside (Q23100) /m/04mrhq central coast mariners f.c. (Q762294) /m/05397h holby city (tv series) (Q2610941) /m/018k8r thrissur city (Q163798) /m/0dzz_ lincolnshire, england (Q23090) /m/02x0gk1 japan academy prize for animation of the year (Q2510955) /m/01l3s0 青島市 (Q170322) /m/0jclr st. george, utah metropolitan area (Q27240) /m/05631 mouse club (Q1070749) /m/011zwl field marshall haig (Q312564) /m/085j0 windows 5.1 (Q11248) /m/09k0h5 namcobandai (Q806259) /m/076tw54 dawn of war (film) (Q1050528) /m/01mgsn kingston (city), new york (Q868660) /m/018ysx punkabilly (Q13627677) /m/0rw2x albany (ga) (Q285599) /m/012wyq middx (Q19186) /m/01dnnt staff college, sandhurst (Q575618) /m/0ff3y heller, joseph (Q208101) /m/06jplb new world station group (Q3067564) /m/0d8h4 nord de france (Q16987) /m/03pcnt bay horse (Q900906) /m/04ggh49 bay (Q39594) /m/02mf7 oregon eugene (Q171224) /m/0mwq7 franklin county, pa (Q494121) /m/0fk3s siouian (Q107434) /m/06ylv0 ofi crete (Q931704) /m/01dbhb geraldine page (Q228650) /m/02gnlz thomas, roy (Q981976) /m/0jdtt massilians (Q23482) /m/032f6 farsi (Q9168) /m/05zx7xk mtv movie award for best new filmmaker (Q748006) /m/0fplv sullivan county, ny (Q70979) /m/06ntj religious views on sports (Q349) /m/06py2 stanford university network (Q14647) /m/018x0q salford, lancashire (Q47952) /m/01stzp humboldt university, berlin (Q152087) /m/02189 chicom (Q17427) /m/0299ct criticisms of women's studies (Q35069) /m/0c499 history of bloemfontein (Q37701) /m/02wvf2s wvu mountaineers football (Q937935) /m/0sydc television rights (Q15078788) /m/026pz9s military of sovereign order of malta (Q190353) /m/0776h1v japan academy prize for best actress (Q1467106) /m/01tdpv kingdom of sardinia-piedmont (Q165154) /m/04pbsq albinese calcio (Q752483) /m/0hm2b devilsgm (Q192081) /m/014kbl puppeteer (Q2629392) /m/0d5fb old rugbeians (Q1143281) /m/0h6dj conglomerate company (Q778575) /m/0b_ljy fc karpaty lviv (Q223360) /m/08314 wicklow (Q182591) /m/04vcdj barry corbin (Q607678) /m/069d71 mike bryan (Q53342) /m/04t061 polygram classics & jazz (Q1536003) /m/0m257 sierra vista-douglas, az msa (Q58774) /m/042gr4 nozawa masako (Q259422) /m/013d_f 1963 elephant rampage in east lansing, michigan (Q871265) /m/05d8_h fc mashynobudivnyk kyiv (Q44295) /m/02nygk robert kane (Q313048) /m/06v99d kapuso network (Q399643) /m/0pf5y quadratestadt (Q2119) /m/054f2k hok sport venue event (Q1082849) /m/049wm 鹿児島市 (Q15674) /m/07zmj history of the directors of the venice international film festival (Q49024) /m/07scx unix system (Q11368) /m/02665kn james norman beaver, jr. (Q155378) /m/0t6sb kingston on (Q202973) /m/027hq5f tony longo (Q3531810) /m/05b5c articles for creation/nokia growth partners (Q1418) /m/0fbzp jefferson county, new york (Q115227) /m/01g_k3 spalatro (Q1663) /m/02rf51g herbert stothart (Q1609199) /m/0hkt6 hellenic civilization (Q11772) /m/01mzwp russian ssr (Q2184) /m/09jrf charles cornwallis, 1st marquess cornwallis (Q164723) /m/0fcrg north brabant (Q1101) /m/07lqg0 biologist (Q864503) /m/020wyp australia national cricket team (Q142555) /m/02mscn christian music articles (Q6452410) /m/026sb55 alan hume (Q490240) /m/05g7gs fc gallen (Q659212) /m/0c6cwg taliban guerrilla war (Q1752743) /m/07jqh taliban internal affairs (Q42418) /m/01ppfv cool jazz (Q327547) /m/032c08 selección de fútbol de colombia (Q212564) /m/0l_dv richard william wheaton iii (Q264699) /m/03jn4 london-heathrow (Q8691) /m/06www silkpunk (Q223685) /m/0jgxn psychologists (Q212980) /m/0th3k paducah, il (Q984377) /m/0619_ milton cross school (portsmouth) (Q72259) /m/06j2v gyp (slang) (Q8060) /m/0f3kl diarrheal diseases (Q40878) /m/064xp history of pisa (Q13375) /m/0n5by barrier islands of new jersey (Q502564) /m/0rmwd history of bradenton, florida (Q582121) /m/04kn29 adnan jamjoom (Q309480) /m/0fngy capital of uganda (Q3894) /m/08lfyn horsens fs (Q289286) /m/064r9cb universal republic (Q1025106) /m/01cpp0 2003 iraq crisis (Q107802) /m/0jryt pasco county, florida (Q500992) /m/07bbc ushkub (Q384) /m/01kmyh leghorn, tuscany (Q6761) /m/08_438 ian mcneice (Q1655608) /m/04kdn lake superior (Q1066) /m/0kcw2 downtown greensboro, north carolina (Q49238) /m/0mrf1 mcallen-edinburg-mission, tx metropolitan statistical area (Q26519) /m/01zrs_ dunnikier (Q691685) /m/02blr4 the monster of frankenstein (Q2021531) /m/0889d yerebuni (Q1953) /m/06z9yh lawrence g. cohen (Q1337925) /m/0t_48 malden, ma (Q54149) /m/0kv5t county of kern, california (Q108047) /m/02w_l9 abc family channel (Q287149) /m/088gzp national school of drama in delhi (Q3595808) /m/0ft0s bussora (Q48195) /m/0bmm4 labacum (Q437) /m/05gqy nankin (Q16666) /m/0fw2f charleston, west virginia (Q44564) /m/0509cr psych soul (Q2743435) /m/0txhf hagerstown, md. (Q755559) /m/0gy9d4 fc khimki (Q727147) /m/0gyr_7 australian broadcasting corporation one (Q3600480) /m/0p9nv history of richmond, indiana (Q548664) /m/0k5p1 history of wolverhampton (Q126269) /m/012qxv county sligo (Q179325) /m/07y07 u. s. secretary of state (Q14213) /m/04qvq0 apocalyptic folk music (Q775614) /m/02lbc history of erfurt (Q1729) /m/05btx9 zulte waregem (Q376635) /m/05tcx0 folk punk (Q1425661) /m/014cw2 steven william bragg (Q508412) /m/0mwds schuylkill county, pennsylvania sheriff's department (Q494207) /m/02lf_x nagoya prefecture (Q80434) /m/0gqfy /m/0gqfy /m/0ddfph himani shivpuri (Q3785692) /m/0168ql gerald alexander anderson (Q596137) /m/0gw2y6 ajax cape town f.c. (Q412502) /m/016vh2 /m/016vh2 /m/0102t4 marhsall texas (Q52996) /m/01hlq3 the prado (Q160112) /m/06lckm fc thun (Q464775) /m/0yldt balliol college (Q805285) /m/0l_n1 bethel census area, alaska (Q500312) /m/0nty_ sangamon county (Q490994) /m/0nrnz scott county, ia (Q485474) /m/01vskn daegoo (Q20927) /m/058cm mobile (city) (Q79875) /m/040vgd the habsburg domains (Q153136) /m/07c404 f.c. midtjylland (Q618520) /m/0190zg gangsta funk (Q1045541) /m/0txrs salisbury, maryland (Q755566) /m/0d3fdn dallas f.c. (Q642291) /m/080g3 versailles, france (Q621) /m/014162 county of york, east riding (Q23088) /m/03kfl hilversum, netherlands (Q9934) /m/02wvfxz /m/02wvfxz /m/088_kf f.c. grosseto (Q6721) /m/0fsmy chach (city) (Q269) /m/01ggbx footer movies mani ratnam (Q174648) /m/04zn7g christopher penn (Q297744) /m/05pbsry community tv series (Q728553) /m/058z1hb william kiernan (Q574452) /m/042l8n fc sion (Q321061) /m/0brddh /m/0brddh /m/0f485 city of westminister act 1999 (Q179351) /m/0k3g3 history of barnstable county, massachusetts (Q54089) /m/0bfp0l sugarhill records (Q2386070) /m/0sbv7 decatur (illinois) (Q506325) /m/0jbrr santa ana, ca (Q49244) /m/0r_ch hilo, hi (Q216258) /m/0myfz wood county, oh (Q485571) /m/0127c4 tyne-wear (Q23080) /m/0lz8d /m/0lz8d /m/05mwx un/locode:dkode (Q25331) /m/01vs8ng minami takayama (Q1323029) /m/011kn2 uottawa (Q627969) /m/03z_g7 nana patekar/comments (Q2475741) /m/03_05 id software llc (Q204474) /m/0dlqv capital of chile (Q2887) /m/0bqr7_ iraklis 1908 f.c. (Q592241) /m/027f3ys frontiers records (Q1470264) /m/04lhft dalian haichang international (Q1061615) /m/03_z5f atlanta ruckus (Q756203) /m/0htp cosmonaut (Q11631) /m/05mrx8 political satirist (Q7225114) /m/0swlx pashtoon language (Q58680) /m/0mnwd fredericksburg county, virginia (Q492342) /m/067zx9 real murcia (Q12230) /m/01j_x regular army (uk) (Q222595) /m/0ftns history of valletta (Q23800) /m/0k0sb serbian variant (Q9299) /m/01qdcv parti socialiste francais (Q170972) /m/0n3dv cass county, nd (Q28285) /m/069b85 @htc (Q186012) /m/0mlm_ kanawha county (Q501800) /m/0d6nx un/locode:chbrn (Q70) /m/03kjh hobart town (Q40191) /m/07sqbl gaziantepspor (Q285722) /m/05d49 citi hoppa (Q3870) /m/01fqm geography of baghdad (Q1530) /m/02np2n todd-houston shipbuilding (Q1467758) /m/011w54 prize in economics in memory of alfred nobel (Q47170) /m/07s4l westminster fever (Q83319) /m/0bk17k jahn regensburg (Q265570) /m/01cdt5 dyspnoe (Q188008) /m/0gry51 julius weiss (Q1526143) /m/0g686w united states naval captain (Q2937293) /m/01skqzw u s marine corps (Q11218) /m/0f11p roq west (Q774489) /m/05b1062 /m/05b1062 /m/0745k7 alan oppenheimer (Q2350830) /m/0pfd9 gippeswic (Q184775) /m/03zb6t selección de fútbol de costa rica (Q194387) /m/0cm19f /m/0cm19f /m/05f260 /m/05f260 /m/07q0m (s)-tyrosine (Q188017) /m/02hvkf winchester (borough) (Q1094226) /m/05h7tk david fleischer (Q1173200) /m/03lrls /m/03lrls /m/025rpyx panathinaikosfc (Q4122219) /m/04gj8r hong kong national football team (Q242119) /m/02gn9g marv wolfman (Q1333734) /m/07n68 the damned (band) (Q940536) /m/04qp06 rakesh roshan (Q1373377) /m/02xy5 u.s. first lady (Q7166256) /m/0mx2h history of tillamook county, oregon (Q495359) /m/025rst1 mecklenburg county, nc (Q507770) /m/025504 endemol india (Q851184) /m/06lxn ramones (band) (Q483407) /m/02_hz revolution of 1789 (Q6534) /m/0k6bt leuven, belgium (Q118958) /m/02mbs4 tennis hall of fame/doc (Q52454) /m/07gyp7 /m/07gyp7 /m/09t4hh delmer lawrence daves (Q95119) /m/0dm00 vignette (entertainment) (Q743934) /m/0z18v mansfield, oh (Q983698) /m/090gpr asha parekh filmography (Q3595311) /m/019mcm cr vasco da gama (Q5014111) /m/02b149 carlisle united fc (Q19575) /m/0l2nd placer county (california) (Q156353) /m/018d5b nutana, saskatchewan (Q10566) /m/01llj3 lewisham (Q6537297) /m/020p1 people of the cook islands (Q26988) /m/05nshw pangasinan (Q13871) /m/03lkp hastings/comments (Q29245) /m/0m0bj lancaster (lancs) (Q205905) /m/01zqy6t stanford, california (Q173813) /m/05p8bf9 /m/05p8bf9 /m/03mp1_ dnipro dnipropetrovsk (Q175687) /m/0fthl santo domingo, dominican republic (Q34820) /m/01m7mv shawsheen village, ma (Q370619) /m/01znbj nettwerk productions (Q1029135) /m/013mzh port arthur (tx) (Q45400) /m/074qgb steven dean moore (Q2842560) /m/0979n carry on campus (Q948916) /m/049m_l a.c. cesena (Q6664) /m/0cvyp great mohegan (Q3140) /m/03y5g8 deram records (Q2733913) /m/06953q mnml (Q1430587) /m/0mmd6 everton f. c. (Q5794) /m/01gpkz anderson's college (Q1859178) /m/0qcrj un/locode:usmku (Q74195) /m/01w_3 dastar (Q43656) /m/0dhd5 islamabad, islamabad capital territory (Q1362) /m/0d9z_y arkanexas (Q79438) /m/09hzc avignon (Q6397) /m/0m_cg county clare, ireland (Q181862) /m/03dctt films remade by priyadarshan (Q3115713) /m/0fk98 thiruvananthpuram (Q167715) /m/01ddth pulmonary artery embolism (Q220570) /m/0b_6yv indie psych (Q703778) /m/07wh1 us soldiers (Q9212) /m/02z3r estaminets (Q6661) /m/0wq36 city of biloxi (Q490720) /m/02rhwjr mobile suit gundam 00f (Q696062) /m/051q39 rafa nadal foundation (Q10132) /m/021q23 list of associate member nations (cricket) (Q722694) /m/04nz3 systemic lupus erythmatosis (Q1485) /m/04j6dg sporting tabaco (Q604581) /m/033kqb gateshead f. c. (Q18513) /m/03l7w8 stirling albion football club (Q282126) /m/051pnv aspyr (Q738135) /m/01mw2x /m/01mw2x /m/010r6f bellview, wa (Q214164) /m/07yx86 leader of the labour party in scotland (Q3179541) /m/02z_b fox news network (Q186068) /m/01wdtv metro-goldwyn-mayer records (Q1881437) /m/0915l1 stardust classics (Q1397901) /m/0fnx1 charlottetown, prince edward island (Q2127) /m/037n97 smooth ac (Q831354) /m/018lkp orange free state (Q218023) /m/01kym3 center color (Q266670) /m/067x44 william b. lava (Q2621011) /m/09ykwk christopher david patton (Q877103) /m/0b1mf salzburg, austria (Q34713) /m/0153nq the dio ep (Q478750) /m/03ryzs /m/03ryzs /m/01_1kk paris saint-germain f.c. (Q483020) /m/0g970 north viet nam (Q172640) /m/0jrhl lake county, fl (Q501029) /m/039b5 galaxial center (Q318) /m/0sgxg east st. louis, il (Q577891) /m/018qd6 saitama-ken (Q128186) /m/06czq ragga (Q740911) /m/083wr9 jess harnell (Q258503) /m/02gw_w croydon, united kingdom (Q2213391) /m/02b171 mansfield town (Q18522) /m/01rrgk structural engineer (Q2305987) /m/025_ql1 paul michael gross (Q720723) /m/08959 taylor administration (Q11896) /m/01505k aleppo, syria (Q41183) /m/01z2ts tunbridge wells (Q665489) /m/034cj9 henry montgomery, jr (Q366956) /m/0nvvw champaign county, il (Q110187) /m/0mw2m beaufort county, south carolina (Q495682) /m/0x44q west billings, montana (Q166304) /m/073hkx fc lokomotiv sofia (Q309025) /m/0k_6t ilford central (Q2297044) /m/03k2hn parramatta district rugby league football club (Q3366024) /m/0d34_ un/locode:dereg (Q2978) /m/09c04n vladislav varna (Q290629) /m/088lls spezia 1906 calcio (Q8615) /m/04kllm9 generalised pruritus of unknown aetiology (Q199602) /m/025tmkg accountancy qualifications and regulation (Q326653) /m/0bsl6 capital of fiji (Q38807) /m/0jnl5 capitalsgm (Q204627) /m/0l67h /m/0l67h /m/02kj7g public latin school (Q49129) /m/0257h9 exam school (Q1703577) /m/04kmx_ cork city foras (Q932284) /m/01dv4h portrait (Q134307) /m/04_cdd fc crotone (Q6690) /m/03fnn5 sbv vitesse arnhem (Q219233) /m/07n52 list of turing award winners (Q185667) /m/02fvv city of discovery (Q123709) /m/01f6ss aberdeen university debater (Q270532) /m/01m24m norwich, connecticut (Q631402) /m/0yjvm greenville nc (Q1989904) /m/0mw1j charleston county, sc (Q181015) /m/07wpm conservative party (great britain) (Q9626) /m/02sddg left-fielder (Q1149868) /m/09jd9 dianna wynne jones (Q236829) /m/0537y_ province of trentino (Q16289) /m/0yvjx history of lakewood, ohio (Q570990) /m/02gx2x javanese (Q49209) /m/01vfwd province of jawa timur (Q3586) /m/04l5b4 manchester monarchs (ahl) (Q925024) /m/07k5l progressive party of missouri (Q849158) /m/0dqyc old zealand (Q705) /m/06g7c rheumatoid arthritis (Q187255) /m/029rmn scambs (Q969203) /m/0l_j_ canadian legislature (Q475689) /m/018fwv matt freuer (Q545172) /m/0bmfpc ukg (Q1165777) /m/0c663 ancient apulia (Q1447) /m/084x96 greg ayres (Q4721515) /m/031ns1 glasgow athenæum (Q3446028) /m/01k31p marshal peng dehuai (Q381823) /m/05g9h national socialist german workers’ party (Q7320) /m/026sv5l mukesh rishi (Q6933443) /m/05t2fh4 jonas brothers world tour 2009 (Q612768) /m/042xh j.k rowling (Q34660) /m/02hkvw pamashree surendranath thilakan (Q3520698) /m/03cprft satyendra kapoor (Q266137) /m/017j7y surrey british columbia (Q390583) /m/018qql robert young (actor) (Q516390) /m/012pd4 scott bradley (composer) (Q670858) /m/01tkfj jaleco entertainment (Q1344080) /m/04hs7d yu-gi-oh! (2000 anime) (Q1186025) /m/0ccxx6 post-metal (Q41343) /m/0mw_q beaver county pa (Q494104) /m/02vnz /m/02vnz /m/025y67 kumase (Q182059) /m/01z_jj national gallery of art (u.s.) (Q214867) /m/071g6 szczecin port (Q393) /m/02lvfq comedy television (Q7696995) /m/02s2xy i̇zmir, turkey (Q35997) /m/08xpv_ southwestern pennsylvania (Q7199458) /m/0jnr3 coyotesgm (Q206312) /m/0432mrk /m/0432mrk /m/0sngf anderson, indiana (Q491461) /m/0j298t8 aacta award for best adapted screenplay (Q4649794) /m/0qlrh atlantic city beach (Q139564) /m/050tt8 devabhumi (Q1499) /m/0nv5y mclean county, il (Q111400) /m/06lq2g lo-fi hip hop (Q757143) /m/0kpw3 u s route 66 (Q79934) /m/01dq0z macodrum library (Q1041737) /m/06274w /m/06274w /m/01jnzj building construction (Q385378) /m/0r172 90601 (Q838791) /m/02psgvg bayern munich (a) (Q994701) /m/0cl8c leyden, netherlands (Q43631) /m/075p0r /m/075p0r /m/017_29 voyvodina (Q44749) /m/02b1l7 morecambe f.c. fa trophy history (Q48944) /m/041_3z portland metro area (Q4382066) /m/01nhgd cleveland state (Q1100801) /m/0s3pw champaign, illinois (Q577964) /m/0j5ym sino–japanese war (1937–45) (Q170314) /m/07_q87 dorchester town f. c. (Q2975925) /m/01tffp lebanese civil war (1975–1977) (Q208484) /m/08322 hsia-ko (Q754803) /m/052smk drone ambient (Q650316) /m/02wm6l the most serene republic of venice (Q4948) /m/0m_w6 kerry (ireland) (Q184469) /m/0lfyx upland, california, usa (Q747466) /m/0bxc4 silver spring (md) (Q755741) /m/0hknf porto antico (genoa) (Q1449) /m/0b_cr merced, california (Q499189) /m/01wb7 church buildings (Q16970) /m/0drrw broome county, new york (Q47894) /m/0jksm tsing hwa (Q16955) /m/01z56h the beatles in aldershot (Q646980) /m/04045y national women's hall of fame/doc (Q1967852) /m/0gzh abraham lincoln/doc (Q91) /m/01j2_7 neuilly-sur-seine, france (Q48958) /m/03c_8t christophe beck (Q1086291) /m/0kbg6 claremont, chris (Q631369) /m/0z4_0 normanok.gov (Q40347) /m/03k6x gilded chamber (Q11007) /m/0mgcc collingwood football club (Q249679) /m/01h8sf bluelegend/school of health & rehabilitation (Q1737734) /m/04j1n8 guadeloupe regional football team (Q497334) /m/024cg8 dundee university (Q1249005) /m/03ym73 estonian national football team (Q186914) /m/0bpgx high school (upper secondary) (Q9826) /m/01wj17 history of kamloops (Q473209) /m/01gr6h roman orthodox (Q7970362) /m/0179q0 richmond, british columbia (Q236837) /m/063yv psychotic (Q170082) /m/06zl7g from software games (Q2414469) /m/02yc5b christchurch, tasmania (Q79990) /m/09ld6g nagesh (actor) (Q1022530) /m/05rznz climate of south sudan (Q958) /m/02278y list of anti-folk bands and musicians (Q574651) /m/01tkqy stunt persons (Q465501) /m/08vq2y kayserispor (Q608122) /m/0cgm9 moldo-wallachia (Q10957559) /m/0f03_ planning board (Q131062) /m/0260p2 studio zero (Q780528) /m/054y8 mainz am rhein (Q1720) /m/0d2lt city of hereford (Q204720) /m/026n13j ac arles-avignon (Q222837) /m/01qgv7 the florida keys, florida (Q537749) /m/0lg0r ponce (pr) (Q864024) /m/098cpg festival music (Q5445732) /m/026db_ /m/026db_ /m/016ghw korda, alexander (Q55221) /m/0yfvf fayetteville (nc) (Q331104) /m/04c9bn clutchyna (Q1375077) /m/013c2f ealing broadway bid (Q83726) /m/01l3j bela lugosi (Q34529) /m/03wv2g james and carolyn mcafee school of theology (Q1798612) /m/02fhtq old-time country (Q972424) /m/0217g cancer chemotherapy (Q974135) /m/0fsv2 flagstaff, az (Q79842) /m/06f0y3 history of port elizabeth (Q125434) /m/0133jj tirol (state) (Q42880) /m/0536sd provincia di palermo (Q16227) /m/0wqwj un/locode:ustup (Q667727) /m/01qqwn multiple myeloma (Q467635) /m/01m23s history of waterbury, connecticut (Q49178) /m/0171b8 kaunas city municipality (Q4115712) /m/02qnk5c iftekar (Q1647814) /m/01v15f rostov na don, russia (Q908) /m/02bd41 province of central java (Q3557) /m/04kqk lucasarts entertainment company llc (Q216611) /m/03mv9j world fantasy award-anthology (Q8035703) /m/038_3y zimbabwe national cricket team (Q1254704) /m/02zkdz eastern illinois university (Q624985) /m/0drs_ jamestown-dunkirk-fredonia, ny µsa (Q115061) /m/010rvx bremerton city center, washington (Q695417) /m/03j_q haskell programming (Q34010) /m/0gw2w mòdna (Q279) /m/0678gl wally wingert (Q3268367) /m/02hkw6 /m/02hkw6 /m/04_x4s potenza province (Q16249) /m/018jn4 広島県 (Q617375) /m/04czgbh /m/04czgbh /m/09ctj norfolk county, england (Q23109) /m/01gpzx styria (Q41358) /m/05rh2 ca-pe (Q1979) /m/0qc7l history of tuscaloosa, alabama (Q79580) /m/041n43 xl records (Q1123947) /m/02xzd9 library association greenaway medal (Q1472266) /m/051kd rgm-79(g) gm ground type (Q1134906) /m/030nwm heriot-watt university (Q1610024) /m/0bqyhk st george's chapel at windsor castle (Q2449634) /m/01jng9 state of johor (Q183032) /m/07wg3 recruitment in the united states navy (Q11220) /m/0gjm7 /m/0gjm7 /m/0hr30wt sgh337/list of films at the 2012 sundance film festival (Q1708409) /m/0jj6k hillsboro county (Q488874) /m/0jmnl the supes (Q235326) /m/0mkk3 sauk county, wi (Q500933) /m/0443c robinson, jackie (Q221048) /m/03d29b mamiko noto (Q49569) /m/027xq5 the glasgow school of art (Q748106) /m/02w6s3 progressive dance music (Q915152) /m/029spt south somerset (Q1379924) /m/03t8v3 the legend of kunal (Q442668) /m/0fw9vx καε ολυμπιακός (Q847701) /m/01lqm ភាសាខ្មែរ (Q9205) /m/02b1mr tamworth f c (Q18527) /m/0_kfv anderson, s.c. (Q1150893) /m/09glnr tebe (Q639560) /m/05gd9 right-wing nationalist (Q6235) /m/04dn71w dance films (Q3072043) /m/0544vh colo colo (Q207373) /m/03p9hl patricia claire blume (Q235622) /m/0674l0 shochiku films (Q122549) /m/044p4_ newell´s old boys (Q221882) /m/09zyn5 norwegains (Q188779) /m/0f38nv spv gmbh (Q694052) /m/0q00t stand up comedy (Q145806) /m/0ch280 bernard and audre rapoport center for human rights and justice (Q7896446) /m/039b7_ eastbank, louisiana (Q7010868) /m/0p4gy history of jefferson parish, louisiana (Q498276) /m/07733f wb games (Q2319420) /m/031sn un/locode:usfnl (Q490732) /m/04gf49c restaurateur (Q3427922) /m/078ym8 lorrainers (Q1137) /m/0fwdr metz, france (Q22690) /m/0wr_s vicksburg, ms micropolitan statistical area (Q493787) /m/014m1m mx-oax (Q34110) /m/035y33 official capacities (Q599151) /m/0cmd3zy 2010 sundance (Q1285856) /m/0jpkg waterloo ontario (Q639408) /m/01wgx4 mccallum, david (Q313023) /m/03p85 himachal (Q1177) /m/02p3my shimla (Q83786) /m/01jcjt nathanial greene (Q366113) /m/06ys2 wallcrawler (Q79037) /m/0dzs0 gettysburg (pa) (Q694550) /m/0235n9 town of salop (Q201970) /m/04j_h4 /m/04j_h4 /m/025569 walintune (Q215733) /m/04bbb8 american revolutionaries (Q1365374) /m/023b97 un/locode:arlpg (Q44059) /m/0gn_x house of representatives (australia) (Q783401) /m/0mtl5 metropolitan government of nashville and davidson county, tennessee (Q1177705) /m/04ggbrk me-tv (Q3303733) /m/02x20c9 ronnie screwvala (Q3441794) /m/01x5fb royal holloway college (Q1202039) /m/01ngx6 gateshead (Q216372) /m/0cy07 canterbury (Q29303) /m/0cd78 economic historians (Q47398) /m/029skd happing (Q1545713) /m/06796 psychiatric counseling (Q183257) /m/03f_s3 👩🏽‍🔧 (Q327029) /m/0qkj7 costello, lou (Q23884) /m/01rbb crime (Q13228657) /m/0dv9v public transport in newcastle (Q57278) /m/01w56k london records 90 (Q935090) /m/018tnx frankenstein (hammer film series) (Q1433745) /m/0409n0 club atlético monarcas morelia (Q1480985) /m/0c7f7 pavia, italy (Q6259) /m/028cl7 osharee kei (Q131425) /m/095nx bird–magic rivalry (Q134183) /m/07glc4 tabitha st. germain (Q2092688) /m/07p7g tripoli harbor (Q3579) /m/068p_ debility of the lower extremities (Q12195) /m/04v68c roy carroll (Q258824) /m/0378zn gary michael cole (Q315864) /m/045nc5 the shadow duelist (Q527316) /m/07_9_ volcano (Q8072) /m/04zhd mythology portal (Q9134) /m/0108xl rose capital of the world (Q499169) /m/0f2yw history of doha (Q3861) /m/03pcgf un/locode:uslvg (Q589460) /m/0hzgf naeaesville (Q40840) /m/0l178 somme (department) (Q12770) /m/0ym1n lincoln college, oxford/comments (Q81153) /m/0s0tr pocatello, idaho (Q320729) /m/010nlt monte carlo (Q45240) /m/043870 kingdom of france (1498-1791) (Q69461) /m/06x6s saint louis blues (Q207735) /m/0xgpv un/locode:usgwo (Q986376) /m/0bvz6 india company (Q83164) /m/0680m7 burgundy (colour) (Q797446) /m/01hhyb baawitigong (Q463165) /m/02t0n9 larry fine (comedian) (Q982177) /m/0fplg history of tompkins county, new york (Q56153) /m/0yw93 sandusky (oh) (Q608207) /m/03dkh6 ieee edison medal (Q678263) /m/01m8dg plymouth, ma (Q326295) /m/0g7pm kilonia (Q1707) /m/0nm9y aroostook county, maine (Q491046) /m/01_4mn rockstargames (Q94912) /m/028bs1p yunus parvez (Q1965038) /m/044ptm om puri (Q80309) /m/01z26v netteswell (Q852729) /m/0hw29 viet kong (Q174423) /m/0ngg gaius julius caesar octavianus augustus (Q1405) /m/01279v contae thiobraid árann (Q184618) /m/04n36qk 2009 major league baseball season (Q655392) /m/011lpr preston wood (Q1287651) /m/0fjsl names of trieste (Q546) /m/08s6r6 art punk (Q659599) /m/01z9l_ hc techno (Q388906) /m/04q01mn gran torino: next door (Q126699) /m/02ryyk irish soccer team (Q163547) /m/0dlwj pnumh pen (Q1850) /m/01zzk4 royal military academy at woolwich (Q1573631) /m/0cv5l gloucestershire (rump) (Q23165) /m/0jgg3 alachua county (Q488826) /m/02b07b kabushiki kaisha ponī kyanion (Q513712) /m/0146bp diabetes type ii (Q3025883) /m/0fk1z hispanic culture (Q1211934) /m/018qt8 ibaragi prefecture (Q83273) /m/01669t hunan province (Q45761) /m/01cw6l first high school of changsha (Q174091) /m/0c7zf aman capital (Q3805) /m/05xltf release entertainment (Q657558) /m/02r99xw /m/02r99xw /m/0nc7s stepney, east london (Q123627) /m/0gy1_ double double e (Q35339) /m/0w6w saint augustine of hippo (Q8018) /m/0np52 sedgwick county emergency medical services (Q375108) /m/031c3v edgar ray meritt (Q1370735) /m/0196kn pulitzer prize for general nonfiction (Q784589) /m/05h83 non-fiction writing (Q213051) /m/01s47p spanish south america (Q80702) /m/02hmvw tvtokyo (Q734663) /m/034gxk neoprogressive (Q1051843) /m/0212ny communist ukraine (Q133356) /m/01gfhk state of edomex (Q82112) /m/06xw2 /m/06xw2 /m/0ym4t oriel college, oxford/comments (Q81170) /m/02bf58 university of chicago law school (Q1036763) /m/01jvgt seattle storm (Q1544869) /m/07rfp teoi gm-140 tv (Q1054844) /m/05cwnc bath city fc (Q368500) /m/03p2m1 eendrag (Q1066492) /m/0fqg8 leukosia (Q3856) /m/086h6p studio liverpool (Q1933462) /m/02mv9b paul frees (Q3090544) /m/014b6c st. charles county regional swat team (Q489873) /m/020g9r friestaat preußen (Q38872) /m/03qc7q6 software engineering naming controversy (Q1709010) /m/0yb_4 bronxville new york (Q928168) /m/0flsf arnhem, netherlands (Q1310) /m/04g9sq stephen jesse jackson (Q461825) /m/03qx1r ariola express (Q662575) /m/045gzq tony todd (Q351849) /m/02b1xy arbroath fc (Q539374) /m/075fzd social-economic issues in india (Q1920219) /m/02cg2v jason kid (Q221341) /m/038zh6 england test team (Q1321565) /m/04bnx dagao (Q181557) /m/02kdw56 canadian english language (Q44676) /m/01scmq atari games (Q1061580) /m/0bvls5 mahesh manjrekar (Q3089275) /m/02b1zs clyde fc (Q1059415) /m/04f73rc crossover trash (Q932977) /m/068gn purple-heart (Q145752) /m/0m2hs new haven county, connecticut (Q54234) /m/04czx7 chinay (Q1974839) /m/0kv7k county of lake, california (Q156361) /m/04mp8x supporters of rc strasbourg (Q126334) /m/0f4kp pyridoxine deficit (Q205130) /m/05f0r8 gordon douglas (director) (Q1479869) /m/0fnm3 georgetown, demerara (Q10717) /m/03yfh3 stade rennais uc (Q19509) /m/0fg1g ẖefa (Q41621) /m/0nqph un/locode:usarj (Q17943) /m/0162kb senate (australia) (Q783330) /m/04jhhng dilys award (Q685000) /m/0kc9f disney channel primetime (Q178837) /m/03q6zc library & information science, bhu (Q806116) /m/07zl6m 2k games (Q94937) /m/0g0rp county borough of worcester (Q1646181) /m/0179qv huntington, new york (Q999123) /m/0q9mp tragicomic (Q192881) /m/01zv_ cataluna (Q5705) /m/018djs the telephone city (Q34180) /m/016cyt roots reggae (Q1299260) /m/02vkzcx /m/02vkzcx /m/033db3 corbin bernsen (Q737183) /m/01wrwf cornell university law school (Q845768) /m/074j87 tna thursdays (Q64160) /m/09zcbg the end records (Q2413622) /m/0f1r9 us treasury (Q648666) /m/0chhs deliverance day (Q16471) /m/062f2j mandarin pop (Q973150) /m/05ys0ws 32nd berlin international film festival (Q32165) /m/078tg sunnism (Q483654) /m/01nxfc assistant mangaka (Q191633) /m/026g51 outlaw music (Q964658) /m/09lgt /m/09lgt /m/087lqx pre-code hollywood (Q3408764) /m/01spm churches of england (Q82708) /m/025rxky Q155647 /m/0dwfw co. tyrone (Q192229) /m/0_lk5 history of florence, south carolina (Q597842) /m/0sc6p alton, ill. (Q443852) /m/03mck3c philadelphia union (Q689874) /m/01mfj /m/01mfj /m/02n9jv consultancy (Q268626) /m/01c83m colonel (australia) (Q104680) /m/0zlt9 pleasant valley, altoona, pennsylvania (Q444210) /m/0_jws cranston (ri) (Q49197) /m/04qb6g cbc-tv (Q1022955) /m/04328m Q12435817 /m/045vhb history of breda (Q40844) /m/0d9qmn godoy cruz de mendoza (Q80882) /m/0135dr congress (r) (Q10225) /m/09k34g fc vorskla poltava reserves and youth team (Q274762) /m/018f94 history of bochum (Q2103) /m/0703j shinto (Q812767) /m/0cv9t5 king records (united states) (Q1742077) /m/02p0s5r alienist (Q211346) /m/0rt80 macon, georgia chronology (Q219656) /m/015dvh u.s. park (Q308439) /m/0vm5t southfield, michigan (Q988159) /m/0ftfw san salvador (Q3110) /m/021npd scarborough, england (Q743521) /m/0dcrb /m/0dcrb /m/01cd7p newberry medal (Q622813) /m/061y4q tomoyuki tanaka (producer) (Q652228) /m/03d9wk haley mills (Q237805) /m/01k6zy edmonton eskimoes (Q1285835) /m/0mnrb henrico shire (Q341639) /m/089_x /m/089_x /m/0cbgl d.f. wallace (Q313246) /m/090q4n fc olympia darmstadt (Q479351) /m/0m43j folkestone (Q375314) /m/0ky6d compañía mexicana de aviación (Q8681) /m/0ghd6l fa selangor (Q1835695) /m/03dhbp transformers/doc (Q1323565) /m/02vnb_ hal labratories (Q1068734) /m/0jnlm chicago black hawks (Q209636) /m/018gmr markham, ont. (Q44016) /m/07x21 unitarianism (Q106687) /m/03x73c aj auxerre b (Q182876) /m/018ldw clearview, oakville (Q424984) /m/03n15_ swamp rock (Q675553) /m/09dv49 /m/09dv49 /m/0j86l votes for deletion/list of atlanta thrashers captains (Q244039) /m/0fw1y capital of washington (Q42735) /m/0h1wz /m/0h1wz /m/02r0d0 guardian children's fiction prize (Q971363) /m/0k1jg city of roanoke (Q501796) /m/0dbks douala (Q132830) /m/07vsl statedept (Q789915) /m/0l2k7 merced county, calif. (Q109690) /m/05wgy pediatric medicine (Q123028) /m/07rj5 tibetan culture area (Q17252) /m/0c9cw slough (district) (Q211907) /m/046br4 club de gimnasia y esgrima la plata (sports club) (Q18640) /m/02csf history of drawing (Q93184) /m/01tz_d houston aeros (1994–2013) (Q1474092) /m/0dn_w amtrak railroad (Q23239) /m/0263q4z dirty rap and pornocore (Q3709211) /m/02n5d english civil war (Q80330) /m/04cb4x revisionist western (Q491158) /m/08q1tg /m/08q1tg /m/02z6gky 24th sundance film festival (Q1776226) /m/08vpjv bindu desai zaveri (Q158266) /m/0fs44 prefecture of rabat (Q3551) /m/01wttr1 madhuri dixit (Q232451) /m/06fksb nea nfl mvp (Q289678) /m/0294j articulus mortis (Q4) /m/0dyg2 quadra and vancouver island (Q170479) /m/036n1 geoscientists (Q520549) /m/01xcgf black mountain school (Q880447) /m/016wtf /m/016wtf /m/02ktt7 kraft foods group inc. (Q327751) /m/01bgkq karl marx city (Q2795) /m/0155j3 sebu (Q13786) /m/0cgqx speaker of the united states house (Q912994) /m/027lfrs om shivpuri (Q7089367) /m/037css wimbledon f.c. (Q19482) /m/04gtq43 /m/04gtq43 /m/088vmr dark cabaret (Q1166158) /m/03chx58 sunil (Q3536811) /m/0db94 sierra nevada range (Q26777) /m/03vw9m modern rock (Q1037693) /m/05798 merchants (Q215536) /m/01h96 boysband (Q216337) /m/0dj0x wiltshire (Q23183) /m/0kvwh vaucluse (Q12792) /m/01wzs_q keniti ogata (Q2707888) /m/0hr41p6 hannah horvath (Q618329) /m/054yc0 /m/054yc0 /m/03fcbb u.s. naval postgraduate school (Q1515048) /m/0cv0r baltimore county, md (Q488668) /m/03fkgg ohio state senator (Q1656259) /m/02r0st6 joseph sargent (Q1707954) /m/0h3c3g club atlético all boys (Q646088) /m/016m9h /m/016m9h /m/0286hyp spy who came in from the cold (Q1197022) /m/01q1_c star allaince (Q189709) /m/03m7d hizbu-llah (Q41053) /m/08yh93 educational services (Q5466629) /m/0381pn hitler channel (Q1621107) /m/07m_f capital city of albania (Q19689) /m/0pqz3 owensboro (Q494295) /m/032qgs cowboy savant (Q39989) /m/0h5m7 caesaraugusta (Q10305) /m/02bm8 darwin, australia (Q11568) /m/0104lr history of beaumont, texas (Q128282) /m/0xtz9 las cruces, n.m. (Q33264) /m/01hpf6 snk playmore (Q1044563) /m/0cfywh jagdeep (Q6122272) /m/0bmj2y my network television (Q1148579) /m/02lw8j shock rock (Q2045695) /m/0nbzp portsmouth new hampshire (Q49191) /m/02245 communist party (soviet union) (Q79854) /m/0n96z hackney (london borough) (Q205679) /m/0dwh5 mayhew spring (Q49220) /m/01wx7k list of echl teams (Q182010) /m/0h3bn infectious diarrhea (Q129279) /m/060d2 executive branch of the government of the united states (Q11696) /m/01k9gb esophagous cancer (Q372701) /m/03t28q /m/03t28q /m/06z9f8 xerez club deportivo (Q12308) /m/01b3bp jason christopher marsden (Q739105) /m/05j9_f governor general's award for english-language poetry (Q3405798) /m/05qgc elements of a poem (Q482) /m/0j4q1 bed ford (Q208257) /m/02fp82 kids wb (Q2711972) /m/02ydx freebsd project (Q34236) /m/06k90b 1. sv jena 03 (Q155186) /m/01669b cn-41 (Q43684) /m/0cr7m crimea region (Q7835) /m/0jgvy england salisbury (Q160642) /m/01t12z greater new york metropolitan area (Q683705) /m/01f38z woodlawn cemetery (bronx) (Q2000666) /m/03qzj4 /m/03qzj4 /m/0dm0f county of shropshire (Q23103) /m/0hb37 munscia (Q6252) /m/0ym20 new college, oxford/comments (Q1376987) /m/0b24sf coimbatore rural district (Q15136) /m/026wmz6 505 gamestreet (Q2068658) /m/01b1nk dunfermline, fife (Q211950) /m/06bwtj /m/06bwtj /m/0d9s5 utrecht, netherlands (Q803) /m/039h8_ Q5097046 /m/04l59s springfield falcons (Q1474509) /m/04l590 p-bruins (Q1442862) /m/0166b8 yün nan (Q43194) /m/0g_rs_ lool (television show) (Q887614) /m/057cc keyboad instrument (Q901207) /m/08nhwb respiratory symptoms (Q3286546) /m/087r4 yukon territories (Q2009) /m/0tlq9 monroe (louisiana) (Q947115) /m/017vdg forehill primary school, ayr (Q654216) /m/02r6mf minimalism music (Q572901) /m/03kxzm boston-cambridge-quincy metropolitan statistical area (Q1190137) /m/0d9rp utrecht province (Q776) /m/01nd6v phillip lamarr (Q356541) /m/03rg5x scott lobdell (Q1340698) /m/06zrp44 franklin medal (Q3141777) /m/05xls application developer (Q5482740) /m/06x8y history of pre-standard serbo-croatian (Q9301) /m/082pc west bank of the jordan (Q36678) /m/0b66qd suhasini maniratnam (Q467973) /m/024sbq modern chanson (Q1062400) /m/034qt_ goosson, stephen (Q505114) /m/03hzt olucaustu (Q2763) /m/02nddq tee vee toons (Q2283665) /m/01hng3 /m/01hng3 /m/053rd mining site (Q820477) /m/0mmrd moses lake, wa msa (Q281681) /m/0gsl0 north island (Q118863) /m/0fy91 female impersonators (Q337084) /m/060wq pueblo, colorado (Q675576) /m/02gjp damaskos (Q3766) /m/019mlh /m/019mlh /m/0dgfx history of braunschweig (Q2773) /m/013gz alexandria, la (Q985351) /m/045n3p amjad khan (filmography) (Q46392) /m/029czt mansfield (town) (Q841979) /m/01fmy9 french second empire (Q71092) /m/01mf49 newburg (ny) (Q1044808) /m/0m1xv talk-show (Q622812) /m/01v1vp craven (Q1139085) /m/01pxg chemists (Q593644) /m/02kx91 utv software communications ltd. (Q3406307) /m/0jj85 history of indian river county, florida (Q488528) /m/0l14jd greek choral music (Q131186) /m/0rrhp lakeland, fl (Q639452) /m/04fznlb liberal national party of queensland (Q1822905) /m/09743 pakhtun (Q2556103) /m/0747k8 ud las palmas (Q11979) /m/0kq95 stichting betaald voetbal excelsior (Q370712) /m/02bb8j ideology of the communist party usa (Q308714) /m/012fzm torquay (Q209055) /m/05rd8 king of vatican city (Q19546) /m/09t9m2 farsley celtic association football club (Q2447719) /m/07xhy national response center (Q11224) /m/02x_y fieldsmedal (Q28835) /m/0yz30 steubenville, ohio (Q986432) /m/019jlq dārjiliṁ (Q169997) /m/09jp3 montevidéo (Q1335) /m/0l_v1 nome census area, ak (Q503023) /m/01sm9v hitchin, herfordshire (Q19798) /m/018vbf lebanese war of 1982 (Q49103) /m/0j8cb hurricanesgm (Q201857) /m/024qk1 cpim (Q234277) /m/01kcww thornton square (Q868637) /m/035p3 picture of the golden gate bridge (Q44440) /m/0cf0s city of kinshasa (Q3838) /m/0g64p cabaret (music) (Q131183) /m/0p98z gt. yarmouth (Q237253) /m/0d8zt mantuans (Q6247) /m/019jw oxygen capacity (Q7873) /m/03d63lb raza murad (Q7299451) /m/0gt_hv philosophy of mind/comments (Q23407) /m/0cgs4 early modern wallachia (Q171393) /m/0c1xm dakar, senegal (Q3718) /m/03b8gh metropolis records (Q2333358) /m/02rq7nd underbelly: fat tony & co. (Q14848728) /m/0bld8 kattowice (Q588) /m/09cws p:mars (Q111) /m/079sf silver star medal (Q852071) /m/05nsfc us cremonese (Q759482) /m/01m2n1 framingham, mass. (Q988568) /m/0fm7s bjorgvin (Q26793) /m/0jk_8 north of the huang he (Q21208) /m/037hz golf technology (Q5377) /m/0205m3 upper bangor (Q234178) /m/018jmn jp-12 (Q80011) /m/0h326 löwenstein lászló (Q78505) /m/0ymf1 the master and fellows of the college of the great hall of the university of oxford (Q81087) /m/0f4k5 /m/0f4k5 /m/0dd2f kill rock stars (Q1741329) /m/01pxqx history of monrovia (Q3748) /m/01bb1c campbell award (best novel) (Q1030402) /m/0ps1q walsum, duisburg (Q2100) /m/02p4450 british folk rock (Q2614533) /m/022r38 columbia journalism school (Q844673) /m/01yf40 rawlpindini (Q93230) /m/02lw5z eonline (Q830215) /m/053tpp yarrows limited (Q932897) /m/03xks assurfinance (Q43183) /m/02r771y martin beck award (Q1616499) /m/06rfy5 electronic arts canada (Q752317) /m/07lk3 john clayton iii (Q170241) /m/0358g8 /m/0358g8 /m/0hm10 ctv.ca (Q767221) /m/02vk5b6 epic black metal (Q1621467) /m/05g2b nimwegen (Q47887) /m/0542n tertian fever (Q12156) /m/01jp4s bèrghem (Q628) /m/0gxbl bendigo, victoria (Q497793) /m/0msck cameron county, tx (Q27051) /m/049468 jaya bachan (Q464932) /m/0kz10 intelligent dance (Q660984) /m/01fb6d bad boy (Q798658) /m/0h_m trill seeking (Q1436734) /m/01frpd northropgrumman.com (Q329953) /m/05k6d /m/05k6d /m/024nj1 indian cricket team 2015 (Q1143793) /m/014j0w alternative tentacles records (Q438628) /m/0n25q jefferson county, oh (Q114140) /m/03lyp4 order of magdalene (Q715519) /m/01kyln new laguardia airport (Q319654) /m/017w_ un/locode:debre (Q24879) /m/01sjmd oncological biochemist (Q2919046) /m/02jm9c tiron (star trek) (Q452288) /m/03hbbc tecmo (Q1423789) /m/04l7mn tooth and nail records (Q2297042) /m/03_kl4 virgin interactive (Q1481820) /m/01kq5 ballarat west, victoria (Q17856) /m/0fbftr /m/0fbftr /m/02496r county monaghan, ireland (Q184760) /m/0y2tr death punk (Q1164252) /m/0v74 al qaida (Q34490) /m/03ll3 international human rights (Q8458) /m/011pcj slongaber (Q126514) /m/02yjk8 maccabi tel aviv b c (Q819694) /m/01b4x4 private equities (Q476115) /m/0bszz canadians third jersey (Q188143) /m/082sy9 харків (Q42308) /m/07_bv_ gopishantha (Q467693) /m/02y5kn /m/02y5kn /m/05z1_ python programming (Q28865) /m/0_vw8 jackson, tenneesee (Q985409) /m/01lb5 scacci (Q718) /m/03m6j izzedine al qassam brigades (Q38799) /m/0jxxt horseracing (Q187916) /m/06vv_6 elche club de fútbol, s.a.d. (Q10512) /m/0gxmj calvados (department) (Q3249) /m/01dz7z first-lady (Q203184) /m/01dljr oswego (city), new york (Q1017583) /m/01nvdc mlb american league all-star (Q1069698) /m/0br2wp zetima records (Q987085) /m/025sd_y harpsichordist (Q5371902) /m/0cnjm0 g hero 2 (Q1798154) /m/07nqn salt tower (Q62378) /m/028mpr list of neighborhoods of curitiba (Q4361) /m/0rydq columbus (city), muscogee county, ga (Q239870) /m/095sx6 super sireyna (Q3460856) /m/01x4py national party of new zealand (Q204716) /m/02ntlj pop-opera (Q504635) /m/01nzmp pro football hall-of-fame (Q778412) /m/09096d st. louis hip hop (Q2517263) /m/03m5111 neymar da silva (Q142794) /m/0148xv suspendatur per collum (Q175111) /m/04gny trade-unionists (Q178790) /m/0716b6 winvista (Q11230) /m/0ym69 pembroke college, oxford university (Q82606) /m/0226k3 gareth aus/westfield shopping centres in queensland (Q2036076) /m/03ht1z havok 3.0 (Q616957) /m/01fsyp lifetime channel (Q1319610) /m/02ht0ln /m/02ht0ln /m/04czhj disney software (Q1229035) /m/0fkx3 premiers (Q959664) /m/04yyhw seymour cassell (Q708153) /m/0202wk sutton coldfield, west midlands (Q868196) /m/01j950 hereditary prince (Q207293) /m/04682_ people from st helens (Q153647) /m/07s3m tours (Q288) /m/03mbdx_ interactive advertising bureau (Q3057268) /m/0p07l el paso county, co (Q111774) /m/0fs_s bruenn/brno (Q14960) /m/043fz4 natsume co., ltd (Q3772556) /m/03gt7s fast hardcore (Q1995569) /m/02q3s eurovizyon (Q276) /m/02v1ws bollingen prize in poetry (Q194944) /m/01d66p aylesbury, buckinghamshire (Q213474) /m/01zsfx bulawayo, zimbabwe (Q193250) /m/0b28g dover (town, england) (Q179224) /m/09btk trönderne (Q25804) /m/02wbnv verant (Q959672) /m/0n90z brixton's jamaican community (Q146690) /m/02pr67 pulitzer prize for public service (Q644995) /m/018td blaxploitation films (Q883179) /m/0df4y tien-tsin (Q11736) /m/01ksz9 matador (Q1327994) /m/0g9fm chatham, medway (Q729006) /m/02qnyr7 /m/02qnyr7 /m/01f53 british liberal democrat (Q9624) /m/019tfm nwsu (Q2001231) /m/013t85 pontefract/comments (Q1009235) /m/0nb1s golders green crematorium (Q4141350) /m/0hqzr namnetum (Q12191) /m/016475 children's picture books (Q254554) /m/04rv_6 nintendo entertainment analysis & development (Q170420) /m/0301dp slade school of art (Q1399299) /m/016k4x bc liberal (Q919043) /m/01vrkm /m/01vrkm /m/0_jsl warwick, rhode island (Q49195) /m/015j7 holy scriptures (Q1845) /m/0277g /m/0277g /m/01vw77 the dutch nujazz movement (Q1136331) /m/01fjw0 wexford borough council (Q209126) /m/07gvx daoist (Q9598) /m/0gtzp french republic (1792–1804) (Q58296) /m/01t7j reformed evangelicals (Q101849) /m/0bhsnb srilanka tamil (Q1815623) /m/07sqhm torku konyaspor (Q513840) /m/0nppc cupcake land (Q374979) /m/0ghtf dubuque (iowa) (Q493794) /m/038nv6 adam baldwin (Q312161) /m/0ck7l 中人 (Q9402) /m/01hvzr blackpool (Q170377) /m/01bfjy jocx (Q744800) /m/0191_7 business-to-consumer (Q126793) /m/0lw_s hamilton city, new zealand (Q200028) /m/0g_qdz coach (basketball) (Q5137571) /m/03x2qp acoustic texas blues (Q1271752) /m/0mvsg lexington county, sc (Q502411) /m/05jrj4 /m/05jrj4 /m/0fqnzts /m/0fqnzts /m/0kqb0 greater manchester (Q23099) /m/0264jc6 freak folk (Q2404568) /m/0blst_ riba gold medal (Q920783) /m/08cg36 glam punk (Q1123745) /m/01hydr clicks n cuts (Q1100989) /m/03h2c3 airlines (tv series) (Q3631478) /m/03q4hl mega man nt warrior (Q527398) /m/0g7nc pornographic actors (Q488111) /m/0kn68 region of abruzzo (Q1284) /m/0flbm county of douglas, colorado (Q115556) /m/07nf_4 christian hardcore (Q2607454) /m/0hn4h hcmc (Q1854) /m/09nm_ world as a whole (Q16502) /m/022kcs m.v.o. (Q94050) /m/0c41n franco-nova scotian (Q415054) /m/0d99m padova (Q617) /m/04cvn_ art critic (Q4164507) /m/05h0n beauty of nature (Q7860) /m/02mjk5 new york shipbuilding co. (Q426695) /m/0124qd inner hebrides (Q81052) /m/0147gr ærospace (Q2876213) /m/0j8cs ulster unionist's party (Q841045) /m/01950l super manga blast! (Q373933) /m/01g_bs acid (electronic music) (Q341364) /m/09c7b metropolitan museum (Q160236) /m/07x16 utis (Q221668) /m/0dfcn laloimehani (Q131347) /m/0fnc_ capital of sierra leone (Q3780) /m/05fny nebulis (Q42372) /m/049rl0 bbc news (20:00 summary) (Q1160945) /m/0c0cs assistant to the president of the united states (Q1355327) /m/0z9c a-capela (Q185298) /m/01v8c cologne, germany (Q365) /m/0j1_3 pulau jawa (Q3757) /m/082mc waffen schutzstaffel (Q153626) /m/0h5qxv nunavut (Q2023) /m/03l7f /m/03l7f /m/015cl6 above and beyond the call of duty (Q203535) /m/0cmb3 list of people from county antrim (Q189592) /m/015c1b blessed virgin mary (Q1938795) /m/01bkv iso 639:bg (Q7918) /m/0345kr live in a dive (live album) (Q605388) /m/02kx3 eindhoven, north brabant (Q9832) /m/01gb_p thunder bay, ont. (Q34116) /m/065vxq another victory (Q1636558) /m/030pm0 legislators (Q4175034) /m/01h788 islamiat (Q843909) /m/09_2gj raghuvaran (Q3519495) /m/06pq6 shiite beliefs (Q9585) /m/04ymln math core (Q616679) /m/0hv7l busan autonomous city (Q16520) /m/03dkx geelong cats (Q958369) /m/06fjm3 equal vision records (Q264980) /m/0jnm2 blue jackets third jersey (Q207507) /m/01hbfz rejuvenile (Q185193) /m/02qfk4j /m/02qfk4j /m/0ty_b un/locode:usbvy (Q54138) /m/01nd9f riotgrrl (Q677542) /m/04n7jdv /m/04n7jdv /m/0qdzd b-picture (Q223770) /m/01z92f merthyr tydvil (Q752762) /m/06z49 slavery issue (Q8463) /m/0ncy4 wimbledon, england (Q736742) /m/05fmy 2001 nobel prize in chemistry (Q44585) /m/01vc3y paisley (scotland) (Q211870) /m/053fc5 virginia state senator (Q1747983) /m/0z5vp enid buffaloes (Q984361) /m/0p88j national gallery, london, england (Q180788) /m/03rlps electronic folk (Q1435509) /m/01yf92 yōichi erikawa (Q845047) /m/027hljt central alberta (Q189917) /m/01w1w9 enterprise records (Q1546001) /m/0ffmp odesa (Q1874) /m/0p_x mare adriatico (Q13924) /m/013_5c nz labour party (Q1048192) /m/016n7b un/locode:dedes (Q487070) /m/060s9 list of pms of britain (Q10729319) /m/01d3n8 internal medicine (Q11180) /m/025tjcb /m/025tjcb /m/024c2 epidemic cholera (Q12090) /m/048svj /m/048svj /m/023k2 mutual benefit corporation (Q167037) /m/08_yl1 adult alternative music (Q3605852) /m/017_cl crewe, cheshire (Q648810) /m/01qrcx ipswich, australia (Q1009253) /m/026fn29 national book award for poetry (Q3873146) /m/01v3rb data east corp. (Q1172213) /m/05fx6 no wave bands (Q823080) /m/019fc4 koyamutthoor (Q9885) /m/06m_p /m/06m_p /m/023fxp ceylon national cricket team (Q203092) /m/0f8j6 kensington (Q288781) /m/01rww3 k-records (Q3080929) /m/02s0pp legislative assembly of western australia (Q7987530) /m/066d03 death-core (Q475221) /m/0gyvgw wigan (county borough) (Q208143) /m/014wxc mokupuni o hawai‘i (Q192626) /m/022tzk second palomar sky survey (Q191684) /m/01gr00 roxbury preparatory charter school (Q20138) /m/027dcbn /m/027dcbn /m/01jj4x image comics, inc. (Q913301) /m/01sfl clowns international (Q7358) /m/0x1y7 history of bozeman, montana (Q569678) /m/02049g caerfyrddin (Q835835) /m/09bnf kn (Q33673) /m/0125ny wordsworthshire (Q211778) /m/08pn_9 relativity records (Q201607) /m/05q78ky /m/05q78ky /m/02m30v joan geraldine bennett (Q128944) /m/0140xf list of christmas songs (Q1443316) /m/01l69g bhairabi temple, boudh district (Q22048) /m/022b_ casablanca-anfa prefecture (Q7903) /m/03gq340 /m/03gq340 /m/06zfw professional skateboarder (Q842284) /m/01z28q irvine, north ayrshire (Q1774629) /m/01tlyq ontario liberal party (Q1553186) /m/01ld4n undeb yr annibynwyr cymraeg (Q1062789) /m/06b0n3 sexploitation (Q2292320) /m/02n61z lowline shipping (Q1029631) /m/0d4xmp death metal grindcore (Q888612) /m/030p4s ontario parliament (Q1809086) /m/018lc_ silvertown, ontario (Q274120) /m/0mz2 alternate history comics (Q224989) /m/0mkc3 marshfield-wisconsin rapids, wi msa (Q495332) /m/037n3 gent, belgium (Q1296) /m/06dqt raf lists (Q165862) /m/042z45 southern lord recordings (Q1848896) /m/0s4sj un/locode:usegn (Q499887) /m/01fhsb interim pastor (Q152002) /m/017575 porto alegre, brazil (Q40269) /m/01750n jump tune (Q1515757) /m/04gp3_2 thistv (Q3524762) /m/016h5l kensal green cemetery (Q1574424) /m/0l_qt /m/0l_qt /m/0tbr natural antibiotic (Q12187) /m/0_nh2 spartanburg, sc (Q773325) /m/024c1b republic pictures home video (Q774682) /m/0fgsq2 art dealer (Q173950) /m/064lqk christ punk (Q63885) /m/0bm4j tiblisi (Q994) /m/0dlm_ ar-riyad (Q3692) /m/011w4n nancy (france) (Q40898) /m/0f2pf9 kentuckiana (Q3263896) /m/086x3 williams hybrid power (Q171337) /m/05p6ppv goya award for best iberoamerican film (Q2735625) /m/02qnhk1 /m/02qnhk1 /m/0194f5 luzern, switzerland (Q4191) /m/0145m afrobeat music (Q388296) /m/02p4l6s afropop music (Q972634) /m/08lg0g silkeborg if (Q723489) /m/021lkq barnet, london (Q2884709) /m/01zb_g creation/august/rev-ola records (Q1139341) /m/02h98sm kenosha's lake front stadium (Q462161) /m/0161jj the weather in bournemouth (Q170478) /m/0cdw6 halifax (town, england) (Q826561) /m/0z1l8 history of portsmouth, ohio (Q685335) /m/018_7x jena, germany (Q3150) /m/025tjk_ indy hip-hop (Q965635) /m/03j2ts gold medal of the ras (Q753072) /m/08_lx0 libretarian (Q178598) /m/0mk59 park county, wy (Q156385) /m/07619_ strongman (circus) (Q1852228) /m/0j__m bureau of fisheries (Q674113) /m/01x42h greater sudbury neighbourhoods (Q383434) /m/0fqp6zk /m/0fqp6zk /m/01flzb christian gangsta rap (Q2238236) /m/0k2q agean sea (Q34575) /m/03k3r equus caballus celticus (Q726) /m/055yr mac osx (Q14116) /m/038_0z pakistan cricket (Q182538) /m/0f0gt_ /m/0f0gt_ /m/0nzm apache foundation (Q489709) /m/0v0s broad australian (Q44679) /m/0z74 p:afl (Q50776) /m/02qvkj left wing (ice hockey) (Q2827965) /m/02dqdp /m/02dqdp /m/03cxqp5 /m/03cxqp5 /m/0g_gl mx-ver (Q60130) /m/04r_8 alliance os (Q1406) /m/02dsz1 lounge (genre) (Q1141081) /m/07q68q samuel vincent (Q2572399) /m/06__c samba (Q11403) /m/03gkb0 /m/03gkb0 /m/09wc5 شیراز (Q6397066) /m/018ym2 philippople (Q459) /m/0m57f biography or autobiography (Q285117) /m/013c6x miss universe (beauty pageant) (Q161376) /m/06nfl yuji uekawa (Q1140960) /m/01z9j2 greenock (Q217831) /m/0kcc7 cineville (Q41253) /m/07y1z united methodist (Q329646) /m/019y_2 the harlem renaissance (Q829895) /m/01dtq1 quitoh (Q2900) /m/0jzgd internet phone (Q81945) /m/012x8m solid state tuners (Q639182) /m/04j5jl /m/04j5jl /m/070ny squaresoft (Q739552) /m/0c55fj bbc hdtv trial (Q1638793) /m/0sg4x history of moline, illinois (Q579736) /m/018kcp stv ayr (Q2198146) /m/01v9b1 rnas (Q1637285) /m/018ckn economy of arunachal pradesh (Q1162) /m/025sh_8 metro washington (Q2367175) /m/05jqy nonsteroidal antiinflammatory drugs (Q188724) /m/07c1v p:tech (Q11016) /m/03qjwc pye golden guinea (Q2117397) /m/0g_tv cimetière de montmartre (Q746647) /m/013rxq tex-mex (music) (Q431415) /m/01zxx9 agra, uttar pradesh (Q42941) /m/018hzk cookery programme (Q1457145) /m/015vgc karnataka sangeeta (Q956883) /m/087z2 yellow fever virus infectious disease (Q154874) /m/01q_22 hokersar (Q170115) /m/0mk_3 fond lac county (Q494912) /m/01w2lw county borough of hartlepool (Q215752) /m/053f5 mountain climbing (Q36908) /m/01lkky stuart family (Q179840) /m/019xz9 ulm/donau (Q3012) /m/0bkv0 cassel (Q2865) /m/019rvp upper fant (Q213180) /m/01j4rs history of santiago de cuba (Q117040) /m/01cgxp mozul (Q83317) /m/0n23n logan county, oh (Q490190) /m/0671wk the royal norwegian order of st. olav (Q94345) /m/02r5gpq plymouth-chrysler (Q29610) /m/01773g history of stavanger (Q25416) /m/0j54b casa savoia (Q200229) /m/04f1glf villarreal cf b (Q1094113) /m/0fq5j al-kuwayt (Q35178) /m/019z2l rocksteady music (Q573484) /m/01dc60 cinemascope 55 (Q485544) /m/05ws7 /m/05ws7 /m/03_2f igneous (Q42045) /m/01rwbd bury, lancashire (Q47822) /m/042s9 nirgranthas (Q9232) /m/01z2sn /m/01z2sn /m/0hvlp hove, sussex (Q989616) /m/034_cr fc tps turku (Q223813) /m/0mb31 police sheriff (Q578478) /m/0hmxn global full episode player (Q1142327) /m/04dm2n hall of fame of golf (Q258851) /m/01l5rz county borough of grimsby (Q179406) /m/03x9yr beggars banquet records (Q126039) /m/01zjn0 barrow indoor market (Q671892) /m/01zk9d st andrews, fife (Q207736) /m/0d063v climate feedback (Q7942) /m/0190_8 church scotland (Q922480) /m/01vpt5 houston-sugarland-baytown metropolitan area (Q426435) /m/01vz08 朝鮮王朝 (Q28179) /m/01qszl bandai co. (Q507269) /m/028fjr columnists (Q1086863) /m/0g3bc iwaoka (Q48320) /m/0x2jd the supreme court of canada (Q196615) /m/04knq3 california state department of parks and recreation (Q2933976) /m/0lxg6 varna, bulgaria (Q6506) /m/050sw4 contemporary hit radio format (Q427487) /m/02r_5vd sports promotion (Q2378505) /m/02pyg alternative sport (Q309162) /m/0gw0 anarchism/did you know/2 (Q6199) /m/0g3cw hiroshima, hiroshima (Q34664) /m/01p_2p latin jazz (Q837389) /m/0h9vh kwuntung (Q15175) /m/015q02 perak darul ridzuan (Q188953) /m/0j5nm whodunnit! (Q1494434) /m/01j12w woollongong, new south wales (Q187861) /m/026v1nw /m/026v1nw /m/0fr_v parbo (Q3001) /m/02y_3rt /m/02y_3rt /m/09dhj /m/09dhj /m/0852z lyncanthrope (Q9410) /m/047f9jp jagdish raj khurana (Q6122336) /m/0dz96 /m/0dz96 /m/0hl24 northampton county council (Q23115) /m/038csl l.a. unified school district (Q1320340) /m/07sb1 tharbata (Q13972) /m/075qbd2 no-party (Q327591) /m/07r_p kesoniemi (Q1770) /m/02x0gx ice brigade (Q1435969) /m/08b3m /m/08b3m /m/01_bhs fast food industry (Q81799) /m/01hg2h voyenno-vozdushnye sily (Q921432) /m/09xw2 dixieland jazz (Q906647) /m/09f5pp robert hamman (Q4932675) /m/01ftz biotechnology companies (Q7108) /m/0gg81w educational tv (Q861402) /m/01r9nk munday swamp (Q45935) /m/01t_1p christian worship music (Q1339121) /m/029tx non-avian dinosaurs (Q430) /m/01m59 commonist (Q6186) /m/017ht bhangra music (Q854844) /m/0fr_b panama (city) (Q3306) /m/01dvzy the wall street of the philippines (Q1508) /m/01l53f beef australia expo (Q606162) /m/03ng8q rich egan (Q669127) /m/0ktds /m/0ktds /m/01z_lv new haven burying ground (Q5611457) /m/0fqpg6b /m/0fqpg6b /m/01gb1c democratic unionist (Q215519) /m/027nnh conservative party of canada (historical) (Q909827) /m/0b2mc thessniki (Q17151) /m/05j085 governor general's award for english language non-fiction (Q3405814) /m/01w31x century black (Q158867) /m/09bv45 gmtv2 kids (Q1997305) /m/01zkgw bridgend (wales) (Q6497774) /m/03pty hotel room (Q27686) /m/07cc8 mental transmission (Q170612) /m/01pk8b jaddah (Q374365) /m/01fpdh canadian reform party (Q1680589) /m/0d8c4 lockheed (company) (Q7233) /m/028sgq /m/028sgq /m/02rwmk bosnian war (Q181533) /m/016zxr europop (Q517415) /m/0ldpy /m/0ldpy /m/03xpx0 miami-fort lauderdale-pompano beach, fl (Q2915506) /m/05sz6 /m/05sz6 /m/0f4r5 us bureau of land management (Q1010556) /m/03_zv5 deep soul (Q1567032) /m/0df9z holy roman emperor-elect (Q181765) /m/01f99l general dynamics bath iron works (Q810783) /m/01rng co. mayo (Q178626) /m/01q58t notable persons born in townsville, queensland (Q190021) /m/0jfx antarktika (Q51) /m/03qhnx trevise (Q5475) /m/08zx0s classical crossover (Q2336819) /m/06_y0kx the franklin institute awards (Q817496) /m/07vzd united states political party structure (Q330963) /m/01z6gc municipal borough of penzance (Q208209) /m/01y68z 에스비에스 (Q928831) /m/0nk95 beauty pageant (Q2658935) /m/01nh5h invercargill new zealand (Q31805) /m/03nk0g news show (Q1358344) /m/01qm7 community colleges (Q1336920) /m/028sdw real estate developments (Q695829) /m/04bp0l /m/04bp0l /m/02w1b8 /m/02w1b8 /m/0fcgd pennine alps (Q1270) /m/074vv snp glasgow (Q10658) /m/018zqj canadian defence force (Q644943) /m/01y8kf af canada (Q25456) /m/07svc3 john brown shipyards (Q1699428) /m/018zsw royal canadian army (Q25436) /m/053k78 metal blade records (Q756320) /m/05r_j petroleum (Q22656) /m/058yv_ pricking the lites (Q1888937) /m/0mhl6 savouè d’amont (Q12751) /m/06pwfk fat possum (Q1397914) /m/0cc65 grand teton national park discovery and visitors center (Q222695) /m/02kb_jm foliamin (Q127060) /m/0b1k24 napalm records (Q693194) /m/0322c5 subiaco, w.a. (Q3976501) /m/09b5t chickon (Q780) /m/050yl military history (Q192781) /m/0bk25 greek macedonian empire (Q83958) /m/0p8bz little earnock, hamilton, scotland (Q4131) /m/09d_r dağ (Q8502) /m/0zz6w erie pennsylvania (Q234061) /m/01t3h6 scarborough, upper canada (Q1025401) /m/05zrn perl programming (Q42478) /m/07pnk /m/07pnk /m/0237w6 /m/0237w6 /m/02fp48 unionist (united states) (Q214102) /m/06jtx house of romanovs (Q112707) /m/018l5l dramatic mezzo soprano (Q186506) /m/05swd propaganda in film (Q1935609) /m/0blbx reilig ghlas naion (Q1263215) /m/0370vy seattle metro (Q1114947) /m/03ch14 spectacular (television) (Q1261214) /m/012xsy music in anime (Q257533) /m/01mtt games/cards (Q142714) /m/02y_9cf empire of ethiopia (Q207521) /m/03ly1b swan hunter shipyard (Q2061530) /m/01z645 kettering, northamptonshire (Q984613) /m/034wx3 brompton cemetery (Q926913) /m/0513yzt ballarina dancers (Q805221) /m/06fhs emerging renewable energy technologies (Q12705) /m/04s84y principal contractor (Q289612) /m/09f5vv aai (Q3630199) /m/02z3cm0 ecw hardcore television (Q867288) /m/0bwgmzd /m/0bwgmzd /m/02g982 west norwood cemetery (Q1290155) /m/049c6t elitist records (Q838544) /m/0g9k4 the weather in swindon (Q200942) /m/0x2hn pc party of canada (Q1292617) /m/0mbx4 child-star syndrome (Q970153) /m/0dlj8q2 le monde's 100 books of the century (Q40734) /m/0c_xl statistician (Q2732142) /m/05frqx tdsb (Q1189302) /m/09wwlj salvador da bahia (Q36947) /m/0q307 maghal empire (Q33296) /m/09j2d separates (clothing) (Q11460) /m/0m5pn hokkian (Q41705) /m/0bw8r secretary of the treasury (united states) (Q4215834) /m/02m97n vickers limited shipbuilding group (Q763052) /m/022zq3 bbc three (former) (Q687427) /m/082x5 military of nazi germany (Q128781) /m/0gwj autismisreal (Q38404) /m/01pvc5 horse-racing colour (Q846750) /m/06rkl elementary, my dear watson (Q4653) /m/07068 bushi (Q38142) /m/05n5kv knight of the elephant (Q976544) /m/0223xd george bancroft prize (Q724144) /m/02656h ea sports network (Q869106) /m/016hjr american continental army (Q54122) /m/01rqxn deputy (france) (Q193582) /m/01wdgb stockton-on-tees ua (Q989418) /m/0by292 candlelight records (Q852900) /m/027jbr national racing museum and hall of fame (Q6974502) /m/02070z killed in battle (Q210392) /m/02wxtgw android phone (Q94) /m/0ng8v county kildare, ireland (Q173332) /m/01pqx6 whiting writers award (Q10393524) /m/01z52d julie rose (Q725261) /m/02h661t /m/02h661t /m/025spv Q14941814 /m/06ngk wishstar (Q523) /m/07jqvw perkin medal (Q1385301) /m/0h948 voluntary poverty (Q10294) /m/03nh9 straight people (Q1035954) /m/02f2jv california state senate (Q1526814) /m/09hljw /m/09hljw /m/06f3l thirteen-a-side (Q10962) /m/01qynv oneworld management co. ltd. (Q8787) /m/0h9xl people’s action party (Q371395) /m/01803s everlasting life (Q193942) /m/01lys3 abuse, substance (Q4134457) /m/01730d chicago blues (Q1071873) /m/057ph mickey (disney character) (Q11934) /m/03ykjs9 /m/03ykjs9 /m/060m4 pm of canada (Q839078) /m/04p4r liberal party australia (Q241149) /m/017yzc hanoverian britain (Q157217) /m/021yyx federation of bosnia & herzegovina (Q11198) /m/01_30_ strategic simulations, inc (Q1268871) /m/02p4pt3 the plantagenets (Q106151) /m/09kqc facetious (Q35874) /m/04y41 /m/04y41 /m/01tv5c Q13526807 /m/0gslw te wai pounamu (Q120755) /m/01x4x4 @skyteam (Q212282) /m/01lk31 governor (massachusetts) (Q887117) /m/04z288 new york state senate (Q1722258) /m/0jq47 libyan mercenaries (Q178197) /m/09cmq public museum (Q33506) /m/0dng4 daffy (Q319918) /m/05qc_ planetary mass objects (Q634) /m/08hbxv kosi zone (Q9170) /m/05hyf nazidom (Q7310) /m/0qb7t friends of (Q43229) /m/027752 history of the united national party (Q1321770) /m/03f_jk albert lasker clinical medical research award (Q136696) /m/027qb1 commissioners (Q524778) /m/01x8f6 ondp (Q827589) /m/025x7g_ /m/025x7g_ /m/080v2 vice presidency of the united states (Q11699) /m/037vqt james e sullivan award (Q2720648) /m/026y05 /m/026y05 /m/05k8m5 spinefarm records (Q1124153) /m/0hsph northern dancer (horse) (Q1969034) /m/02rxd26 2009 tour de france (Q217263) /m/07hn5 tour of france (Q33881) /m/03tp4 Q131736 /m/04gbl3 david ward (programmer) (Q1408498) /m/01664_ natural historian (Q484591) /m/0171c7 ideology of the australian greens (Q781486) /m/0zq7r vertigo (company) (Q122669) /m/047vnfs football manager (Q628099) /m/022qqh conservator (art) (Q674426) /m/0jvq iceteroid (Q3863) /m/0lyb_ pulitzer prize for music (Q1783509) /m/027yjnv 2008 tdf (Q221530) /m/024030 padma vibhushan (Q672392) /m/024tv_ pakistani peoples party (Q186591) /m/0q96 alp (Q216082) ================================================ FILE: nbfnet/__init__.py ================================================ ================================================ FILE: nbfnet/dataset.py ================================================ import os import csv import glob from tqdm import tqdm from ogb import linkproppred import torch from torch.utils import data as torch_data from torchdrug import data, datasets, utils from torchdrug.core import Registry as R class InductiveKnowledgeGraphDataset(data.KnowledgeGraphDataset): def load_inductive_tsvs(self, train_files, test_files, verbose=0): assert len(train_files) == len(test_files) == 2 inv_train_entity_vocab = {} inv_test_entity_vocab = {} inv_relation_vocab = {} triplets = [] num_samples = [] for txt_file in train_files: with open(txt_file, "r") as fin: reader = csv.reader(fin, delimiter="\t") if verbose: reader = tqdm(reader, "Loading %s" % txt_file, utils.get_line_count(txt_file)) num_sample = 0 for tokens in reader: h_token, r_token, t_token = tokens if h_token not in inv_train_entity_vocab: inv_train_entity_vocab[h_token] = len(inv_train_entity_vocab) h = inv_train_entity_vocab[h_token] if r_token not in inv_relation_vocab: inv_relation_vocab[r_token] = len(inv_relation_vocab) r = inv_relation_vocab[r_token] if t_token not in inv_train_entity_vocab: inv_train_entity_vocab[t_token] = len(inv_train_entity_vocab) t = inv_train_entity_vocab[t_token] triplets.append((h, t, r)) num_sample += 1 num_samples.append(num_sample) for txt_file in test_files: with open(txt_file, "r") as fin: reader = csv.reader(fin, delimiter="\t") if verbose: reader = tqdm(reader, "Loading %s" % txt_file, utils.get_line_count(txt_file)) num_sample = 0 for tokens in reader: h_token, r_token, t_token = tokens if h_token not in inv_test_entity_vocab: inv_test_entity_vocab[h_token] = len(inv_test_entity_vocab) h = inv_test_entity_vocab[h_token] assert r_token in inv_relation_vocab r = inv_relation_vocab[r_token] if t_token not in inv_test_entity_vocab: inv_test_entity_vocab[t_token] = len(inv_test_entity_vocab) t = inv_test_entity_vocab[t_token] triplets.append((h, t, r)) num_sample += 1 num_samples.append(num_sample) train_entity_vocab, inv_train_entity_vocab = self._standarize_vocab(None, inv_train_entity_vocab) test_entity_vocab, inv_test_entity_vocab = self._standarize_vocab(None, inv_test_entity_vocab) relation_vocab, inv_relation_vocab = self._standarize_vocab(None, inv_relation_vocab) self.train_graph = data.Graph(triplets[:num_samples[0]], num_node=len(train_entity_vocab), num_relation=len(relation_vocab)) self.valid_graph = self.train_graph self.test_graph = data.Graph(triplets[sum(num_samples[:2]): sum(num_samples[:3])], num_node=len(test_entity_vocab), num_relation=len(relation_vocab)) self.graph = self.train_graph self.triplets = torch.tensor(triplets[:sum(num_samples[:2])] + triplets[sum(num_samples[:3]):]) self.num_samples = num_samples[:2] + num_samples[3:] self.train_entity_vocab = train_entity_vocab self.test_entity_vocab = test_entity_vocab self.relation_vocab = relation_vocab self.inv_train_entity_vocab = inv_train_entity_vocab self.inv_test_entity_vocab = inv_test_entity_vocab self.inv_relation_vocab = inv_relation_vocab def __getitem__(self, index): return self.triplets[index] def split(self): offset = 0 splits = [] for num_sample in self.num_samples: split = torch_data.Subset(self, range(offset, offset + num_sample)) splits.append(split) offset += num_sample return splits @R.register("datasets.CoraLinkPrediction") class CoraLinkPrediction(datasets.Cora): def __init__(self, **kwargs): super(CoraLinkPrediction, self).__init__(**kwargs) self.transform = None def __getitem__(self, index): return self.graph.edge_list[index] def __len__(self): return self.graph.num_edge def split(self, ratios=(85, 5, 10)): length = self.graph.num_edge norm = sum(ratios) lengths = [int(r / norm * length) for r in ratios] lengths[-1] = length - sum(lengths[:-1]) g = torch.Generator() g.manual_seed(0) return torch_data.random_split(self, lengths, generator=g) @R.register("datasets.CiteSeerLinkPrediction") class CiteSeerLinkPrediction(datasets.CiteSeer): def __init__(self, **kwargs): super(CiteSeerLinkPrediction, self).__init__(**kwargs) self.transform = None def __getitem__(self, index): return self.graph.edge_list[index] def __len__(self): return self.graph.num_edge def split(self, ratios=(85, 5, 10)): length = self.graph.num_edge norm = sum(ratios) lengths = [int(r / norm * length) for r in ratios] lengths[-1] = length - sum(lengths[:-1]) g = torch.Generator() g.manual_seed(0) return torch_data.random_split(self, lengths, generator=g) @R.register("datasets.PubMedLinkPrediction") class PubMedLinkPrediction(datasets.PubMed): def __init__(self, **kwargs): super(PubMedLinkPrediction, self).__init__(**kwargs) self.transform = None def __getitem__(self, index): return self.graph.edge_list[index] def __len__(self): return self.graph.num_edge def split(self, ratios=(85, 5, 10)): length = self.graph.num_edge norm = sum(ratios) lengths = [int(r / norm * length) for r in ratios] lengths[-1] = length - sum(lengths[:-1]) g = torch.Generator() g.manual_seed(0) return torch_data.random_split(self, lengths, generator=g) @R.register("datasets.FB15k237Inductive") class FB15k237Inductive(InductiveKnowledgeGraphDataset): train_urls = [ "https://raw.githubusercontent.com/kkteru/grail/master/data/fb237_%s/train.txt", "https://raw.githubusercontent.com/kkteru/grail/master/data/fb237_%s/valid.txt", ] test_urls = [ "https://raw.githubusercontent.com/kkteru/grail/master/data/fb237_%s_ind/train.txt", "https://raw.githubusercontent.com/kkteru/grail/master/data/fb237_%s_ind/test.txt", ] def __init__(self, path, version="v1", verbose=1): path = os.path.expanduser(path) if not os.path.exists(path): os.makedirs(path) self.path = path train_files = [] for url in self.train_urls: url = url % version save_file = "fb15k237_%s_%s" % (version, os.path.basename(url)) txt_file = os.path.join(path, save_file) if not os.path.exists(txt_file): txt_file = utils.download(url, self.path, save_file=save_file) train_files.append(txt_file) test_files = [] for url in self.test_urls: url = url % version save_file = "fb15k237_%s_ind_%s" % (version, os.path.basename(url)) txt_file = os.path.join(path, save_file) if not os.path.exists(txt_file): txt_file = utils.download(url, self.path, save_file=save_file) test_files.append(txt_file) self.load_inductive_tsvs(train_files, test_files, verbose=verbose) @R.register("datasets.WN18RRInductive") class WN18RRInductive(InductiveKnowledgeGraphDataset): train_urls = [ "https://raw.githubusercontent.com/kkteru/grail/master/data/WN18RR_%s/train.txt", "https://raw.githubusercontent.com/kkteru/grail/master/data/WN18RR_%s/valid.txt", ] test_urls = [ "https://raw.githubusercontent.com/kkteru/grail/master/data/WN18RR_%s_ind/train.txt", "https://raw.githubusercontent.com/kkteru/grail/master/data/WN18RR_%s_ind/test.txt", ] def __init__(self, path, version="v1", verbose=1): path = os.path.expanduser(path) if not os.path.exists(path): os.makedirs(path) self.path = path train_files = [] for url in self.train_urls: url = url % version save_file = "wn18rr_%s_%s" % (version, os.path.basename(url)) txt_file = os.path.join(path, save_file) if not os.path.exists(txt_file): txt_file = utils.download(url, self.path, save_file=save_file) train_files.append(txt_file) test_files = [] for url in self.test_urls: url = url % version save_file = "wn18rr_%s_ind_%s" % (version, os.path.basename(url)) txt_file = os.path.join(path, save_file) if not os.path.exists(txt_file): txt_file = utils.download(url, self.path, save_file=save_file) test_files.append(txt_file) self.load_inductive_tsvs(train_files, test_files, verbose=verbose) @R.register("datasets.OGBLBioKG") class OGBLBioKG(data.KnowledgeGraphDataset): def __init__(self, path, verbose=1): path = os.path.expanduser(path) self.path = path dataset = linkproppred.LinkPropPredDataset("ogbl-biokg", path) self.load_ogb(dataset, verbose=verbose) def load_ogb(self, dataset, verbose=1): entity_vocab = [] relation_vocab = [] entity_type_vocab = [] inv_entity_type_offset = {} entity_type2num = [] zip_files = glob.glob(os.path.join(dataset.root, "mapping/*.gz")) for zip_file in zip_files: csv_file = utils.extract(zip_file) type = os.path.basename(csv_file).split("_")[0] with open(csv_file, "r") as fin: reader = csv.reader(fin) if verbose: reader = iter(tqdm(reader, "Loading %s" % csv_file, utils.get_line_count(csv_file))) fields = next(reader) if "relidx" in csv_file: for index, token in reader: relation_vocab.append(token) else: entity_type_vocab.append(type) inv_entity_type_offset[type] = len(entity_vocab) num_entity = 0 for index, token in reader: entity_vocab.append("%s (%s)" % (type, token)) num_entity += 1 entity_type2num.append(num_entity) edge_split = dataset.get_edge_split() triplets = [] num_samples = [] num_samples_with_neg = [] negative_heads = [] negative_tails = [] for key in ["train", "valid", "test"]: split_dict = edge_split[key] h = torch.as_tensor(split_dict["head"]) t = torch.as_tensor(split_dict["tail"]) r = torch.as_tensor(split_dict["relation"]) h_type = torch.tensor([inv_entity_type_offset[h] for h in split_dict["head_type"]]) t_type = torch.tensor([inv_entity_type_offset[t] for t in split_dict["tail_type"]]) h = h + h_type t = t + t_type triplet = torch.stack([h, t, r], dim=-1) triplets.append(triplet) num_samples.append(len(h)) if "head_neg" in split_dict: neg_h = torch.as_tensor(split_dict["head_neg"]) neg_t = torch.as_tensor(split_dict["tail_neg"]) neg_h = neg_h + h_type.unsqueeze(-1) neg_t = neg_t + t_type.unsqueeze(-1) negative_heads.append(neg_h) negative_tails.append(neg_t) num_samples_with_neg.append(len(h)) else: num_samples_with_neg.append(0) triplets = torch.cat(triplets) self.load_triplet(triplets, entity_vocab=entity_vocab, relation_vocab=relation_vocab) entity_type_vocab, inv_entity_type_vocab = self._standarize_vocab(entity_type_vocab, None) self.entity_type_vocab = entity_type_vocab self.inv_entity_type_vocab = inv_entity_type_vocab self.num_samples = num_samples self.num_samples_with_neg = num_samples_with_neg self.negative_heads = torch.cat(negative_heads) self.negative_tails = torch.cat(negative_tails) node_type = [] for i, num_entity in enumerate(entity_type2num): node_type += [i] * num_entity with self.graph.node(): self.graph.node_type = torch.tensor(node_type) def split(self, test_negative=True): offset = 0 neg_offset = 0 splits = [] for num_sample, num_sample_with_neg in zip(self.num_samples, self.num_samples_with_neg): if test_negative and num_sample_with_neg: pos_h, pos_t, pos_r = self[offset: offset + num_sample].t() neg_h = self.negative_heads[neg_offset: neg_offset + num_sample_with_neg] neg_t = self.negative_tails[neg_offset: neg_offset + num_sample_with_neg] num_negative = neg_h.shape[-1] h = pos_h.unsqueeze(-1).repeat(2, num_negative + 1) t = pos_t.unsqueeze(-1).repeat(2, num_negative + 1) r = pos_r.unsqueeze(-1).repeat(2, num_negative + 1) t[:num_sample_with_neg, 1:] = neg_t h[num_sample_with_neg:, 1:] = neg_h split = torch.stack([h, t, r], dim=-1) else: split = torch_data.Subset(self, range(offset, offset + num_sample)) splits.append(split) offset += num_sample neg_offset += num_sample_with_neg return splits ================================================ FILE: nbfnet/layer.py ================================================ import torch from torch import nn from torch.nn import functional as F from torch_scatter import scatter_add, scatter_mean, scatter_max, scatter_min from torchdrug import layers from torchdrug.layers import functional class GeneralizedRelationalConv(layers.MessagePassingBase): eps = 1e-6 message2mul = { "transe": "add", "distmult": "mul", } def __init__(self, input_dim, output_dim, num_relation, query_input_dim, message_func="distmult", aggregate_func="pna", layer_norm=False, activation="relu", dependent=True): super(GeneralizedRelationalConv, self).__init__() self.input_dim = input_dim self.output_dim = output_dim self.num_relation = num_relation self.query_input_dim = query_input_dim self.message_func = message_func self.aggregate_func = aggregate_func self.dependent = dependent if layer_norm: self.layer_norm = nn.LayerNorm(output_dim) else: self.layer_norm = None if isinstance(activation, str): self.activation = getattr(F, activation) else: self.activation = activation if self.aggregate_func == "pna": self.linear = nn.Linear(input_dim * 13, output_dim) else: self.linear = nn.Linear(input_dim * 2, output_dim) if dependent: self.relation_linear = nn.Linear(query_input_dim, num_relation * input_dim) else: self.relation = nn.Embedding(num_relation, input_dim) def message(self, graph, input): assert graph.num_relation == self.num_relation batch_size = len(graph.query) node_in, node_out, relation = graph.edge_list.t() if self.dependent: relation_input = self.relation_linear(graph.query).view(batch_size, self.num_relation, self.input_dim) else: relation_input = self.relation.weight.expand(batch_size, -1, -1) relation_input = relation_input.transpose(0, 1) node_input = input[node_in] edge_input = relation_input[relation] if self.message_func == "transe": message = edge_input + node_input elif self.message_func == "distmult": message = edge_input * node_input elif self.message_func == "rotate": node_re, node_im = node_input.chunk(2, dim=-1) edge_re, edge_im = edge_input.chunk(2, dim=-1) message_re = node_re * edge_re - node_im * edge_im message_im = node_re * edge_im + node_im * edge_re message = torch.cat([message_re, message_im], dim=-1) else: raise ValueError("Unknown message function `%s`" % self.message_func) message = torch.cat([message, graph.boundary]) return message def aggregate(self, graph, message): node_out = graph.edge_list[:, 1] node_out = torch.cat([node_out, torch.arange(graph.num_node, device=graph.device)]) edge_weight = torch.cat([graph.edge_weight, torch.ones(graph.num_node, device=graph.device)]) edge_weight = edge_weight.unsqueeze(-1).unsqueeze(-1) degree_out = graph.degree_out.unsqueeze(-1).unsqueeze(-1) + 1 if self.aggregate_func == "sum": update = scatter_add(message * edge_weight, node_out, dim=0, dim_size=graph.num_node) elif self.aggregate_func == "mean": update = scatter_mean(message * edge_weight, node_out, dim=0, dim_size=graph.num_node) elif self.aggregate_func == "max": update = scatter_max(message * edge_weight, node_out, dim=0, dim_size=graph.num_node)[0] elif self.aggregate_func == "pna": mean = scatter_mean(message * edge_weight, node_out, dim=0, dim_size=graph.num_node) sq_mean = scatter_mean(message ** 2 * edge_weight, node_out, dim=0, dim_size=graph.num_node) max = scatter_max(message * edge_weight, node_out, dim=0, dim_size=graph.num_node)[0] min = scatter_min(message * edge_weight, node_out, dim=0, dim_size=graph.num_node)[0] std = (sq_mean - mean ** 2).clamp(min=self.eps).sqrt() features = torch.cat([mean.unsqueeze(-1), max.unsqueeze(-1), min.unsqueeze(-1), std.unsqueeze(-1)], dim=-1) features = features.flatten(-2) scale = degree_out.log() scale = scale / scale.mean() scales = torch.cat([torch.ones_like(scale), scale, 1 / scale.clamp(min=1e-2)], dim=-1) update = (features.unsqueeze(-1) * scales.unsqueeze(-2)).flatten(-2) else: raise ValueError("Unknown aggregation function `%s`" % self.aggregate_func) return update def message_and_aggregate(self, graph, input): if graph.requires_grad or self.message_func == "rotate": return super(GeneralizedRelationalConv, self).message_and_aggregate(graph, input) assert graph.num_relation == self.num_relation batch_size = len(graph.query) input = input.flatten(1) boundary = graph.boundary.flatten(1) degree_out = graph.degree_out.unsqueeze(-1) + 1 if self.dependent: relation_input = self.relation_linear(graph.query).view(batch_size, self.num_relation, self.input_dim) relation_input = relation_input.transpose(0, 1).flatten(1) else: relation_input = self.relation.weight.repeat(1, batch_size) adjacency = graph.adjacency.transpose(0, 1) if self.message_func in self.message2mul: mul = self.message2mul[self.message_func] else: raise ValueError("Unknown message function `%s`" % self.message_func) if self.aggregate_func == "sum": update = functional.generalized_rspmm(adjacency, relation_input, input, sum="add", mul=mul) update = update + boundary elif self.aggregate_func == "mean": update = functional.generalized_rspmm(adjacency, relation_input, input, sum="add", mul=mul) update = (update + boundary) / degree_out elif self.aggregate_func == "max": update = functional.generalized_rspmm(adjacency, relation_input, input, sum="max", mul=mul) update = torch.max(update, boundary) elif self.aggregate_func == "pna": sum = functional.generalized_rspmm(adjacency, relation_input, input, sum="add", mul=mul) sq_sum = functional.generalized_rspmm(adjacency, relation_input ** 2, input ** 2, sum="add", mul=mul) max = functional.generalized_rspmm(adjacency, relation_input, input, sum="max", mul=mul) min = functional.generalized_rspmm(adjacency, relation_input, input, sum="min", mul=mul) mean = (sum + boundary) / degree_out sq_mean = (sq_sum + boundary ** 2) / degree_out max = torch.max(max, boundary) min = torch.min(min, boundary) std = (sq_mean - mean ** 2).clamp(min=self.eps).sqrt() features = torch.cat([mean.unsqueeze(-1), max.unsqueeze(-1), min.unsqueeze(-1), std.unsqueeze(-1)], dim=-1) features = features.flatten(-2) scale = degree_out.log() scale = scale / scale.mean() scales = torch.cat([torch.ones_like(scale), scale, 1 / scale.clamp(min=1e-2)], dim=-1) update = (features.unsqueeze(-1) * scales.unsqueeze(-2)).flatten(-2) else: raise ValueError("Unknown aggregation function `%s`" % self.aggregate_func) return update.view(len(update), batch_size, -1) def combine(self, input, update): output = self.linear(torch.cat([input, update], dim=-1)) if self.layer_norm: output = self.layer_norm(output) if self.activation: output = self.activation(output) return output ================================================ FILE: nbfnet/model.py ================================================ from collections.abc import Sequence import torch from torch import nn from torch import autograd from torch_scatter import scatter_add from torchdrug import core, layers from torchdrug.layers import functional from torchdrug.core import Registry as R from . import layer @R.register("model.NBFNet") class NeuralBellmanFordNetwork(nn.Module, core.Configurable): def __init__(self, input_dim, hidden_dims, num_relation=None, symmetric=False, message_func="distmult", aggregate_func="pna", short_cut=False, layer_norm=False, activation="relu", concat_hidden=False, num_mlp_layer=2, dependent=True, remove_one_hop=False, num_beam=10, path_topk=10): super(NeuralBellmanFordNetwork, self).__init__() if not isinstance(hidden_dims, Sequence): hidden_dims = [hidden_dims] if num_relation is None: double_relation = 1 else: num_relation = int(num_relation) double_relation = num_relation * 2 self.dims = [input_dim] + list(hidden_dims) self.num_relation = num_relation self.symmetric = symmetric self.short_cut = short_cut self.concat_hidden = concat_hidden self.remove_one_hop = remove_one_hop self.num_beam = num_beam self.path_topk = path_topk self.layers = nn.ModuleList() for i in range(len(self.dims) - 1): self.layers.append(layer.GeneralizedRelationalConv(self.dims[i], self.dims[i + 1], double_relation, self.dims[0], message_func, aggregate_func, layer_norm, activation, dependent)) feature_dim = hidden_dims[-1] * (len(hidden_dims) if concat_hidden else 1) + input_dim self.query = nn.Embedding(double_relation, input_dim) self.mlp = layers.MLP(feature_dim, [feature_dim] * (num_mlp_layer - 1) + [1]) def remove_easy_edges(self, graph, h_index, t_index, r_index=None): if self.remove_one_hop: h_index_ext = torch.cat([h_index, t_index], dim=-1) t_index_ext = torch.cat([t_index, h_index], dim=-1) if r_index is not None: any = -torch.ones_like(h_index_ext) pattern = torch.stack([h_index_ext, t_index_ext, any], dim=-1) else: pattern = torch.stack([h_index_ext, t_index_ext], dim=-1) else: if r_index is not None: pattern = torch.stack([h_index, t_index, r_index], dim=-1) else: pattern = torch.stack([h_index, t_index], dim=-1) pattern = pattern.flatten(0, -2) edge_index = graph.match(pattern)[0] edge_mask = ~functional.as_mask(edge_index, graph.num_edge) return graph.edge_mask(edge_mask) def negative_sample_to_tail(self, h_index, t_index, r_index): # convert p(h | t, r) to p(t' | h', r') # h' = t, r' = r^{-1}, t' = h is_t_neg = (h_index == h_index[:, [0]]).all(dim=-1, keepdim=True) new_h_index = torch.where(is_t_neg, h_index, t_index) new_t_index = torch.where(is_t_neg, t_index, h_index) new_r_index = torch.where(is_t_neg, r_index, r_index + self.num_relation) return new_h_index, new_t_index, new_r_index def as_relational_graph(self, graph, self_loop=True): # add self loop # convert homogeneous graphs to knowledge graphs with 1 relation edge_list = graph.edge_list edge_weight = graph.edge_weight if self_loop: node_in = node_out = torch.arange(graph.num_node, device=self.device) loop = torch.stack([node_in, node_out], dim=-1) edge_list = torch.cat([edge_list, loop]) edge_weight = torch.cat([edge_weight, torch.ones(graph.num_node, device=self.device)]) relation = torch.zeros(len(edge_list), 1, dtype=torch.long, device=self.device) edge_list = torch.cat([edge_list, relation], dim=-1) graph = type(graph)(edge_list, edge_weight=edge_weight, num_node=graph.num_node, num_relation=1, meta_dict=graph.meta_dict, **graph.data_dict) return graph def bellmanford(self, graph, h_index, r_index, separate_grad=False): query = self.query(r_index) index = h_index.unsqueeze(-1).expand_as(query) boundary = torch.zeros(graph.num_node, *query.shape, device=self.device) boundary.scatter_add_(0, index.unsqueeze(0), query.unsqueeze(0)) with graph.graph(): graph.query = query with graph.node(): graph.boundary = boundary hiddens = [] step_graphs = [] layer_input = boundary for layer in self.layers: if separate_grad: step_graph = graph.clone().requires_grad_() else: step_graph = graph hidden = layer(step_graph, layer_input) if self.short_cut and hidden.shape == layer_input.shape: hidden = hidden + layer_input hiddens.append(hidden) step_graphs.append(step_graph) layer_input = hidden node_query = query.expand(graph.num_node, -1, -1) if self.concat_hidden: output = torch.cat(hiddens + [node_query], dim=-1) else: output = torch.cat([hiddens[-1], node_query], dim=-1) return { "node_feature": output, "step_graphs": step_graphs, } def forward(self, graph, h_index, t_index, r_index=None, all_loss=None, metric=None): if all_loss is not None: graph = self.remove_easy_edges(graph, h_index, t_index, r_index) shape = h_index.shape if graph.num_relation: graph = graph.undirected(add_inverse=True) h_index, t_index, r_index = self.negative_sample_to_tail(h_index, t_index, r_index) else: graph = self.as_relational_graph(graph) h_index = h_index.view(-1, 1) t_index = t_index.view(-1, 1) r_index = torch.zeros_like(h_index) assert (h_index[:, [0]] == h_index).all() assert (r_index[:, [0]] == r_index).all() output = self.bellmanford(graph, h_index[:, 0], r_index[:, 0]) feature = output["node_feature"].transpose(0, 1) index = t_index.unsqueeze(-1).expand(-1, -1, feature.shape[-1]) feature = feature.gather(1, index) if self.symmetric: assert (t_index[:, [0]] == t_index).all() output = self.bellmanford(graph, t_index[:, 0], r_index[:, 0]) inv_feature = output["node_feature"].transpose(0, 1) index = h_index.unsqueeze(-1).expand(-1, -1, inv_feature.shape[-1]) inv_feature = inv_feature.gather(1, index) feature = (feature + inv_feature) / 2 score = self.mlp(feature).squeeze(-1) return score.view(shape) def visualize(self, graph, h_index, t_index, r_index): assert h_index.numel() == 1 and h_index.ndim == 1 graph = graph.undirected(add_inverse=True) output = self.bellmanford(graph, h_index, r_index, separate_grad=True) feature = output["node_feature"] step_graphs = output["step_graphs"] index = t_index.unsqueeze(0).unsqueeze(-1).expand(-1, -1, feature.shape[-1]) feature = feature.gather(0, index).squeeze(0) score = self.mlp(feature).squeeze(-1) edge_weights = [graph.edge_weight for graph in step_graphs] edge_grads = autograd.grad(score, edge_weights) for graph, edge_grad in zip(step_graphs, edge_grads): with graph.edge(): graph.edge_grad = edge_grad distances, back_edges = self.beam_search_distance(step_graphs, h_index, t_index, self.num_beam) paths, weights = self.topk_average_length(distances, back_edges, t_index, self.path_topk) return paths, weights @torch.no_grad() def beam_search_distance(self, graphs, h_index, t_index, num_beam=10): num_node = graphs[0].num_node input = torch.full((num_node, num_beam), float("-inf"), device=self.device) input[h_index, 0] = 0 distances = [] back_edges = [] for graph in graphs: graph = graph.edge_mask(graph.edge_list[:, 0] != t_index) node_in, node_out = graph.edge_list.t()[:2] message = input[node_in] + graph.edge_grad.unsqueeze(-1) msg_source = graph.edge_list.unsqueeze(1).expand(-1, num_beam, -1) is_duplicate = torch.isclose(message.unsqueeze(-1), message.unsqueeze(-2)) & \ (msg_source.unsqueeze(-2) == msg_source.unsqueeze(-3)).all(dim=-1) is_duplicate = is_duplicate.float() - \ torch.arange(num_beam, dtype=torch.float, device=self.device) / (num_beam + 1) # pick the first occurrence as the previous state prev_rank = is_duplicate.argmax(dim=-1, keepdim=True) msg_source = torch.cat([msg_source, prev_rank], dim=-1) node_out, order = node_out.sort() node_out_set = torch.unique(node_out) # sort message w.r.t. node_out message = message[order].flatten() msg_source = msg_source[order].flatten(0, -2) size = scatter_add(torch.ones_like(node_out), node_out, dim_size=num_node) msg2out = torch.repeat_interleave(size[node_out_set] * num_beam) # deduplicate is_duplicate = (msg_source[1:] == msg_source[:-1]).all(dim=-1) is_duplicate = torch.cat([torch.zeros(1, dtype=torch.bool, device=self.device), is_duplicate]) message = message[~is_duplicate] msg_source = msg_source[~is_duplicate] msg2out = msg2out[~is_duplicate] size = scatter_add(torch.ones_like(msg2out), msg2out, dim_size=len(node_out_set)) if not torch.isinf(message).all(): distance, rel_index = functional.variadic_topk(message, size, k=num_beam) abs_index = rel_index + (size.cumsum(0) - size).unsqueeze(-1) back_edge = msg_source[abs_index] distance = distance.view(len(node_out_set), num_beam) back_edge = back_edge.view(len(node_out_set), num_beam, 4) distance = scatter_add(distance, node_out_set, dim=0, dim_size=num_node) back_edge = scatter_add(back_edge, node_out_set, dim=0, dim_size=num_node) else: distance = torch.full((num_node, num_beam), float("-inf"), device=self.device) back_edge = torch.zeros(num_node, num_beam, 4, dtype=torch.long, device=self.device) distances.append(distance) back_edges.append(back_edge) input = distance return distances, back_edges def topk_average_length(self, distances, back_edges, t_index, k=10): paths = [] average_lengths = [] for i in range(len(distances)): distance, order = distances[i][t_index].flatten(0, -1).sort(descending=True) back_edge = back_edges[i][t_index].flatten(0, -2)[order] for d, (h, t, r, prev_rank) in zip(distance[:k].tolist(), back_edge[:k].tolist()): if d == float("-inf"): break path = [(h, t, r)] for j in range(i - 1, -1, -1): h, t, r, prev_rank = back_edges[j][h, prev_rank].tolist() path.append((h, t, r)) paths.append(path[::-1]) average_lengths.append(d / len(path)) if paths: average_lengths, paths = zip(*sorted(zip(average_lengths, paths), reverse=True)[:k]) return paths, average_lengths ================================================ FILE: nbfnet/task.py ================================================ import math import torch from torch.nn import functional as F from torch.utils import data as torch_data from ogb import linkproppred from torchdrug import core, tasks, metrics from torchdrug.layers import functional from torchdrug.core import Registry as R Evaluator = core.make_configurable(linkproppred.Evaluator) Evaluator = R.register("ogb.linkproppred.Evaluator")(Evaluator) setattr(linkproppred, "Evaluator", Evaluator) @R.register("tasks.KnowledgeGraphCompletionExt") class KnowledgeGraphCompletionExt(tasks.KnowledgeGraphCompletion, core.Configurable): def __init__(self, model, criterion="bce", metric=("mr", "mrr", "hits@1", "hits@3", "hits@10", "1-to-1", "1-to-n", "n-to-1", "n-to-n"), num_negative=128, margin=6, adversarial_temperature=0, strict_negative=True, fact_ratio=None, sample_weight=True, filtered_ranking=True, full_batch_eval=False): super(KnowledgeGraphCompletionExt, self).__init__( model, criterion, metric, num_negative, margin, adversarial_temperature, strict_negative, fact_ratio, sample_weight, filtered_ranking, full_batch_eval) def preprocess(self, train_set, valid_set, test_set): super(KnowledgeGraphCompletionExt, self).preprocess(train_set, valid_set, test_set) degree_hr = torch.zeros(self.num_entity, self.num_relation, dtype=torch.long) degree_tr = torch.zeros(self.num_entity, self.num_relation, dtype=torch.long) for h, t, r in train_set: degree_hr[h, r] += 1 degree_tr[t, r] += 1 has_category = False for _metric in self.metric: if _metric in ["1-to-1", "1-to-n", "n-to-1", "n-to-n"]: has_category = True if has_category: is_to_one = degree_hr.sum(dim=0).float() / (degree_hr > 0).sum(dim=0) < 1.5 is_one_to = degree_tr.sum(dim=0).float() / (degree_tr > 0).sum(dim=0) < 1.5 self.register_buffer("is_one_to_one", is_one_to & is_to_one) self.register_buffer("is_one_to_many", is_one_to & ~is_to_one) self.register_buffer("is_many_to_one", ~is_one_to & is_to_one) self.register_buffer("is_many_to_many", ~is_one_to & ~is_to_one) assert self.is_one_to_one.sum() + self.is_one_to_many.sum() + \ self.is_many_to_one.sum() + self.is_many_to_many.sum() == self.num_relation assert (self.is_one_to_one | self.is_one_to_many | self.is_many_to_one | self.is_many_to_many).all() def target(self, batch): mask, target = super(KnowledgeGraphCompletionExt, self).target(batch) relation = batch[:, 2] # in case of GPU OOM return mask, target, relation.cpu() def evaluate(self, pred, target): mask, target, relation = target pos_pred = pred.gather(-1, target.unsqueeze(-1)) if self.filtered_ranking: ranking = torch.sum((pos_pred <= pred) & mask, dim=-1) + 1 else: ranking = torch.sum(pos_pred <= pred, dim=-1) + 1 metric = {} for _metric in self.metric: if _metric == "mr": score = ranking.float().mean() elif _metric == "mrr": score = (1 / ranking.float()).mean() elif _metric.startswith("hits@"): threshold = int(_metric[5:]) score = (ranking <= threshold).float().mean() elif _metric == "1-to-1": score = (1 / ranking[self.is_one_to_one[relation]].float()).mean() metric["1-to-1 tail"] = (1 / ranking[self.is_one_to_one[relation]].float()).mean(dim=0)[0] metric["1-to-1 head"] = (1 / ranking[self.is_one_to_one[relation]].float()).mean(dim=0)[1] elif _metric == "1-to-n": score = (1 / ranking[self.is_one_to_many[relation]].float()).mean() metric["1-to-n tail"] = (1 / ranking[self.is_one_to_many[relation]].float()).mean(dim=0)[0] metric["1-to-n head"] = (1 / ranking[self.is_one_to_many[relation]].float()).mean(dim=0)[1] elif _metric == "n-to-1": score = (1 / ranking[self.is_many_to_one[relation]].float()).mean() metric["n-to-1 tail"] = (1 / ranking[self.is_many_to_one[relation]].float()).mean(dim=0)[0] metric["n-to-1 head"] = (1 / ranking[self.is_many_to_one[relation]].float()).mean(dim=0)[1] elif _metric == "n-to-n": score = (1 / ranking[self.is_many_to_many[relation]].float()).mean() metric["n-to-n tail"] = (1 / ranking[self.is_many_to_many[relation]].float()).mean(dim=0)[0] metric["n-to-n head"] = (1 / ranking[self.is_many_to_many[relation]].float()).mean(dim=0)[1] else: raise ValueError("Unknown metric `%s`" % _metric) name = tasks._get_metric_name(_metric) metric[name] = score return metric @R.register("tasks.LinkPrediction") class LinkPrediction(tasks.Task, core.Configurable): _option_members = ["criterion", "metric"] def __init__(self, model, criterion="bce", metric=("auroc", "ap"), num_negative=128, strict_negative=True): super(LinkPrediction, self).__init__() self.model = model self.criterion = criterion self.metric = metric self.num_negative = num_negative self.strict_negative = strict_negative def preprocess(self, train_set, valid_set, test_set): if isinstance(train_set, torch_data.Subset): dataset = train_set.dataset else: dataset = train_set self.num_node = dataset.num_node train_mask = train_set.indices valid_mask = train_set.indices + valid_set.indices train_graph = dataset.graph.edge_mask(train_mask) valid_graph = dataset.graph.edge_mask(valid_mask) self.register_buffer("train_graph", train_graph.undirected()) self.register_buffer("valid_graph", valid_graph.undirected()) self.register_buffer("test_graph", dataset.graph.undirected()) def forward(self, batch): all_loss = torch.tensor(0, dtype=torch.float32, device=self.device) metric = {} pred, target = self.predict_and_target(batch, all_loss, metric) metric.update(self.evaluate(pred, target)) for criterion, weight in self.criterion.items(): if criterion == "bce": loss = F.binary_cross_entropy_with_logits(pred, target, reduction="none") neg_weight = torch.ones_like(pred) neg_weight[:, 1:] = 1 / self.num_negative loss = (loss * neg_weight).sum(dim=-1) / neg_weight.sum(dim=-1) else: raise ValueError("Unknown criterion `%s`" % criterion) loss = loss.mean() name = tasks._get_criterion_name(criterion) metric[name] = loss all_loss += loss * weight return all_loss, metric @torch.no_grad() def _strict_negative(self, count, split="train"): graph = getattr(self, "%s_graph" % split) node_in = graph.edge_list[:, 0] degree_in = torch.bincount(node_in, minlength=self.num_node) prob = (graph.num_node - degree_in - 1).float() neg_h_index = functional.multinomial(prob, count, replacement=True) any = -torch.ones_like(neg_h_index) pattern = torch.stack([neg_h_index, any], dim=-1) edge_index, num_t_truth = graph.match(pattern) t_truth_index = graph.edge_list[edge_index, 1] pos_index = torch.repeat_interleave(num_t_truth) t_mask = torch.ones(count, self.num_node, dtype=torch.bool, device=self.device) t_mask[pos_index, t_truth_index] = 0 t_mask.scatter_(1, neg_h_index.unsqueeze(-1), 0) neg_t_candidate = t_mask.nonzero()[:, 1] num_t_candidate = t_mask.sum(dim=-1) neg_t_index = functional.variadic_sample(neg_t_candidate, num_t_candidate, 1).squeeze(-1) return neg_h_index, neg_t_index def predict_and_target(self, batch, all_loss=None, metric=None): batch_size = len(batch) pos_h_index, pos_t_index = batch.t() if self.split == "train": num_negative = self.num_negative else: num_negative = 1 if self.strict_negative or self.split != "train": neg_h_index, neg_t_index = self._strict_negative(batch_size * num_negative, self.split) else: neg_h_index, neg_t_index = torch.randint(self.num_node, (2, batch_size * num_negative), device=self.device) neg_h_index = neg_h_index.view(batch_size, num_negative) neg_t_index = neg_t_index.view(batch_size, num_negative) h_index = pos_h_index.unsqueeze(-1).repeat(1, num_negative + 1) t_index = pos_t_index.unsqueeze(-1).repeat(1, num_negative + 1) h_index[:, 1:] = neg_h_index t_index[:, 1:] = neg_t_index pred = self.model(self.train_graph, h_index, t_index, all_loss=all_loss, metric=metric) target = torch.zeros_like(pred) target[:, 0] = 1 return pred, target def evaluate(self, pred, target): pred = pred.flatten() target = target.flatten() metric = {} for _metric in self.metric: if _metric == "auroc": score = metrics.area_under_roc(pred, target) elif _metric == "ap": score = metrics.area_under_prc(pred, target) else: raise ValueError("Unknown metric `%s`" % _metric) name = tasks._get_metric_name(_metric) metric[name] = score return metric @R.register("tasks.InductiveKnowledgeGraphCompletion") class InductiveKnowledgeGraphCompletion(tasks.KnowledgeGraphCompletion, core.Configurable): def __init__(self, model, criterion="bce", metric=("mr", "mrr", "hits@1", "hits@3", "hits@10", "hits@10_50"), num_negative=128, margin=6, adversarial_temperature=0, strict_negative=True, sample_weight=True, full_batch_eval=False): super(InductiveKnowledgeGraphCompletion, self).__init__( model, criterion, metric, num_negative, margin, adversarial_temperature, strict_negative, sample_weight=sample_weight, filtered_ranking=True, full_batch_eval=full_batch_eval) def preprocess(self, train_set, valid_set, test_set): if isinstance(train_set, torch_data.Subset): dataset = train_set.dataset else: dataset = train_set self.num_entity = dataset.num_entity self.num_relation = dataset.num_relation self.register_buffer("fact_graph", dataset.graph) if self.sample_weight: degree_hr = torch.zeros(self.num_entity, self.num_relation, dtype=torch.long) degree_tr = torch.zeros(self.num_entity, self.num_relation, dtype=torch.long) for h, t, r in train_set: degree_hr[h, r] += 1 degree_tr[t, r] += 1 self.register_buffer("degree_hr", degree_hr) self.register_buffer("degree_tr", degree_tr) self.register_buffer("train_graph", dataset.train_graph) self.register_buffer("valid_graph", dataset.valid_graph) self.register_buffer("test_graph", dataset.test_graph) return train_set, valid_set, test_set def predict(self, batch, all_loss=None, metric=None): pos_h_index, pos_t_index, pos_r_index = batch.t() batch_size = len(batch) graph = getattr(self, "%s_graph" % self.split) if all_loss is None: # test all_index = torch.arange(graph.num_node, device=self.device) t_preds = [] h_preds = [] num_negative = graph.num_node if self.full_batch_eval else self.num_negative for neg_index in all_index.split(num_negative): r_index = pos_r_index.unsqueeze(-1).expand(-1, len(neg_index)) h_index, t_index = torch.meshgrid(pos_h_index, neg_index) t_pred = self.model(graph, h_index, t_index, r_index, all_loss=all_loss, metric=metric) t_preds.append(t_pred) t_pred = torch.cat(t_preds, dim=-1) for neg_index in all_index.split(num_negative): r_index = pos_r_index.unsqueeze(-1).expand(-1, len(neg_index)) t_index, h_index = torch.meshgrid(pos_t_index, neg_index) h_pred = self.model(graph, h_index, t_index, r_index, all_loss=all_loss, metric=metric) h_preds.append(h_pred) h_pred = torch.cat(h_preds, dim=-1) pred = torch.stack([t_pred, h_pred], dim=1) # in case of GPU OOM pred = pred.cpu() else: # train if self.strict_negative: neg_index = self._strict_negative(pos_h_index, pos_t_index, pos_r_index) else: neg_index = torch.randint(self.num_entity, (batch_size, self.num_negative), device=self.device) h_index = pos_h_index.unsqueeze(-1).repeat(1, self.num_negative + 1) t_index = pos_t_index.unsqueeze(-1).repeat(1, self.num_negative + 1) r_index = pos_r_index.unsqueeze(-1).repeat(1, self.num_negative + 1) t_index[:batch_size // 2, 1:] = neg_index[:batch_size // 2] h_index[batch_size // 2:, 1:] = neg_index[batch_size // 2:] pred = self.model(graph, h_index, t_index, r_index, all_loss=all_loss, metric=metric) return pred def target(self, batch): # test target batch_size = len(batch) graph = getattr(self, "%s_graph" % self.split) pos_h_index, pos_t_index, pos_r_index = batch.t() any = -torch.ones_like(pos_h_index) pattern = torch.stack([pos_h_index, any, pos_r_index], dim=-1) edge_index, num_t_truth = graph.match(pattern) t_truth_index = graph.edge_list[edge_index, 1] pos_index = torch.repeat_interleave(num_t_truth) t_mask = torch.ones(batch_size, graph.num_node, dtype=torch.bool, device=self.device) t_mask[pos_index, t_truth_index] = 0 pattern = torch.stack([any, pos_t_index, pos_r_index], dim=-1) edge_index, num_h_truth = graph.match(pattern) h_truth_index = graph.edge_list[edge_index, 0] pos_index = torch.repeat_interleave(num_h_truth) h_mask = torch.ones(batch_size, graph.num_node, dtype=torch.bool, device=self.device) h_mask[pos_index, h_truth_index] = 0 mask = torch.stack([t_mask, h_mask], dim=1) target = torch.stack([pos_t_index, pos_h_index], dim=1) # in case of GPU OOM return mask.cpu(), target.cpu() def evaluate(self, pred, target): mask, target = target pos_pred = pred.gather(-1, target.unsqueeze(-1)) ranking = torch.sum((pos_pred <= pred) & mask, dim=-1) + 1 metric = {} for _metric in self.metric: if _metric == "mr": score = ranking.float().mean() elif _metric == "mrr": score = (1 / ranking.float()).mean() elif _metric.startswith("hits@"): values = _metric[5:].split("_") threshold = int(values[0]) if len(values) > 1: num_sample = int(values[1]) # unbiased estimation fp_rate = (ranking - 1).float() / mask.sum(dim=-1) score = 0 for i in range(threshold): # choose i false positive from num_sample negatives num_comb = math.factorial(num_sample) / math.factorial(i) / math.factorial(num_sample - i) score += num_comb * (fp_rate ** i) * ((1 - fp_rate) ** (num_sample - i)) score = score.mean() else: score = (ranking <= threshold).float().mean() else: raise ValueError("Unknown metric `%s`" % _metric) name = tasks._get_metric_name(_metric) metric[name] = score return metric @R.register("tasks.KnowledgeGraphCompletionOGB") class KnowledgeGraphCompletionOGB(tasks.KnowledgeGraphCompletion, core.Configurable): def __init__(self, model, criterion="bce", evaluator=None, num_negative=128, margin=6, adversarial_temperature=0, strict_negative=True, heterogeneous_negative=False, fact_ratio=None, sample_weight=True): super(KnowledgeGraphCompletionOGB, self).__init__( model, criterion, None, num_negative, margin, adversarial_temperature, strict_negative, fact_ratio, sample_weight) self.evaluator = evaluator self.heterogeneous_negative = heterogeneous_negative def preprocess(self, train_set, valid_set, test_set): if isinstance(train_set, torch_data.Subset): dataset = train_set.dataset else: dataset = train_set self.num_entity = dataset.num_entity self.num_relation = dataset.num_relation self.register_buffer("graph", dataset.graph) fact_mask = torch.zeros(len(dataset), dtype=torch.bool) fact_mask[train_set.indices] = 1 if self.fact_ratio: length = int(len(train_set) * self.fact_ratio) index = torch.randperm(len(train_set))[length:] train_indices = torch.tensor(train_set.indices) fact_mask[train_indices[index]] = 0 train_set = torch_data.Subset(train_set, index) self.register_buffer("fact_graph", dataset.graph.edge_mask(fact_mask)) if self.sample_weight: degree_hr = torch.zeros(self.num_entity, self.num_relation, dtype=torch.long) degree_tr = torch.zeros(self.num_entity, self.num_relation, dtype=torch.long) for h, t, r in train_set: degree_hr[h, r] += 1 degree_tr[t, r] += 1 self.register_buffer("degree_hr", degree_hr) self.register_buffer("degree_tr", degree_tr) return train_set, valid_set, test_set @torch.no_grad() def _strict_negative(self, pos_h_index, pos_t_index, pos_r_index): batch_size = len(pos_h_index) any = -torch.ones_like(pos_h_index) node_type = self.fact_graph.node_type pattern = torch.stack([pos_h_index, any, pos_r_index], dim=-1) pattern = pattern[:batch_size // 2] edge_index, num_t_truth = self.fact_graph.match(pattern) t_truth_index = self.fact_graph.edge_list[edge_index, 1] pos_index = torch.repeat_interleave(num_t_truth) if self.heterogeneous_negative: pos_t_type = node_type[pos_t_index[:batch_size // 2]] t_mask = pos_t_type.unsqueeze(-1) == node_type.unsqueeze(0) else: t_mask = torch.ones(len(pattern), self.num_entity, dtype=torch.bool, device=self.device) t_mask[pos_index, t_truth_index] = 0 neg_t_candidate = t_mask.nonzero()[:, 1] num_t_candidate = t_mask.sum(dim=-1) neg_t_index = functional.variadic_sample(neg_t_candidate, num_t_candidate, self.num_negative) pattern = torch.stack([any, pos_t_index, pos_r_index], dim=-1) pattern = pattern[batch_size // 2:] edge_index, num_h_truth = self.fact_graph.match(pattern) h_truth_index = self.fact_graph.edge_list[edge_index, 0] pos_index = torch.repeat_interleave(num_h_truth) if self.heterogeneous_negative: pos_h_type = node_type[pos_h_index[batch_size // 2:]] h_mask = pos_h_type.unsqueeze(-1) == node_type.unsqueeze(0) else: h_mask = torch.ones(len(pattern), self.num_entity, dtype=torch.bool, device=self.device) h_mask[pos_index, h_truth_index] = 0 neg_h_candidate = h_mask.nonzero()[:, 1] num_h_candidate = h_mask.sum(dim=-1) neg_h_index = functional.variadic_sample(neg_h_candidate, num_h_candidate, self.num_negative) neg_index = torch.cat([neg_t_index, neg_h_index]) return neg_index def predict(self, batch, all_loss=None, metric=None): batch_size = len(batch) if all_loss is None: # test h_index, t_index, r_index = batch.unbind(-1) pattern = batch[:, 0, :] num_match = self.fact_graph.match(pattern)[1] assert (num_match == 0).all() pred = self.model(self.fact_graph, h_index, t_index, r_index, all_loss=all_loss, metric=metric) # in case of GPU OOM pred = pred.cpu() else: # train pos_h_index, pos_t_index, pos_r_index = batch.t() if self.strict_negative: neg_index = self._strict_negative(pos_h_index, pos_t_index, pos_r_index) else: neg_index = torch.randint(self.num_entity, (batch_size, self.num_negative), device=self.device) h_index = pos_h_index.unsqueeze(-1).repeat(1, self.num_negative + 1) t_index = pos_t_index.unsqueeze(-1).repeat(1, self.num_negative + 1) r_index = pos_r_index.unsqueeze(-1).repeat(1, self.num_negative + 1) t_index[:batch_size // 2, 1:] = neg_index[:batch_size // 2] h_index[batch_size // 2:, 1:] = neg_index[batch_size // 2:] pred = self.model(self.fact_graph, h_index, t_index, r_index, all_loss=all_loss, metric=metric) return pred def target(self, batch): # test target batch_size = len(batch) target = torch.zeros(batch_size, dtype=torch.long, device=self.device) # in case of GPU OOM return target.cpu() def evaluate(self, pred, target): is_positive = torch.zeros(pred.shape, dtype=torch.bool) is_positive.scatter_(-1, target.unsqueeze(-1), 1) pos_pred = pred[is_positive] neg_pred = pred[~is_positive].view(len(pos_pred), -1) metric = self.evaluator.eval({"y_pred_pos": pos_pred, "y_pred_neg": neg_pred}) new_metric = {} for key in metric: new_key = key.split("_")[0] new_metric[new_key] = metric[key].mean() return new_metric ================================================ FILE: nbfnet/util.py ================================================ import os import time import logging import argparse import yaml import jinja2 from jinja2 import meta import easydict import torch from torch.utils import data as torch_data from torch import distributed as dist from torchdrug import core, utils from torchdrug.utils import comm logger = logging.getLogger(__file__) def get_root_logger(file=True): logger = logging.getLogger("") logger.setLevel(logging.INFO) format = logging.Formatter("%(asctime)-10s %(message)s", "%H:%M:%S") if file: handler = logging.FileHandler("log.txt") handler.setFormatter(format) logger.addHandler(handler) return logger def create_working_directory(cfg): file_name = "working_dir.tmp" world_size = comm.get_world_size() if world_size > 1 and not dist.is_initialized(): comm.init_process_group("nccl", init_method="env://") working_dir = os.path.join(os.path.expanduser(cfg.output_dir), cfg.task["class"], cfg.dataset["class"], cfg.task.model["class"], time.strftime("%Y-%m-%d-%H-%M-%S")) # synchronize working directory if comm.get_rank() == 0: with open(file_name, "w") as fout: fout.write(working_dir) os.makedirs(working_dir) comm.synchronize() if comm.get_rank() != 0: with open(file_name, "r") as fin: working_dir = fin.read() comm.synchronize() if comm.get_rank() == 0: os.remove(file_name) os.chdir(working_dir) return working_dir def detect_variables(cfg_file): with open(cfg_file, "r") as fin: raw = fin.read() env = jinja2.Environment() ast = env.parse(raw) vars = meta.find_undeclared_variables(ast) return vars def load_config(cfg_file, context=None): with open(cfg_file, "r") as fin: raw = fin.read() template = jinja2.Template(raw) instance = template.render(context) cfg = yaml.safe_load(instance) cfg = easydict.EasyDict(cfg) return cfg def parse_args(): parser = argparse.ArgumentParser() parser.add_argument("-c", "--config", help="yaml configuration file", required=True) parser.add_argument("-s", "--seed", help="random seed for PyTorch", type=int, default=1024) args, unparsed = parser.parse_known_args() # get dynamic arguments defined in the config file vars = detect_variables(args.config) parser = argparse.ArgumentParser() for var in vars: parser.add_argument("--%s" % var, required=True) vars = parser.parse_known_args(unparsed)[0] vars = {k: utils.literal_eval(v) for k, v in vars._get_kwargs()} return args, vars def build_solver(cfg, dataset): train_set, valid_set, test_set = dataset.split() if comm.get_rank() == 0: logger.warning(dataset) logger.warning("#train: %d, #valid: %d, #test: %d" % (len(train_set), len(valid_set), len(test_set))) if "fast_test" in cfg: if comm.get_rank() == 0: logger.warning("Quick test mode on. Only evaluate on %d samples for valid / test." % cfg.fast_test) g = torch.Generator() g.manual_seed(1024) valid_set = torch_data.random_split(valid_set, [cfg.fast_test, len(valid_set) - cfg.fast_test], generator=g)[0] test_set = torch_data.random_split(test_set, [cfg.fast_test, len(test_set) - cfg.fast_test], generator=g)[0] if hasattr(dataset, "num_relation"): cfg.task.model.num_relation = dataset.num_relation task = core.Configurable.load_config_dict(cfg.task) cfg.optimizer.params = task.parameters() optimizer = core.Configurable.load_config_dict(cfg.optimizer) solver = core.Engine(task, train_set, valid_set, test_set, optimizer, **cfg.engine) if "checkpoint" in cfg: solver.load(cfg.checkpoint) return solver ================================================ FILE: requirements.txt ================================================ torch>=1.8.0 torch-scatter>=2.0.8 torchdrug>=0.1.2 ogb>=1.3.0 easydict pyyaml ================================================ FILE: script/run.py ================================================ import os import sys import math import pprint import torch from torchdrug import core from torchdrug.utils import comm sys.path.append(os.path.dirname(os.path.dirname(__file__))) from nbfnet import dataset, layer, model, task, util def train_and_validate(cfg, solver): if cfg.train.num_epoch == 0: return step = math.ceil(cfg.train.num_epoch / 10) best_result = float("-inf") best_epoch = -1 for i in range(0, cfg.train.num_epoch, step): kwargs = cfg.train.copy() kwargs["num_epoch"] = min(step, cfg.train.num_epoch - i) solver.model.split = "train" solver.train(**kwargs) solver.save("model_epoch_%d.pth" % solver.epoch) solver.model.split = "valid" metric = solver.evaluate("valid") result = metric[cfg.metric] if result > best_result: best_result = result best_epoch = solver.epoch solver.load("model_epoch_%d.pth" % best_epoch) return solver def test(cfg, solver): solver.model.split = "valid" solver.evaluate("valid") solver.model.split = "test" solver.evaluate("test") if __name__ == "__main__": args, vars = util.parse_args() cfg = util.load_config(args.config, context=vars) working_dir = util.create_working_directory(cfg) torch.manual_seed(args.seed + comm.get_rank()) logger = util.get_root_logger() if comm.get_rank() == 0: logger.warning("Config file: %s" % args.config) logger.warning(pprint.pformat(cfg)) dataset = core.Configurable.load_config_dict(cfg.dataset) solver = util.build_solver(cfg, dataset) train_and_validate(cfg, solver) test(cfg, solver) ================================================ FILE: script/visualize.py ================================================ import os import sys import pprint import torch from torchdrug import core from torchdrug.utils import comm sys.path.append(os.path.dirname(os.path.dirname(__file__))) from nbfnet import dataset, layer, model, task, util vocab_file = os.path.join(os.path.dirname(__file__), "../data/fb15k237_entity.txt") vocab_file = os.path.abspath(vocab_file) def load_vocab(dataset): entity_mapping = {} with open(vocab_file, "r") as fin: for line in fin: k, v = line.strip().split("\t") entity_mapping[k] = v entity_vocab = [entity_mapping[t] for t in dataset.entity_vocab] relation_vocab = ["%s (%d)" % (t[t.rfind("/") + 1:].replace("_", " "), i) for i, t in enumerate(dataset.relation_vocab)] return entity_vocab, relation_vocab def visualize_path(solver, triplet, entity_vocab, relation_vocab): num_relation = len(relation_vocab) h, t, r = triplet.tolist() triplet = torch.as_tensor([[h, t, r]], device=solver.device) inverse = torch.as_tensor([[t, h, r + num_relation]], device=solver.device) solver.model.eval() pred, (mask, target) = solver.model.predict_and_target(triplet) pos_pred = pred.gather(-1, target.unsqueeze(-1)) rankings = torch.sum((pos_pred <= pred) & mask, dim=-1) + 1 rankings = rankings.squeeze(0) logger.warning("") samples = (triplet, inverse) for sample, ranking in zip(samples, rankings): h, t, r = sample.squeeze(0).tolist() h_name = entity_vocab[h] t_name = entity_vocab[t] r_name = relation_vocab[r % num_relation] if r >= num_relation: r_name += "^(-1)" logger.warning(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>") logger.warning("rank(%s | %s, %s) = %g" % (t_name, h_name, r_name, ranking)) paths, weights = solver.model.visualize(sample) for path, weight in zip(paths, weights): triplets = [] for h, t, r in path: h_name = entity_vocab[h] t_name = entity_vocab[t] r_name = relation_vocab[r % num_relation] if r >= num_relation: r_name += "^(-1)" triplets.append("<%s, %s, %s>" % (h_name, r_name, t_name)) logger.warning("weight: %g\n\t%s" % (weight, " ->\n\t".join(triplets))) if __name__ == "__main__": args, vars = util.parse_args() cfg = util.load_config(args.config, context=vars) working_dir = util.create_working_directory(cfg) torch.manual_seed(args.seed + comm.get_rank()) logger = util.get_root_logger() logger.warning("Config file: %s" % args.config) logger.warning(pprint.pformat(cfg)) if cfg.dataset["class"] != "FB15k237": raise ValueError("Visualization is only implemented for FB15k237") dataset = core.Configurable.load_config_dict(cfg.dataset) solver = util.build_solver(cfg, dataset) entity_vocab, relation_vocab = load_vocab(dataset) for i in range(500): visualize_path(solver, solver.test_set[i], entity_vocab, relation_vocab)