Regular Expressions 101

Save & Share

Flavor

  • PCRE2 (PHP >=7.3)
  • PCRE (PHP <7.3)
  • ECMAScript (JavaScript)
  • Python
  • Golang
  • Java 8
  • .NET 7.0 (C#)
  • Rust
  • Regex Flavor Guide

Function

  • Match
  • Substitution
  • List
  • Unit Tests

Tools

Sponsors
There are currently no sponsors. Become a sponsor today!
An explanation of your regex will be automatically generated as you type.
Detailed match information will be displayed here automatically.
  • All Tokens
  • Common Tokens
  • General Tokens
  • Anchors
  • Meta Sequences
  • Quantifiers
  • Group Constructs
  • Character Classes
  • Flags/Modifiers
  • Substitution
  • A single character of: a, b or c
    [abc]
  • A character except: a, b or c
    [^abc]
  • A character in the range: a-z
    [a-z]
  • A character not in the range: a-z
    [^a-z]
  • A character in the range: a-z or A-Z
    [a-zA-Z]
  • Any single character
    .
  • Alternate - match either a or b
    a|b
  • Any whitespace character
    \s
  • Any non-whitespace character
    \S
  • Any digit
    \d
  • Any non-digit
    \D
  • Any word character
    \w
  • Any non-word character
    \W
  • Non-capturing group
    (?:...)
  • Capturing group
    (...)
  • Zero or one of a
    a?
  • Zero or more of a
    a*
  • One or more of a
    a+
  • Exactly 3 of a
    a{3}
  • 3 or more of a
    a{3,}
  • Between 3 and 6 of a
    a{3,6}
  • Start of string
    ^
  • End of string
    $
  • A word boundary
    \b
  • Non-word boundary
    \B

Regular Expression
No Match

r'
'
gm

Test String

Code Generator

Generated Code

#include <StringConstants.au3> ; to declare the Constants of StringRegExp #include <Array.au3> ; UDF needed for _ArrayDisplay and _ArrayConcatenate Local $sRegex = "(?m)(?sm)<tr class=\'(Odd|Even)Row(\'.*?<td class=(\'|")no(\'|")>(?P<runnerno>\d{1,2}(|e))</td>.*?<td class=(\'|")last(\'|")>(?P<last10>.*?)</td>.*?<td class=(\'|")horse(\'|")>.*?href=(\'|")..(?P<HorseFullForm>.*?)(\'|").*?target="_blank">(?P<horse>.*?)</a>.*?<td class=(\'|")trainer(\'|")>.*?href=(\'|")..(?P<TrainerLastRuns>.*?)(\'|").*?target="_blank">(?P<trainer>.*?)</a>.*?<td class=(\'|")jockey(\'|")>.*?href=(\'|")..(?P<JockeyLastRuns>.*?)(\'|").*?target="_blank">(<span class=\'Hilite\'>|)(?P<jockey>.*?)<.*?<td.*?>(?P<barrier>.*?)</td>.*?<td.*?>(?P<weight>.*?)</td>.*?<td.*?>(?P<red>.*?)</td>.*?<td.*?>(?P<penalty>.*?)</td>.*?<td.*?>(?P<hcp>.*?)</td>| Scratched)" Local $sString = "<html xmlns="http://www.w3.org/1999/xhtml">" & @CRLF & _ "<head> " & @CRLF & _ " <meta http-equiv="content-type" content="text/html; charset=UTF-8"/>" & @CRLF & _ " <meta name="description" content="Racing Australia is the national industry body representing Thoroughbred racing in Australia. Australian Horse Racing results, Horse Racing Materials." />" & @CRLF & _ " <meta name="keywords" content="Horse Racing Results,Race Results,RISA,Racing Australia, Australia Horse Racing, Australia, RISAForm, Field, Form, Racing Form,horse, horse racing, tab result, racing, racing nsw, racing victoria, horse racing result, form, jockey, horse riding, equestrian, horse race result, greyhound racing, horse betting, betting horse" />" & @CRLF & _ " <title>Racing Australia | Horse Racing Results</title>" & @CRLF & _ " <link rel="shortcut icon" type="image/x-icon" href="/design/images/favicon_risa.ico"/>" & @CRLF & _ " <link href="/design/css/risa_web_style.css?v30" rel="stylesheet" type="text/css" />" & @CRLF & _ " <link href="/design/css/search.css?v6" rel="stylesheet" type="text/css" />" & @CRLF & _ " " & @CRLF & _ " <!--Racing Materials Style-->" & @CRLF & _ " " & @CRLF & _ " <!--Racing Materials JS-->" & @CRLF & _ " <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>" & @CRLF & _ " <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/swfobject/2.1/swfobject.js"></script>" & @CRLF & _ " <script type="text/javascript" src="/design/js/stickycontent.js"></script><!--Sticky Race Number Menu-->" & @CRLF & _ " <script type="text/javascript" src="/design/js/ddaccordion.js"></script>" & @CRLF & _ " <script type="text/javascript" src="/design/js/editable.js"></script>" & @CRLF & _ " <script type="text/javascript" src="/design/js/Generic.js"></script>" & @CRLF & _ " <script type="text/javascript" src="/design/js/jquery.autocomplete.js"></script> " & @CRLF & _ "" & @CRLF & _ " <!-- Google Tag Manager -->" & @CRLF & _ "<script> (function (w, d, s, l, i) {" & @CRLF & _ " w[l] = w[l] || []; w[l].push({ 'gtm.start':" & @CRLF & _ "new Date().getTime(), event: 'gtm.js'" & @CRLF & _ " }); var f = d.getElementsByTagName(s)[0]," & @CRLF & _ "j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src =" & @CRLF & _ "'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);" & @CRLF & _ " })(window, document, 'script', 'dataLayer', 'GTM-MGS3GD7');</script>" & @CRLF & _ "<!-- End Google Tag Manager -->" & @CRLF & _ " " & @CRLF & _ "" & @CRLF & _ " <!-- imgSlider Javascript file -->" & @CRLF & _ " <link href="/design/slider/js-image-slider.css" rel="stylesheet" />" & @CRLF & _ " <script src="/design/slider/js-image-slider.js" type="text/javascript"></script>" & @CRLF & _ " " & @CRLF & _ " <!-- Begin iPhone/iPad detection code - Sets a global variable -->" & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " if ((navigator.userAgent.indexOf('iPhone') != -1) || (navigator.userAgent.indexOf('iPod') != -1) || (navigator.userAgent.indexOf('iPad') != -1)) {" & @CRLF & _ " var replaceSWF = 1;" & @CRLF & _ " } else {" & @CRLF & _ " var replaceSWF = 0;" & @CRLF & _ " }" & @CRLF & _ " function GoHome() {" & @CRLF & _ " window.location='/home.aspx';" & @CRLF & _ " }" & @CRLF & _ " </script>" & @CRLF & _ " <!-- End iPhone/iPad detection code -->" & @CRLF & _ " " & @CRLF & _ " <!--Asynchronous Code for google to track out bound clicks-->" & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " function recordOutboundLink(link, category, action) {" & @CRLF & _ " _gat._getTrackerByName()._trackEvent(category, action);" & @CRLF & _ " setTimeout('document.location = "' + link.href + '"', 100);" & @CRLF & _ " }" & @CRLF & _ " </script>" & @CRLF & _ " <!--End Asynchronous Code-->" & @CRLF & _ " " & @CRLF & _ " <!--Google Analytics Updated Tracking 13052011-->" & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ "" & @CRLF & _ " var _gaq = _gaq || [];" & @CRLF & _ " _gaq.push(['_setAccount', 'UA-6444294-13']);" & @CRLF & _ " _gaq.push(['_setDomainName', '.risa.com.au']);" & @CRLF & _ " _gaq.push(['_trackPageview']);" & @CRLF & _ " " & @CRLF & _ " (function() {" & @CRLF & _ " var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;" & @CRLF & _ " ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';" & @CRLF & _ " var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);" & @CRLF & _ " })();" & @CRLF & _ " " & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " function recordOutboundLink(link, category, action) {" & @CRLF & _ " try {" & @CRLF & _ " var pageTracker = _gat._getTracker("UA-6444294-13");" & @CRLF & _ " pageTracker._trackEvent(category, action);" & @CRLF & _ " setTimeout('document.location = "' + link.href + '"', 100)" & @CRLF & _ " }catch(err){}" & @CRLF & _ " }" & @CRLF & _ " </script>" & @CRLF & _ " <!-- End Google Analytics Updated Tracking 13052011-->" & @CRLF & _ " " & @CRLF & _ " " & @CRLF & _ " <!--Google Analytics Updated Tracking 13May2015-->" & @CRLF & _ "" & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " (function (i, s, o, g, r, a, m) {" & @CRLF & _ " i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () {" & @CRLF & _ " (i[r].q = i[r].q || []).push(arguments)" & @CRLF & _ " }, i[r].l = 1 * new Date(); a = s.createElement(o)," & @CRLF & _ " m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m)" & @CRLF & _ " })(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');" & @CRLF & _ "" & @CRLF & _ " ga('create', 'UA-6444294-13', 'auto');" & @CRLF & _ " ga('send', 'pageview');" & @CRLF & _ "" & @CRLF & _ " </script>" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ " <!--Google Analytics Updated Tracking 13May2015-->" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ " " & @CRLF & _ " " & @CRLF & _ "</head>" & @CRLF & _ "<body class='ShowQuickLinks'>" & @CRLF & _ "<div id="main">" & @CRLF & _ " <div id="main-content">" & @CRLF & _ " <div id="header" class="header">" & @CRLF & _ " <div id="header-logo">" & @CRLF & _ " <a href="/home.aspx" name="top"><img src='/design/images/Racing-Australia-Logo.png' width="200" height="58" alt="Racing Australia Logo" title="Racing Australia" border="0" /></a>" & @CRLF & _ " </div>" & @CRLF & _ " <!--" & @CRLF & _ " <div id="header-socialmedia">" & @CRLF & _ " <a href="https://www.facebook.com/RISA10" target="_blank"><img src="/design/images/Facebook.png" height="25" alt="Go to our Facebook Page" title="Go to our Facebook Page" border="0"></a>" & @CRLF & _ " <a href="https://twitter.com/#!/RacingAust" target="_blank"><img src="/design/images/Twitter.png" height="25" alt="Go to our Twitter Page" title="Go to our Twitter Page" border="0"></a>" & @CRLF & _ " " & @CRLF & _ " </div>" & @CRLF & _ " -->" & @CRLF & _ " " & @CRLF & _ " <ul class="header-top-menu">" & @CRLF & _ " <li><a id="top-header-link-thoroughbred-welfare" href="https://thoroughbredwelfare.horse/" target="_blank">Thoroughbred Welfare</a></li>" & @CRLF & _ " <li><a id="top-header-link-my-horse-racing" href="https://myhorseracing.horse/#/site" target="_blank">My Horse Racing</a></li>" & @CRLF & _ " <li><a id="top-header-link-racing-jobs" href="https://www.racingjobs.com.au/" target="_blank">Racing Jobs</a></li>" & @CRLF & _ " <li><a id="top-header-link-egrc" href="https://equinegeneticsresearchcentre.horse/" target="_blank">Equine Genetics Research Centre</a></li>" & @CRLF & _ " <li><a id="top-header-link-trainer-and-owner-reforms" href="https://tor.racingaustralia.horse/" target="_blank" >Trainer and Owner Reforms</a></li>" & @CRLF & _ " &nbsp;&nbsp;&nbsp;<a style="border: none;height: 19px;display: inline-block; vertical-align: middle;" href="https://twitter.com/RacingAust" target="_blank"><img id="Twitter-image-logo" border="0" src="/design/images/about_us/header-twitter.png"/></a>&nbsp;&nbsp;<a style="border: none;height: 19px;display: inline-block; vertical-align: middle; margin-right: 9px;" target="_blank" href="https://www.facebook.com/RISA10"><img id="Facebook-image-logo" border="0" src="/design/images/about_us/header-facebook.png"/></a>" & @CRLF & _ " </ul>" & @CRLF & _ " " & @CRLF & _ " </div>" & @CRLF & _ " " & @CRLF & _ "" & @CRLF & _ "<div id="main-menu">" & @CRLF & _ "<ul>" & @CRLF & _ " <li>" & @CRLF & _ " <a href="https://www.studbook.org.au/" target="_blank">AUSTRALIAN STUD BOOK</a>" & @CRLF & _ " </li>" & @CRLF & _ " " & @CRLF & _ " <li>" & @CRLF & _ " <a href="#">REGISTRAR OF RACEHORSES</a>" & @CRLF & _ " <ul class="sub-menu">" & @CRLF & _ " <li><a href="/RoR/AboutROR.aspx">About Registrar of Racehorses</a></li>" & @CRLF & _ " <li><a href="/RoR/RegisterHorse.aspx">Registering a Horse</a></li>" & @CRLF & _ " <li><a href="/FreeServices/horse_name_search.aspx">Horse Name Availability Search</a></li>" & @CRLF & _ " <li><a href="/RoR/RacehorseId.aspx">Racehorse Identification</a></li>" & @CRLF & _ " <li><a href="/RoR/TransferOwnership.aspx">Transfer Ownership / Change of Share Percentage</a></li>" & @CRLF & _ " <li><a href="/RoR/Leasing.aspx">Leasing a Racehorse</a></li>" & @CRLF & _ " <li><a href="/RoR/RegisterSyndicates.aspx">Register Syndicates</a></li>" & @CRLF & _ " <li><a href="/RoR/RacingOverseasHorses.aspx">Racing NZ &amp; overseas horses in Australia</a></li>" & @CRLF & _ " <li><a href="/RoR/DuplicatePapers.aspx">Duplicate Papers</a></li>" & @CRLF & _ " <li><a href="/RoR/ChangingAHorseName.aspx">Changing a Horse’s name</a></li>" & @CRLF & _ " <li><a href="/RoR/ChangeOwnersDetails.aspx">Owners Contact Details</a></li>" & @CRLF & _ " <li><a href="/RoR/RegisteringColours.aspx">Registering Colours</a></li>" & @CRLF & _ " <li><a href="/RoR/Forms.aspx">Forms</a></li>" & @CRLF & _ " <li><a href="/FreeServices/Australian_Rules_Of_Racing.aspx">Australian Rules of Racing</a></li>" & @CRLF & _ " <li><a href="/RoR/RenamedHorses.aspx">Renamed Horses</a></li>" & @CRLF & _ " <li><a href="/RoR/OwnersAssociations.aspx">Owners Associations</a></li>" & @CRLF & _ " " & @CRLF & _ " </ul>" & @CRLF & _ " </li>" & @CRLF & _ "" & @CRLF & _ " <li>" & @CRLF & _ " <a href="#">RACING MATERIALS</a>" & @CRLF & _ " <ul>" & @CRLF & _ " <li><a href="/FreeFields/Calendar.aspx?State=NSW">New South Wales</a></li>" & @CRLF & _ " <li><a href="/FreeFields/Calendar.aspx?State=VIC">Victoria</a></li>" & @CRLF & _ " <li><a href="/FreeFields/Calendar.aspx?State=QLD">Queensland</a></li>" & @CRLF & _ " <li><a href="/FreeFields/Calendar.aspx?State=WA">Western Australia</a></li>" & @CRLF & _ " <li><a href="/FreeFields/Calendar.aspx?State=SA">South Australia</a></li>" & @CRLF & _ " <li><a href="/FreeFields/Calendar.aspx?State=TAS">Tasmania</a></li>" & @CRLF & _ " <li><a href="/FreeFields/Calendar.aspx?State=ACT">Australian Capital Territory</a></li>" & @CRLF & _ " <li><a href="/FreeFields/Calendar.aspx?State=NT">Northern Territory</a></li>" & @CRLF & _ " <!--li><a href="/FreeFields/GroupAndListedRaces.aspx">Group & Listed Races / Classifications</a></li-->" & @CRLF & _ " </ul>" & @CRLF & _ " </li>" & @CRLF & _ "" & @CRLF & _ " <li>" & @CRLF & _ " <a href="/FreeServices/Australian_Rules_Of_Racing.aspx">RULES OF RACING</a>" & @CRLF & _ " <ul> " & @CRLF & _ " </ul>" & @CRLF & _ " </li>" & @CRLF & _ "" & @CRLF & _ " <li class="login" style="margin-right: 14px !important;">" & @CRLF & _ " <a href="#" class="login-a">LOGINS</a>" & @CRLF & _ " <ul>" & @CRLF & _ " <li><a href="/IndustryLogin/SNS_Login.aspx">SNS</a></li>" & @CRLF & _ " <li><a href="/IndustryLogin/Stable_Assist_Login.aspx">Stable Assist</a></li>" & @CRLF & _ " <li><a target="_blank" href="https://studbook.org.au/">ASB Subscriptions</a></li>" & @CRLF & _ " <li><a href="/IndustryLogin/RSB_subscribers_Login.aspx">RSB Subscribers</a></li>" & @CRLF & _ " <!--li><a href="/IndustryLogin/Form_subscribers_Login.aspx">RISA Form Subscribers</a></li-->" & @CRLF & _ " <li><a href="/IndustryLogin/Connect_Login.aspx">Connect Login</a></li>" & @CRLF & _ " <li><a href="https://risa.webex.com" target="_blank">Webex</a></li> " & @CRLF & _ " <li><a href="/arb/Racingappeals.aspx">Racing Appeals</a></li>" & @CRLF & _ " </ul>" & @CRLF & _ " </li>" & @CRLF & _ " <li class="about-us">" & @CRLF & _ " <a href="/ContactUs/default.aspx">ABOUT US</a>" & @CRLF & _ " <ul>" & @CRLF & _ " <li><a href="/Aboutus/Vision-Core-Functions.aspx">Vision & Core Functions</a></li>" & @CRLF & _ " <li><a href="/Aboutus/History.aspx">History</a></li>" & @CRLF & _ " <li><a href="/Aboutus/Role-and-Services.aspx">Our Role</a></li>" & @CRLF & _ " <li><a href="/Aboutus/Board.aspx">The Board</a></li>" & @CRLF & _ " <li><a href="/Aboutus/Management.aspx">The Team</a></li>" & @CRLF & _ " <li><a href="#">Publications&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp></a>" & @CRLF & _ " <ul style="padding-top:0px">" & @CRLF & _ " <li><a href="/Aboutus/AnnualReport.aspx">Annual Report</a></li>" & @CRLF & _ " <li><a href="/Aboutus/FactBook.aspx">Fact Book</a></li>" & @CRLF & _ " <li><a href="https://ier-study.racingaustralia.horse/">Industry Study</a></li>" & @CRLF & _ " </ul>" & @CRLF & _ " </li>" & @CRLF & _ " <li><a href="/FreeServices/Australian_Rules_Of_Racing.aspx">Australian Rules Of Racing</a></li>" & @CRLF & _ " <li><a href="/FreeServices/MediaReleases.aspx">Media Releases</a></li>" & @CRLF & _ " <li><a href="/Licensing/Licensing.aspx">Licensing</a></li>" & @CRLF & _ " <li><a href="/FreeServices/PerformanceReport.aspx">Monthly Performance Report</a></li>" & @CRLF & _ " <li><a href="/ContactUs/">Contact Us</a></li>" & @CRLF & _ " <li><a href="/FAQ/FAQ.aspx">FAQ</a></li>" & @CRLF & _ " <li><a target="_blank" href="https://racingaustraliasystemsstatus.horse/">Racing Australia </br>Systems Status Updates</a></li>" & @CRLF & _ " </ul>" & @CRLF & _ " </li>" & @CRLF & _ " " & @CRLF & _ "</ul> " & @CRLF & _ "</div>" & @CRLF & _ " <div>" & @CRLF & _ " " & @CRLF & _ " </div>" & @CRLF & _ " <div id="middle-container">" & @CRLF & _ " <div id="info-container">" & @CRLF & _ " " & @CRLF & _ " " & @CRLF & _ " <div id="grey-content">" & @CRLF & _ " <div id="page-content">" & @CRLF & _ " <div class="state-specific-banner"> " & @CRLF & _ "" & @CRLF & _ " " & @CRLF & _ " <a href="http://racingnsw.com.au/" target="_blank" onClick="ga('send', 'event', 'Outbound Link', 'Click', '2017 NSW ONESTOP SHOP');">" & @CRLF & _ " <img src='../../design/images/adverts/2017 NSW ONESTOP SHOP.JPG' width='711' height='90' alt='2017 The Everest NSW' border='0'/></a>" & @CRLF & _ " <img width=0 height=0 src="data:image/gif;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" onload="ga('send', 'event', 'Outbound Link', 'Impression','2017 NSW ONESTOP SHOP',0, {'nonInteraction': 1});"/> " & @CRLF & _ " " & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "</div>" & @CRLF & _ "" & @CRLF & _ "</br>" & @CRLF & _ " " & @CRLF & _ "<div class="tab-menu">" & @CRLF & _ " <div class="inactive-tab"><a href="/FreeFields/RaceProgram.aspx?Key=2019Sep01%2CNSW%2CWyong">Programs</a></div>" & @CRLF & _ " <div class="inactive-tab"><a href="/FreeFields/Nominations.aspx?Key=2019Sep01%2CNSW%2CWyong">Nominations</a></div>" & @CRLF & _ " <div class="inactive-tab"><a href="/FreeFields/Weights.aspx?Key=2019Sep01%2CNSW%2CWyong">Weights</a></div>" & @CRLF & _ " <div class="inactive-tab"><a href="/FreeFields/Acceptances.aspx?Key=2019Sep01%2CNSW%2CWyong">Acceptances</a></div>" & @CRLF & _ " <div class="active-tab"><a href="/FreeFields/Form.aspx?Key=2019Sep01%2CNSW%2CWyong&recentForm=Y">Recent Form</a></div>" & @CRLF & _ " <div class="inactive-tab"><a href="/FreeFields/AllForm.aspx?Key=2019Sep01%2CNSW%2CWyong&recentForm=N">All Form</a></div>" & @CRLF & _ " <div class="inactive-tab"><a href="/FreeFields/GearChanges.aspx?Key=2019Sep01%2CNSW%2CWyong">Gear</a></div>" & @CRLF & _ " <div class="inactive-tab"><a href="/FreeFields/Scratchings.aspx?Key=2019Sep01%2CNSW%2CWyong">Scratchings</a></div>" & @CRLF & _ " <div class="inactive-tab"><a href="/FreeFields/Results.aspx?Key=2019Sep01%2CNSW%2CWyong">Results</a></div>" & @CRLF & _ " " & @CRLF & _ "</div>" & @CRLF & _ " <div class="clear-space">&nbsp;</div>" & @CRLF & _ " <div class='race-venue'>" & @CRLF & _ " <div class='top'>" & @CRLF & _ " <h2>" & @CRLF & _ " Wyong: Wyong Race Club Ltd" & @CRLF & _ " <span class='race-venue-date'>Sunday, 01 September 2019</span>" & @CRLF & _ " </h2>" & @CRLF & _ " <span class='meeting-type'>Meeting Type: Provincial (TAB MEETING)</span>" & @CRLF & _ " <div class="printer-friendly">" & @CRLF & _ " " & @CRLF & _ " " & @CRLF & _ " <a href='/ozracing/Acceptances.aspx?key=2019Sep01,NSW,Wyong' target='_blank'><img src="/design/images/oz_racing_btn.png" alt="OZ Racing Version" title="OZ Racing Version" border="0" width="30" height="19">Racing Version</a>" & @CRLF & _ " " & @CRLF & _ " &nbsp;&nbsp;<a href='?Key=2019Sep01,NSW,Wyong&amp;BodyClass=PrintFriendly' target='_blank'><img src="/design/images/print_friendly_btn.png" alt="Print Friendly Version" title="Print Friendly Version" border="0" width="30" height="19">Print Friendly</a>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " </div>" & @CRLF & _ " " & @CRLF & _ " <div class='race-venue-bottom'>" & @CRLF & _ " <div class='col1'><b>Rail Position:</b> +3m Entire<br><b>Dual Track Meeting:</b> N<br><b>Track Type:</b> Turf<br><b>Track Condition:</b> Heavy 9<br><b>Weather:</b> Fine<br><b>Penetrometer:</b> <br><b>Track Information:</b> <br /></div><div class='col2'><b>FinalFields Last Published:</b> Sun 01-Sep-19 9:23AM AEST<br><b>Riders must be declared before:</b> Thu 29-Aug-19 12:00PM AEST<br><b>Scratching close:</b> Sun 01-Sep-19 7:30AM AEST</div>" & @CRLF & _ " <div class='comments'>" & @CRLF & _ " Total Number of starters for this meeting (including emergencies) 61" & @CRLF & _ " <br>" & @CRLF & _ " " & @CRLF & _ " </div>" & @CRLF & _ " " & @CRLF & _ " </div>" & @CRLF & _ " <div id="race-number-menu" class="race-number-menu">" & @CRLF & _ " <div>" & @CRLF & _ " <a href="#Race1">Race 1</a>" & @CRLF & _ " " & @CRLF & _ " <a href="#Race2">Race 2</a>" & @CRLF & _ " " & @CRLF & _ " <a href="#Race3">Race 3</a>" & @CRLF & _ " " & @CRLF & _ " <a href="#Race4">Race 4</a>" & @CRLF & _ " " & @CRLF & _ " <a href="#Race5">Race 5</a>" & @CRLF & _ " " & @CRLF & _ " <a href="#Race6">Race 6</a>" & @CRLF & _ " " & @CRLF & _ " <a href="#Race7">Race 7</a>" & @CRLF & _ " " & @CRLF & _ " <a href="#Race8">Race 8</a>" & @CRLF & _ " " & @CRLF & _ " <a href="#top">Back to top</a></div>" & @CRLF & _ " </div>" & @CRLF & _ " " & @CRLF & _ "<br/>" & @CRLF & _ "<font class='stateRidingWeight'>For more information on new NSW Apprentice Riding Weights feature <a href='..\Assets\NSW\RacingNSWWeight.html' target="_blank">click here<a/></font>" & @CRLF & _ "<p>From 19 Sept 2018, an extra column “True Weight” will be displayed for NSW races.<br/>" & @CRLF & _ "<b>TRUE WEIGHT : </b> The true weight indicates what the individual horse handicap weight is by using the benchmark if no minimum was applicable.</p>" & @CRLF & _ "" & @CRLF & _ " <!-- start of races -->" & @CRLF & _ " <a name="Race1"></a><div class="race-title-spacer"></div>" & @CRLF & _ " <table border="0" cellspacing="0" cellpadding="5" class="race-title">" & @CRLF & _ " <tr>" & @CRLF & _ " <th><span class='raceNum'>Race 1</span> - 12:50PM HAPPY 50TH BIRTHDAY FIONA PROV & CTRY MAIDEN PLATE (1600 METRES)" & @CRLF & _ " <span style="float:right" class="localtimedisplayed">Times displayed in local time of Race Meeting</span>" & @CRLF & _ " " & @CRLF & _ " </th>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr class="race-info">" & @CRLF & _ " <td><!-- //Added below condition to display : Restricted to female jockeys and apprentices only : RA-1963 -->" & @CRLF & _ " <b>Of $35,000.1st $16,740, 2nd $6,000, 3rd $3,200, 4th $1,980, 5th $1,280, 6th $1,100, 7th $1,000, 8th $1,000, 9th $1,000, 10th $1,000, Equine Welfare Fund $350, Jockey Welfare Fund $350. </b><br>Maiden, Set Weights, Apprentices can claim.<br>BOBS Bonus Available Up To $9625<br><br><b>Track Name:</b> Main <b>Track Type:</b> Turf <br><br>Field Limit: 12 + 4 EM" & @CRLF & _ " " & @CRLF & _ " </TD>" & @CRLF & _ " </tr>" & @CRLF & _ " </table>" & @CRLF & _ " <br>" & @CRLF & _ " <table border="0" cellpadding="3" cellspacing="0" class="race-strip-fields">" & @CRLF & _ " <tr>" & @CRLF & _ " <th class="no">No</th>" & @CRLF & _ " <th class="last">Last 10</th>" & @CRLF & _ " <th class="horse">Horse</th>" & @CRLF & _ " <th class="trainer">Trainer</th>" & @CRLF & _ " <th class="jockey">Jockey</th>" & @CRLF & _ " <th class="barrier">Barrier</th>" & @CRLF & _ " <th class="weight">Weight</th>" & @CRLF & _ " " & @CRLF & _ " <th class='penalty'>Probable Weight</th>" & @CRLF & _ " " & @CRLF & _ " <th class="penalty">Penalty</th>" & @CRLF & _ " <th class="hcp">Hcp Rating</th>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow Scratched'>" & @CRLF & _ " <td class="no">1</td>" & @CRLF & _ " <td class="last">8x249</td>" & @CRLF & _ " " & @CRLF & _ " <td class='horse'><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNjQ1NTI2NA%3d%3d&src=horseform&raceentry=Mjg2NDk4MjEyMA%3d%3d" target="_blank">ILVERMORNY</a> <span style="float:right;"></span></td>" & @CRLF & _ " <td class='trainer'><a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=ODc3NzY1NjA%3d&trainername=Robert+%26+Luke+Price" target="_blank">Robert & Luke Price</a></td>" & @CRLF & _ " " & @CRLF & _ " <td class='jockey'><a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MjE3NTI2NzMy" target="_blank"><span class='Hilite'>Brock Ryan</span><span class='apprentice-claim'> (a2/50kg)</span></a></td>" & @CRLF & _ " " & @CRLF & _ " <td class="barrier">3</td>" & @CRLF & _ " <td class="weight">59kg</td>" & @CRLF & _ " " & @CRLF & _ " <td style="color:red" class='penalty'>57kg</td>" & @CRLF & _ " " & @CRLF & _ " <td class="penalty"></td>" & @CRLF & _ " <td class="hcp"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " <td class="no">2</td>" & @CRLF & _ " <td class="last">0604946546</td>" & @CRLF & _ " " & @CRLF & _ " <td class='horse'><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNjQ3MjM0NA%3d%3d&src=horseform&raceentry=Mjg2NDU4MjIwNA%3d%3d" target="_blank">LORD BYRON</a> <span style="float:right;"></span></td>" & @CRLF & _ " <td class='trainer'><a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=Mjg0MzU3Ng%3d%3d&trainername=Paul+Perry" target="_blank">Paul Perry</a></td>" & @CRLF & _ " " & @CRLF & _ " <td class='jockey'><a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTk0OTczNTY4" target="_blank">Keagan Latham<span class='apprentice-claim'> (late alt)</span></a></td>" & @CRLF & _ " " & @CRLF & _ " <td class="barrier">2</td>" & @CRLF & _ " <td class="weight">59kg</td>" & @CRLF & _ " " & @CRLF & _ " <td style="color:red" class='penalty'>59kg</td>" & @CRLF & _ " " & @CRLF & _ " <td class="penalty"></td>" & @CRLF & _ " <td class="hcp"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " <td class="no">3</td>" & @CRLF & _ " <td class="last">24</td>" & @CRLF & _ " " & @CRLF & _ " <td class='horse'><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzEwNTUyNA%3d%3d&src=horseform&raceentry=Mjg2NTA5MzYyOA%3d%3d" target="_blank">SEBONNA</a> <span style="float:right;"></span></td>" & @CRLF & _ " <td class='trainer'><a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=NDE3NzUyNA%3d%3d&trainername=Kim+Waugh" target="_blank">Kim Waugh</a></td>" & @CRLF & _ " " & @CRLF & _ " <td class='jockey'><a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTU4NzYwMA%3d%3d" target="_blank"><span class='Hilite'>Nash Rawiller</span></a></td>" & @CRLF & _ " " & @CRLF & _ " <td class="barrier">5</td>" & @CRLF & _ " <td class="weight">59kg</td>" & @CRLF & _ " " & @CRLF & _ " <td style="color:red" class='penalty'></td>" & @CRLF & _ " " & @CRLF & _ " <td class="penalty"></td>" & @CRLF & _ " <td class="hcp"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " <td class="no">4</td>" & @CRLF & _ " <td class="last">6343</td>" & @CRLF & _ " " & @CRLF & _ " <td class='horse'><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzQ3NDk0MA%3d%3d&src=horseform&raceentry=Mjg2Mzg2ODk5Mg%3d%3d" target="_blank">THE PREMIER</a> <span style="float:right;"></span></td>" & @CRLF & _ " <td class='trainer'><a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=NDE3OTcyMA%3d%3d&trainername=Kris+Lees" target="_blank">Kris Lees</a></td>" & @CRLF & _ " " & @CRLF & _ " <td class='jockey'><a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTAzMzc0MzE4MA%3d%3d" target="_blank"><span class='Hilite'>Ms Louise Day</span><span class='apprentice-claim'> (a2/51kg)</span></a></td>" & @CRLF & _ " " & @CRLF & _ " <td class="barrier">6</td>" & @CRLF & _ " <td class="weight">59kg</td>" & @CRLF & _ " " & @CRLF & _ " <td style="color:red" class='penalty'>57kg</td>" & @CRLF & _ " " & @CRLF & _ " <td class="penalty"></td>" & @CRLF & _ " <td class="hcp"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " <td class="no">5</td>" & @CRLF & _ " <td class="last">82</td>" & @CRLF & _ " " & @CRLF & _ " <td class='horse'><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNjU2NTc5Ng%3d%3d&src=horseform&raceentry=Mjg2Mzg2ODc0OA%3d%3d" target="_blank">VEGAREIGN</a> <span style="float:right;"></span></td>" & @CRLF & _ " <td class='trainer'><a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=NDE3OTcyMA%3d%3d&trainername=Kris+Lees" target="_blank">Kris Lees</a></td>" & @CRLF & _ " " & @CRLF & _ " <td class='jockey'><a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTk4NTY3NDQ0" target="_blank"><span class='Hilite'>Jason Collett</span></a></td>" & @CRLF & _ " " & @CRLF & _ " <td class="barrier">10</td>" & @CRLF & _ " <td class="weight">59kg</td>" & @CRLF & _ " " & @CRLF & _ " <td style="color:red" class='penalty'></td>" & @CRLF & _ " " & @CRLF & _ " <td class="penalty"></td>" & @CRLF & _ " <td class="hcp"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " <td class="no">6</td>" & @CRLF & _ " <td class="last">0x75725</td>" & @CRLF & _ " " & @CRLF & _ " <td class='horse'><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNTk0MjM3Ng%3d%3d&src=horseform&raceentry=Mjg2NDAzODU3Mg%3d%3d" target="_blank">ELOTROLADO</a> <span style="float:right;"></span></td>" & @CRLF & _ " <td class='trainer'><a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=MzYwMDk1Mg%3d%3d&trainername=Evan+Holland" target="_blank">Evan Holland</a></td>" & @CRLF & _ " " & @CRLF & _ " <td class='jockey'><a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTI5NDgwMA%3d%3d" target="_blank"><span class='Hilite'>Adrian Layt</span></a></td>" & @CRLF & _ " " & @CRLF & _ " <td class="barrier">12</td>" & @CRLF & _ " <td class="weight">57kg</td>" & @CRLF & _ " " & @CRLF & _ " <td style="color:red" class='penalty'></td>" & @CRLF & _ " " & @CRLF & _ " <td class="penalty"></td>" & @CRLF & _ " <td class="hcp"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " <td class="no">7</td>" & @CRLF & _ " <td class="last">0x79</td>" & @CRLF & _ " " & @CRLF & _ " <td class='horse'><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyODk5Nzk4OA%3d%3d&src=horseform&raceentry=Mjg2NTI0MzIwMA%3d%3d" target="_blank">OAKFIELD EMPIRE</a> <span style="float:right;"></span></td>" & @CRLF & _ " <td class='trainer'><a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=MTE5NjQwNTIw&trainername=Damien+Lane" target="_blank">Damien Lane</a></td>" & @CRLF & _ " " & @CRLF & _ " <td class='jockey'><a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTEyMjI5Mg%3d%3d" target="_blank"><span class='Hilite'>Grant Buckley</span></a></td>" & @CRLF & _ " " & @CRLF & _ " <td class="barrier">8</td>" & @CRLF & _ " <td class="weight">57kg</td>" & @CRLF & _ " " & @CRLF & _ " <td style="color:red" class='penalty'></td>" & @CRLF & _ " " & @CRLF & _ " <td class="penalty"></td>" & @CRLF & _ " <td class="hcp"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " <td class="no">8</td>" & @CRLF & _ " <td class="last">990x66807</td>" & @CRLF & _ " " & @CRLF & _ " <td class='horse'><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNDQ4NzE2MA%3d%3d&src=horseform&raceentry=Mjg2NDU1MDcyOA%3d%3d" target="_blank">POWER TO PAY</a> <span style="float:right;"></span></td>" & @CRLF & _ " <td class='trainer'><a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=MTUxNTAzNTA0&trainername=Stephen+Schofield" target="_blank">Stephen Schofield</a></td>" & @CRLF & _ " " & @CRLF & _ " <td class='jockey'><a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTk0MzgzMDg4" target="_blank"><span class='Hilite'>Serg Lisnyy</span></a></td>" & @CRLF & _ " " & @CRLF & _ " <td class="barrier">9</td>" & @CRLF & _ " <td class="weight">57kg</td>" & @CRLF & _ " " & @CRLF & _ " <td style="color:red" class='penalty'></td>" & @CRLF & _ " " & @CRLF & _ " <td class="penalty"></td>" & @CRLF & _ " <td class="hcp"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " <td class="no">9</td>" & @CRLF & _ " <td class="last">x209x55366</td>" & @CRLF & _ " " & @CRLF & _ " <td class='horse'><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyMzYyNzc5Mg%3d%3d&src=horseform&raceentry=Mjg2NDk3MzA5Mg%3d%3d" target="_blank">WHITNEY&rsquo;S STAR</a> <span style="float:right;"></span></td>" & @CRLF & _ " <td class='trainer'><a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=NTAzMTY1OTY2NA%3d%3d&trainername=Wayne+Austin" target="_blank">Wayne Austin</a></td>" & @CRLF & _ " " & @CRLF & _ " <td class='jockey'><a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTQ0NjIzOTI0" target="_blank"><span class='Hilite'>Ms Kathy O&#39;Hara</span></a></td>" & @CRLF & _ " " & @CRLF & _ " <td class="barrier">1</td>" & @CRLF & _ " <td class="weight">57kg</td>" & @CRLF & _ " " & @CRLF & _ " <td style="color:red" class='penalty'></td>" & @CRLF & _ " " & @CRLF & _ " <td class="penalty"></td>" & @CRLF & _ " <td class="hcp"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " <td class="no">10</td>" & @CRLF & _ " <td class="last">3</td>" & @CRLF & _ " " & @CRLF & _ " <td class='horse'><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMTQ4NDEwNA%3d%3d&src=horseform&raceentry=Mjg2NDY3MTk5Ng%3d%3d" target="_blank">BLAZING SUNRISE</a> <span style="float:right;"><img alt='BOBS Bonus Scheme' title='BOBS Bonus Scheme' src='/design/images/BonusLogos/BOBS.png' style='vertical-align:middle;' /></span></td>" & @CRLF & _ " <td class='trainer'><a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=NDE3OTcyMA%3d%3d&trainername=Kris+Lees" target="_blank">Kris Lees</a></td>" & @CRLF & _ " " & @CRLF & _ " <td class='jockey'><a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTcwOTY0MjEy" target="_blank"><span class='Hilite'>Brenton Avdulla</span></a></td>" & @CRLF & _ " " & @CRLF & _ " <td class="barrier">4</td>" & @CRLF & _ " <td class="weight">56.5kg</td>" & @CRLF & _ " " & @CRLF & _ " <td style="color:red" class='penalty'></td>" & @CRLF & _ " " & @CRLF & _ " <td class="penalty"></td>" & @CRLF & _ " <td class="hcp"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow Scratched'>" & @CRLF & _ " <td class="no">11</td>" & @CRLF & _ " <td class="last">235</td>" & @CRLF & _ " " & @CRLF & _ " <td class='horse'><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMjg2MTI0MA%3d%3d&src=horseform&raceentry=Mjg2NTIzODA3Ng%3d%3d" target="_blank">SHAME WARNED</a> <span style="float:right;"><img alt='BOBS Bonus Scheme' title='BOBS Bonus Scheme' src='/design/images/BonusLogos/BOBS.png' style='vertical-align:middle;' /></span></td>" & @CRLF & _ " <td class='trainer'><a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=NDg2MTQ1Ng%3d%3d&trainername=Stephen+Jones" target="_blank">Stephen Jones</a></td>" & @CRLF & _ " " & @CRLF & _ " <td class='jockey'><a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MA%3d%3d" target="_blank"></a></td>" & @CRLF & _ " " & @CRLF & _ " <td class="barrier">7</td>" & @CRLF & _ " <td class="weight">56.5kg</td>" & @CRLF & _ " " & @CRLF & _ " <td style="color:red" class='penalty'></td>" & @CRLF & _ " " & @CRLF & _ " <td class="penalty"></td>" & @CRLF & _ " <td class="hcp"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow Scratched'>" & @CRLF & _ " <td class="no">12</td>" & @CRLF & _ " <td class="last">42350</td>" & @CRLF & _ " " & @CRLF & _ " <td class='horse'><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMTQwNjI2OA%3d%3d&src=horseform&raceentry=Mjg2NTE5NzA4NA%3d%3d" target="_blank">UPRISE</a> <span style="float:right;"><img alt='BOBS Bonus Scheme' title='BOBS Bonus Scheme' src='/design/images/BonusLogos/BOBS.png' style='vertical-align:middle;' /></span></td>" & @CRLF & _ " <td class='trainer'><a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=NTA0MjMwOTI4OA%3d%3d&trainername=Brad+Widdup" target="_blank">Brad Widdup</a></td>" & @CRLF & _ " " & @CRLF & _ " <td class='jockey'><a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTUxNzgxNg%3d%3d" target="_blank"><span class='Hilite'>Glen Boss</span></a></td>" & @CRLF & _ " " & @CRLF & _ " <td class="barrier">11</td>" & @CRLF & _ " <td class="weight">56.5kg</td>" & @CRLF & _ " " & @CRLF & _ " <td style="color:red" class='penalty'></td>" & @CRLF & _ " " & @CRLF & _ " <td class="penalty"></td>" & @CRLF & _ " <td class="hcp"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " </table>" & @CRLF & _ " " & @CRLF & _ " <table border="0" cellspacing="0" cellpadding="0" class="horse-form-table">" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="5"> " & @CRLF & _ " <div class='Silks'>" & @CRLF & _ " <img src="https://racingaustralia.horse/JockeySilks/3381.png" width="46" height="60">" & @CRLF & _ " </div>" & @CRLF & _ " <div class='horse-info'>" & @CRLF & _ " <span class="horse-number">1</span>" & @CRLF & _ " " & @CRLF & _ " <span class="horse-name"><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNjQ1NTI2NA%3d%3d&src=horseform&raceentry=Mjg2NDk4MjEyMA%3d%3d" target="_blank">ILVERMORNY</a></span>" & @CRLF & _ " " & @CRLF & _ " <br />" & @CRLF & _ " <span class="plain">" & @CRLF & _ " 4 year old bay gelding (15-10-2015) <b>Sire:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjIxOTU4OTky&src=horseform&raceEntry=Mjg2NDk4MjEyMA%3d%3d' target='_blank'>Americain (USA)</a> <b>Dam:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjExNDkxNjM2&src=horseform&raceEntry=Mjg2NDk4MjEyMA%3d%3d' target='_blank'>Halleys</a> (<a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=OTY4NTg5NzI%3d&src=horseform&raceEntry=Mjg2NDk4MjEyMA%3d%3d' target='_blank'>Redoute&rsquo;s Choice</a>)" & @CRLF & _ " <a class='PedigreeLink content-link' href='/FreeServices/PedigreeSearch.aspx?horseName=Ilvermorny&amp;sireName=Americain&amp;damName=Halleys' target='_blank'>View Pedigree Report</a>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Breeder:</b> Bell View Park Stud<br>" & @CRLF & _ " <b>Owners:</b> S J Dickerson &amp; Mrs C L Dickerson<br>" & @CRLF & _ " <b>Colours:</b> Dark Blue, Apricot Diamonds, Red Sleeves And Cap" & @CRLF & _ " " & @CRLF & _ " </span>" & @CRLF & _ " </div>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" class='Scratched'>SCRATCHED</td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">&nbsp;</td>" & @CRLF & _ " </tr>" & @CRLF & _ " </table>" & @CRLF & _ " " & @CRLF & _ " <table border="0" cellspacing="0" cellpadding="0" class="horse-form-table">" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="5"> " & @CRLF & _ " <div class='Silks'>" & @CRLF & _ " <img src="https://racingaustralia.horse/JockeySilks/1317.png" width="46" height="60">" & @CRLF & _ " </div>" & @CRLF & _ " <div class='horse-info'>" & @CRLF & _ " <span class="horse-number">2</span>" & @CRLF & _ " " & @CRLF & _ " <span class="horse-name"><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNjQ3MjM0NA%3d%3d&src=horseform&raceentry=Mjg2NDU4MjIwNA%3d%3d" target="_blank">LORD BYRON</a></span>" & @CRLF & _ " " & @CRLF & _ " <br />" & @CRLF & _ " <span class="plain">" & @CRLF & _ " 4 year old bay gelding (21-8-2015) <b>Sire:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjE5NTUwMjI0&src=horseform&raceEntry=Mjg2NDU4MjIwNA%3d%3d' target='_blank'>Hinchinbrook</a> <b>Dam:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTg0NDQxNTUy&src=horseform&raceEntry=Mjg2NDU4MjIwNA%3d%3d' target='_blank'>Italian Romance</a> (<a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjAyNTY5NTMy&src=horseform&raceEntry=Mjg2NDU4MjIwNA%3d%3d' target='_blank'>Honours List (IRE)</a>)" & @CRLF & _ " <a class='PedigreeLink content-link' href='/FreeServices/PedigreeSearch.aspx?horseName=Lord+Byron&amp;sireName=Hinchinbrook&amp;damName=Italian+Romance' target='_blank'>View Pedigree Report</a>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Breeder:</b> Mr M Lowry<br>" & @CRLF & _ " <b>Owners:</b> M J Lowry <br>" & @CRLF & _ " <b>Colours:</b> Black And Red Stripes, Black Cap" & @CRLF & _ " " & @CRLF & _ " </span>" & @CRLF & _ " </div>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">" & @CRLF & _ " <b>Trainer:</b>" & @CRLF & _ " <b style="color: #000;">" & @CRLF & _ " " & @CRLF & _ " <a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=Mjg0MzU3Ng%3d%3d&trainername=Paul+Perry" target="_blank">Paul Perry</a>" & @CRLF & _ " " & @CRLF & _ " </b> (Newcastle)&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Jockey:</b>" & @CRLF & _ " <b style="color:#000;">" & @CRLF & _ " " & @CRLF & _ " <a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTk0OTczNTY4" target="_blank">Keagan Latham 59kg<span class='apprentice-claim'> (late alt)</span></a>" & @CRLF & _ " " & @CRLF & _ " </b>&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Barrier:</b>2" & @CRLF & _ " <br />" & @CRLF & _ " <b>Record:</b> 22:0-1-2&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Prizemoney:</b>$21,285&nbsp;&nbsp;&nbsp;&nbsp;<b>1st Up:</b> 3:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;<b>2nd Up:</b> 3:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <br />" & @CRLF & _ " <b>Track:</b> 2:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Dist:</b> 8:0-1-2&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Track/Dist:</b> 1:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " " & @CRLF & _ " <br />" & @CRLF & _ " <b>Firm:</b> 3:0-1-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Good:</b> 15:0-0-2&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Soft:</b> 4:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Heavy:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Synthetic:</b> 0:0-0-0" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">" & @CRLF & _ " <table border="0" cellspacing="1" cellpadding="2" class="horse-last-start">" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>4&nbsp;of&nbsp;10</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NjEyNTc2MA%3d%3d' target='_blank'>CESS 03Jun19</a></b> 1350m Good3 MDN-SW $22,000 ($1,100) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MjA0ODU0MzQ4' target='_blank'>James Innes Jnr</a> 59kg Barrier 3<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNjY5NTg0OA%3d%3d&src=horseform' target='_blank'>Punch The Clock</a></b> 57kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyODQ0MzEzMg%3d%3d&src=horseform' target='_blank'>Brazenbrook</a></b> 57kg 1:21.90 (600m 36.32), 3.28L, 6th@800m, 6th@400m, $14/$15</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>6&nbsp;of&nbsp;10</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NjEyOTY2NA%3d%3d' target='_blank'>SCNE 24Jun19</a></b> 1300m Good4 MDN $22,000 ($540) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTAzMjA3OTM0NA%3d%3d' target='_blank'>Ms Mikayla Weir (a)</a> 54.5kg Barrier 2<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyODExMzk3Ng%3d%3d&src=horseform' target='_blank'>Commander Bell</a></b> 57.5kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNTIzMzU1Ng%3d%3d&src=horseform' target='_blank'>Oakfield Tickets</a></b> 55kg 1:18.87 (600m 34.57), 3.73L, 4th@800m, 4th@400m, $9.50/$12/$13/$15</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>5&nbsp;of&nbsp;11</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2Njg1NzI3Mg%3d%3d' target='_blank'>CESS 15Jul19</a></b> 1570m Good3 MDN-SW $22,000 ($720) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTc3Mjc3NDY4' target='_blank'>Aaron Bullock</a> 59kg Barrier 11<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNjkwNjQyMA%3d%3d&src=horseform' target='_blank'>Ellofarock</a></b> 57kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjQ0MjM1NzA0&src=horseform' target='_blank'>Kaldero</a></b> 59kg 1:37.42 (600m 36.22), 3.18L, 6th@800m, 5th@400m, $9.50/$12/$13/$14</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>4&nbsp;of&nbsp;12</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2Njg2MzEyOA%3d%3d' target='_blank'>CESS 30Jul19</a></b> 1350m Firm2 MDN $22,000 ($1,100) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTI5NDgwMA%3d%3d' target='_blank'>Adrian Layt</a> 55kg Barrier 9<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzIzNjU1Mg%3d%3d&src=horseform' target='_blank'>C'est La Vie</a></b> 55kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyOTAwNDgyMA%3d%3d&src=horseform' target='_blank'>Trematon</a></b> 55kg 1:21.76 (600m 35.65), 3.26L, 12th@800m, 9th@400m, $13/$14</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>6&nbsp;of&nbsp;12</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NzU1MjkxNg%3d%3d' target='_blank'>QUIR 13Aug19</a></b> 1600m Firm2 MDN-SW $22,000 ($540) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTk1MDg5MjI0' target='_blank'>Jake Pracey-Holmes</a> 59kg Barrier 1<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyOTQyMjc5Mg%3d%3d&src=horseform' target='_blank'>Chambermaid</a></b> 57kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNjU2NTc5Ng%3d%3d&src=horseform' target='_blank'>Vegareign</a></b> 59kg 1:38.44 (600m 34.63), 4.20L, 11th@800m, 11th@400m, $5.50/$6.50/$6/$6.50</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " </table>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">&nbsp;</td>" & @CRLF & _ " </tr>" & @CRLF & _ " </table>" & @CRLF & _ " " & @CRLF & _ " <table border="0" cellspacing="0" cellpadding="0" class="horse-form-table">" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="5"> " & @CRLF & _ " <div class='Silks'>" & @CRLF & _ " <img src="https://racingaustralia.horse/JockeySilks/80154.png" width="46" height="60">" & @CRLF & _ " </div>" & @CRLF & _ " <div class='horse-info'>" & @CRLF & _ " <span class="horse-number">3</span>" & @CRLF & _ " " & @CRLF & _ " <span class="horse-name"><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzEwNTUyNA%3d%3d&src=horseform&raceentry=Mjg2NTA5MzYyOA%3d%3d" target="_blank">SEBONNA</a></span>" & @CRLF & _ " " & @CRLF & _ " <br />" & @CRLF & _ " <span class="plain">" & @CRLF & _ " 4 year old bay gelding (13-8-2015) <b>Sire:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTk0ODc3Njc2&src=horseform&raceEntry=Mjg2NTA5MzYyOA%3d%3d' target='_blank'>Sebring</a> <b>Dam:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjIxNDA4MDQw&src=horseform&raceEntry=Mjg2NTA5MzYyOA%3d%3d' target='_blank'>Epona Princess</a> (<a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTY1MDY2OTc2&src=horseform&raceEntry=Mjg2NTA5MzYyOA%3d%3d' target='_blank'>Fastnet Rock</a>)" & @CRLF & _ " <a class='PedigreeLink content-link' href='/FreeServices/PedigreeSearch.aspx?horseName=Sebonna&amp;sireName=Sebring&amp;damName=Epona+Princess' target='_blank'>View Pedigree Report</a>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Breeder:</b> Widden Stud Australia Pty Ltd<br>" & @CRLF & _ " <b>Owners:</b> Orbis Bloodstock (Mgr: H W Hui)<br>" & @CRLF & _ " <b>Colours:</b> White, Red Star, Yellow Stars Sleeves, Red Star On Cap" & @CRLF & _ " " & @CRLF & _ " <br /><b>Gear Changes:</b> Winkers FIRST TIME" & @CRLF & _ " " & @CRLF & _ " </span>" & @CRLF & _ " </div>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">" & @CRLF & _ " <b>Trainer:</b>" & @CRLF & _ " <b style="color: #000;">" & @CRLF & _ " " & @CRLF & _ " <a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=NDE3NzUyNA%3d%3d&trainername=Kim+Waugh" target="_blank">Kim Waugh</a>" & @CRLF & _ " " & @CRLF & _ " </b> (Wyong)&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Jockey:</b>" & @CRLF & _ " <b style="color:#000;">" & @CRLF & _ " " & @CRLF & _ " <a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTU4NzYwMA%3d%3d" target="_blank"><span class='Hilite'>Nash Rawiller</span> 59kg</a>" & @CRLF & _ " " & @CRLF & _ " </b>&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Barrier:</b>5" & @CRLF & _ " <br />" & @CRLF & _ " <b>Record:</b> 2:0-1-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Prizemoney:</b>$5,880&nbsp;&nbsp;&nbsp;&nbsp;<b>1st Up:</b> 1:0-1-0&nbsp;&nbsp;&nbsp;&nbsp;<b>2nd Up:</b> 1:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <br />" & @CRLF & _ " <b>Track:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Dist:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Track/Dist:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " " & @CRLF & _ " <br />" & @CRLF & _ " <b>Firm:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Good:</b> 2:0-1-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Soft:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Heavy:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Synthetic:</b> 0:0-0-0" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">" & @CRLF & _ " <table border="0" cellspacing="1" cellpadding="2" class="horse-last-start">" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'><I><b><font color='black'>T</font></b>5&nbsp;of&nbsp;6</I></td>" & @CRLF & _ " <td class='remain'><I><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2OTI4NDA5Ng%3d%3d' target='_blank'>GOSF 11Jul19</a></b> 1000m Heavy8 MDN-BT $000 <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTc3Mjc3NDY4' target='_blank'>Aaron Bullock</a> 0kg Barrier 0<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyMzYxNDEyOA%3d%3d&src=horseform' target='_blank'>Patrina</a></b> 0kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTI4MjM0NDE5Ng%3d%3d&src=horseform' target='_blank'>Succendam (GB)</a></b> 0kg 1:03.11, 2.58L </I></td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'><I><b><font color='black'>T</font></b>1&nbsp;of&nbsp;8</I></td>" & @CRLF & _ " <td class='remain'><I><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NzE4NDQ3Ng%3d%3d' target='_blank'>WYNG 26Jul19</a></b> 1000m Soft5 3Y+ MDN-BT $000 <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTcwOTY0MjEy' target='_blank'>Brenton Avdulla</a> 0kg Barrier 0<br>2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNjcwODc4MA%3d%3d&src=horseform' target='_blank'>Estroverto</a></b> 0kg, 3rd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyODgxNTk2NA%3d%3d&src=horseform' target='_blank'>Trescha</a></b> 0kg 1:01.06 (600m 34.70), 0.19L </I></td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>2&nbsp;of&nbsp;12</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NzU0ODc2OA%3d%3d' target='_blank'>SCNE 06Aug19</a></b> 1300m Good4 MDN-SW $22,000 ($3,900) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTk0OTczNTY4' target='_blank'>Keagan Latham</a> 59kg Barrier 7<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTI4MTE0OTA4NA%3d%3d&src=horseform' target='_blank'>Predictable Miss (NZ)</a></b> 54.5kg, 3rd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyOTAwMzg0NA%3d%3d&src=horseform' target='_blank'>Mary Magpie</a></b> 57kg 1:19.43 (600m 36.16), 1.68L, 3rd@800m, 4th@400m, $4.20/$3.10/$3/$2.90F</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>4&nbsp;of&nbsp;11</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NzgwNjQzMg%3d%3d' target='_blank'>NCLE 24Aug19</a></b> 1400m Good4 MDN $35,000 ($1,980) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTk0MzgzMDg4' target='_blank'>Serg Lisnyy</a> 59kg Barrier 5<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNDQ4MzUwMA%3d%3d&src=horseform' target='_blank'>Classy Fella</a></b> 55kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMDkzNjMyNA%3d%3d&src=horseform' target='_blank'>Amitto</a></b> 55.5kg 1:24.87 (600m 35.64), 1.17L, 7th@800m, 5th@400m, $3.70/$4.60/$4.80/$5</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " </table>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">&nbsp;</td>" & @CRLF & _ " </tr>" & @CRLF & _ " </table>" & @CRLF & _ " " & @CRLF & _ " <table border="0" cellspacing="0" cellpadding="0" class="horse-form-table">" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="5"> " & @CRLF & _ " <div class='Silks'>" & @CRLF & _ " <img src="https://racingaustralia.horse/JockeySilks/36276.png" width="46" height="60">" & @CRLF & _ " </div>" & @CRLF & _ " <div class='horse-info'>" & @CRLF & _ " <span class="horse-number">4</span>" & @CRLF & _ " " & @CRLF & _ " <span class="horse-name"><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzQ3NDk0MA%3d%3d&src=horseform&raceentry=Mjg2Mzg2ODk5Mg%3d%3d" target="_blank">THE PREMIER</a></span>" & @CRLF & _ " <span class="horse-gear">(Blks)</span> " & @CRLF & _ " <br />" & @CRLF & _ " <span class="plain">" & @CRLF & _ " 4 year old brown horse (23-10-2015) <b>Sire:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTcxNTMyNzMy&src=horseform&raceEntry=Mjg2Mzg2ODk5Mg%3d%3d' target='_blank'>Snitzel</a> <b>Dam:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjIxNTM0OTIw&src=horseform&raceEntry=Mjg2Mzg2ODk5Mg%3d%3d' target='_blank'>Mightier</a> (<a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=NTcxNDI4NDg%3d&src=horseform&raceEntry=Mjg2Mzg2ODk5Mg%3d%3d' target='_blank'>Zabeel (NZ)</a>)" & @CRLF & _ " <a class='PedigreeLink content-link' href='/FreeServices/PedigreeSearch.aspx?horseName=The+Premier&amp;sireName=Snitzel&amp;damName=Mightier' target='_blank'>View Pedigree Report</a>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Breeder:</b> Cressfield<br>" & @CRLF & _ " <b>Owners:</b> Cressfield (Mgr: B W Neill)<br>" & @CRLF & _ " <b>Colours:</b> Silver And Black Diamonds, Yellow Sleeves And Cap" & @CRLF & _ " " & @CRLF & _ " </span>" & @CRLF & _ " </div>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">" & @CRLF & _ " <b>Trainer:</b>" & @CRLF & _ " <b style="color: #000;">" & @CRLF & _ " " & @CRLF & _ " <a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=NDE3OTcyMA%3d%3d&trainername=Kris+Lees" target="_blank">Kris Lees</a>" & @CRLF & _ " " & @CRLF & _ " </b> (Newcastle)&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Jockey:</b>" & @CRLF & _ " <b style="color:#000;">" & @CRLF & _ " " & @CRLF & _ " <a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTAzMzc0MzE4MA%3d%3d" target="_blank"><span class='Hilite'>Ms Louise Day</span> 59kg<span class='apprentice-claim'> (a2/51kg)</span></a>" & @CRLF & _ " " & @CRLF & _ " </b>&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Barrier:</b>6" & @CRLF & _ " <br />" & @CRLF & _ " <b>Record:</b> 4:0-0-2&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Prizemoney:</b>$5,840&nbsp;&nbsp;&nbsp;&nbsp;<b>1st Up:</b> 1:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;<b>2nd Up:</b> 1:0-0-1&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <br />" & @CRLF & _ " <b>Track:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Dist:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Track/Dist:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " " & @CRLF & _ " <br />" & @CRLF & _ " <b>Firm:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Good:</b> 3:0-0-1&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Soft:</b> 1:0-0-1&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Heavy:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Synthetic:</b> 0:0-0-0" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">" & @CRLF & _ " <table border="0" cellspacing="1" cellpadding="2" class="horse-last-start">" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'><I><b><font color='black'>T</font></b>5&nbsp;of&nbsp;5</I></td>" & @CRLF & _ " <td class='remain'><I><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2Nzg5NDI3Mg%3d%3d' target='_blank'>NCLE 09May19</a></b> 900m Good4 MDN-BT $000 <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTkyNDU3Njg0' target='_blank'>Ms Samantha Clenton (a)</a> 0kg Barrier 0<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyODY0NTE2NA%3d%3d&src=horseform' target='_blank'>Royal Monarch</a></b> 0kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzYxMzc3Ng%3d%3d&src=horseform' target='_blank'>Moonchild</a></b> 0kg 0:56.09 (600m 34.95), 9.41L </I></td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'><I><b><font color='black'>T</font></b>2&nbsp;of&nbsp;5</I></td>" & @CRLF & _ " <td class='remain'><I><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2ODE2OTc0OA%3d%3d' target='_blank'>WYNG 22May19</a></b> 1000m Good4 2&3YO BT $000 <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTIxMjA4NA%3d%3d' target='_blank'>Andrew Gibbons</a> 0kg Barrier 0<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyODcyODYxMg%3d%3d&src=horseform' target='_blank'>New Tycoon</a></b> 0kg, 3rd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyOTExNTEwOA%3d%3d&src=horseform' target='_blank'>Toe Tapper</a></b> 0kg 1:00.54 (600m 35.30), 0.39L </I></td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>6&nbsp;of&nbsp;11</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NjE2MjYwNA%3d%3d' target='_blank'>MWBK 16Jun19</a></b> 1280m Good4 MDN $22,000 ($540) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTIxMjA4NA%3d%3d' target='_blank'>Andrew Gibbons</a> 59kg Barrier 3<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzU5Njk0MA%3d%3d&src=horseform' target='_blank'>Star Alibi</a></b> 57kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzIwNDEwMA%3d%3d&src=horseform' target='_blank'>Fashion Icon</a></b> 55kg 1:15.99 (600m 35.64), 4.62L, 3rd@800m, 2nd@400m, $4.20/$4.60/$4.80/$5</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>3&nbsp;of&nbsp;14</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2Njg0ODAwMA%3d%3d' target='_blank'>MWBK 01Jul19</a></b> 1280m Soft5 MDN-SW $22,000 ($2,100) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTc3Mjc3NDY4' target='_blank'>Aaron Bullock</a> 59kg Barrier 6<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyMzgwNTkxMg%3d%3d&src=horseform' target='_blank'>Love Delight</a></b> 57kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyODQ3ODI2OA%3d%3d&src=horseform' target='_blank'>Moon Panther</a></b> 59kg 1:17.07 (600m 36.10), 3.07L, 4th@800m, 5th@400m, $3.90/$3.30/$3.20/$3.10F</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>4&nbsp;of&nbsp;9</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2Njg2MDY4OA%3d%3d' target='_blank'>SCNE 22Jul19</a></b> 1300m Good4 MDN $22,000 ($1,100) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTkyNDU3Njg0' target='_blank'>Ms Samantha Clenton (a)</a> 57.5kg Barrier 7<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMTYzMDI2MA%3d%3d&src=horseform' target='_blank'>Call Me Mo</a></b> 55.5kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTI4MjM0NDE5Ng%3d%3d&src=horseform' target='_blank'>Succendam (GB)</a></b> 58kg 1:20.28 (600m 35.80), 1.39L, 3rd@800m, 2nd@400m, $6.50/$8.50/$8/$8.50</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>3&nbsp;of&nbsp;11</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2Nzc0NzM4NA%3d%3d' target='_blank'>KEMP 08Aug19</a></b> 1450m Good3 MDN $22,000 ($2,100) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTc3Mjc3NDY4' target='_blank'>Aaron Bullock</a> 59kg Barrier 4<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyODcxMjI2NA%3d%3d&src=horseform' target='_blank'>Heaven's Dream</a></b> 56kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzkxOTk5Ng%3d%3d&src=horseform' target='_blank'>Night Terror</a></b> 56kg 1:26.46, 1.99L, 4th@800m, 3rd@400m, $2.40/$2.30/$2.70/$2.60F</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " </table>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">&nbsp;</td>" & @CRLF & _ " </tr>" & @CRLF & _ " </table>" & @CRLF & _ " " & @CRLF & _ " <table border="0" cellspacing="0" cellpadding="0" class="horse-form-table">" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="5"> " & @CRLF & _ " <div class='Silks'>" & @CRLF & _ " <img src="https://racingaustralia.horse/JockeySilks/80683.png" width="46" height="60">" & @CRLF & _ " </div>" & @CRLF & _ " <div class='horse-info'>" & @CRLF & _ " <span class="horse-number">5</span>" & @CRLF & _ " " & @CRLF & _ " <span class="horse-name"><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNjU2NTc5Ng%3d%3d&src=horseform&raceentry=Mjg2Mzg2ODc0OA%3d%3d" target="_blank">VEGAREIGN</a></span>" & @CRLF & _ " " & @CRLF & _ " <br />" & @CRLF & _ " <span class="plain">" & @CRLF & _ " 4 year old bay gelding (19-10-2015) <b>Sire:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjI4NDI2NDU2&src=horseform&raceEntry=Mjg2Mzg2ODc0OA%3d%3d' target='_blank'>Lope de Vega (IRE)</a> <b>Dam:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjEyNTk5MTUy&src=horseform&raceEntry=Mjg2Mzg2ODc0OA%3d%3d' target='_blank'>Raindane</a> (<a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=OTUxNjI5Mjg%3d&src=horseform&raceEntry=Mjg2Mzg2ODc0OA%3d%3d' target='_blank'>Danehill Dancer (IRE)</a>)" & @CRLF & _ " <a class='PedigreeLink content-link' href='/FreeServices/PedigreeSearch.aspx?horseName=Vegareign&amp;sireName=Lope+de+Vega&amp;damName=Raindane' target='_blank'>View Pedigree Report</a>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Breeder:</b> Ralph Johns Pty Ltd<br>" & @CRLF & _ " <b>Owners:</b> Aussie Horse Club (Mgr: Mrs M Trivett), Ralph Johns Family (Mgr: R H Johns), J Cooper, W Cooper, P D Corcoran, H E Kelly, J Joyce, A McNally, M O&#39;Connell, J J O&#39;Reilly &amp; P Sullivan<br>" & @CRLF & _ " <b>Colours:</b> Dark Blue, Pink Stars Band, Stars Sleeves, Pink Cap, Dark Blue Pom Pom" & @CRLF & _ " " & @CRLF & _ " </span>" & @CRLF & _ " </div>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">" & @CRLF & _ " <b>Trainer:</b>" & @CRLF & _ " <b style="color: #000;">" & @CRLF & _ " " & @CRLF & _ " <a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=NDE3OTcyMA%3d%3d&trainername=Kris+Lees" target="_blank">Kris Lees</a>" & @CRLF & _ " " & @CRLF & _ " </b> (Newcastle)&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Jockey:</b>" & @CRLF & _ " <b style="color:#000;">" & @CRLF & _ " " & @CRLF & _ " <a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTk4NTY3NDQ0" target="_blank"><span class='Hilite'>Jason Collett</span> 59kg</a>" & @CRLF & _ " " & @CRLF & _ " </b>&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Barrier:</b>10" & @CRLF & _ " <br />" & @CRLF & _ " <b>Record:</b> 2:0-1-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Prizemoney:</b>$4,400&nbsp;&nbsp;&nbsp;&nbsp;<b>1st Up:</b> 1:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;<b>2nd Up:</b> 1:0-1-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <br />" & @CRLF & _ " <b>Track:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Dist:</b> 1:0-1-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Track/Dist:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " " & @CRLF & _ " <br />" & @CRLF & _ " <b>Firm:</b> 1:0-1-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Good:</b> 1:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Soft:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Heavy:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Synthetic:</b> 0:0-0-0" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">" & @CRLF & _ " <table border="0" cellspacing="1" cellpadding="2" class="horse-last-start">" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'><I><b><font color='black'>T</font></b>5&nbsp;of&nbsp;6</I></td>" & @CRLF & _ " <td class='remain'><I><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2ODUxNjcxNg%3d%3d' target='_blank'>SCNE 05Jun19</a></b> 900m Good4 OPEN-BT $000 <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTIxMjA4NA%3d%3d' target='_blank'>Andrew Gibbons</a> 0kg Barrier 0<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMTQ5Mjg4OA%3d%3d&src=horseform' target='_blank'>Bellarina Magic</a></b> 0kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMTk1NDI5Mg%3d%3d&src=horseform' target='_blank'>De Goey</a></b> 0kg 0:53.75, 12.05L </I></td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'><I><b><font color='black'>T</font></b>5&nbsp;of&nbsp;7</I></td>" & @CRLF & _ " <td class='remain'><I><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2ODY3MzYwOA%3d%3d' target='_blank'>NCLE 14Jun19</a></b> 900m Soft5 MDN-BT $000 <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTE4MzA0OA%3d%3d' target='_blank'>Craig Dwyer</a> 0kg Barrier 0<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNDUyODY0MA%3d%3d&src=horseform' target='_blank'>Statue of Freedom</a></b> 0kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyODk5Nzk4OA%3d%3d&src=horseform' target='_blank'>Oakfield Empire</a></b> 0kg 0:56.53 (600m 35.27), 3.47L </I></td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>8&nbsp;of&nbsp;9</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2Njg2MDY4OA%3d%3d' target='_blank'>SCNE 22Jul19</a></b> 1300m Good4 MDN $22,000 ($500) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTIxMjA4NA%3d%3d' target='_blank'>Andrew Gibbons</a> 58kg Barrier 3<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMTYzMDI2MA%3d%3d&src=horseform' target='_blank'>Call Me Mo</a></b> 55.5kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTI4MjM0NDE5Ng%3d%3d&src=horseform' target='_blank'>Succendam (GB)</a></b> 58kg 1:20.28 (600m 35.80), 3.57L, 5th@800m, 5th@400m, $9/$18/$19/$21</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>2&nbsp;of&nbsp;12</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NzU1MjkxNg%3d%3d' target='_blank'>QUIR 13Aug19</a></b> 1600m Firm2 MDN-SW $22,000 ($3,900) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTc3Mjc3NDY4' target='_blank'>Aaron Bullock</a> 59kg Barrier 6<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyOTQyMjc5Mg%3d%3d&src=horseform' target='_blank'>Chambermaid</a></b> 57kg, 3rd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyMzAwOTAwOA%3d%3d&src=horseform' target='_blank'>Wee Lassie</a></b> 57kg 1:38.44 (600m 34.63), 0.47L, 2nd@800m, 3rd@400m, $3.50/$4.20/$3.90/$3.80</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " </table>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">&nbsp;</td>" & @CRLF & _ " </tr>" & @CRLF & _ " </table>" & @CRLF & _ " " & @CRLF & _ " <table border="0" cellspacing="0" cellpadding="0" class="horse-form-table">" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="5"> " & @CRLF & _ " <div class='Silks'>" & @CRLF & _ " <img src="https://racingaustralia.horse/JockeySilks/82110.png" width="46" height="60">" & @CRLF & _ " </div>" & @CRLF & _ " <div class='horse-info'>" & @CRLF & _ " <span class="horse-number">6</span>" & @CRLF & _ " " & @CRLF & _ " <span class="horse-name"><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNTk0MjM3Ng%3d%3d&src=horseform&raceentry=Mjg2NDAzODU3Mg%3d%3d" target="_blank">ELOTROLADO</a></span>" & @CRLF & _ " <span class="horse-gear">(Blks)</span> " & @CRLF & _ " <br />" & @CRLF & _ " <span class="plain">" & @CRLF & _ " 5 year old bay mare (4-10-2014) <b>Sire:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTk0MDAxOTYw&src=horseform&raceEntry=Mjg2NDAzODU3Mg%3d%3d' target='_blank'>Time Thief</a> <b>Dam:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjIzOTA3NTc2&src=horseform&raceEntry=Mjg2NDAzODU3Mg%3d%3d' target='_blank'>Tzigany</a> (<a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTQyMDI5NDcy&src=horseform&raceEntry=Mjg2NDAzODU3Mg%3d%3d' target='_blank'>Diogenes</a>)" & @CRLF & _ " <a class='PedigreeLink content-link' href='/FreeServices/PedigreeSearch.aspx?horseName=Elotrolado&amp;sireName=Time+Thief&amp;damName=Tzigany' target='_blank'>View Pedigree Report</a>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Breeder:</b> Lesleigh Investments<br>" & @CRLF & _ " <b>Owners:</b> Dr B J Hudson <br>" & @CRLF & _ " <b>Colours:</b> Brown, Yellow Stars" & @CRLF & _ " " & @CRLF & _ " </span>" & @CRLF & _ " </div>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">" & @CRLF & _ " <b>Trainer:</b>" & @CRLF & _ " <b style="color: #000;">" & @CRLF & _ " " & @CRLF & _ " <a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=MzYwMDk1Mg%3d%3d&trainername=Evan+Holland" target="_blank">Evan Holland</a>" & @CRLF & _ " " & @CRLF & _ " </b> (Wyong)&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Jockey:</b>" & @CRLF & _ " <b style="color:#000;">" & @CRLF & _ " " & @CRLF & _ " <a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTI5NDgwMA%3d%3d" target="_blank"><span class='Hilite'>Adrian Layt</span> 57kg</a>" & @CRLF & _ " " & @CRLF & _ " </b>&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Barrier:</b>12" & @CRLF & _ " <br />" & @CRLF & _ " <b>Record:</b> 6:0-1-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Prizemoney:</b>$10,060&nbsp;&nbsp;&nbsp;&nbsp;<b>1st Up:</b> 2:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;<b>2nd Up:</b> 1:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <br />" & @CRLF & _ " <b>Track:</b> 3:0-1-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Dist:</b> 1:0-1-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Track/Dist:</b> 1:0-1-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " " & @CRLF & _ " <br />" & @CRLF & _ " <b>Firm:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Good:</b> 3:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Soft:</b> 3:0-1-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Heavy:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Synthetic:</b> 0:0-0-0" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">" & @CRLF & _ " <table border="0" cellspacing="1" cellpadding="2" class="horse-last-start">" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>7&nbsp;of&nbsp;8</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NjA3MjMyNA%3d%3d' target='_blank'>WYNG 20Jun19</a></b> 1000m Soft5 MDN-SW $35,000 ($1,000) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTAzMjA3OTM0NA%3d%3d' target='_blank'>Ms Mikayla Weir (a)</a> 57kg (cd 55kg) Barrier 2<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMDA0ODE2NA%3d%3d&src=horseform' target='_blank'>Perigord</a></b> 59kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMjYzNTc4NA%3d%3d&src=horseform' target='_blank'>Zem Factor</a></b> 54.5kg 0:57.92 (600m 34.28), 7.08L, 8th@800m, 7th@400m, $151/$151</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>5&nbsp;of&nbsp;8</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NjgzMDY3Ng%3d%3d' target='_blank'>WYNG 13Jul19</a></b> 1350m Soft5 MDN-SW $35,000 ($1,280) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTAzMjA3OTM0NA%3d%3d' target='_blank'>Ms Mikayla Weir (a)</a> 57kg (cd 55kg) Barrier 7<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyODA2NTkwOA%3d%3d&src=horseform' target='_blank'>Tereka</a></b> 57kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzM1MDI1Ng%3d%3d&src=horseform' target='_blank'>Parveen</a></b> 57kg 1:23.18 (600m 36.60), 1.90L, 3rd@800m, 2nd@400m, $151/$151/$101/$151</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>7&nbsp;of&nbsp;9</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2Njg2MDY4OA%3d%3d' target='_blank'>SCNE 22Jul19</a></b> 1300m Good4 MDN $22,000 ($500) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTA3ODE1OTk2NA%3d%3d' target='_blank'>Ashley Morgan</a> 54.5kg (cd 55kg) Barrier 5<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMTYzMDI2MA%3d%3d&src=horseform' target='_blank'>Call Me Mo</a></b> 55.5kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTI4MjM0NDE5Ng%3d%3d&src=horseform' target='_blank'>Succendam (GB)</a></b> 58kg 1:20.28 (600m 35.80), 2.83L, 2nd@800m, 3rd@400m, $26/$31/$41/$31</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>2&nbsp;of&nbsp;9</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2Nzc5NDQ3Ng%3d%3d' target='_blank'>WYNG 02Aug19</a></b> 1600m Soft6 MDN $35,000 ($6,000) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTAzMjA3OTM0NA%3d%3d' target='_blank'>Ms Mikayla Weir (a)</a> 54.5kg (cd 52.5kg) Barrier 4<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTI4MjM0NDE5Ng%3d%3d&src=horseform' target='_blank'>Succendam (GB)</a></b> 59kg, 3rd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNDY0ODY4OA%3d%3d&src=horseform' target='_blank'>Fast Talking</a></b> 54.5kg 1:39.84 (600m 35.94), 0.62L, 3rd@800m, 3rd@400m, $16/$19/$17/$16</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>5&nbsp;of&nbsp;8</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NzgwNDcyNA%3d%3d' target='_blank'>NCLE 15Aug19</a></b> 1890m Good3 MDN-SW $35,000 ($1,280) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTAzMjA3OTM0NA%3d%3d' target='_blank'>Ms Mikayla Weir (a)</a> 57kg (cd 55kg) Barrier 2<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzIzNDYwMA%3d%3d&src=horseform' target='_blank'>Populist</a></b> 59kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTI4MzkwMDE4NA%3d%3d&src=horseform' target='_blank'>Urbino (GB)</a></b> 59kg 1:57.99 (600m 35.54), 2.56L, 2nd@800m, 2nd@400m, $21/$20/$21/$26</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " </table>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">&nbsp;</td>" & @CRLF & _ " </tr>" & @CRLF & _ " </table>" & @CRLF & _ " " & @CRLF & _ " <table border="0" cellspacing="0" cellpadding="0" class="horse-form-table">" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="5"> " & @CRLF & _ " <div class='Silks'>" & @CRLF & _ " <img src="https://racingaustralia.horse/JockeySilks/7200.png" width="46" height="60">" & @CRLF & _ " </div>" & @CRLF & _ " <div class='horse-info'>" & @CRLF & _ " <span class="horse-number">7</span>" & @CRLF & _ " " & @CRLF & _ " <span class="horse-name"><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyODk5Nzk4OA%3d%3d&src=horseform&raceentry=Mjg2NTI0MzIwMA%3d%3d" target="_blank">OAKFIELD EMPIRE</a></span>" & @CRLF & _ " " & @CRLF & _ " <br />" & @CRLF & _ " <span class="plain">" & @CRLF & _ " 4 year old bay mare (18-10-2015) <b>Sire:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjM3NDEzNDY0&src=horseform&raceEntry=Mjg2NTI0MzIwMA%3d%3d' target='_blank'>Dundeel (NZ)</a> <b>Dam:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjI0NzM1MjI0&src=horseform&raceEntry=Mjg2NTI0MzIwMA%3d%3d' target='_blank'>Oakfield Pearl</a> (<a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTM0NTY0Mjky&src=horseform&raceEntry=Mjg2NTI0MzIwMA%3d%3d' target='_blank'>Viscount</a>)" & @CRLF & _ " <a class='PedigreeLink content-link' href='/FreeServices/PedigreeSearch.aspx?horseName=Oakfield+Empire&amp;sireName=Dundeel&amp;damName=Oakfield+Pearl' target='_blank'>View Pedigree Report</a>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Breeder:</b> Mr B MacKenzie<br>" & @CRLF & _ " <b>Owners:</b> B Mackenzie <br>" & @CRLF & _ " <b>Colours:</b> Pale Green, Yellow Maltese Cross, Green Sleeves And Cap" & @CRLF & _ " " & @CRLF & _ " </span>" & @CRLF & _ " </div>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">" & @CRLF & _ " <b>Trainer:</b>" & @CRLF & _ " <b style="color: #000;">" & @CRLF & _ " " & @CRLF & _ " <a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=MTE5NjQwNTIw&trainername=Damien+Lane" target="_blank">Damien Lane</a>" & @CRLF & _ " " & @CRLF & _ " </b> (Wyong)&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Jockey:</b>" & @CRLF & _ " <b style="color:#000;">" & @CRLF & _ " " & @CRLF & _ " <a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTEyMjI5Mg%3d%3d" target="_blank"><span class='Hilite'>Grant Buckley</span> 57kg</a>" & @CRLF & _ " " & @CRLF & _ " </b>&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Barrier:</b>8" & @CRLF & _ " <br />" & @CRLF & _ " <b>Record:</b> 3:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Prizemoney:</b>$2,500&nbsp;&nbsp;&nbsp;&nbsp;<b>1st Up:</b> 2:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;<b>2nd Up:</b> 1:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <br />" & @CRLF & _ " <b>Track:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Dist:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Track/Dist:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " " & @CRLF & _ " <br />" & @CRLF & _ " <b>Firm:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Good:</b> 3:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Soft:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Heavy:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Synthetic:</b> 0:0-0-0" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">" & @CRLF & _ " <table border="0" cellspacing="1" cellpadding="2" class="horse-last-start">" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>10&nbsp;of&nbsp;12</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2MzA3MzMyMA%3d%3d' target='_blank'>TAR 14Jan19</a></b> 1250m Good3 MDN-SW $22,000 ($500) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTEwMTU1Mg%3d%3d' target='_blank'>Matthew Bennett</a> 55.5kg (cd 56kg) Barrier 5<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNTYxODM0NA%3d%3d&src=horseform' target='_blank'>Grand Exit</a></b> 57kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyODY0NTE2NA%3d%3d&src=horseform' target='_blank'>Royal Monarch</a></b> 57.5kg 1:13.92 (600m 36.93), 12.16L, 10th@800m, 11th@400m, $21/$26/$31</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'><I><b><font color='black'>T</font></b>2&nbsp;of&nbsp;7</I></td>" & @CRLF & _ " <td class='remain'><I><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2ODY3MzYwOA%3d%3d' target='_blank'>NCLE 14Jun19</a></b> 900m Soft5 MDN-BT $000 <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTkzMzgwNzM2' target='_blank'>Jake Hull</a> 0kg Barrier 0<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNDUyODY0MA%3d%3d&src=horseform' target='_blank'>Statue of Freedom</a></b> 0kg, 3rd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyMzA5NDE2NA%3d%3d&src=horseform' target='_blank'>Magic Anna</a></b> 0kg 0:56.53 (600m 35.27), 1.22L </I></td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'><I><b><font color='black'>T</font></b>7&nbsp;of&nbsp;8</I></td>" & @CRLF & _ " <td class='remain'><I><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2OTQyOTc2NA%3d%3d' target='_blank'>NCLE 16Jul19</a></b> 800m Soft5 3Y+ MDN-BT $000 <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTkzMzgwNzM2' target='_blank'>Jake Hull</a> 0kg Barrier 0<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTI1NTYyODYzNg%3d%3d&src=horseform' target='_blank'>Mummentum (NZ)</a></b> 0kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyOTUyNDI5Ng%3d%3d&src=horseform' target='_blank'>Monterey Lad</a></b> 0kg 0:49.09 (600m 34.44), 2.91L </I></td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>7&nbsp;of&nbsp;9</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2Njg3MTQyNA%3d%3d' target='_blank'>GOSF 27Jul19</a></b> 1200m Good4 MDN $35,000 ($1,000) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTEyMjI5Mg%3d%3d' target='_blank'>Grant Buckley</a> 56kg Barrier 4<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMjY4NjUzNg%3d%3d&src=horseform' target='_blank'>Invincible Dash</a></b> 56.5kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyODE1MzAxNg%3d%3d&src=horseform' target='_blank'>Serbelloni</a></b> 56.5kg 1:12.83 (600m 35.25), 5.74L, 8th@800m, 8th@400m, $81/$71/$81/$71</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>9&nbsp;of&nbsp;13</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NzgwMTMwOA%3d%3d' target='_blank'>NCLE 10Aug19</a></b> 1400m Good3 MDN-SW $35,000 ($1,000) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTc3Mjc3NDY4' target='_blank'>Aaron Bullock</a> 57kg Barrier 2<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNjYzODI2NA%3d%3d&src=horseform' target='_blank'>Stylish Pattern</a></b> 59kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyODQ3ODI2OA%3d%3d&src=horseform' target='_blank'>Moon Panther</a></b> 59kg 1:24.96 (600m 35.39), 3.90L, 7th@800m, 8th@400m, $101/$91</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " </table>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">&nbsp;</td>" & @CRLF & _ " </tr>" & @CRLF & _ " </table>" & @CRLF & _ " " & @CRLF & _ " <table border="0" cellspacing="0" cellpadding="0" class="horse-form-table">" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="5"> " & @CRLF & _ " <div class='Silks'>" & @CRLF & _ " <img src="https://racingaustralia.horse/JockeySilks/49984.png" width="46" height="60">" & @CRLF & _ " </div>" & @CRLF & _ " <div class='horse-info'>" & @CRLF & _ " <span class="horse-number">8</span>" & @CRLF & _ " " & @CRLF & _ " <span class="horse-name"><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNDQ4NzE2MA%3d%3d&src=horseform&raceentry=Mjg2NDU1MDcyOA%3d%3d" target="_blank">POWER TO PAY</a></span>" & @CRLF & _ " " & @CRLF & _ " <br />" & @CRLF & _ " <span class="plain">" & @CRLF & _ " 5 year old bay mare (20-10-2014) <b>Sire:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjA2MjcyMjMy&src=horseform&raceEntry=Mjg2NDU1MDcyOA%3d%3d' target='_blank'>Mosayter (USA)</a> <b>Dam:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjE3Njk2MzEy&src=horseform&raceEntry=Mjg2NDU1MDcyOA%3d%3d' target='_blank'>Plaisance</a> (<a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=OTYzMDY1NTY%3d&src=horseform&raceEntry=Mjg2NDU1MDcyOA%3d%3d' target='_blank'>Commands</a>)" & @CRLF & _ " <a class='PedigreeLink content-link' href='/FreeServices/PedigreeSearch.aspx?horseName=Power+To+Pay&amp;sireName=Mosayter&amp;damName=Plaisance' target='_blank'>View Pedigree Report</a>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Breeder:</b> Mrs L Ellis<br>" & @CRLF & _ " <b>Owners:</b> G W Truran <br>" & @CRLF & _ " <b>Colours:</b> White, Maroon Stripes, White Cap" & @CRLF & _ " " & @CRLF & _ " </span>" & @CRLF & _ " </div>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">" & @CRLF & _ " <b>Trainer:</b>" & @CRLF & _ " <b style="color: #000;">" & @CRLF & _ " " & @CRLF & _ " <a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=MTUxNTAzNTA0&trainername=Stephen+Schofield" target="_blank">Stephen Schofield</a>" & @CRLF & _ " " & @CRLF & _ " </b> (Wyong)&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Jockey:</b>" & @CRLF & _ " <b style="color:#000;">" & @CRLF & _ " " & @CRLF & _ " <a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTk0MzgzMDg4" target="_blank"><span class='Hilite'>Serg Lisnyy</span> 57kg</a>" & @CRLF & _ " " & @CRLF & _ " </b>&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Barrier:</b>9" & @CRLF & _ " <br />" & @CRLF & _ " <b>Record:</b> 8:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Prizemoney:</b>$4,080&nbsp;&nbsp;&nbsp;&nbsp;<b>1st Up:</b> 2:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;<b>2nd Up:</b> 2:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <br />" & @CRLF & _ " <b>Track:</b> 1:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Dist:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Track/Dist:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " " & @CRLF & _ " <br />" & @CRLF & _ " <b>Firm:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Good:</b> 6:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Soft:</b> 2:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Heavy:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Synthetic:</b> 0:0-0-0" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">" & @CRLF & _ " <table border="0" cellspacing="1" cellpadding="2" class="horse-last-start">" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>6&nbsp;of&nbsp;13</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2Njg1NzAyOA%3d%3d' target='_blank'>CESS 15Jul19</a></b> 1150m Good3 MDN $22,000 ($540) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTk0MzgzMDg4' target='_blank'>Serg Lisnyy</a> 54.5kg Barrier 2<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyOTI5Mzk2MA%3d%3d&src=horseform' target='_blank'>Party Glow</a></b> 54.5kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMjA0ODIzMg%3d%3d&src=horseform' target='_blank'>Hard Lady</a></b> 54.5kg 1:09.26 (600m 35.74), 4.00L, 9th@800m, 9th@400m, $101/$101</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>6&nbsp;of&nbsp;11</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2OTY0NzY1Ng%3d%3d' target='_blank'>TAR 29Jul19</a></b> 1250m Good3 MDN-SW $22,000 ($540) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTk0MzgzMDg4' target='_blank'>Serg Lisnyy</a> 57kg Barrier 9<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMjkxMjQ4MA%3d%3d&src=horseform' target='_blank'>Django Unreined</a></b> 56.5kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMTM2MjM0OA%3d%3d&src=horseform' target='_blank'>Gloraya</a></b> 54.5kg 1:15.40 (600m 36.61), 4.64L, 11th@800m, 9th@400m, $101/$151/$91/$101</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>8&nbsp;of&nbsp;9</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2Nzc5Mzk4OA%3d%3d' target='_blank'>WYNG 02Aug19</a></b> 1350m Soft6 4Y+ MDN $35,000 ($1,000) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTAzMzc0MzE4MA%3d%3d' target='_blank'>Ms Louise Day (a)</a> 55kg (cd 52kg) Barrier 5<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyOTA5NzU0MA%3d%3d&src=horseform' target='_blank'>Bold And Wild</a></b> 58kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNjY4MzE2MA%3d%3d&src=horseform' target='_blank'>Prospero</a></b> 58.5kg 1:21.73 (600m 35.17), 11.40L, 5th@800m, 6th@400m, $101/$101</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>11&nbsp;of&nbsp;13</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NzczODg0NA%3d%3d' target='_blank'>TAR 16Aug19</a></b> 1250m Good3 F&M MDN $22,000 <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTkzMTQ4MjA0' target='_blank'>Ms Jenny Duggan (a)</a> 54kg Barrier 12<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTI1NTYyODYzNg%3d%3d&src=horseform' target='_blank'>Mummentum (NZ)</a></b> 57.5kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMTE2MDA3Mg%3d%3d&src=horseform' target='_blank'>Trajection</a></b> 56.5kg 1:12.95 (600m 35.28), 10.45L, 12th@800m, 13th@400m, $201/$201</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>7&nbsp;of&nbsp;10</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NzU1NzU1Mg%3d%3d' target='_blank'>MWBK 25Aug19</a></b> 1500m Good3 MDN-SW $22,000 ($500) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTEyMjI5Mg%3d%3d' target='_blank'>Grant Buckley</a> 57kg Barrier 9<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyODQ3ODI2OA%3d%3d&src=horseform' target='_blank'>Moon Panther</a></b> 59kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyOTU3NDMxNg%3d%3d&src=horseform' target='_blank'>Black Star Bowie</a></b> 59kg 1:29.85 (600m 36.53), 5.84L, 9th@800m, 10th@400m, $101/$91/$101</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " </table>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">&nbsp;</td>" & @CRLF & _ " </tr>" & @CRLF & _ " </table>" & @CRLF & _ " " & @CRLF & _ " <table border="0" cellspacing="0" cellpadding="0" class="horse-form-table">" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="5"> " & @CRLF & _ " <div class='Silks'>" & @CRLF & _ " <img src="https://racingaustralia.horse/JockeySilks/71969.png" width="46" height="60">" & @CRLF & _ " </div>" & @CRLF & _ " <div class='horse-info'>" & @CRLF & _ " <span class="horse-number">9</span>" & @CRLF & _ " " & @CRLF & _ " <span class="horse-name"><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyMzYyNzc5Mg%3d%3d&src=horseform&raceentry=Mjg2NDk3MzA5Mg%3d%3d" target="_blank">WHITNEY&rsquo;S STAR</a></span>" & @CRLF & _ " <span class="horse-gear">(Blks)</span> " & @CRLF & _ " <br />" & @CRLF & _ " <span class="plain">" & @CRLF & _ " 5 year old bay mare (7-9-2014) <b>Sire:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjE4OTUzNjQ0&src=horseform&raceEntry=Mjg2NDk3MzA5Mg%3d%3d' target='_blank'>Star Witness</a> <b>Dam:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTAyODIwMzgw&src=horseform&raceEntry=Mjg2NDk3MzA5Mg%3d%3d' target='_blank'>Airlie Bird</a> (<a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=NTQ3ODcwMjg%3d&src=horseform&raceEntry=Mjg2NDk3MzA5Mg%3d%3d' target='_blank'>Zoffany (USA)</a>)" & @CRLF & _ " <a class='PedigreeLink content-link' href='/FreeServices/PedigreeSearch.aspx?horseName=Whitney%27s+Star&amp;sireName=Star+Witness&amp;damName=Airlie+Bird' target='_blank'>View Pedigree Report</a>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Breeder:</b> Ferndale Farm<br>" & @CRLF & _ " <b>Owners:</b> P G Gely &amp; Mrs M Gely<br>" & @CRLF & _ " <b>Colours:</b> White, Red Crossed Sashes, White And Royal Blue Checked Sleeves, Royal Blue Diamonds On Cap" & @CRLF & _ " " & @CRLF & _ " <br /><b>Gear Changes:</b> Blinkers FIRST TIME, Winkers OFF AGAIN" & @CRLF & _ " " & @CRLF & _ " </span>" & @CRLF & _ " </div>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">" & @CRLF & _ " <b>Trainer:</b>" & @CRLF & _ " <b style="color: #000;">" & @CRLF & _ " " & @CRLF & _ " <a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=NTAzMTY1OTY2NA%3d%3d&trainername=Wayne+Austin" target="_blank">Wayne Austin</a>" & @CRLF & _ " " & @CRLF & _ " </b> (Hawkesbury)&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Jockey:</b>" & @CRLF & _ " <b style="color:#000;">" & @CRLF & _ " " & @CRLF & _ " <a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTQ0NjIzOTI0" target="_blank"><span class='Hilite'>Ms Kathy O&#39;Hara</span> 57kg</a>" & @CRLF & _ " " & @CRLF & _ " </b>&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Barrier:</b>1" & @CRLF & _ " <br />" & @CRLF & _ " <b>Record:</b> 21:0-3-3&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Prizemoney:</b>$40,880&nbsp;&nbsp;&nbsp;&nbsp;<b>1st Up:</b> 4:0-1-0&nbsp;&nbsp;&nbsp;&nbsp;<b>2nd Up:</b> 4:0-0-1&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <br />" & @CRLF & _ " <b>Track:</b> 6:0-1-1&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Dist:</b> 7:0-2-1&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Track/Dist:</b> 2:0-0-1&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " " & @CRLF & _ " <br />" & @CRLF & _ " <b>Firm:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Good:</b> 13:0-2-2&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Soft:</b> 6:0-1-1&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Heavy:</b> 2:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Synthetic:</b> 0:0-0-0" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">" & @CRLF & _ " <table border="0" cellspacing="1" cellpadding="2" class="horse-last-start">" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>5&nbsp;of&nbsp;8</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NDUxMTIxMg%3d%3d' target='_blank'>WYNG 24Apr19</a></b> 1200m Good4 MDN $35,000 ($1,280) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTk0MTQwMDY0' target='_blank'>Ms Rachael Murray</a> 55kg Barrier 6<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjQ1MDI0NTU2&src=horseform' target='_blank'>Impurity</a></b> 55.5kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzU0MzI2MA%3d%3d&src=horseform' target='_blank'>Haunting Spirit</a></b> 58.5kg 1:11.20 (600m 34.10), 5.22L, 7th@800m, 7th@400m, $21/$26/$31</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>5&nbsp;of&nbsp;8</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NTU0NDU1Mg%3d%3d' target='_blank'>WYNG 02May19</a></b> 1350m Good4 MDN-SW $35,000 ($1,280) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTk0MTQwMDY0' target='_blank'>Ms Rachael Murray</a> 57kg Barrier 4<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzAzNTk4NA%3d%3d&src=horseform' target='_blank'>Go Fish Go</a></b> 59kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyODY0NjM4NA%3d%3d&src=horseform' target='_blank'>Scepter of Power</a></b> 59kg 1:20.73 (600m 35.23), 7.15L, 5th@800m, 6th@400m, $31/$31</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>3&nbsp;of&nbsp;7</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NTYwODcyNA%3d%3d' target='_blank'>GOSF 30May19</a></b> 1200m Good4 4Y+ MDN-SW $35,000 ($3,200) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTk0MTQwMDY0' target='_blank'>Ms Rachael Murray</a> 57kg Barrier 4<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNTY4Mjc2MA%3d%3d&src=horseform' target='_blank'>Say Goodbye</a></b> 59kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNTU5ODMzNg%3d%3d&src=horseform' target='_blank'>Rubikat</a></b> 57kg 1:12.48 (600m 35.83), 1.67L, 5th@800m, 5th@400m, $4.80/$6/$6.50/$7</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'><I><b><font color='black'>T</font></b>3&nbsp;of&nbsp;4</I></td>" & @CRLF & _ " <td class='remain'><I><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2ODY5NTgxMg%3d%3d' target='_blank'>HAWK 17Jun19</a></b> 800m Soft5 OPEN-BT $000 <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MjA2NzgyOTI0' target='_blank'>Ms Simone Vella (a)</a> 0kg Barrier 0<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjQ0MjM4ODc2&src=horseform' target='_blank'>Mon Petite Fille</a></b> 0kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyOTQwNDk4MA%3d%3d&src=horseform' target='_blank'>Almerheri</a></b> 0kg 0:48.69, 1.32L </I></td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>6&nbsp;of&nbsp;8</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NjA5NDc3Mg%3d%3d' target='_blank'>K GR 27Jun19</a></b> 1500m Heavy10 MDN-SW $40,000 ($1,100) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTk0MTQwMDY0' target='_blank'>Ms Rachael Murray</a> 57kg Barrier 7<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTI4MDU2MDA2OA%3d%3d&src=horseform' target='_blank'>Betty Blooms (NZ)</a></b> 57kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNjc3ODgwOA%3d%3d&src=horseform' target='_blank'>Hamogany</a></b> 59kg 1:34.39 (600m 35.74), 9.40L, 8th@800m, 8th@400m, $21/$21/$26/$31</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>6&nbsp;of&nbsp;7</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NzEyNTkxNg%3d%3d' target='_blank'>GOUL 12Jul19</a></b> 1600m Soft7 MDN-SW $22,000 ($540) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MjA2NzgyOTI0' target='_blank'>Ms Simone Vella (a)</a> 57kg (cd 55kg) Barrier 4<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyODI5MDg3Ng%3d%3d&src=horseform' target='_blank'>Tochi</a></b> 57kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTI4Mzg5OTY5Ng%3d%3d&src=horseform' target='_blank'>Disco Mo</a></b> 59kg 1:39.51 (600m 37.81), 5.31L, 6th@800m, 7th@400m, $8.50/$11/$10/$11</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " </table>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">&nbsp;</td>" & @CRLF & _ " </tr>" & @CRLF & _ " </table>" & @CRLF & _ " " & @CRLF & _ " <table border="0" cellspacing="0" cellpadding="0" class="horse-form-table">" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="5"> " & @CRLF & _ " <div class='Silks'>" & @CRLF & _ " <img src="https://racingaustralia.horse/JockeySilks/36541.png" width="46" height="60">" & @CRLF & _ " </div>" & @CRLF & _ " <div class='horse-info'>" & @CRLF & _ " <span class="horse-number">10</span>" & @CRLF & _ " " & @CRLF & _ " <span class="horse-name"><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMTQ4NDEwNA%3d%3d&src=horseform&raceentry=Mjg2NDY3MTk5Ng%3d%3d" target="_blank">BLAZING SUNRISE</a></span>" & @CRLF & _ " <img alt='BOBS Bonus Scheme' title='BOBS Bonus Scheme' src='/design/images/BonusLogos/BOBS.png' style='vertical-align:middle;' />" & @CRLF & _ " <br />" & @CRLF & _ " <span class="plain">" & @CRLF & _ " 3 year old brown gelding (8-9-2016) <b>Sire:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjQxNTI0ODY0&src=horseform&raceEntry=Mjg2NDY3MTk5Ng%3d%3d' target='_blank'>Dawn Approach (IRE)</a> <b>Dam:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTY1MTU3MjU2&src=horseform&raceEntry=Mjg2NDY3MTk5Ng%3d%3d' target='_blank'>Burning Sands</a> (<a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTA3MjI0NTgw&src=horseform&raceEntry=Mjg2NDY3MTk5Ng%3d%3d' target='_blank'>Marju (IRE)</a>)" & @CRLF & _ " <a class='PedigreeLink content-link' href='/FreeServices/PedigreeSearch.aspx?horseName=Blazing+Sunrise&amp;sireName=Dawn+Approach&amp;damName=Burning+Sands' target='_blank'>View Pedigree Report</a>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Breeder:</b> Mr R Pegum<br>" & @CRLF & _ " <b>Owners:</b> Australian Bloodstock (Mgr: L Murrell), G Craner, A Klapper, S M D Racing, Freedom Fund, M Buckland, A G Cammarano, R C Massing, P Camilleri, D P Goyett, Woonona Racing, T L O&#39;grady, P M Kable, M P Howard &amp; J Lovett<br>" & @CRLF & _ " <b>Colours:</b> Royal Blue, White Horseshoe, Black And White Checked Sleeves And Cap" & @CRLF & _ " " & @CRLF & _ " </span>" & @CRLF & _ " </div>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">" & @CRLF & _ " <b>Trainer:</b>" & @CRLF & _ " <b style="color: #000;">" & @CRLF & _ " " & @CRLF & _ " <a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=NDE3OTcyMA%3d%3d&trainername=Kris+Lees" target="_blank">Kris Lees</a>" & @CRLF & _ " " & @CRLF & _ " </b> (Newcastle)&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Jockey:</b>" & @CRLF & _ " <b style="color:#000;">" & @CRLF & _ " " & @CRLF & _ " <a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTcwOTY0MjEy" target="_blank"><span class='Hilite'>Brenton Avdulla</span> 56.5kg</a>" & @CRLF & _ " " & @CRLF & _ " </b>&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Barrier:</b>4" & @CRLF & _ " <br />" & @CRLF & _ " <b>Record:</b> 1:0-0-1&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Prizemoney:</b>$2,100&nbsp;&nbsp;&nbsp;&nbsp;<b>1st Up:</b> 1:0-0-1&nbsp;&nbsp;&nbsp;&nbsp;<b>2nd Up:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <br />" & @CRLF & _ " <b>Track:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Dist:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Track/Dist:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " " & @CRLF & _ " <br />" & @CRLF & _ " <b>Firm:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Good:</b> 1:0-0-1&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Soft:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Heavy:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Synthetic:</b> 0:0-0-0" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">" & @CRLF & _ " <table border="0" cellspacing="1" cellpadding="2" class="horse-last-start">" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'><I><b><font color='black'>T</font></b>4&nbsp;of&nbsp;5</I></td>" & @CRLF & _ " <td class='remain'><I><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2MzcyOTE5Mg%3d%3d' target='_blank'>GOSF 07Nov18</a></b> 800m Good4 2YC&G-BT $000 <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTc3Mjc3NDY4' target='_blank'>Aaron Bullock</a> 0kg Barrier 0<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMTYyOTUyOA%3d%3d&src=horseform' target='_blank'>Henschel</a></b> 0kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMTM2NzcxNg%3d%3d&src=horseform' target='_blank'>Bullet Raiders</a></b> 0kg 0:49.10 (600m 35.39), 13.36L </I></td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'><I><b><font color='black'>T</font></b>7&nbsp;of&nbsp;7</I></td>" & @CRLF & _ " <td class='remain'><I><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NjE3Njc1Ng%3d%3d' target='_blank'>BEAU 27Feb19</a></b> 800m Good4 2YC&G-BT $000 <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTMzMTE1Ng%3d%3d' target='_blank'>Darryl McLellan</a> 0kg Barrier 0<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMjIxOTUyMA%3d%3d&src=horseform' target='_blank'>Impudens</a></b> 0kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMjk2NzM4MA%3d%3d&src=horseform' target='_blank'>Rejinsky</a></b> 0kg 0:46.24 (600m 32.50), 7.20L </I></td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'><I><b><font color='black'>T</font></b>2&nbsp;of&nbsp;7</I></td>" & @CRLF & _ " <td class='remain'><I><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2OTMyODI2MA%3d%3d' target='_blank'>GOSF 11Jul19</a></b> 800m Heavy8 2YC&G-BT $000 <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTc3Mjc3NDY4' target='_blank'>Aaron Bullock</a> 0kg Barrier 0<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMjkxMjQ4MA%3d%3d&src=horseform' target='_blank'>Django Unreined</a></b> 0kg, 3rd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMDY1ODg5Ng%3d%3d&src=horseform' target='_blank'>Rubickman</a></b> 0kg 0:51.16, 0.40L </I></td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'><I><b><font color='black'>T</font></b>5&nbsp;of&nbsp;5</I></td>" & @CRLF & _ " <td class='remain'><I><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2OTYyMTc5Mg%3d%3d' target='_blank'>WYNG 26Jul19</a></b> 1000m Soft5 2Y-BT $000 <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTcwOTY0MjEy' target='_blank'>Brenton Avdulla</a> 0kg Barrier 0<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMDYzMTA4MA%3d%3d&src=horseform' target='_blank'>Star Raider</a></b> 0kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMjIxOTUyMA%3d%3d&src=horseform' target='_blank'>Impudens</a></b> 0kg 1:01.01 (600m 35.36), 6.34L </I></td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>3&nbsp;of&nbsp;9</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NzU1NDYyNA%3d%3d' target='_blank'>GUNN 19Aug19</a></b> 1400m Good3 MDN-SW $22,000 ($2,100) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTc3Mjc3NDY4' target='_blank'>Aaron Bullock</a> 56.5kg Barrier 7<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyOTMyMzQ4NA%3d%3d&src=horseform' target='_blank'>Mick's Regret</a></b> 59kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMTAyNDQwOA%3d%3d&src=horseform' target='_blank'>Salsa Dreaming</a></b> 56.5kg 1:24.82 (600m 35.61), 1.78L, 3rd@800m, 6th@400m, $3.10/$3.80/$4/$4.20</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " </table>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">&nbsp;</td>" & @CRLF & _ " </tr>" & @CRLF & _ " </table>" & @CRLF & _ " " & @CRLF & _ " <table border="0" cellspacing="0" cellpadding="0" class="horse-form-table">" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="5"> " & @CRLF & _ " <div class='Silks'>" & @CRLF & _ " <img src="https://racingaustralia.horse/JockeySilks/78177.png" width="46" height="60">" & @CRLF & _ " </div>" & @CRLF & _ " <div class='horse-info'>" & @CRLF & _ " <span class="horse-number">11</span>" & @CRLF & _ " " & @CRLF & _ " <span class="horse-name"><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMjg2MTI0MA%3d%3d&src=horseform&raceentry=Mjg2NTIzODA3Ng%3d%3d" target="_blank">SHAME WARNED</a></span>" & @CRLF & _ " <span class="horse-gear">(Blks)</span> <img alt='BOBS Bonus Scheme' title='BOBS Bonus Scheme' src='/design/images/BonusLogos/BOBS.png' style='vertical-align:middle;' />" & @CRLF & _ " <br />" & @CRLF & _ " <span class="plain">" & @CRLF & _ " 3 year old bay or brown gelding (21-9-2016) <b>Sire:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjMzMDgwNzU2&src=horseform&raceEntry=Mjg2NTIzODA3Ng%3d%3d' target='_blank'>Shamus Award</a> <b>Dam:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjE4NTk5ODQ0&src=horseform&raceEntry=Mjg2NTIzODA3Ng%3d%3d' target='_blank'>Slipped By</a> (<a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=NTU3MjgxMzY%3d&src=horseform&raceEntry=Mjg2NTIzODA3Ng%3d%3d' target='_blank'>Zeditave</a>)" & @CRLF & _ " <a class='PedigreeLink content-link' href='/FreeServices/PedigreeSearch.aspx?horseName=Shame+Warned&amp;sireName=Shamus+Award&amp;damName=Slipped+By' target='_blank'>View Pedigree Report</a>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Breeder:</b> Golden Grove Stud Farm<br>" & @CRLF & _ " <b>Owners:</b> Miss T A Rodger, D J Whiteley, D P Webber, P Teague, R F Nicholls, J Teague, G Pryor, P J Sherwood, Mrs M A Keirle, M J French, D J French &amp; G J Cusack<br>" & @CRLF & _ " <b>Colours:</b> Black, Royal Blue Horse Head, Gold Sleeves And Cap, Black Pom Pom" & @CRLF & _ " " & @CRLF & _ " <br /><b>Gear Changes:</b> Tongue Tie FIRST TIME" & @CRLF & _ " " & @CRLF & _ " </span>" & @CRLF & _ " </div>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" class='Scratched'>SCRATCHED</td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">&nbsp;</td>" & @CRLF & _ " </tr>" & @CRLF & _ " </table>" & @CRLF & _ " " & @CRLF & _ " <table border="0" cellspacing="0" cellpadding="0" class="horse-form-table">" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="5"> " & @CRLF & _ " <div class='Silks'>" & @CRLF & _ " <img src="https://racingaustralia.horse/JockeySilks/79447.png" width="46" height="60">" & @CRLF & _ " </div>" & @CRLF & _ " <div class='horse-info'>" & @CRLF & _ " <span class="horse-number">12</span>" & @CRLF & _ " " & @CRLF & _ " <span class="horse-name"><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMTQwNjI2OA%3d%3d&src=horseform&raceentry=Mjg2NTE5NzA4NA%3d%3d" target="_blank">UPRISE</a></span>" & @CRLF & _ " <img alt='BOBS Bonus Scheme' title='BOBS Bonus Scheme' src='/design/images/BonusLogos/BOBS.png' style='vertical-align:middle;' />" & @CRLF & _ " <br />" & @CRLF & _ " <span class="plain">" & @CRLF & _ " 3 year old bay gelding (25-9-2016) <b>Sire:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjE5NTUwMjI0&src=horseform&raceEntry=Mjg2NTE5NzA4NA%3d%3d' target='_blank'>Hinchinbrook</a> <b>Dam:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTg0NzkyMTgw&src=horseform&raceEntry=Mjg2NTE5NzA4NA%3d%3d' target='_blank'>Miss Rangoon (USA)</a> (<a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTQ3NDkzMTIw&src=horseform&raceEntry=Mjg2NTE5NzA4NA%3d%3d' target='_blank'>Giant&rsquo;s Causeway (USA)</a>)" & @CRLF & _ " <a class='PedigreeLink content-link' href='/FreeServices/PedigreeSearch.aspx?horseName=Uprise&amp;sireName=Hinchinbrook&amp;damName=Miss+Rangoon' target='_blank'>View Pedigree Report</a>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Breeder:</b> Mr G J Perry<br>" & @CRLF & _ " <b>Owners:</b> Darby Racing Miss Rangoon (Mgr: S G Darby), M D Holland, J Allen, B Bradley, R Brown, D Lambert, P Marshall, J Neilsen, L Snedden, R Wallace, Pony Up Too (Mgr: B Bradley), Kenny Win (Mgr: J Cheetham) &amp; Group One Guys (Mgr: M Field)<br>" & @CRLF & _ " <b>Colours:</b> White, Navy Blue Darby Racing Logos, Navy Blue Armbands And Cap With Logo" & @CRLF & _ " " & @CRLF & _ " </span>" & @CRLF & _ " </div>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" class='Scratched'>SCRATCHED</td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">&nbsp;</td>" & @CRLF & _ " </tr>" & @CRLF & _ " </table>" & @CRLF & _ " " & @CRLF & _ " <!-- start of races -->" & @CRLF & _ " <a name="Race2"></a><div class="race-title-spacer"></div>" & @CRLF & _ " <table border="0" cellspacing="0" cellpadding="5" class="race-title">" & @CRLF & _ " <tr>" & @CRLF & _ " <th><span class='raceNum'>Race 2</span> - 1:25PM TUGGERAH DEMOLITION & EXCAVATION 4YO&UP MAIDEN HANDICAP (1100 METRES)" & @CRLF & _ " <span style="float:right" class="localtimedisplayed">Times displayed in local time of Race Meeting</span>" & @CRLF & _ " " & @CRLF & _ " </th>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr class="race-info">" & @CRLF & _ " <td><!-- //Added below condition to display : Restricted to female jockeys and apprentices only : RA-1963 -->" & @CRLF & _ " <b>Of $35,000.1st $16,740, 2nd $6,000, 3rd $3,200, 4th $1,980, 5th $1,280, 6th $1,100, 7th $1,000, 8th $1,000, 9th $1,000, 10th $1,000, Equine Welfare Fund $350, Jockey Welfare Fund $350. </b><br>Maiden, Handicap, Minimum Weight 54.5kg, Four-Years-Old and Upwards, Apprentices can claim.<br><br><b>Track Name:</b> Main <b>Track Type:</b> Turf <br><br>Field Limit: 12 + 4 EM" & @CRLF & _ " " & @CRLF & _ " </TD>" & @CRLF & _ " </tr>" & @CRLF & _ " </table>" & @CRLF & _ " <br>" & @CRLF & _ " <table border="0" cellpadding="3" cellspacing="0" class="race-strip-fields">" & @CRLF & _ " <tr>" & @CRLF & _ " <th class="no">No</th>" & @CRLF & _ " <th class="last">Last 10</th>" & @CRLF & _ " <th class="horse">Horse</th>" & @CRLF & _ " <th class="trainer">Trainer</th>" & @CRLF & _ " <th class="jockey">Jockey</th>" & @CRLF & _ " <th class="barrier">Barrier</th>" & @CRLF & _ " <th class="weight">Weight</th>" & @CRLF & _ " " & @CRLF & _ " <th class='penalty'>Probable Weight</th>" & @CRLF & _ " " & @CRLF & _ " <th class="penalty">Penalty</th>" & @CRLF & _ " <th class="hcp">Hcp Rating</th>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow Scratched'>" & @CRLF & _ " <td class="no">1</td>" & @CRLF & _ " <td class="last">x47x23362x</td>" & @CRLF & _ " " & @CRLF & _ " <td class='horse'><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzU0MzI2MA%3d%3d&src=horseform&raceentry=Mjg2Mzk3MDAwOA%3d%3d" target="_blank">HAUNTING SPIRIT</a> <span style="float:right;"></span></td>" & @CRLF & _ " <td class='trainer'><a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=MTU3MDk2OTYw&trainername=Lauri+Parker" target="_blank">Lauri Parker</a></td>" & @CRLF & _ " " & @CRLF & _ " <td class='jockey'><a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTQ0NjIzOTI0" target="_blank"><span class='Hilite'>Ms Kathy O&#39;Hara</span></a></td>" & @CRLF & _ " " & @CRLF & _ " <td class="barrier">6</td>" & @CRLF & _ " <td class="weight">59kg</td>" & @CRLF & _ " " & @CRLF & _ " <td style="color:red" class='penalty'></td>" & @CRLF & _ " " & @CRLF & _ " <td class="penalty"></td>" & @CRLF & _ " <td class="hcp"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " <td class="no">2</td>" & @CRLF & _ " <td class="last">36</td>" & @CRLF & _ " " & @CRLF & _ " <td class='horse'><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzM5OTc4OA%3d%3d&src=horseform&raceentry=Mjg2NDkzMzU2NA%3d%3d" target="_blank">SETHLANS</a> <span style="float:right;"></span></td>" & @CRLF & _ " <td class='trainer'><a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=NTAyNzExOTMxMg%3d%3d&trainername=James+Cummings" target="_blank">James Cummings</a></td>" & @CRLF & _ " " & @CRLF & _ " <td class='jockey'><a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTcwOTY0MjEy" target="_blank"><span class='Hilite'>Brenton Avdulla</span></a></td>" & @CRLF & _ " " & @CRLF & _ " <td class="barrier">4</td>" & @CRLF & _ " <td class="weight">58.5kg</td>" & @CRLF & _ " " & @CRLF & _ " <td style="color:red" class='penalty'></td>" & @CRLF & _ " " & @CRLF & _ " <td class="penalty"></td>" & @CRLF & _ " <td class="hcp"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " <td class="no">3</td>" & @CRLF & _ " <td class="last">5</td>" & @CRLF & _ " " & @CRLF & _ " <td class='horse'><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMDE1ODk0MA%3d%3d&src=horseform&raceentry=Mjg2NDM1ODk0NA%3d%3d" target="_blank">SHAMUSU SHO (NZ)</a> <span style="float:right;"></span></td>" & @CRLF & _ " <td class='trainer'><a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=MTkzMjQzMzY0&trainername=Bjorn+Baker" target="_blank">Bjorn Baker</a></td>" & @CRLF & _ " " & @CRLF & _ " <td class='jockey'><a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTk4NTY3NDQ0" target="_blank"><span class='Hilite'>Jason Collett</span></a></td>" & @CRLF & _ " " & @CRLF & _ " <td class="barrier">11</td>" & @CRLF & _ " <td class="weight">58.5kg</td>" & @CRLF & _ " " & @CRLF & _ " <td style="color:red" class='penalty'></td>" & @CRLF & _ " " & @CRLF & _ " <td class="penalty"></td>" & @CRLF & _ " <td class="hcp"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow Scratched'>" & @CRLF & _ " <td class="no">4</td>" & @CRLF & _ " <td class="last">627x42326x</td>" & @CRLF & _ " " & @CRLF & _ " <td class='horse'><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzc1NzI0OA%3d%3d&src=horseform&raceentry=Mjg2NTA4NzI4NA%3d%3d" target="_blank">THREEOOD</a> <span style="float:right;"></span></td>" & @CRLF & _ " <td class='trainer'><a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=MTIyOTMyMzI0&trainername=Joseph+Pride" target="_blank">Joseph Pride</a></td>" & @CRLF & _ " " & @CRLF & _ " <td class='jockey'><a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTUxNjQxMTIw" target="_blank"><span class='Hilite'>Joshua Parr</span></a></td>" & @CRLF & _ " " & @CRLF & _ " <td class="barrier">7</td>" & @CRLF & _ " <td class="weight">58kg</td>" & @CRLF & _ " " & @CRLF & _ " <td style="color:red" class='penalty'></td>" & @CRLF & _ " " & @CRLF & _ " <td class="penalty"></td>" & @CRLF & _ " <td class="hcp"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " <td class="no">5</td>" & @CRLF & _ " <td class="last">92343x</td>" & @CRLF & _ " " & @CRLF & _ " <td class='horse'><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyOTY0MDY4NA%3d%3d&src=horseform&raceentry=Mjg2NDk3MzMzNg%3d%3d" target="_blank">DANSK HAVN</a> <span style="float:right;"></span></td>" & @CRLF & _ " <td class='trainer'><a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=NDE0MjYzMg%3d%3d&trainername=Ken+Lantry" target="_blank">Ken Lantry</a></td>" & @CRLF & _ " " & @CRLF & _ " <td class='jockey'><a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTYzODM4NDM2" target="_blank"><span class='Hilite'>Luke Cumberland</span></a></td>" & @CRLF & _ " " & @CRLF & _ " <td class="barrier">5</td>" & @CRLF & _ " <td class="weight">57.5kg</td>" & @CRLF & _ " " & @CRLF & _ " <td style="color:red" class='penalty'></td>" & @CRLF & _ " " & @CRLF & _ " <td class="penalty"></td>" & @CRLF & _ " <td class="hcp"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " <td class="no">6</td>" & @CRLF & _ " <td class="last">8x</td>" & @CRLF & _ " " & @CRLF & _ " <td class='horse'><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzA2NDI4OA%3d%3d&src=horseform&raceentry=Mjg2NDE4MzAyMA%3d%3d" target="_blank">CINDERS</a> <span style="float:right;"></span></td>" & @CRLF & _ " <td class='trainer'><a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=NDIyNDM3Mg%3d%3d&trainername=Lee+Curtis" target="_blank">Lee Curtis</a></td>" & @CRLF & _ " " & @CRLF & _ " <td class='jockey'><a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTI5ODcwNA%3d%3d" target="_blank"><span class='Hilite'>Chad Lever</span></a></td>" & @CRLF & _ " " & @CRLF & _ " <td class="barrier">13</td>" & @CRLF & _ " <td class="weight">56.5kg</td>" & @CRLF & _ " " & @CRLF & _ " <td style="color:red" class='penalty'></td>" & @CRLF & _ " " & @CRLF & _ " <td class="penalty"></td>" & @CRLF & _ " <td class="hcp"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow Scratched'>" & @CRLF & _ " <td class="no">7</td>" & @CRLF & _ " <td class="last">7x</td>" & @CRLF & _ " " & @CRLF & _ " <td class='horse'><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyOTY5MjE2OA%3d%3d&src=horseform&raceentry=Mjg2NTA5NjU1Ng%3d%3d" target="_blank">ROCKAWAY PRINCESS</a> <span style="float:right;"></span></td>" & @CRLF & _ " <td class='trainer'><a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=MTYxNDUzNTgw&trainername=Jason+Coyle" target="_blank">Jason Coyle</a></td>" & @CRLF & _ " " & @CRLF & _ " <td class='jockey'><a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTUxNzgxNg%3d%3d" target="_blank"><span class='Hilite'>Glen Boss</span></a></td>" & @CRLF & _ " " & @CRLF & _ " <td class="barrier">8</td>" & @CRLF & _ " <td class="weight">56.5kg</td>" & @CRLF & _ " " & @CRLF & _ " <td style="color:red" class='penalty'></td>" & @CRLF & _ " " & @CRLF & _ " <td class="penalty"></td>" & @CRLF & _ " <td class="hcp"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " <td class="no">8</td>" & @CRLF & _ " <td class="last">436x233</td>" & @CRLF & _ " " & @CRLF & _ " <td class='horse'><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzAwNzkyNA%3d%3d&src=horseform&raceentry=Mjg2NTA4Nzc3Mg%3d%3d" target="_blank">NATURE</a> <span style="float:right;"></span></td>" & @CRLF & _ " <td class='trainer'><a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=MTIyOTMyMzI0&trainername=Joseph+Pride" target="_blank">Joseph Pride</a></td>" & @CRLF & _ " " & @CRLF & _ " <td class='jockey'><a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTU4NzYwMA%3d%3d" target="_blank"><span class='Hilite'>Nash Rawiller</span></a></td>" & @CRLF & _ " " & @CRLF & _ " <td class="barrier">2</td>" & @CRLF & _ " <td class="weight">56kg</td>" & @CRLF & _ " " & @CRLF & _ " <td style="color:red" class='penalty'></td>" & @CRLF & _ " " & @CRLF & _ " <td class="penalty"></td>" & @CRLF & _ " <td class="hcp"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " <td class="no">9</td>" & @CRLF & _ " <td class="last">3x55426x23</td>" & @CRLF & _ " " & @CRLF & _ " <td class='horse'><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyODA4ODg0NA%3d%3d&src=horseform&raceentry=Mjg2Mzk2NzU2OA%3d%3d" target="_blank">HIEMAL</a> <span style="float:right;"></span></td>" & @CRLF & _ " <td class='trainer'><a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=Mzc0MTQ5Ng%3d%3d&trainername=Gary+Nickson" target="_blank">Gary Nickson</a></td>" & @CRLF & _ " " & @CRLF & _ " <td class='jockey'><a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTA5MDU3Mg%3d%3d" target="_blank"><span class='Hilite'>Andrew Banks</span></a></td>" & @CRLF & _ " " & @CRLF & _ " <td class="barrier">3</td>" & @CRLF & _ " <td class="weight">55kg</td>" & @CRLF & _ " " & @CRLF & _ " <td style="color:red" class='penalty'></td>" & @CRLF & _ " " & @CRLF & _ " <td class="penalty"></td>" & @CRLF & _ " <td class="hcp"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow Scratched'>" & @CRLF & _ " <td class="no">10</td>" & @CRLF & _ " <td class="last">7x7x6067</td>" & @CRLF & _ " " & @CRLF & _ " <td class='horse'><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNjA2MDQ3Mg%3d%3d&src=horseform&raceentry=Mjg2NTA0Njc4MA%3d%3d" target="_blank">INVINCIBLE KISS</a> <span style="float:right;"></span></td>" & @CRLF & _ " <td class='trainer'><a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=OTA2NTExMjQ%3d&trainername=Wayne+Seelin" target="_blank">Wayne Seelin</a></td>" & @CRLF & _ " " & @CRLF & _ " <td class='jockey'><a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTEyMjI5Mg%3d%3d" target="_blank"><span class='Hilite'>Grant Buckley</span></a></td>" & @CRLF & _ " " & @CRLF & _ " <td class="barrier">10</td>" & @CRLF & _ " <td class="weight">54.5kg</td>" & @CRLF & _ " " & @CRLF & _ " <td style="color:red" class='penalty'></td>" & @CRLF & _ " " & @CRLF & _ " <td class="penalty"></td>" & @CRLF & _ " <td class="hcp"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow Scratched'>" & @CRLF & _ " <td class="no">11</td>" & @CRLF & _ " <td class="last">7x7x</td>" & @CRLF & _ " " & @CRLF & _ " <td class='horse'><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyOTg1MzQ1Mg%3d%3d&src=horseform&raceentry=Mjg2NTI0Mjk1Ng%3d%3d" target="_blank">POETIC HARMONY</a> <span style="float:right;"></span></td>" & @CRLF & _ " <td class='trainer'><a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=MTE5NjQwNTIw&trainername=Damien+Lane" target="_blank">Damien Lane</a></td>" & @CRLF & _ " " & @CRLF & _ " <td class='jockey'><a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MA%3d%3d" target="_blank"></a></td>" & @CRLF & _ " " & @CRLF & _ " <td class="barrier">9</td>" & @CRLF & _ " <td class="weight">54.5kg</td>" & @CRLF & _ " " & @CRLF & _ " <td style="color:red" class='penalty'></td>" & @CRLF & _ " " & @CRLF & _ " <td class="penalty"></td>" & @CRLF & _ " <td class="hcp"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow Scratched'>" & @CRLF & _ " <td class="no">12</td>" & @CRLF & _ " <td class="last">6346x8</td>" & @CRLF & _ " " & @CRLF & _ " <td class='horse'><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzQ3MTUyNA%3d%3d&src=horseform&raceentry=Mjg2NTIxMzY3Ng%3d%3d" target="_blank">SILK TOUCH</a> <span style="float:right;"></span></td>" & @CRLF & _ " <td class='trainer'><a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=NDM4ODM0MA%3d%3d&trainername=Mike+Van+Gestel" target="_blank">Mike Van Gestel</a></td>" & @CRLF & _ " " & @CRLF & _ " <td class='jockey'><a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MA%3d%3d" target="_blank"></a></td>" & @CRLF & _ " " & @CRLF & _ " <td class="barrier">1</td>" & @CRLF & _ " <td class="weight">54.5kg</td>" & @CRLF & _ " " & @CRLF & _ " <td style="color:red" class='penalty'></td>" & @CRLF & _ " " & @CRLF & _ " <td class="penalty"></td>" & @CRLF & _ " <td class="hcp"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " <td class="no">13e</td>" & @CRLF & _ " <td class="last">8x87x97</td>" & @CRLF & _ " " & @CRLF & _ " <td class='horse'><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTI3OTM2ODEyOA%3d%3d&src=horseform&raceentry=Mjg2NTE5MjY5Mg%3d%3d" target="_blank">PORZ</a> <span style="float:right;"></span></td>" & @CRLF & _ " <td class='trainer'><a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=MjA3MTM5MTY0&trainername=Nicole+Hudson" target="_blank">Nicole Hudson</a></td>" & @CRLF & _ " " & @CRLF & _ " <td class='jockey'><a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTI5NDgwMA%3d%3d" target="_blank">Adrian Layt<span class='apprentice-claim'> (late alt)</span></a></td>" & @CRLF & _ " " & @CRLF & _ " <td class="barrier">12</td>" & @CRLF & _ " <td class="weight">54.5kg</td>" & @CRLF & _ " " & @CRLF & _ " <td style="color:red" class='penalty'></td>" & @CRLF & _ " " & @CRLF & _ " <td class="penalty"></td>" & @CRLF & _ " <td class="hcp"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " </table>" & @CRLF & _ " " & @CRLF & _ " <table border="0" cellspacing="0" cellpadding="0" class="horse-form-table">" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="5"> " & @CRLF & _ " <div class='Silks'>" & @CRLF & _ " <img src="https://racingaustralia.horse/JockeySilks/60913.png" width="46" height="60">" & @CRLF & _ " </div>" & @CRLF & _ " <div class='horse-info'>" & @CRLF & _ " <span class="horse-number">1</span>" & @CRLF & _ " " & @CRLF & _ " <span class="horse-name"><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzU0MzI2MA%3d%3d&src=horseform&raceentry=Mjg2Mzk3MDAwOA%3d%3d" target="_blank">HAUNTING SPIRIT</a></span>" & @CRLF & _ " " & @CRLF & _ " <br />" & @CRLF & _ " <span class="plain">" & @CRLF & _ " 4 year old bay gelding (27-9-2015) <b>Sire:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTcxNTMyNzMy&src=horseform&raceEntry=Mjg2Mzk3MDAwOA%3d%3d' target='_blank'>Snitzel</a> <b>Dam:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjQyMDU5NDY4&src=horseform&raceEntry=Mjg2Mzk3MDAwOA%3d%3d' target='_blank'>Seaside Home (USA)</a> (<a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=Mjk0ODI1Mg%3d%3d&src=horseform&raceEntry=Mjg2Mzk3MDAwOA%3d%3d' target='_blank'>Storm Cat (USA)</a>)" & @CRLF & _ " <a class='PedigreeLink content-link' href='/FreeServices/PedigreeSearch.aspx?horseName=Haunting+Spirit&amp;sireName=Snitzel&amp;damName=Seaside+Home' target='_blank'>View Pedigree Report</a>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Breeder:</b> Burnewang North Pastoral<br>" & @CRLF & _ " <b>Owners:</b> J Ivankovic, J W Daly, B J Forrester, J Gabbiadini, G T Hancock, J D Mcewan, J S Gawley, M A Wilson &amp; A &amp; I Racing (Mgr: I D Heathcote)<br>" & @CRLF & _ " <b>Colours:</b> Blue, Pink Dreamcatcher And Diamonds Sleeves, Blue Cap, Pink Pom Pom" & @CRLF & _ " " & @CRLF & _ " </span>" & @CRLF & _ " </div>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" class='Scratched'>SCRATCHED</td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">&nbsp;</td>" & @CRLF & _ " </tr>" & @CRLF & _ " </table>" & @CRLF & _ " " & @CRLF & _ " <table border="0" cellspacing="0" cellpadding="0" class="horse-form-table">" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="5"> " & @CRLF & _ " <div class='Silks'>" & @CRLF & _ " <img src="https://racingaustralia.horse/JockeySilks/9422.png" width="46" height="60">" & @CRLF & _ " </div>" & @CRLF & _ " <div class='horse-info'>" & @CRLF & _ " <span class="horse-number">2</span>" & @CRLF & _ " " & @CRLF & _ " <span class="horse-name"><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzM5OTc4OA%3d%3d&src=horseform&raceentry=Mjg2NDkzMzU2NA%3d%3d" target="_blank">SETHLANS</a></span>" & @CRLF & _ " <span class="horse-gear">(Blks)</span> " & @CRLF & _ " <br />" & @CRLF & _ " <span class="plain">" & @CRLF & _ " 4 year old brown gelding (29-10-2015) <b>Sire:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTAzODUzNDc2&src=horseform&raceEntry=Mjg2NDkzMzU2NA%3d%3d' target='_blank'>Lonhro</a> <b>Dam:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjA5NDcxMzE2&src=horseform&raceEntry=Mjg2NDkzMzU2NA%3d%3d' target='_blank'>Hestia (GB)</a> (<a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MzE1MzcwMA%3d%3d&src=horseform&raceEntry=Mjg2NDkzMzU2NA%3d%3d' target='_blank'>Machiavellian (USA)</a>)" & @CRLF & _ " <a class='PedigreeLink content-link' href='/FreeServices/PedigreeSearch.aspx?horseName=Sethlans&amp;sireName=Lonhro&amp;damName=Hestia' target='_blank'>View Pedigree Report</a>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Breeder:</b> Darley<br>" & @CRLF & _ " <b>Owners:</b> Godolphin <br>" & @CRLF & _ " <b>Colours:</b> Royal Blue" & @CRLF & _ " " & @CRLF & _ " <br /><b>Gear Changes:</b> Blinkers FIRST TIME" & @CRLF & _ " " & @CRLF & _ " </span>" & @CRLF & _ " </div>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">" & @CRLF & _ " <b>Trainer:</b>" & @CRLF & _ " <b style="color: #000;">" & @CRLF & _ " " & @CRLF & _ " <a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=NTAyNzExOTMxMg%3d%3d&trainername=James+Cummings" target="_blank">James Cummings</a>" & @CRLF & _ " " & @CRLF & _ " </b> (Agnes Banks)&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Jockey:</b>" & @CRLF & _ " <b style="color:#000;">" & @CRLF & _ " " & @CRLF & _ " <a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTcwOTY0MjEy" target="_blank"><span class='Hilite'>Brenton Avdulla</span> 58.5kg</a>" & @CRLF & _ " " & @CRLF & _ " </b>&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Barrier:</b>4" & @CRLF & _ " <br />" & @CRLF & _ " <b>Record:</b> 2:0-0-1&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Prizemoney:</b>$6,100&nbsp;&nbsp;&nbsp;&nbsp;<b>1st Up:</b> 1:0-0-1&nbsp;&nbsp;&nbsp;&nbsp;<b>2nd Up:</b> 1:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <br />" & @CRLF & _ " <b>Track:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Dist:</b> 1:0-0-1&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Track/Dist:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " " & @CRLF & _ " <br />" & @CRLF & _ " <b>Firm:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Good:</b> 2:0-0-1&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Soft:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Heavy:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Synthetic:</b> 0:0-0-0" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">" & @CRLF & _ " <table border="0" cellspacing="1" cellpadding="2" class="horse-last-start">" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'><I><b><font color='black'>T</font></b>6&nbsp;of&nbsp;8</I></td>" & @CRLF & _ " <td class='remain'><I><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2MzkwMzQwOA%3d%3d' target='_blank'>W FM 21Nov18</a></b> 800m Good4 3Y+ MDN-BT $000 <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTY3NTc4OTU2' target='_blank'>Tye Angland</a> 0kg Barrier 0<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzM1MTk2NA%3d%3d&src=horseform' target='_blank'>Cossetot</a></b> 0kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzA3Njk3Ng%3d%3d&src=horseform' target='_blank'>Coolgardie</a></b> 0kg 0:47.90 (600m 34.00), 3.40L </I></td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'><I><b><font color='black'>T</font></b>3&nbsp;of&nbsp;6</I></td>" & @CRLF & _ " <td class='remain'><I><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2Nzg0OTEzMg%3d%3d' target='_blank'>W FM 08Jul19</a></b> 740m Synthetic 3YCGMDN-BT $000 <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTAzMDA5Mjk0MA%3d%3d' target='_blank'>Ms Rachel King</a> 0kg Barrier 0<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyOTA1NjMwNA%3d%3d&src=horseform' target='_blank'>Galiazzo</a></b> 0kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzc2ODcxNg%3d%3d&src=horseform' target='_blank'>Mikhail</a></b> 0kg 0:44.92 (600m 34.37), 2.00L </I></td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'><I><b><font color='black'>T</font></b>2&nbsp;of&nbsp;7</I></td>" & @CRLF & _ " <td class='remain'><I><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2OTUxMjk2OA%3d%3d' target='_blank'>W FM 26Jul19</a></b> 740m Synthetic OPEN-BT $000 <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTExMDMzNg%3d%3d' target='_blank'>Hugh Bowman</a> 0kg Barrier 0<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyMzAwMzY0MA%3d%3d&src=horseform' target='_blank'>Military Academy</a></b> 0kg, 3rd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzQwMTI1Mg%3d%3d&src=horseform' target='_blank'>Segalas</a></b> 0kg 0:43.93 (600m 33.63), 0.80L </I></td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>3&nbsp;of&nbsp;8</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2Njg3MTkxMg%3d%3d' target='_blank'>W FM 31Jul19</a></b> 1100m Good4 3Y MDN $50,000 ($5,000) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTExMDMzNg%3d%3d' target='_blank'>Hugh Bowman</a> 59kg Barrier 3<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzU1Mzk5Ng%3d%3d&src=horseform' target='_blank'>Making Whoopee</a></b> 58kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzU3NTk1Ng%3d%3d&src=horseform' target='_blank'>Rancho Notorious</a></b> 58kg 1:04.29 (600m 34.11), 3.30L, 3rd@800m, 3rd@400m, $4.80/$5/$4.80/$5</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>6&nbsp;of&nbsp;10</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NzgwNDQ4MA%3d%3d' target='_blank'>NCLE 15Aug19</a></b> 1300m Good3 MDN-SW $35,000 ($1,100) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTcwOTY0MjEy' target='_blank'>Brenton Avdulla</a> 59kg Barrier 2<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMDYxNTQ2NA%3d%3d&src=horseform' target='_blank'>Living Rocks</a></b> 54.5kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNjU0MTM5Ng%3d%3d&src=horseform' target='_blank'>Corporal</a></b> 59kg 1:18.75 (600m 34.45), 1.27L, 2nd@800m, 2nd@400m, $4.40/$6/$6.50/$7</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " </table>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">&nbsp;</td>" & @CRLF & _ " </tr>" & @CRLF & _ " </table>" & @CRLF & _ " " & @CRLF & _ " <table border="0" cellspacing="0" cellpadding="0" class="horse-form-table">" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="5"> " & @CRLF & _ " <div class='Silks'>" & @CRLF & _ " <img src="https://racingaustralia.horse/JockeySilks/8814.png" width="46" height="60">" & @CRLF & _ " </div>" & @CRLF & _ " <div class='horse-info'>" & @CRLF & _ " <span class="horse-number">3</span>" & @CRLF & _ " " & @CRLF & _ " <span class="horse-name"><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMDE1ODk0MA%3d%3d&src=horseform&raceentry=Mjg2NDM1ODk0NA%3d%3d" target="_blank">SHAMUSU SHO (NZ)</a></span>" & @CRLF & _ " " & @CRLF & _ " <br />" & @CRLF & _ " <span class="plain">" & @CRLF & _ " 4 year old brown or black gelding (26-10-2015) <b>Sire:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjMzMDgwNzU2&src=horseform&raceEntry=Mjg2NDM1ODk0NA%3d%3d' target='_blank'>Shamus Award</a> <b>Dam:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTkxMzk4OTY4&src=horseform&raceEntry=Mjg2NDM1ODk0NA%3d%3d' target='_blank'>Hiragana</a> (<a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTYzOTg5OTYw&src=horseform&raceEntry=Mjg2NDM1ODk0NA%3d%3d' target='_blank'>Fusaichi Pegasus (USA)</a>)" & @CRLF & _ " <a class='PedigreeLink content-link' href='/FreeServices/PedigreeSearch.aspx?horseName=Shamusu+Sho&amp;sireName=Shamus+Award&amp;damName=Hiragana' target='_blank'>View Pedigree Report</a>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Breeder:</b> Ultra Thoroughbred Racing Pty Ltd<br>" & @CRLF & _ " <b>Owners:</b> R G Seldon, D R Seldon, D G Malcolm, Mrs M J Kallus, J Kallus, M H Wood, Awesome 4 (Mgr: Mrs E J Davies), Mrs D A Worrell, R J Worrell &amp; G Gallico<br>" & @CRLF & _ " <b>Colours:</b> Red, Green And White Checked Sash And Cap" & @CRLF & _ " " & @CRLF & _ " </span>" & @CRLF & _ " </div>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">" & @CRLF & _ " <b>Trainer:</b>" & @CRLF & _ " <b style="color: #000;">" & @CRLF & _ " " & @CRLF & _ " <a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=MTkzMjQzMzY0&trainername=Bjorn+Baker" target="_blank">Bjorn Baker</a>" & @CRLF & _ " " & @CRLF & _ " </b> (Warwick Farm)&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Jockey:</b>" & @CRLF & _ " <b style="color:#000;">" & @CRLF & _ " " & @CRLF & _ " <a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTk4NTY3NDQ0" target="_blank"><span class='Hilite'>Jason Collett</span> 58.5kg</a>" & @CRLF & _ " " & @CRLF & _ " </b>&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Barrier:</b>11" & @CRLF & _ " <br />" & @CRLF & _ " <b>Record:</b> 1:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Prizemoney:</b>$1,300&nbsp;&nbsp;&nbsp;&nbsp;<b>1st Up:</b> 1:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;<b>2nd Up:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <br />" & @CRLF & _ " <b>Track:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Dist:</b> 1:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Track/Dist:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " " & @CRLF & _ " <br />" & @CRLF & _ " <b>Firm:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Good:</b> 1:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Soft:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Heavy:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Synthetic:</b> 0:0-0-0" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">" & @CRLF & _ " <table border="0" cellspacing="1" cellpadding="2" class="horse-last-start">" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'><I><b><font color='black'>T</font></b>3&nbsp;of&nbsp;5</I></td>" & @CRLF & _ " <td class='remain'><I><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NjA0NDAyMA%3d%3d' target='_blank'>CANT 25Feb19</a></b> 893m Soft7 3Y MDN-BT $000 <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTMyMjAwOTA4' target='_blank'>Blake Shinn</a> 0kg Barrier 0<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNjg4MDMxMg%3d%3d&src=horseform' target='_blank'>He's a Hotshot</a></b> 0kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMDI3Njc5Mg%3d%3d&src=horseform' target='_blank'>Nowyunomi (NZ)</a></b> 0kg 0:55.22 (600m 35.90), 3.80L </I></td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'><I><b><font color='black'>T</font></b>8&nbsp;of&nbsp;9</I></td>" & @CRLF & _ " <td class='remain'><I><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NDUxOTc1Mg%3d%3d' target='_blank'>W FM 07Mar19</a></b> 804m Good4 3YCGMDN-BT $000 <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTI5ODcwNA%3d%3d' target='_blank'>Chad Lever</a> 0kg Barrier 0<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzMyMTQ2NA%3d%3d&src=horseform' target='_blank'>Compactor</a></b> 0kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyODI3NDA0MA%3d%3d&src=horseform' target='_blank'>Of All The Luck</a></b> 0kg 0:47.80 (600m 33.89), 10.10L </I></td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'><I><b><font color='black'>T</font></b>1&nbsp;of&nbsp;9</I></td>" & @CRLF & _ " <td class='remain'><I><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2OTUxMjQ4MA%3d%3d' target='_blank'>W FM 26Jul19</a></b> 800m Good4 3Y MDN-BT $000 <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTU4NzYwMA%3d%3d' target='_blank'>Nash Rawiller</a> 0kg Barrier 0<br>2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyOTg0NDkxMg%3d%3d&src=horseform' target='_blank'>Lady Lucienne</a></b> 0kg, 3rd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNjYzMDIxMg%3d%3d&src=horseform' target='_blank'>Cherry Pie</a></b> 0kg 0:48.13 (600m 34.36), 1.00L </I></td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>5&nbsp;of&nbsp;11</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NzgwOTExNg%3d%3d' target='_blank'>GOSF 13Aug19</a></b> 1100m Good4 4Y+ MDN $40,000 ($1,300) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTQ5ODQ1Mjgw' target='_blank'>Tim Clark</a> 58kg Barrier 4<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNjQ0MjU3Ng%3d%3d&src=horseform' target='_blank'>Appian Way</a></b> 55.5kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyODE1MzAxNg%3d%3d&src=horseform' target='_blank'>Serbelloni</a></b> 56kg 1:05.29 (600m 35.99), 1.34L, 5th@800m, 2nd@400m, $8.50/$8/$7.50</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " </table>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">&nbsp;</td>" & @CRLF & _ " </tr>" & @CRLF & _ " </table>" & @CRLF & _ " " & @CRLF & _ " <table border="0" cellspacing="0" cellpadding="0" class="horse-form-table">" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="5"> " & @CRLF & _ " <div class='Silks'>" & @CRLF & _ " <img src="https://racingaustralia.horse/JockeySilks/76752.png" width="46" height="60">" & @CRLF & _ " </div>" & @CRLF & _ " <div class='horse-info'>" & @CRLF & _ " <span class="horse-number">4</span>" & @CRLF & _ " " & @CRLF & _ " <span class="horse-name"><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzc1NzI0OA%3d%3d&src=horseform&raceentry=Mjg2NTA4NzI4NA%3d%3d" target="_blank">THREEOOD</a></span>" & @CRLF & _ " " & @CRLF & _ " <br />" & @CRLF & _ " <span class="plain">" & @CRLF & _ " 4 year old bay mare (20-8-2015) <b>Sire:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjE4OTUzNjQ0&src=horseform&raceEntry=Mjg2NTA4NzI4NA%3d%3d' target='_blank'>Star Witness</a> <b>Dam:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjI2NDI2MTQ0&src=horseform&raceEntry=Mjg2NTA4NzI4NA%3d%3d' target='_blank'>Sencircles</a> (<a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjEyMjI0MTI0&src=horseform&raceEntry=Mjg2NTA4NzI4NA%3d%3d' target='_blank'>Street Sense (USA)</a>)" & @CRLF & _ " <a class='PedigreeLink content-link' href='/FreeServices/PedigreeSearch.aspx?horseName=Threeood&amp;sireName=Star+Witness&amp;damName=Sencircles' target='_blank'>View Pedigree Report</a>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Breeder:</b> Gilgai Farm<br>" & @CRLF & _ " <b>Owners:</b> Tricolours Racing &amp; Syndications Pty Ltd (Mgr: J F Moss), Lucky Eight Racing, Morgcam Racing (Mgr: C C Pickford), PDC (Mgr: C McAusland), C C Pickford, A D Kennedy, D E Menzies, S A Aboud, K Guilfoyle, Mrs M J Cooper, C D Hughes, B A Rickard, Ms P Barry, Mrs M L Sayers, J W Fletcher &amp; T McCaffery <br>" & @CRLF & _ " <b>Colours:</b> Black, Tricolours Logo" & @CRLF & _ " " & @CRLF & _ " </span>" & @CRLF & _ " </div>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" class='Scratched'>SCRATCHED</td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">&nbsp;</td>" & @CRLF & _ " </tr>" & @CRLF & _ " </table>" & @CRLF & _ " " & @CRLF & _ " <table border="0" cellspacing="0" cellpadding="0" class="horse-form-table">" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="5"> " & @CRLF & _ " <div class='Silks'>" & @CRLF & _ " <img src="https://racingaustralia.horse/JockeySilks/7198.png" width="46" height="60">" & @CRLF & _ " </div>" & @CRLF & _ " <div class='horse-info'>" & @CRLF & _ " <span class="horse-number">5</span>" & @CRLF & _ " " & @CRLF & _ " <span class="horse-name"><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyOTY0MDY4NA%3d%3d&src=horseform&raceentry=Mjg2NDk3MzMzNg%3d%3d" target="_blank">DANSK HAVN</a></span>" & @CRLF & _ " " & @CRLF & _ " <br />" & @CRLF & _ " <span class="plain">" & @CRLF & _ " 4 year old chestnut gelding (9-11-2015) <b>Sire:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNjEwMDczMg%3d%3d&src=horseform&raceEntry=Mjg2NDk3MzMzNg%3d%3d' target='_blank'>Harbour Watch (IRE)</a> <b>Dam:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjE1NzgyNjIw&src=horseform&raceEntry=Mjg2NDk3MzMzNg%3d%3d' target='_blank'>Danes Image</a> (<a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTU3NjU3Njcy&src=horseform&raceEntry=Mjg2NDk3MzMzNg%3d%3d' target='_blank'>Dane Shadow</a>)" & @CRLF & _ " <a class='PedigreeLink content-link' href='/FreeServices/PedigreeSearch.aspx?horseName=Dansk+Havn&amp;sireName=Harbour+Watch&amp;damName=Danes+Image' target='_blank'>View Pedigree Report</a>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Breeder:</b> Mr P A Hutcheson<br>" & @CRLF & _ " <b>Owners:</b> P A Hutcheson, B Fitz-Gibbon, Mrs G M Fitz-Gibbon, N G Child &amp; W M Dunn <br>" & @CRLF & _ " <b>Colours:</b> Pale Green, White Star, Black And White Hooped Sleeves" & @CRLF & _ " " & @CRLF & _ " </span>" & @CRLF & _ " </div>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">" & @CRLF & _ " <b>Trainer:</b>" & @CRLF & _ " <b style="color: #000;">" & @CRLF & _ " " & @CRLF & _ " <a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=NDE0MjYzMg%3d%3d&trainername=Ken+Lantry" target="_blank">Ken Lantry</a>" & @CRLF & _ " " & @CRLF & _ " </b> (Newcastle)&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Jockey:</b>" & @CRLF & _ " <b style="color:#000;">" & @CRLF & _ " " & @CRLF & _ " <a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTYzODM4NDM2" target="_blank"><span class='Hilite'>Luke Cumberland</span> 57.5kg</a>" & @CRLF & _ " " & @CRLF & _ " </b>&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Barrier:</b>5" & @CRLF & _ " <br />" & @CRLF & _ " <b>Record:</b> 5:0-1-2&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Prizemoney:</b>$8,700&nbsp;&nbsp;&nbsp;&nbsp;<b>1st Up:</b> 1:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;<b>2nd Up:</b> 1:0-1-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <br />" & @CRLF & _ " <b>Track:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Dist:</b> 2:0-1-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Track/Dist:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " " & @CRLF & _ " <br />" & @CRLF & _ " <b>Firm:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Good:</b> 1:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Soft:</b> 4:0-1-2&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Heavy:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Synthetic:</b> 0:0-0-0" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">" & @CRLF & _ " <table border="0" cellspacing="1" cellpadding="2" class="horse-last-start">" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>9&nbsp;of&nbsp;12</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2MzQzODU4OA%3d%3d' target='_blank'>SCNE 22Feb19</a></b> 1100m Good4 3Y MDN-SW $22,000 ($500) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTIyOTMzNzYzNg%3d%3d' target='_blank'>Ms Amelia Denby</a> 57kg Barrier 9<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzY5NjQ5Mg%3d%3d&src=horseform' target='_blank'>Fritz's Factor</a></b> 55kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzU3MTA3Ng%3d%3d&src=horseform' target='_blank'>Rothman</a></b> 57kg 1:03.73 (600m 33.74), 10.47L, 5th@800m, 5th@400m, $151/$151</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>2&nbsp;of&nbsp;8</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2Mzk3NDE2OA%3d%3d' target='_blank'>P MQ 30Mar19</a></b> 1108m Soft6 CG&E MDN-SW $12,000 ($2,020) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTAzMzc0MzE4MA%3d%3d' target='_blank'>Ms Louise Day (a)</a> 58.5kg (cd 57kg) Barrier 1<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyODM5OTQ1Ng%3d%3d&src=horseform' target='_blank'>Enseguida</a></b> 58.5kg, 3rd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzAxMDYwOA%3d%3d&src=horseform' target='_blank'>Lightsontheharbour</a></b> 57kg 1:07.81 (600m 36.68), 1.41L, 3rd@800m, 3rd@400m, $21/$12/$14/$13</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>3&nbsp;of&nbsp;12</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NDc0NTY5Ng%3d%3d' target='_blank'>P MQ 26Apr19</a></b> 1006m Soft7 3Y MDN $22,000 ($2,100) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTAzMzc0MzE4MA%3d%3d' target='_blank'>Ms Louise Day (a)</a> 58kg (cd 56.5kg) Barrier 1<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyODI0MTgzMg%3d%3d&src=horseform' target='_blank'>Rebecca's Quest</a></b> 57kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyODM4NDA4NA%3d%3d&src=horseform' target='_blank'>Margie Bee</a></b> 56kg 1:00.81 (600m 35.73), 1.44L, 6th@800m, 3rd@400m, $7.50/$8/$8/$7.50</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>4&nbsp;of&nbsp;9</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NTU0Njc0OA%3d%3d' target='_blank'>NCLE 04May19</a></b> 1200m Soft5 CGE MDN-SW $35,000 ($1,980) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTAzMjA3OTM0NA%3d%3d' target='_blank'>Ms Mikayla Weir (a)</a> 59kg (cd 57kg) Barrier 5<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjM5ODAxNzM2&src=horseform' target='_blank'>He's Elusive</a></b> 59kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNjY0NzA0OA%3d%3d&src=horseform' target='_blank'>Cry of Achilles</a></b> 59kg 1:12.52 (600m 35.05), 0.74L, 2nd@800m, 1st@400m, $5.50/$5/$4.80/$4.60</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>3&nbsp;of&nbsp;11</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NTU3NzQ5Mg%3d%3d' target='_blank'>P MQ 20May19</a></b> 1200m Soft6 CG&E MDN $22,000 ($2,100) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTg3MjY0NjMy' target='_blank'>Matthew McGuren</a> 58.5kg Barrier 2<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMjMyOTgwOA%3d%3d&src=horseform' target='_blank'>Controlthewitness</a></b> 55kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjM4OTg2NTMy&src=horseform' target='_blank'>Birkdale</a></b> 59kg 1:14.63 (600m 35.88), 1.55L, 1st@800m, 1st@400m, $2.10/$2.20/$2.15/$2.10F</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " </table>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">&nbsp;</td>" & @CRLF & _ " </tr>" & @CRLF & _ " </table>" & @CRLF & _ " " & @CRLF & _ " <table border="0" cellspacing="0" cellpadding="0" class="horse-form-table">" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="5"> " & @CRLF & _ " <div class='Silks'>" & @CRLF & _ " <img src="https://racingaustralia.horse/JockeySilks/4766.png" width="46" height="60">" & @CRLF & _ " </div>" & @CRLF & _ " <div class='horse-info'>" & @CRLF & _ " <span class="horse-number">6</span>" & @CRLF & _ " " & @CRLF & _ " <span class="horse-name"><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzA2NDI4OA%3d%3d&src=horseform&raceentry=Mjg2NDE4MzAyMA%3d%3d" target="_blank">CINDERS</a></span>" & @CRLF & _ " " & @CRLF & _ " <br />" & @CRLF & _ " <span class="plain">" & @CRLF & _ " 4 year old bay mare (14-9-2015) <b>Sire:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjExMTk4ODM2&src=horseform&raceEntry=Mjg2NDE4MzAyMA%3d%3d' target='_blank'>Bernardini (USA)</a> <b>Dam:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjIxNDU3ODE2&src=horseform&raceEntry=Mjg2NDE4MzAyMA%3d%3d' target='_blank'>Direct Flight</a> (<a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=OTUxNjI5Mjg%3d&src=horseform&raceEntry=Mjg2NDE4MzAyMA%3d%3d' target='_blank'>Danehill Dancer (IRE)</a>)" & @CRLF & _ " <a class='PedigreeLink content-link' href='/FreeServices/PedigreeSearch.aspx?horseName=Cinders&amp;sireName=Bernardini&amp;damName=Direct+Flight' target='_blank'>View Pedigree Report</a>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Breeder:</b> Hutchins Thoroughbreds<br>" & @CRLF & _ " <b>Owners:</b> A R Davison <br>" & @CRLF & _ " <b>Colours:</b> Green, Purple Spots, White Sleeves And Cap" & @CRLF & _ " " & @CRLF & _ " </span>" & @CRLF & _ " </div>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">" & @CRLF & _ " <b>Trainer:</b>" & @CRLF & _ " <b style="color: #000;">" & @CRLF & _ " " & @CRLF & _ " <a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=NDIyNDM3Mg%3d%3d&trainername=Lee+Curtis" target="_blank">Lee Curtis</a>" & @CRLF & _ " " & @CRLF & _ " </b> (Rosehill)&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Jockey:</b>" & @CRLF & _ " <b style="color:#000;">" & @CRLF & _ " " & @CRLF & _ " <a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTI5ODcwNA%3d%3d" target="_blank"><span class='Hilite'>Chad Lever</span> 56.5kg</a>" & @CRLF & _ " " & @CRLF & _ " </b>&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Barrier:</b>13" & @CRLF & _ " <br />" & @CRLF & _ " <b>Record:</b> 1:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Prizemoney:</b>$2,000&nbsp;&nbsp;&nbsp;&nbsp;<b>1st Up:</b> 1:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;<b>2nd Up:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <br />" & @CRLF & _ " <b>Track:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Dist:</b> 1:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Track/Dist:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " " & @CRLF & _ " <br />" & @CRLF & _ " <b>Firm:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Good:</b> 1:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Soft:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Heavy:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Synthetic:</b> 0:0-0-0" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">" & @CRLF & _ " <table border="0" cellspacing="1" cellpadding="2" class="horse-last-start">" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'><I><b><font color='black'>T</font></b>1&nbsp;of&nbsp;3</I></td>" & @CRLF & _ " <td class='remain'><I><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI1NTUxNTY2NA%3d%3d' target='_blank'>HAWK 13Nov17</a></b> 760m Good3 2Y-BT $000 <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MjA0NjMyNTUy' target='_blank'>Ms Winona Costin</a> 0kg Barrier 0<br>2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNjk1Mjc4MA%3d%3d&src=horseform' target='_blank'>Kapow</a></b> 0kg, 3rd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzA5NTAzMg%3d%3d&src=horseform' target='_blank'>Lord Chalfont</a></b> 0kg 0:45.45, 0.24L </I></td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'><I><b><font color='black'>T</font></b>3&nbsp;of&nbsp;5</I></td>" & @CRLF & _ " <td class='remain'><I><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI1NTgwNjUxMg%3d%3d' target='_blank'>RHIL 24Nov17</a></b> 901m Good4 2YF-BT $000 <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MjA0NjMyNTUy' target='_blank'>Ms Winona Costin</a> 0kg Barrier 0<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzYyOTYzNg%3d%3d&src=horseform' target='_blank'>Sweet Ava</a></b> 0kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyODI5MzMxNg%3d%3d&src=horseform' target='_blank'>Dream Child</a></b> 0kg 0:54.20 (600m 35.30), 0.70L </I></td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>8&nbsp;of&nbsp;8</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI1NDg4NTE2OA%3d%3d' target='_blank'>RHIL 09Dec17</a></b> 1100m Good4 2Y HCP $100,000 ($2,000) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MjA0NjMyNTUy' target='_blank'>Ms Winona Costin</a> 56kg Barrier 4<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzM2MDUwNA%3d%3d&src=horseform' target='_blank'>Gongs</a></b> 58kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyOTM2MTc5Mg%3d%3d&src=horseform' target='_blank'>Orcein</a></b> 58kg 1:04.83 (600m 34.78), 9.00L, 8th@800m, 8th@400m, $51/$81/$91/$101</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'><I><b><font color='black'>T</font></b>4&nbsp;of&nbsp;7</I></td>" & @CRLF & _ " <td class='remain'><I><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2OTg1Njc2NA%3d%3d' target='_blank'>RHIL 06Aug19</a></b> 900m Good4 3Y+ F/M MDN-BT $000 <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTI1MjUwMDgw' target='_blank'>Glyn Schofield</a> 0kg Barrier 0<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMDkwMDk0NA%3d%3d&src=horseform' target='_blank'>Bright Rubick</a></b> 0kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMTY5NjYyOA%3d%3d&src=horseform' target='_blank'>Dulcero</a></b> 0kg 0:55.11 (600m 35.70), 3.40L </I></td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'><I><b><font color='black'>T</font></b>7&nbsp;of&nbsp;9</I></td>" & @CRLF & _ " <td class='remain'><I><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI3MDM0NDAzMg%3d%3d' target='_blank'>RHIL 20Aug19</a></b> 893m Good4 3Y+F/M MDN-BT $000 <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTI1MjUwMDgw' target='_blank'>Glyn Schofield</a> 0kg Barrier 0<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMTcwOTMxNg%3d%3d&src=horseform' target='_blank'>Sally's Day</a></b> 0kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMTE1MDA2OA%3d%3d&src=horseform' target='_blank'>Kahlo</a></b> 0kg 0:56.06 (600m 36.30), 2.00L </I></td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " </table>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">&nbsp;</td>" & @CRLF & _ " </tr>" & @CRLF & _ " </table>" & @CRLF & _ " " & @CRLF & _ " <table border="0" cellspacing="0" cellpadding="0" class="horse-form-table">" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="5"> " & @CRLF & _ " <div class='Silks'>" & @CRLF & _ " <img src="https://racingaustralia.horse/JockeySilks/6351.png" width="46" height="60">" & @CRLF & _ " </div>" & @CRLF & _ " <div class='horse-info'>" & @CRLF & _ " <span class="horse-number">7</span>" & @CRLF & _ " " & @CRLF & _ " <span class="horse-name"><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyOTY5MjE2OA%3d%3d&src=horseform&raceentry=Mjg2NTA5NjU1Ng%3d%3d" target="_blank">ROCKAWAY PRINCESS</a></span>" & @CRLF & _ " " & @CRLF & _ " <br />" & @CRLF & _ " <span class="plain">" & @CRLF & _ " 4 year old brown mare (22-10-2015) <b>Sire:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTk0MDA0ODg4&src=horseform&raceEntry=Mjg2NTA5NjU1Ng%3d%3d' target='_blank'>All American</a> <b>Dam:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTg1MzM3Mjc2&src=horseform&raceEntry=Mjg2NTA5NjU1Ng%3d%3d' target='_blank'>Lou&rsquo;s Princess</a> (<a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=OTYzMDY1NTY%3d&src=horseform&raceEntry=Mjg2NTA5NjU1Ng%3d%3d' target='_blank'>Commands</a>)" & @CRLF & _ " <a class='PedigreeLink content-link' href='/FreeServices/PedigreeSearch.aspx?horseName=Rockaway+Princess&amp;sireName=All+American&amp;damName=Lou%27s+Princess' target='_blank'>View Pedigree Report</a>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Breeder:</b> Mr W Essey<br>" & @CRLF & _ " <b>Owners:</b> J C Coyle, M J Hayne, Mrs M C Hayne, Mrs L A Smith, M G Smith, M W Jones, Mrs L R Jones, Mrs S M Taylor, H K Wood, A Bradley, M B Woodham, M J Williams, Loudon Racing (Mgr: M Mcilveen), Kiwi Maple Bloodstock (Mgr: S Ngo) &amp; Act 2 Thoroughbred Investments (Mgr: G L Lewis)<br>" & @CRLF & _ " <b>Colours:</b> Navy Blue, Grey Maltese Cross, Black Sleeves, White Cap" & @CRLF & _ " " & @CRLF & _ " </span>" & @CRLF & _ " </div>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" class='Scratched'>SCRATCHED</td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">&nbsp;</td>" & @CRLF & _ " </tr>" & @CRLF & _ " </table>" & @CRLF & _ " " & @CRLF & _ " <table border="0" cellspacing="0" cellpadding="0" class="horse-form-table">" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="5"> " & @CRLF & _ " <div class='Silks'>" & @CRLF & _ " <img src="https://racingaustralia.horse/JockeySilks/1628.png" width="46" height="60">" & @CRLF & _ " </div>" & @CRLF & _ " <div class='horse-info'>" & @CRLF & _ " <span class="horse-number">8</span>" & @CRLF & _ " " & @CRLF & _ " <span class="horse-name"><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzAwNzkyNA%3d%3d&src=horseform&raceentry=Mjg2NTA4Nzc3Mg%3d%3d" target="_blank">NATURE</a></span>" & @CRLF & _ " " & @CRLF & _ " <br />" & @CRLF & _ " <span class="plain">" & @CRLF & _ " 4 year old bay mare (28-10-2015) <b>Sire:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjMyNjQwODI0&src=horseform&raceEntry=Mjg2NTA4Nzc3Mg%3d%3d' target='_blank'>Dream Ahead (USA)</a> <b>Dam:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjI2NzMxMTQ0&src=horseform&raceEntry=Mjg2NTA4Nzc3Mg%3d%3d' target='_blank'>Cavalry Rose</a> (<a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTYzNDM3MzAw&src=horseform&raceEntry=Mjg2NTA4Nzc3Mg%3d%3d' target='_blank'>Charge Forward</a>)" & @CRLF & _ " <a class='PedigreeLink content-link' href='/FreeServices/PedigreeSearch.aspx?horseName=Nature&amp;sireName=Dream+Ahead&amp;damName=Cavalry+Rose' target='_blank'>View Pedigree Report</a>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Breeder:</b> Emirates Park Pty Ltd<br>" & @CRLF & _ " <b>Owners:</b> Newhaven Park (Mgr: R J Kelly)<br>" & @CRLF & _ " <b>Colours:</b> Black, Green Sash, Red Sleeves, White Cap" & @CRLF & _ " " & @CRLF & _ " </span>" & @CRLF & _ " </div>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">" & @CRLF & _ " <b>Trainer:</b>" & @CRLF & _ " <b style="color: #000;">" & @CRLF & _ " " & @CRLF & _ " <a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=MTIyOTMyMzI0&trainername=Joseph+Pride" target="_blank">Joseph Pride</a>" & @CRLF & _ " " & @CRLF & _ " </b> (Warwick Farm)&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Jockey:</b>" & @CRLF & _ " <b style="color:#000;">" & @CRLF & _ " " & @CRLF & _ " <a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTU4NzYwMA%3d%3d" target="_blank"><span class='Hilite'>Nash Rawiller</span> 56kg</a>" & @CRLF & _ " " & @CRLF & _ " </b>&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Barrier:</b>2" & @CRLF & _ " <br />" & @CRLF & _ " <b>Record:</b> 6:0-1-3&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Prizemoney:</b>$20,930&nbsp;&nbsp;&nbsp;&nbsp;<b>1st Up:</b> 2:0-1-0&nbsp;&nbsp;&nbsp;&nbsp;<b>2nd Up:</b> 2:0-0-2&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <br />" & @CRLF & _ " <b>Track:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Dist:</b> 1:0-0-1&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Track/Dist:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " " & @CRLF & _ " <br />" & @CRLF & _ " <b>Firm:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Good:</b> 4:0-0-2&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Soft:</b> 2:0-1-1&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Heavy:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Synthetic:</b> 0:0-0-0" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">" & @CRLF & _ " <table border="0" cellspacing="1" cellpadding="2" class="horse-last-start">" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>3&nbsp;of&nbsp;8</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2Mzg0Nzc3Ng%3d%3d' target='_blank'>HAWK 24Feb19</a></b> 1100m Soft5 MDN $40,000 ($3,750) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTk1OTc0MjEy' target='_blank'>Sam Clipperton</a> 56.5kg Barrier 4<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzEwNjc0NA%3d%3d&src=horseform' target='_blank'>Zelrosa</a></b> 57kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjQ1MDI0NTU2&src=horseform' target='_blank'>Impurity</a></b> 55.5kg 1:03.92 (600m 33.97), 2.69L, 5th@800m, 3rd@400m, $12/$16/$17/$18</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>6&nbsp;of&nbsp;9</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2Mzg2MDIyMA%3d%3d' target='_blank'>W FM 13Mar19</a></b> 1200m Good4 3YF MDN-SW $50,000 ($1,650) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTk1OTc0MjEy' target='_blank'>Sam Clipperton</a> 56kg Barrier 9<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyOTQzMjc5Ng%3d%3d&src=horseform' target='_blank'>Fasika</a></b> 56kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNjY5NzMxMg%3d%3d&src=horseform' target='_blank'>Got Your Six</a></b> 56kg 1:10.55 (600m 34.96), 6.90L, 8th@800m, 9th@400m, $51/$61/$71</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'><I><b><font color='black'>T</font></b>3&nbsp;of&nbsp;8</I></td>" & @CRLF & _ " <td class='remain'><I><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2ODc1OTAwOA%3d%3d' target='_blank'>W FM 21Jun19</a></b> 798m Soft6 3Y+ MDN-BT $000 <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTA0MTM3NzY5Ng%3d%3d' target='_blank'>Robbie Dolan (a)</a> 0kg Barrier 0<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMTc0OTU3Ng%3d%3d&src=horseform' target='_blank'>The Light Of Day (NZ)</a></b> 0kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNjk0OTEyMA%3d%3d&src=horseform' target='_blank'>Sunsuzie</a></b> 0kg 0:49.20 (600m 35.22), 2.60L </I></td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'><I><b><font color='black'>T</font></b>6&nbsp;of&nbsp;6</I></td>" & @CRLF & _ " <td class='remain'><I><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2Nzg0ODg4OA%3d%3d' target='_blank'>W FM 08Jul19</a></b> 740m Synthetic 3YF MDN-BT $000 <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTU4NzYwMA%3d%3d' target='_blank'>Nash Rawiller</a> 0kg Barrier 0<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNjc0NjExMg%3d%3d&src=horseform' target='_blank'>Princess Siri</a></b> 0kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMTc0OTU3Ng%3d%3d&src=horseform' target='_blank'>The Light Of Day (NZ)</a></b> 0kg 0:44.34 (600m 34.00), 1.90L </I></td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>2&nbsp;of&nbsp;11</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2Njg0NjI5Mg%3d%3d' target='_blank'>GOSF 18Jul19</a></b> 1000m Soft5 MDN $40,000 ($7,150) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTA0MTM3NzY5Ng%3d%3d' target='_blank'>Robbie Dolan (a)</a> 57.5kg Barrier 1<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMjY3MDY3Ng%3d%3d&src=horseform' target='_blank'>Battle Guardian</a></b> 57.5kg, 3rd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMjE1MjkwOA%3d%3d&src=horseform' target='_blank'>New Day</a></b> 56kg 0:59.01 (600m 35.84), 1.22L, 9th@800m, 7th@400m, $4.40/$4.80/$5/$5.50</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>3&nbsp;of&nbsp;6</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2Nzc5ODM4MA%3d%3d' target='_blank'>K GR 08Aug19</a></b> 1000m Good4 F&M MDN $35,000 ($3,200) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTQ5ODQ1Mjgw' target='_blank'>Tim Clark</a> 58kg Barrier 1<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMDY4MjA3Ng%3d%3d&src=horseform' target='_blank'>Super Oasis</a></b> 57kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMTAyMDI2MA%3d%3d&src=horseform' target='_blank'>Maisaa</a></b> 57kg 0:59.59 (600m 33.75), 1.80L, 6th@800m, 6th@400m, $7.50/$10/$11/$12</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>3&nbsp;of&nbsp;11</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NzgwNDk2OA%3d%3d' target='_blank'>NCLE 24Aug19</a></b> 1200m Good4 MDN $35,000 ($3,200) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTU4ODMzMg%3d%3d' target='_blank'>Christian Reith</a> 55kg Barrier 8<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMDYwODg3Ng%3d%3d&src=horseform' target='_blank'>Mayaaseh</a></b> 54kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMTkxODE4MA%3d%3d&src=horseform' target='_blank'>Muiron</a></b> 55kg 1:11.38 (600m 34.43), 0.56L, 10th@800m, 8th@400m, $9/$8/$9.50/$10</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " </table>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">&nbsp;</td>" & @CRLF & _ " </tr>" & @CRLF & _ " </table>" & @CRLF & _ " " & @CRLF & _ " <table border="0" cellspacing="0" cellpadding="0" class="horse-form-table">" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="5"> " & @CRLF & _ " <div class='Silks'>" & @CRLF & _ " <img src="https://racingaustralia.horse/JockeySilks/7359.png" width="46" height="60">" & @CRLF & _ " </div>" & @CRLF & _ " <div class='horse-info'>" & @CRLF & _ " <span class="horse-number">9</span>" & @CRLF & _ " " & @CRLF & _ " <span class="horse-name"><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyODA4ODg0NA%3d%3d&src=horseform&raceentry=Mjg2Mzk2NzU2OA%3d%3d" target="_blank">HIEMAL</a></span>" & @CRLF & _ " " & @CRLF & _ " <br />" & @CRLF & _ " <span class="plain">" & @CRLF & _ " 4 year old bay gelding (3-10-2015) <b>Sire:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTU2OTEyMjUy&src=horseform&raceEntry=Mjg2Mzk2NzU2OA%3d%3d' target='_blank'>Exceed And Excel</a> <b>Dam:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjA3NjE1OTQw&src=horseform&raceEntry=Mjg2Mzk2NzU2OA%3d%3d' target='_blank'>Arctic Drift (USA)</a> (<a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=Mjg1MjExNg%3d%3d&src=horseform&raceEntry=Mjg2Mzk2NzU2OA%3d%3d' target='_blank'>Gone West (USA)</a>)" & @CRLF & _ " <a class='PedigreeLink content-link' href='/FreeServices/PedigreeSearch.aspx?horseName=Hiemal&amp;sireName=Exceed+And+Excel&amp;damName=Arctic+Drift' target='_blank'>View Pedigree Report</a>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Breeder:</b> Darley<br>" & @CRLF & _ " <b>Owners:</b> M P Johnston &amp; G Nickson<br>" & @CRLF & _ " <b>Colours:</b> Pink, Black Seams, Striped Cap" & @CRLF & _ " " & @CRLF & _ " </span>" & @CRLF & _ " </div>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">" & @CRLF & _ " <b>Trainer:</b>" & @CRLF & _ " <b style="color: #000;">" & @CRLF & _ " " & @CRLF & _ " <a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=Mzc0MTQ5Ng%3d%3d&trainername=Gary+Nickson" target="_blank">Gary Nickson</a>" & @CRLF & _ " " & @CRLF & _ " </b> (Warwick Farm)&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Jockey:</b>" & @CRLF & _ " <b style="color:#000;">" & @CRLF & _ " " & @CRLF & _ " <a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTA5MDU3Mg%3d%3d" target="_blank"><span class='Hilite'>Andrew Banks</span> 55kg</a>" & @CRLF & _ " " & @CRLF & _ " </b>&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Barrier:</b>3" & @CRLF & _ " <br />" & @CRLF & _ " <b>Record:</b> 14:0-2-4&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Prizemoney:</b>$37,500&nbsp;&nbsp;&nbsp;&nbsp;<b>1st Up:</b> 5:0-1-2&nbsp;&nbsp;&nbsp;&nbsp;<b>2nd Up:</b> 4:0-0-1&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <br />" & @CRLF & _ " <b>Track:</b> 1:0-0-1&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Dist:</b> 1:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Track/Dist:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " " & @CRLF & _ " <br />" & @CRLF & _ " <b>Firm:</b> 1:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Good:</b> 8:0-1-2&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Soft:</b> 4:0-0-2&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Heavy:</b> 1:0-1-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Synthetic:</b> 0:0-0-0" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">" & @CRLF & _ " <table border="0" cellspacing="1" cellpadding="2" class="horse-last-start">" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>4&nbsp;of&nbsp;9</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2MzE1NTU0OA%3d%3d' target='_blank'>CESS 08Jan19</a></b> 1350m Firm2 MDN $22,000 ($1,100) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTI5NDgwMA%3d%3d' target='_blank'>Adrian Layt</a> 58kg Barrier 1<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyMjY0MjUyMA%3d%3d&src=horseform' target='_blank'>Faith in Kind</a></b> 56kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNDczMjg2OA%3d%3d&src=horseform' target='_blank'>Equiseta</a></b> 56.5kg 1:20.85 (600m 35.18), 2.06L, 1st@800m, 1st@400m, $2.10/$1.95/$1.90/$1.85F</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>2&nbsp;of&nbsp;10</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2MzA1NDI4OA%3d%3d' target='_blank'>PRKS 31Jan19</a></b> 1200m Good3 MDN $22,000 ($3,900) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTA5MDU3Mg%3d%3d' target='_blank'>Andrew Banks</a> 57kg Barrier 9<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjQ1ODQ0NjQw&src=horseform' target='_blank'>Phenomenal Spirit</a></b> 51kg, 3rd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjQxMTAzNzIw&src=horseform' target='_blank'>Caszar</a></b> 58.5kg 1:09.60, 0.13L, 2nd@800m, 2nd@400m, $3.30/$3.50/$2.80/$2.70F</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>6&nbsp;of&nbsp;10</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2MzU2Mjc4NA%3d%3d' target='_blank'>QBYN 11Feb19</a></b> 1200m Good3 MDN $22,000 ($540) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTA5MDU3Mg%3d%3d' target='_blank'>Andrew Banks</a> 59kg Barrier 6<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMTk3MjM0OA%3d%3d&src=horseform' target='_blank'>Cook Straight (NZ)</a></b> 55.5kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyOTQ4MTM1Mg%3d%3d&src=horseform' target='_blank'>Monte Majura</a></b> 55.5kg 1:10.50 (600m 34.83), 3.07L, 1st@800m, 1st@400m, $2.80/$3.40/$3.50/$3.30</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>2&nbsp;of&nbsp;7</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NjA5NTI2MA%3d%3d' target='_blank'>K GR 27Jun19</a></b> 1000m Heavy10 3Y MDN $35,000 ($6,000) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTA5MDU3Mg%3d%3d' target='_blank'>Andrew Banks</a> 54kg Barrier 4<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyOTg0NjYyMA%3d%3d&src=horseform' target='_blank'>Fearless Mila</a></b> 56kg, 3rd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzc5OTk0OA%3d%3d&src=horseform' target='_blank'>Freefica</a></b> 56kg 0:58.88 (600m 35.00), 0.20L, 2nd@800m, 2nd@400m, $7.50/$10/$11/$12</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>3&nbsp;of&nbsp;7</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NjgyMDY3Mg%3d%3d' target='_blank'>K GR 11Jul19</a></b> 1000m Soft6 MDN $35,000 ($3,200) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTA5MDU3Mg%3d%3d' target='_blank'>Andrew Banks</a> 55.5kg Barrier 2<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzk3Njg0OA%3d%3d&src=horseform' target='_blank'>Dunbrody Power</a></b> 59kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyODYzNjYyNA%3d%3d&src=horseform' target='_blank'>Romantic Queen</a></b> 57kg 1:00.48 (600m 34.92), 1.20L, 1st@800m, 1st@400m, $3.60/$3.80/$3.10/$3.20</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " </table>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">&nbsp;</td>" & @CRLF & _ " </tr>" & @CRLF & _ " </table>" & @CRLF & _ " " & @CRLF & _ " <table border="0" cellspacing="0" cellpadding="0" class="horse-form-table">" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="5"> " & @CRLF & _ " <div class='Silks'>" & @CRLF & _ " <img src="https://racingaustralia.horse/JockeySilks/7069.png" width="46" height="60">" & @CRLF & _ " </div>" & @CRLF & _ " <div class='horse-info'>" & @CRLF & _ " <span class="horse-number">10</span>" & @CRLF & _ " " & @CRLF & _ " <span class="horse-name"><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNjA2MDQ3Mg%3d%3d&src=horseform&raceentry=Mjg2NTA0Njc4MA%3d%3d" target="_blank">INVINCIBLE KISS</a></span>" & @CRLF & _ " " & @CRLF & _ " <br />" & @CRLF & _ " <span class="plain">" & @CRLF & _ " 5 year old bay mare (4-11-2014) <b>Sire:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTg1MDUyNTI4&src=horseform&raceEntry=Mjg2NTA0Njc4MA%3d%3d' target='_blank'>I Am Invincible</a> <b>Dam:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjMwMzIxODQ4&src=horseform&raceEntry=Mjg2NTA0Njc4MA%3d%3d' target='_blank'>Ovillers</a> (<a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjE3MzUyNzYw&src=horseform&raceEntry=Mjg2NTA0Njc4MA%3d%3d' target='_blank'>Henrythenavigator (USA)</a>)" & @CRLF & _ " <a class='PedigreeLink content-link' href='/FreeServices/PedigreeSearch.aspx?horseName=Invincible+Kiss&amp;sireName=I+Am+Invincible&amp;damName=Ovillers' target='_blank'>View Pedigree Report</a>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Breeder:</b> Dr R McClenahan<br>" & @CRLF & _ " <b>Owners:</b> T E Yano, Mrs K Yano &amp; U Yano <br>" & @CRLF & _ " <b>Colours:</b> Pale Blue, Pink Star, Sleeves And Cap" & @CRLF & _ " " & @CRLF & _ " </span>" & @CRLF & _ " </div>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" class='Scratched'>SCRATCHED</td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">&nbsp;</td>" & @CRLF & _ " </tr>" & @CRLF & _ " </table>" & @CRLF & _ " " & @CRLF & _ " <table border="0" cellspacing="0" cellpadding="0" class="horse-form-table">" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="5"> " & @CRLF & _ " <div class='Silks'>" & @CRLF & _ " <img src="https://racingaustralia.horse/JockeySilks/69218.png" width="46" height="60">" & @CRLF & _ " </div>" & @CRLF & _ " <div class='horse-info'>" & @CRLF & _ " <span class="horse-number">11</span>" & @CRLF & _ " " & @CRLF & _ " <span class="horse-name"><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyOTg1MzQ1Mg%3d%3d&src=horseform&raceentry=Mjg2NTI0Mjk1Ng%3d%3d" target="_blank">POETIC HARMONY</a></span>" & @CRLF & _ " " & @CRLF & _ " <br />" & @CRLF & _ " <span class="plain">" & @CRLF & _ " 4 year old brown mare (24-11-2015) <b>Sire:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjMzNDMzNTgw&src=horseform&raceEntry=Mjg2NTI0Mjk1Ng%3d%3d' target='_blank'>Poet&rsquo;s Voice (GB)</a> <b>Dam:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjExNjI1MTA0&src=horseform&raceEntry=Mjg2NTI0Mjk1Ng%3d%3d' target='_blank'>Anemometer (GB)</a> (<a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTA2OTE4ODQ4&src=horseform&raceEntry=Mjg2NTI0Mjk1Ng%3d%3d' target='_blank'>Sunday Silence (USA)</a>)" & @CRLF & _ " <a class='PedigreeLink content-link' href='/FreeServices/PedigreeSearch.aspx?horseName=Poetic+Harmony&amp;sireName=Poet%27s+Voice&amp;damName=Anemometer' target='_blank'>View Pedigree Report</a>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Breeder:</b> Mrs M Hirsch<br>" & @CRLF & _ " <b>Owners:</b> E Hirsch &amp; Mrs M Hirsch <br>" & @CRLF & _ " <b>Colours:</b> Gold, Black Motif, Collar And Sleeves, Gold And Black Motif Cap" & @CRLF & _ " " & @CRLF & _ " </span>" & @CRLF & _ " </div>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" class='Scratched'>SCRATCHED</td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">&nbsp;</td>" & @CRLF & _ " </tr>" & @CRLF & _ " </table>" & @CRLF & _ " " & @CRLF & _ " <table border="0" cellspacing="0" cellpadding="0" class="horse-form-table">" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="5"> " & @CRLF & _ " <div class='Silks'>" & @CRLF & _ " <img src="https://racingaustralia.horse/JockeySilks/11261.png" width="46" height="60">" & @CRLF & _ " </div>" & @CRLF & _ " <div class='horse-info'>" & @CRLF & _ " <span class="horse-number">12</span>" & @CRLF & _ " " & @CRLF & _ " <span class="horse-name"><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzQ3MTUyNA%3d%3d&src=horseform&raceentry=Mjg2NTIxMzY3Ng%3d%3d" target="_blank">SILK TOUCH</a></span>" & @CRLF & _ " " & @CRLF & _ " <br />" & @CRLF & _ " <span class="plain">" & @CRLF & _ " 4 year old bay mare (12-10-2015) <b>Sire:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjM3NDEzNDY0&src=horseform&raceEntry=Mjg2NTIxMzY3Ng%3d%3d' target='_blank'>Dundeel (NZ)</a> <b>Dam:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTM2MDg5MDQ4&src=horseform&raceEntry=Mjg2NTIxMzY3Ng%3d%3d' target='_blank'>Silk Ending (USA)</a> (<a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTAyMDMxNTI4&src=horseform&raceEntry=Mjg2NTIxMzY3Ng%3d%3d' target='_blank'>End Sweep (USA)</a>)" & @CRLF & _ " <a class='PedigreeLink content-link' href='/FreeServices/PedigreeSearch.aspx?horseName=Silk+Touch&amp;sireName=Dundeel&amp;damName=Silk+Ending' target='_blank'>View Pedigree Report</a>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Breeder:</b> M F &amp; L M van Gestel<br>" & @CRLF & _ " <b>Owners:</b> M F Van Gestel &amp; Mrs L M Van Gestel<br>" & @CRLF & _ " <b>Colours:</b> White, Red Maltese Cross, Yellow Sleeves and Cap" & @CRLF & _ " " & @CRLF & _ " </span>" & @CRLF & _ " </div>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" class='Scratched'>SCRATCHED</td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">&nbsp;</td>" & @CRLF & _ " </tr>" & @CRLF & _ " </table>" & @CRLF & _ " " & @CRLF & _ " <table border="0" cellspacing="0" cellpadding="0" class="horse-form-table">" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="5"> " & @CRLF & _ " <div class='Silks'>" & @CRLF & _ " <img src="https://racingaustralia.horse/JockeySilks/71436.png" width="46" height="60">" & @CRLF & _ " </div>" & @CRLF & _ " <div class='horse-info'>" & @CRLF & _ " <span class="horse-number">13</span>" & @CRLF & _ " " & @CRLF & _ " <span class="horse-name"><a class='GreenLink' href="../InteractiveForm/HorseFullForm.aspx?horsecode=MTI3OTM2ODEyOA%3d%3d&src=horseform&raceentry=Mjg2NTE5MjY5Mg%3d%3d" target="_blank">PORZ</a></span>" & @CRLF & _ " <span class="horse-gear">(Blks)</span> <span class="horse-gear">EM</span> " & @CRLF & _ " <br />" & @CRLF & _ " <span class="plain">" & @CRLF & _ " 4 year old chestnut mare (13-8-2015) <b>Sire:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTc0MzA1Nzky&src=horseform&raceEntry=Mjg2NTE5MjY5Mg%3d%3d' target='_blank'>Fast &rsquo;n&rsquo; Famous</a> <b>Dam:</b> <a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MjI2MDM3MjA4&src=horseform&raceEntry=Mjg2NTE5MjY5Mg%3d%3d' target='_blank'>Prime Possum</a> (<a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTczMDk2Nzcy&src=horseform&raceEntry=Mjg2NTE5MjY5Mg%3d%3d' target='_blank'>California Dane</a>)" & @CRLF & _ " <a class='PedigreeLink content-link' href='/FreeServices/PedigreeSearch.aspx?horseName=Porz&amp;sireName=Fast+%27n%27+Famous&amp;damName=Prime+Possum' target='_blank'>View Pedigree Report</a>" & @CRLF & _ " <br>" & @CRLF & _ " <b>Breeder:</b> Mr B Cavanough<br>" & @CRLF & _ " <b>Owners:</b> C J S Hudson, Ms N A Hudson, A K Krause, T Hudson, Mrs R Cross, J D Butler, J L Seabrook, Mrs J M Hipwell &amp; M R Krause<br>" & @CRLF & _ " <b>Colours:</b> Black, Lime Green Sash, Diagonal Striped Sleeves, Hooped Cap, Hot Pink Pom Pom" & @CRLF & _ " " & @CRLF & _ " </span>" & @CRLF & _ " </div>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">" & @CRLF & _ " <b>Trainer:</b>" & @CRLF & _ " <b style="color: #000;">" & @CRLF & _ " " & @CRLF & _ " <a class='GreenLink' href="../InteractiveForm/TrainerLastRuns.aspx?trainercode=MjA3MTM5MTY0&trainername=Nicole+Hudson" target="_blank">Nicole Hudson</a>" & @CRLF & _ " " & @CRLF & _ " </b> (Newcastle)&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Jockey:</b>" & @CRLF & _ " <b style="color:#000;">" & @CRLF & _ " " & @CRLF & _ " <a class='GreenLink' href="../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTI5NDgwMA%3d%3d" target="_blank">Adrian Layt 54.5kg<span class='apprentice-claim'> (late alt)</span></a>" & @CRLF & _ " " & @CRLF & _ " </b>&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Barrier:</b>12" & @CRLF & _ " <br />" & @CRLF & _ " <b>Record:</b> 5:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Prizemoney:</b>$4,000&nbsp;&nbsp;&nbsp;&nbsp;<b>1st Up:</b> 3:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;<b>2nd Up:</b> 2:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <br />" & @CRLF & _ " <b>Track:</b> 1:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Dist:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Track/Dist:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " " & @CRLF & _ " <br />" & @CRLF & _ " <b>Firm:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Good:</b> 5:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Soft:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Heavy:</b> 0:0-0-0&nbsp;&nbsp;&nbsp;&nbsp;" & @CRLF & _ " <b>Synthetic:</b> 0:0-0-0" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top" style="height:5px;"></td>" & @CRLF & _ " </tr>" & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">" & @CRLF & _ " <table border="0" cellspacing="1" cellpadding="2" class="horse-last-start">" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>8&nbsp;of&nbsp;14</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2MzE3MDQzMg%3d%3d' target='_blank'>MWBK 29Jan19</a></b> 1000m Good4 MDN HCP $22,000 ($500) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTAzMjA3OTM0NA%3d%3d' target='_blank'>Ms Mikayla Weir (a)</a> 56.5kg Barrier 4<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzAzNTQ5Ng%3d%3d&src=horseform' target='_blank'>No Doubt Acracker</a></b> 56kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzY5NjQ5Mg%3d%3d&src=horseform' target='_blank'>Fritz's Factor</a></b> 56.5kg 0:56.17, 7.75L, 5th@800m, 6th@400m, $17/$26/$31/$26</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>8&nbsp;of&nbsp;9</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NTU5MzM1Mg%3d%3d' target='_blank'>WYNG 16May19</a></b> 1000m Good4 MDN-SW $35,000 ($1,000) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTIyOTMzNzYzNg%3d%3d' target='_blank'>Ms Amelia Denby</a> 57kg Barrier 3<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyODIwNTk2NA%3d%3d&src=horseform' target='_blank'>River Bird</a></b> 57kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzQ2MDA1Ng%3d%3d&src=horseform' target='_blank'>Manly Cove</a></b> 59kg 0:57.88 (600m 33.69), 10.57L, 4th@800m, 4th@400m, $81/$91/$101</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>7&nbsp;of&nbsp;8</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NTU2MTE0NA%3d%3d' target='_blank'>MWBK 26May19</a></b> 1000m Good4 3Y MDN-SW $22,000 ($500) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTAzMjA3OTM0NA%3d%3d' target='_blank'>Ms Mikayla Weir (a)</a> 55kg Barrier 6<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMDQwNTg2OA%3d%3d&src=horseform' target='_blank'>Soori</a></b> 55kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyODUzNDM4OA%3d%3d&src=horseform' target='_blank'>Mapili</a></b> 55kg 0:57.90 (600m 34.65), 8.71L, 4th@800m, 3rd@400m, $41/$81/$71/$51</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='EvenRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>9&nbsp;of&nbsp;11</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NzgwMTU1Mg%3d%3d' target='_blank'>NCLE 10Aug19</a></b> 900m Good3 MDN $35,000 ($1,000) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=MTYzODM4NDM2' target='_blank'>Luke Cumberland</a> 54kg Barrier 4<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyODUyNDE0MA%3d%3d&src=horseform' target='_blank'>Sacred Sword</a></b> 59.5kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMTE2NDk1Mg%3d%3d&src=horseform' target='_blank'>Stooge</a></b> 54kg 0:53.54 (600m 34.74), 12.95L, 2nd@400m, $151/$151</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr class='OddRow'>" & @CRLF & _ " " & @CRLF & _ " <td class='Pos'>7&nbsp;of&nbsp;10</td>" & @CRLF & _ " <td class='remain'><b><a class='GreenLink' href='../InteractiveForm/Meeting.aspx?racecode=MTI2NzgwNTcwMA%3d%3d' target='_blank'>NCLE 24Aug19</a></b> 900m Good4 MDN-SW $35,000 ($1,000) <a class='GreenLink' href='../InteractiveForm/JockeyLastRuns.aspx?jockeycode=NTAzMjA3OTM0NA%3d%3d' target='_blank'>Ms Mikayla Weir (a)</a> 57kg (cd 55kg) Barrier 3<br>1st <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIyNzMxMTk0OA%3d%3d&src=horseform' target='_blank'>Calipari</a></b> 59kg, 2nd <b><a class='GreenLink' href='../InteractiveForm/HorseFullForm.aspx?horsecode=MTIzMjQ3NDk4OA%3d%3d&src=horseform' target='_blank'>Cool World</a></b> 56.5kg 0:52.62 (600m 33.32), 8.23L, 3rd@400m, $151/$151</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " </table>" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ " " & @CRLF & _ " <tr>" & @CRLF & _ " <td colspan="3" align="left" valign="top">&nbsp;</td>" & @CRLF & _ " </tr>" & @CRLF & _ " </table>" Local $aArray = StringRegExp($sString, $sRegex, $STR_REGEXPARRAYGLOBALFULLMATCH) Local $aFullArray[0] For $i = 0 To UBound($aArray) -1 _ArrayConcatenate($aFullArray, $aArray[$i]) Next $aArray = $aFullArray ; Present the entire match result _ArrayDisplay($aArray, "Result")

Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for AutoIt, please visit: https://www.autoitscript.com/autoit3/docs/functions/StringRegExp.htm