Machine Learning Based Heuristic Search Algorithms to Solve Birds of a Feather Card Game

Total Page:16

File Type:pdf, Size:1020Kb

Machine Learning Based Heuristic Search Algorithms to Solve Birds of a Feather Card Game The Ninth AAAI Symposium on Educational Advances in Artificial Intelligence (EAAI-19) Machine Learning Based Heuristic Search Algorithms to Solve Birds of a Feather Card Game Bryon Kucharski, Azad Deihim, Mehmet Ergezer Wentworth Institute of Technology 550 Huntington Ave, Boston, MA 02115 fkucharskib, deihima, [email protected] Abstract moves to be organized into a decision tree, which can be tra- This research was conducted by an interdisciplinary team of versed through with various types of algorithms. Depth-first two undergraduate students and a faculty to explore solutions search (DFS) and breadth-first search (BFS) are two rudi- to the Birds of a Feather (BoF) Research Challenge. BoF is a mentary approaches to tree traversal that are straightforward newly-designed perfect-information solitaire-type game. The to implement and can solve the game if possible. However, focus of the study was to design and implement different al- there is still room left for improving their performance us- gorithms and evaluate their effectiveness. The team compared ing auxiliary algorithms. As part of the challenge proposed the provided depth-first search (DFS) to heuristic algorithms by Neller, teams were asked to explore potential heuristics such as Monte Carlo tree search (MCTS), as well as a novel to guide the performance of these graph algorithms. This heuristic search algorithm guided by machine learning. Since compelled our team to delve into more intelligent solutions all of the studied algorithms converge to a solution from a such as heuristic-based traversal algorithms. There are sev- solvable deal, effectiveness of each approach was measured by how quickly a solution was reached, and how many nodes eral features that can be extracted from any state of a BoF were traversed until a solution was reached. The employed game to be used directly as a heuristic to guide the traver- methods have a potential to provide artificial intelligence en- sal. This abundance of applicable features facilitated a ma- thusiasts with a better understanding of BoF and novel ways chine learning approach: suitable features can be used as to solve perfect-information games and puzzles in general. an input, and the output can be applied as a heuristic - The results indicate that the proposed heuristic search algo- which allows the traversal to be directed by multiple features rithms guided by machine learning provide a significant im- rather than just one. The team compared the provided depth- provement in terms of number of nodes traversed over the first search to heuristic algorithms such as Monte Carlo tree provided DFS algorithm. search (MCTS), as well as a novel heuristic search algorithm guided by machine learning. 1 Introduction The applications of machine learning to solving games This research was conducted by an interdisciplinary team of have been well studied. IBM engineers have applied lin- two undergraduate students and a faculty to explore solu- ear approaches as well as alpha-beta pruning to solve the tions to the Birds of a Feather (BoF) Research Challenge game of checkers (Samuel 1959), (Samuel 1967). (Yan et al. proposed by (Neller 2016). BoF is a perfect-information 2005) proposed an heuristic approach to the Klondike soli- solitaire game, comparable to FreeCell solitaire. taire that solved twice as many games on average than an BoF is played with a standard 52 card deck. Each game expert human player. Machine learning based solutions to begins with a starting deal of sixteen random cards orga- FreeCell have also been explored. (Chan 2006) compared nized into a 4-by-4 grid. The player must select an individual the performance of multiple algorithms, including heuristic card and move it on top of another card in the selected card’s approaches, neural networks, Bayesian learning and deci- row or column provided that one of the following conditions sion trees. are met: (1) Both cards have the same suit. (2) Both cards Besides machine learning algorithms, randomized search- have the same rank. (3) Both cards have adjacent ranks. For based techniques are employed to decrease the number of example, a King of Hearts can be placed on top of a Queen of nodes that are evaluated to solve a game. Alpha-beta prun- Clubs since their ranks are adjacent, or that King of Hearts ing (Knuth and Moore 1975) has been the forefront for fi- can be placed on top of a Nine of Hearts since they have nite, zero-sum two player games with perfect information. the same rank. The game concludes when fifteen moves are (Coulom 2006) introduced a new algorithm, Monte Carlo made resulting in one stack of all sixteen cards. tree search, which combines Monte Carlo methods with tree Newly-discovered perfect-information puzzles offer a search to solve these types of games. MCTS has been widely plethora of terrain for exploration and allow for fun and cre- used in solving various games, including a 9 x 9 computer ative solutions. The nature of BoF allows for all possible Go program named Crazy Stone (Coulom 2007), Othello Copyright c 2019, Association for the Advancement of Artificial (Nijssen 2007), and Tic Tac Toe (Auger 2011). Google’s Intelligence (www.aaai.org). All rights reserved. DeepMind employed a combination of Deep Learning and 9656 MCTS to create AlphaZero, an algorithm that mastered To minimize the error, the partial derivative of El can be Chess, Shogi, (Silver et al. 2017a), and 18 x 18 Go (Silver set to 0 with respect to both variables. A closed form solution et al. 2017b). to the above equation is: MCTS has also been implemented in single player games Pn such as Sudoku (Cazenave 2009) and SameGame (Schadd i=0(xi − xm)(yi − ym) w = Pn 2 et al. 2008). In our research, MCTS is applied to Birds of i=0(xi − xm) a Feather, a finite, single player game with perfect informa- tion. b = ym − wxm The paper is organized as follows: Section 2 provides a where xm and ym are the means of the x and y vectors, brief introduction to heuristic search algorithms employed respectively (Abu-Mostafa, Magdon-Ismail, and Lin 2012). in this research. Section 3 defines the proposed machine The LR model yields a continuous value y^ 2 IR1. In our learning based heuristic search algorithms. Section 4 intro- case, y represents solvability of a given game state, and LR duces the experimental settings and the evaluation criteria. predicts if the game is solvable or not. Thus, a higher value Section 5 discusses the empirical results obtained. Finally, for y^ indicates a larger confidence in solving the game, and Section 6 states the conclusion and suggests future work. a lower value suggests a potentially unsolvable game. 2 Search Algorithms Monte Carlo Tree Search This section reviews the provided solution to the BoF chal- lenge and introduces the heuristic search algorithms em- MCTS is a tree search algorithm that computes the best ployed in the proposed solution. move to make in a given state. The algorithm consists of a selection phase, expansion phase, simulation phase, and Depth-first search a back-propagation phase (Coulom 2006). In the selection phase, the algorithm starts at the root of the tree and tra- Depth-first search is an algorithm that allows for simple verses down fully expanded nodes until a leaf node that is traversal through graphs. The nature of DFS is that it visits not fully expanded is encountered. In the expansion phase, a each node once and only once by beginning at the root and child of the leaf node that has not been visited is simulated exploring as far down the tree as possible before backtrack- n number of times in the simulation phase. The simulation ing. DFS can be used to solve Birds of a Feather because all produces an outcome, which is then propagated back to the possible moves can be organized into a decision tree. Any root node. solution to a solvable deal of Birds of a Feather must reside in the deepest level of the tree, which makes DFS a desirable method of traversal. 3 Machine learning based heuristic search Another algorithm that can be used to solve Birds of a algorithms Feather is breadth-first search, which prioritizes finding new BoF Research Challenge provided an implementation of paths by searching all the node’s children prior to advancing DFS as well as a sample script for generating solvability to the next level of the tree. This method of traversal would data. Our team leveraged this file and created addition fea- be undesirable because it would search every node in the top tures to collect data across 10,000 seeds. The data was split fifteen levels before reaching the final level of the tree where into test and train sets, and models were created as part of every possible solution must reside. a heuristic search algorithm. Every iteration of the heuristic, Linear Regression the features were generated for the current node. The prob- ability of solvability is predicted using a linear regression Linear regression (LR) is a supervised learning algorithm model for every child of the current node, then rearranged employed to forecast continuous outcome. It generally re- from highest probability to lowest probability. The highest quires a structured array of real numbers, x and predicts vec- probability child is selected first as the move to make, and tor of real numbers, y. the heuristic repeats. If a solution is not found, the second The predicted output, y^ relies on a hypothesis function, highest probability child is selected until the game is solved h(x). or all the nodes are exhausted. A priority queue was em- y ≈ y^ = h(x): ployed to implement this behavior.
Recommended publications
  • Effectiveness of Essential Oils from Citrus Sinensis and Calendula Officinalis and Organic
    Cantaurus, Vol. 28, 20-24, May 2020 © McPherson College Department of Natural Science Effectiveness of essential oils from Citrus sinensis and Calendula officinalis and organic extract from fruits of Maclura pomifera as repellants against the wolf spider Rabidosa punctulata Garrett Owen ABSTRACT The essential oils (EO’s) of Citrus sinensis, Calendual officinalis, and Maclura pomifera were extracted via either steam distillation or organic extraction and tested for their repellency effect on the wolf spider, Rabidosa punculata. Essential oil repellency was tested in a Y-maze fumigation test and a filter paper contact test. The data collected was subjected to statistical analysis; the results from the binomial test of the fumigation trials data suggest no significant repellant activity of the fumes of any of the EO’s extracted. Although, Citrus sinensis EO’s presented hope for further studies. Results from the Wilcoxon rank sum test of the contact trials data showed Calendula officinalis as an effective deterrent against Rabidosa punctulata while the other two EO’s showed no significant effects. The isolated EOs from each plant were analyzed using GC/MS to identify the major compounds present. Results from the GC/MS showed d-Limonene to be the major component of Citrus sinensis at 92.56% while major components of Maclura pomifera were (1S)-2,6,6-Trimethylbicyclo[3.1.1]hept-2-ene at 18.96%, 3-Carene at 17.05%, Cedrol at 16.81%, and a-Terpinyl acetate at 5.52%. It was concluded that d- Limonene is a common ingredient in many insect repellants, but exists as a component of a mixture of several chemicals.
    [Show full text]
  • The Bulletin of the American Society of Papyrologists 44 (2007)
    THE BULLETIN OF THE AMERICAN SOCIETY OF PapYROLOGIsts Volume 44 2007 ISSN 0003-1186 The current editorial address for the Bulletin of the American Society of Papyrologists is: Peter van Minnen Department of Classics University of Cincinnati 410 Blegen Library Cincinnati, OH 45221-0226 USA [email protected] The editors invite submissions not only fromN orth-American and other members of the Society but also from non-members throughout the world; contributions may be written in English, French, German, or Italian. Manu- scripts submitted for publication should be sent to the editor at the address above. Submissions can be sent as an e-mail attachment (.doc and .pdf) with little or no formatting. A double-spaced paper version should also be sent to make sure “we see what you see.” We also ask contributors to provide a brief abstract of their article for inclusion in L’ Année philologique, and to secure permission for any illustration they submit for publication. The editors ask contributors to observe the following guidelines: • Abbreviations for editions of papyri, ostraca, and tablets should follow the Checklist of Editions of Greek, Latin, Demotic and Coptic Papyri, Ostraca and Tablets (http://scriptorium.lib.duke.edu/papyrus/texts/clist.html). The volume number of the edition should be included in Arabic numerals: e.g., P.Oxy. 41.2943.1-3; 2968.5; P.Lond. 2.293.9-10 (p.187). • Other abbreviations should follow those of the American Journal of Ar- chaeology and the Transactions of the American Philological Association. • For ancient and Byzantine authors, contributors should consult the third edition of the Oxford Classical Dictionary, xxix-liv, and A Patristic Greek Lexi- con, xi-xiv.
    [Show full text]
  • Dungeon Solitaire LABYRINTH of SOULS
    Dungeon Solitaire LABYRINTH OF SOULS Designer’s Notebook by Matthew Lowes Illustrated with Original Notes Including a History and Commentary on the Design and Aesthetics of the Game. ML matthewlowes.com 2016 Copyright © 2016 Matthew Lowes All rights reserved, including the right to reproduce this book, or portions thereof, in any form. Interior design and illustrations by Matthew Lowes. Typeset in Minion Pro by Robert Slimbach and IM FELL English Pro by Igino Marini. The Fell Types are digitally reproduced by Igino Marini, www.iginomarini.com. Visit matthewlowes.com/games to download print-ready game materials, follow future developments, and explore more fiction & games. TABLE OF CONTENTS Introduction . 5 Origins . 5 Tomb of Four Kings . 7 Into the Labyrinth . 10 At the Limit . 13 Playing a Role . 15 The Ticking Clock . 16 Encountering the World . 17 Monsters of the Id . 18 Traps of the Mind . 18 Doors of Perception . 19 Mazes of the Intellect . 19 Illusions of the Psyche . 21 Alternate Rules . 22 Tag-Team Delving . 22 On Dragon Slaying . 23 Scourge of the Undead . 24 The Tenth Level . 25 A Life of Adventuring . 26 It’s in the Cards . 28 Extra Stuff . 30 The House Rules . 31 B/X & A . 31 Game Balance . 32 Chance vs Choice . 33 Play-Testing . 34 Writing Rules . 35 Final Remarks . 37 4 INTRODUCTION In the following pages I’ll be discussing candidly my thoughts on the creation of the Dungeon Solitaire game, including its origins, my rationale for the aesthetics and structure of the game, and for its various mechanics. Along the way I’ll be talking about some of my ideas about game design, and what I find fun and engaging about different types of games.
    [Show full text]
  • Download Booklet
    preMieRe Recording jonathan dove SiReNSONG CHAN 10472 siren ensemble henk guittart 81 CHAN 10472 Booklet.indd 80-81 7/4/08 09:12:19 CHAN 10472 Booklet.indd 2-3 7/4/08 09:11:49 Jonathan Dove (b. 199) Dylan Collard premiere recording SiReNSong An Opera in One Act Libretto by Nick Dear Based on the book by Gordon Honeycombe Commissioned by Almeida Opera with assistance from the London Arts Board First performed on 14 July 1994 at the Almeida Theatre Recorded live at the Grachtenfestival on 14 and 1 August 007 Davey Palmer .......................................... Brad Cooper tenor Jonathan Reed ....................................... Mattijs van de Woerd baritone Diana Reed ............................................. Amaryllis Dieltiens soprano Regulator ................................................. Mark Omvlee tenor Captain .................................................... Marijn Zwitserlood bass-baritone with Wireless Operator .................................... John Edward Serrano speaker Siren Ensemble Henk Guittart Jonathan Dove CHAN 10472 Booklet.indd 4-5 7/4/08 09:11:49 Siren Ensemble piccolo/flute Time Page Romana Goumare Scene 1 oboe 1 Davey: ‘Dear Diana, dear Diana, my name is Davey Palmer’ – 4:32 48 Christopher Bouwman Davey 2 Diana: ‘Davey… Davey…’ – :1 48 clarinet/bass clarinet Diana, Davey Michael Hesselink 3 Diana: ‘You mention you’re a sailor’ – 1:1 49 horn Diana, Davey Okke Westdorp Scene 2 violin 4 Diana: ‘i like chocolate, i like shopping’ – :52 49 Sanne Hunfeld Diana, Davey cello Scene 3 Pepijn Meeuws 5
    [Show full text]
  • Mazes and Labyrinths
    Mazes and Labyrinths Author: W. H. Matthews The Project Gutenberg EBook of Mazes and Labyrinths, by W. H. Matthews This eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever. You may copy it, give it away or re-use it under the terms of the Project Gutenberg License included with this eBook or online at www.gutenberg.org Title: Mazes and Labyrinths A General Account of their History and Development Author: W. H. Matthews Release Date: July 9, 2014 [EBook #46238] Language: English Character set encoding: UTF-8 *** START OF THIS PROJECT GUTENBERG EBOOK MAZES AND LABYRINTHS *** Produced by Chris Curnow, Charlie Howard, and the Online Distributed Proofreading Team at http://www.pgdp.net MAZES AND LABYRINTHS [Illustration: [_Photo: G. F. Green_ Fig. 86. Maze at Hatfield House, Herts. (_see page 115_)] MAZES AND LABYRINTHS A GENERAL ACCOUNT OF THEIR HISTORY AND DEVELOPMENTS BY W. H. MATTHEWS, B.Sc. _WITH ILLUSTRATIONS_ LONGMANS, GREEN AND CO. 39 PATERNOSTER ROW, LONDON, E.C. 4 NEW YORK, TORONTO BOMBAY, CALCUTTA AND MADRAS 1922 _All rights reserved_ _Made in Great Britain_ To ZETA whose innocent prattlings on the summer sands of Sussex inspired its conception this book is most affectionately dedicated PREFACE Advantages out of all proportion to the importance of the immediate aim in view are apt to accrue whenever an honest endeavour is made to find an answer to one of those awkward questions which are constantly arising from the natural working of a child's mind. It was an endeavour of this kind which formed the nucleus of the inquiries resulting in the following little essay.
    [Show full text]
  • Freecell and Other Stories
    University of New Orleans ScholarWorks@UNO University of New Orleans Theses and Dissertations Dissertations and Theses Summer 8-4-2011 FreeCell and Other Stories Susan Louvier University of New Orleans, [email protected] Follow this and additional works at: https://scholarworks.uno.edu/td Part of the Other Arts and Humanities Commons Recommended Citation Louvier, Susan, "FreeCell and Other Stories" (2011). University of New Orleans Theses and Dissertations. 452. https://scholarworks.uno.edu/td/452 This Thesis-Restricted is protected by copyright and/or related rights. It has been brought to you by ScholarWorks@UNO with permission from the rights-holder(s). You are free to use this Thesis-Restricted in any way that is permitted by the copyright and related rights legislation that applies to your use. For other uses you need to obtain permission from the rights-holder(s) directly, unless additional rights are indicated by a Creative Commons license in the record and/or on the work itself. This Thesis-Restricted has been accepted for inclusion in University of New Orleans Theses and Dissertations by an authorized administrator of ScholarWorks@UNO. For more information, please contact [email protected]. FreeCell and Other Stories A Thesis Submitted to the Graduate Faculty of the University of New Orleans in partial fulfillment of the requirements for the degree of Master of Fine Arts in Film, Theatre and Communication Arts Creative Writing by Susan J. Louvier B.G.S. University of New Orleans 1992 August 2011 Table of Contents FreeCell .......................................................................................................................... 1 All of the Trimmings ..................................................................................................... 11 Me and Baby Sister ....................................................................................................... 29 Ivory Jupiter .................................................................................................................
    [Show full text]
  • Botting Fred Wilson Scott Eds
    The Bataille Reader Edited by Fred Botting and Scott Wilson • � Blackwell t..b Publishing Copyright © Blackwell Publishers Ltd, 1997 Introduction, apparatus, selection and arrangement copyright © Fred Botting and Scott Wilson 1997 First published 1997 2 4 6 8 10 9 7 5 3 Blackwell Publishers Ltd 108 Cowley Road Oxford OX4 IJF UK Blackwell Publishers Inc. 350 Main Street Malden, MA 02 148 USA All rights reserved. Except for the quotation of short passages for the purposes of criticism and review, no part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form Or by any means, electronic, mechanical, photocopying, recording or otherwise, without the prior permission of the publisher. Except in the United States of America, this book is sold subject to the condition that it shall not, by way of trade or otherwise, be lent, resold, hired out, or otherwise circulated without the publisher's prior consent in any fo rm of binding or cover other than that in which it is published and without a similar condition including this condition being imposed on the subsequent purchaser. British Library Cataloguing in Publication Data A CIP catalogue record for this book is available from the British Ubrary. Library of Congress Cataloging in Publication Data Bataille, Georges, 1897-1962. [Selections. English. 19971 The Bataille reader I edited by Fred Botting and Scott Wilson. p. cm. -(Blackwell readers) Includes bibliographical references and index. ISBN 0-631-19958-6 (hc : alk. paper). -ISBN 0-631-19959-4 (pbk. : alk. paper) 1. Philosophy. 2. Criticism. I. Botting, Fred.
    [Show full text]
  • A Survey of Monte Carlo Tree Search Methods
    IEEE TRANSACTIONS ON COMPUTATIONAL INTELLIGENCE AND AI IN GAMES, VOL. 4, NO. 1, MARCH 2012 1 A Survey of Monte Carlo Tree Search Methods Cameron Browne, Member, IEEE, Edward Powley, Member, IEEE, Daniel Whitehouse, Member, IEEE, Simon Lucas, Senior Member, IEEE, Peter I. Cowling, Member, IEEE, Philipp Rohlfshagen, Stephen Tavener, Diego Perez, Spyridon Samothrakis and Simon Colton Abstract—Monte Carlo Tree Search (MCTS) is a recently proposed search method that combines the precision of tree search with the generality of random sampling. It has received considerable interest due to its spectacular success in the difficult problem of computer Go, but has also proved beneficial in a range of other domains. This paper is a survey of the literature to date, intended to provide a snapshot of the state of the art after the first five years of MCTS research. We outline the core algorithm’s derivation, impart some structure on the many variations and enhancements that have been proposed, and summarise the results from the key game and non-game domains to which MCTS methods have been applied. A number of open research questions indicate that the field is ripe for future work. Index Terms—Monte Carlo Tree Search (MCTS), Upper Confidence Bounds (UCB), Upper Confidence Bounds for Trees (UCT), Bandit-based methods, Artificial Intelligence (AI), Game search, Computer Go. F 1 INTRODUCTION ONTE Carlo Tree Search (MCTS) is a method for M finding optimal decisions in a given domain by taking random samples in the decision space and build- ing a search tree according to the results. It has already had a profound impact on Artificial Intelligence (AI) approaches for domains that can be represented as trees of sequential decisions, particularly games and planning problems.
    [Show full text]
  • Interview with Edward W. Kelley Former Member, Board of Governors of the Federal Reserve System
    Federal Reserve Board Oral History Project Interview with Edward W. Kelley Former Member, Board of Governors of the Federal Reserve System Date: September 22, 2010 Location: Washington, D.C. Interviewers: Lynn Fox, Winthrop P. Hambley, and David H. Small Federal Reserve Board Oral History Project In connection with the centennial anniversary of the Federal Reserve in 2013, the Board undertook an oral history project to collect personal recollections of a range of former Governors and senior staff members, including their background and education before working at the Board; important economic, monetary policy, and regulatory developments during their careers; and impressions of the institution’s culture. Following the interview, each participant was given the opportunity to edit and revise the transcript. In some cases, the Board staff also removed confidential FOMC and Board material in accordance with records retention and disposition schedules covering FOMC and Board records that were approved by the National Archives and Records Administration. Note that the views of the participants and interviewers are their own and are not in any way approved or endorsed by the Board of Governors of the Federal Reserve System. Because the conversations are based on personal recollections, they may include misstatements and errors. ii Contents Background ..................................................................................................................................... 1 Nomination to the Board ................................................................................................................
    [Show full text]
  • Qfgcoll-Manual
    TABLE OF CONTENTS GAME DOCUMENTATION Quesc For Glory I - Original .........................................2 Quesc For Glory I - Revised .................. ............ .......... 11 Quesc For Glory II ............................................... 15 Quesc For Glory III ..............................................22 Quesc For Glory N IF YOU HAVE A PROBLEM .........................................44 HOW TO CONTACT SIERRA ....................................... .45 THE SIERRA NO-RISK GUARANTEE .........................•...... .46 WARRANTY ..................................................... 46 -1- INSTALLATION INSTRUCTIONS To Install In Windows: I. Insert the QFG Anthology CD into your CD-ROM drive. 2. If your computer is not already in Windows, type WIN and press the ENTER key at the MS-DOS prompt. 3. In Windows 3.1 and Windows for Orkgroup in the Program Manager, left-click on the menu choice FILE and select the RUN pcion. n Windows 95, left-click on the START burcon and select the RUN option. Ty !VP and click OK. If your CD-ROM drive is F:, type F:\SETUP. 4. Follow the on-screen prompts co complet inscallacion To Install In MS·DOS; 1. Insert che QFG Anth9logy Cb into your CD-ROM cmve. QUEST 2. From an -D prompt, the CD-RO drive leaer followed by colon, then pr ch < E key. If youc CD-ROM drive is : , type D: and press the ENTER key. If D ..RQM drive is H:, type H: and pres the E ER key. FOR 3. Ac th 0- OM clr.i e prompt ("D: >"), type: INSTALL and pr the ENTE'.'R key. 4. Follow the on-screen prompts co complete the insrallaoo . GLORY Nore: Typin9D: STALL will or wor You must 0: and pr~s ENTER, then type INSTALL ANTHOLOGY To Plill As a Hero, you'll be given the responsibility co cry co make things bercer, co improve the world In Windows, open the Sierra group and click on around you.
    [Show full text]
  • Racing Flow-TM FLOW + BIAS REPORT: 2009
    Racing Flow-TM FLOW + BIAS REPORT: 2009 CIRCUIT=1-NYRA date=12/31/09 track=Dot race surface dist winner BL12 BIAS RACEFLOW 1 DIRT 5.50 Hollywood Hills 0.0 -19 13 2 DIRT 6.00 Successful friend 5.0 -19 -19 3 DIRT 6.00 Brilliant Son 5.2 -19 47 4 DIRT 6.00 Raynick's Jet 10.6 -19 -61 5 DIRT 6.00 Yes It's the Truth 2.7 -19 65 6 DIRT 8.00 Keep Thinking 0.0 -19 -112 7 DIRT 8.32 Storm's Majesty 4.0 -19 6 8 DIRT 13.00 Tiger's Rock 9.4 -19 6 9 DIRT 8.50 Mel's Gold 2.5 -19 69 CIRCUIT=1-NYRA date=12/30/09 track=Dot race surface dist winner BL12 BIAS RACEFLOW 1 DIRT 8.00 Spring Elusion 4.4 71 -68 2 DIRT 8.32 Sharp Instinct 0.0 71 -74 3 DIRT 6.00 O'Sotopretty 4.0 71 -61 4 DIRT 6.00 Indy's Forum 4.7 71 -46 5 DIRT 6.00 Ten Carrot Nikki 0.0 71 -18 6 DIRT 8.00 Sawtooth Moutain 12.1 71 9 7 DIRT 6.00 Cleric 0.6 71 -73 8 DIRT 6.00 Mt. Glittermore 4.0 71 -119 9 DIRT 6.00 Of All Times 0.0 71 0 CIRCUIT=1-NYRA date=12/27/09 track=Dot race surface dist winner BL12 BIAS RACEFLOW 1 DIRT 8.50 Quip 4.5 -38 49 2 DIRT 6.00 E Z Passer 4.2 -38 255 3 DIRT 8.32 Dancing Daisy 7.9 -38 14 4 DIRT 6.00 Risky Rachel 0.0 -38 8 5 DIRT 6.00 Kaffiend 0.0 -38 150 6 DIRT 6.00 Capridge 6.2 -38 187 7 DIRT 8.50 Stargleam 14.5 -38 76 8 DIRT 8.50 Wishful Tomcat 0.0 -38 -203 9 DIRT 8.50 Midwatch 0.0 -38 -59 CIRCUIT=1-NYRA date=12/26/09 track=Dot race surface dist winner BL12 BIAS RACEFLOW 1 DIRT 6.00 Papaleo 7.0 108 129 2 DIRT 6.00 Overcommunication 1.0 108 -72 3 DIRT 6.00 Digger 0.0 108 -211 4 DIRT 6.00 Bryan Kicks 0.0 108 136 5 DIRT 6.00 We Get It 16.8 108 129 6 DIRT 6.00 Yawanna Trust 4.5 108 -21 7 DIRT 6.00 Smarty Karakorum 6.5 108 83 8 DIRT 8.32 Almighty Silver 18.7 108 133 9 DIRT 8.32 Offlee Cool 0.0 108 -60 CIRCUIT=1-NYRA date=12/13/09 track=Dot race surface dist winner BL12 BIAS RACEFLOW 1 DIRT 8.32 Crafty Bear 3.0 -158 -139 2 DIRT 6.00 Cheers Darling 0.5 -158 61 3 DIRT 6.00 Iberian Gate 3.0 -158 154 4 DIRT 6.00 Pewter 0.5 -158 8 5 DIRT 6.00 Wolfson 6.2 -158 86 6 DIRT 6.00 Mr.
    [Show full text]
  • \0-9\0 and X ... \0-9\0 Grad Nord ... \0-9\0013 ... \0-9\007 Car Chase ... \0-9\1 X 1 Kampf ... \0-9\1, 2, 3
    ... \0-9\0 and X ... \0-9\0 Grad Nord ... \0-9\0013 ... \0-9\007 Car Chase ... \0-9\1 x 1 Kampf ... \0-9\1, 2, 3 ... \0-9\1,000,000 ... \0-9\10 Pin ... \0-9\10... Knockout! ... \0-9\100 Meter Dash ... \0-9\100 Mile Race ... \0-9\100,000 Pyramid, The ... \0-9\1000 Miglia Volume I - 1927-1933 ... \0-9\1000 Miler ... \0-9\1000 Miler v2.0 ... \0-9\1000 Miles ... \0-9\10000 Meters ... \0-9\10-Pin Bowling ... \0-9\10th Frame_001 ... \0-9\10th Frame_002 ... \0-9\1-3-5-7 ... \0-9\14-15 Puzzle, The ... \0-9\15 Pietnastka ... \0-9\15 Solitaire ... \0-9\15-Puzzle, The ... \0-9\17 und 04 ... \0-9\17 und 4 ... \0-9\17+4_001 ... \0-9\17+4_002 ... \0-9\17+4_003 ... \0-9\17+4_004 ... \0-9\1789 ... \0-9\18 Uhren ... \0-9\180 ... \0-9\19 Part One - Boot Camp ... \0-9\1942_001 ... \0-9\1942_002 ... \0-9\1942_003 ... \0-9\1943 - One Year After ... \0-9\1943 - The Battle of Midway ... \0-9\1944 ... \0-9\1948 ... \0-9\1985 ... \0-9\1985 - The Day After ... \0-9\1991 World Cup Knockout, The ... \0-9\1994 - Ten Years After ... \0-9\1st Division Manager ... \0-9\2 Worms War ... \0-9\20 Tons ... \0-9\20.000 Meilen unter dem Meer ... \0-9\2001 ... \0-9\2010 ... \0-9\21 ... \0-9\2112 - The Battle for Planet Earth ... \0-9\221B Baker Street ... \0-9\23 Matches ..
    [Show full text]