Api
Api
Api
Purpose
The GWS data service (GWSDS) is a push-based data feed that supplies clients with up-to-
the-second racing information. Data includes racing program cards, MTPs, odds, pool
information, results, race changes, and much more. GWSDS is divided into a series of
components that communicate with one another to form one large system. An overview of
the system, in graphical form, appears below:
In a very general sense, the system works by triggering the five (5) XML generators to
produce XML data files that are subsequently sent to the XML sender. The XML sender then
sends the XML to all the clients. Triggering is based off the tote feed -- as soon as an
update comes in, GWSDS is triggered and produces an updated XML file. For example, if
tote sends an update that the MTP at Santa Anita changed from 10 to 9, then the 'Cycle'
XML generator is triggered and a new XML file is produced and distributed to all clients.
For GWSDS, a client provides a Xpressbet with an endpoint that can receive/parse XML and
Xpressbet handles all the rest.
[top]
XML Generators
The XML Generators are components that construct XML data files based on the parameters
they are given. An XML generator is executed via some sort of trigger that varies from
generator to generator but primarily is the tote feed. For the most part, the data needed to
construct the XML data files is pulled from either the Xpressbet odds feed or the Xpressbet
racing database. The Xpressbet odds feed contains 'active' data such as race structures,
odds, and prices while the Xpressbet racing database contains static data such as race
names and betting interest (horse/dog) names. There are currently five (5) types of XML
generators: (1) Meeting, (2) Race Card, (3) Cycle, (4) Price, and (5) Change.
[top]
All of the XML data files have a name associated with them (which is included in the tag in
all XML files). XML files have the following file name structure:
{DATE}>-{TRACK}-{RACE}-{SEQUENCE NUMBER}-{SERIAL NUMBER}-{FILE TYPE}.xml
{DATE} - 8 character string representing the year, month, and day (ex. 20180501)
{TRACK} - The track code (ex. TAM for Tampa Bay Downs)
{RACE} - The {RACE} - The race number.
{SEQUENCE NUMBER} - The sequence number
{SERIAL NUMBER} - The serial number
{FILE TYPE} - The type of file (either RaceCard, Cycle, FinalCycle, Meeting, Price,
Change, or Tip
For example, the race card XML file for Tampa Bay Downs, race, #1 on 5/01/18 would have
the following name (the serial number, of course, would likely be different): 20180601-
TAM-1-00010-2350202949-RaceCard.xml
Sequence numbers start at 0 and are always left-padded with zeros to a length of
five (5). Sequence numbers are keyed off date, track, race, and file type. For example, the
first Cycle XML generated for the first race at SA on 5/1 will be 00000, the second will be
00001, and so on.
Serial numbers are always left-padded to a length of ten (10). The serial number will
always be unique.
Meeting type XML files are not associated with a specific race and, as such, a race
number of zero (0) is used in the naming of these files.
[top]
The XML data refers to two different codes for tracks: (1) the track code and (2) the event
code. For clarification, the track code is the standard Equibase/TrackMaster code for a track
while the the event code is the tote supplied code for a track. The mapping between track
code and event code is one-to-many while the mapping between event code and track code
is one-to-one. For example, the track Santa Anita has a track code of SA and it has two
event codes associated with it SAD and SAN. Generally, GWSDS will send both the track
code and event code to avoid confusion.
[top]
Data Volume
The GWSDS is a very high volume system in terms of the number of XML files dispensed per
day. This is due to the highly dynamic nature of horse/dog racing where data is constantly
updated. On a normal weekday, its normal to see over 100K XML messages; on weekends
the number can approach 250K XML messages. Please be sure your endpoint is capable of
handling this type of load.
[top]
Connection Type
The first step in using the GWSDS is to select the desired connection type and then,
subsequently, setting up a client for that connection type. There are two (2) types of
connections available:
Socket - If a client selects this connection type, then they will need to setup a
server that constantly listens for incoming socket connections. For this connection type, a
client will need to supply two (2) pieces of information: (1) the IP address of the machine
on which the socket server is running and (2) the port number that the socket server is
listening on. There is a 15 second timeout when attempting to establish a socket connection
to the socket server - if this timeout occurs, the GWSDS will not send any data and an error
will be logged.
HTTP - If a client selects this connection type, then they will need to setup a service
running on a http-accessible web server. For this connection type, a client will need to
supply two (2) pieces of information: (1) the URL of the web service and (2) the port
number on which the web service runs. The GWSDS will attempt to send data via POST to
the supplied URL. The data is stored in a variable named xml. There is a 15 second timeout
when attempting to send data to the web service - if this timeout occurs, the GWSDS will
not send any data and an error will be logged. Note: for all of these connection types, the
client may need to modify their network configuration (e.g., firewall settings) such that the
GWSDS can connect to the client.
[top]
Track Filtering
A client can specify any tracks that they would like to filter out - that is, not receive any
data for. If a track is on a client's track filter list, then the GWSDS will never send any data
for that track to the client. The track filter can be any size - an empty track filter implies a
client will receive data for all tracks; a track filter consisting of all tracks implies a user will
not receive any data for all tracks. By default, the track filter is empty.
[top]
Pool Filtering
A client can specify any pool type (Win, Exacta, Pick-3, etc.) that they would like to filter
out. If a certain pool type is on a client's pool filter, then the GWSDS will never send any
data about that pool type to the client. The pool filter can be any size - an empty pool filter
implies a client will receive data for all pools; a pool filter consisting of all pools implies a
user will not receive any pool data. By default, the pool filter is empty. The following pool
types can be filtered:
Win
Place
Show
Win / Place / Show
Win / Place
Win / Show
Place / Show
Quinella
Exacta
Trifecta
Superfecta
Double
Pick-3
Pick-4
Pick-5
Pick-6
Pick-7
Pick-8
Pick-9
Pick-10
[top]
Cycle Limits
A client can specify at what MTPs (minutes-to-post) cycle data is sent to that client. In this
context, cycle data refers to highly dynamic data such as odds, probables, and pools. A
client can setup a cycle limit in one of two ways: (1) via an MTP threshold and (2) via an
MTP list.
MTP Threshold - An MTP threshold is a cycle limit that allows a client to specify the
MTP at which data should start to be sent. Physically, an MTP threshold is an integer
between 0 and 100. If a client is using an MTP threshold of x, then the GWSDS will not send
any cycle data for a program p to the client unless the MTP of p is less than or equal to x.
MTP List - An MTP list is a cycle limit that allows a client to specify a list of MTPs at
which cycle data is sent. Physically, an MTP list is a comma-separated list of integers
between 0 and 99. If a client is using an MTP list of x,y,z, then the GWSDS will not send any
cycle data for a program p to the client unless the MTP of p is contained in the list x,y,z.
By default, no cycle limit is defined for a client.
[top]
Data Format
By default, a client will receive XML in accordance with the XSDs in this documentation. If
desired, a client was also opt to receive the data in JSON format. If a client opts to receive
JSON data, then the data will be POST'd in a field called json.
Here's an example of a Cycle file in JSON format:
{
"DocumentSerialNumber": "0017873510",
"TimeStamp": "2018-05-14 17:47:02",
"TimeZone": "PT",
"SequenceKey": "Cycle-MNR-6-2018-05-14",
"SequenceNumber": "00012",
"SequenceDate": "2018-05-14",
"GeneratorType": "Cycle",
"FileName": "20180514-MNR-6-00012-0017873510-Cycle.xml",
"Event": {
"EventCode": "MNE",
"TrackCode": "MNR",
"EventName": "Mountaineer",
"EventDate": "2018-05-14",
"ProgramStatus": "O",
"MaxRunners": "12",
"HighestRace": "9",
"CurrentRace": "6",
"BetTypes": "WN|WT,PY:PL|WT,PY:SH|WT,PY:WPS|WT,PY:WP|WT,PY:WS|
WT,PY:PS|WT,PY:DB|WT,AL:EX|WT,BX,KY,AL,BW:TR|WT,BX,KY,AL,BN,KL,BW:P3|WT,AL:SU|
WT,BX,KY,AL,BN,BW:P4|WT,AL:P5|WT,AL:E5|WT,BX,KY,AL,BN,BW"
},
"Race": {
"RaceNumber": "6",
"MTP": "3"
},
"Odds": [
{
"OddsType": "WN",
"OddsName": "Win",
"OddsBettingInterest": [
{
"BettingInterestProgramNumber": "1",
"BettingInterestName": "Poised to a
Tee",
"FractionalOdd": "15",
"DollarOdd": "32.00",
"BettingInterestStatus": "LIVE",
"PoolAmount": "170.00"
},
{
"BettingInterestProgramNumber": "2",
"BettingInterestName": "Brat",
"FractionalOdd": "1",
"DollarOdd": "4.00",
"BettingInterestStatus": "LIVE",
"PoolAmount": "1,366.00"
},
{
"BettingInterestProgramNumber": "3",
"BettingInterestName": "Bopzilla",
"FractionalOdd": "35",
"DollarOdd": "72.00",
"BettingInterestStatus": "LIVE",
"PoolAmount": "77.00"
},
{
"BettingInterestProgramNumber": "4",
"BettingInterestName": "Honkeytonk
Man",
"FractionalOdd": "9-5",
"DollarOdd": "5.60",
"BettingInterestStatus": "LIVE",
"PoolAmount": "986.00"
},
{
"BettingInterestProgramNumber": "5",
"BettingInterestName": "Penalty Kill",
"FractionalOdd": "10",
"DollarOdd": "22.00",
"BettingInterestStatus": "LIVE",
"PoolAmount": "249.00"
},
{
"BettingInterestProgramNumber": "6",
"BettingInterestName": "Shock Leader",
"FractionalOdd": "4",
"DollarOdd": "10.00",
"BettingInterestStatus": "LIVE",
"PoolAmount": "524.00"
}
]
},
{
"OddsType": "PL",
"OddsName": "Place",
"OddsBettingInterest": [
{
"BettingInterestProgramNumber": "1",
"PoolAmount": "76.00"
},
{
"BettingInterestProgramNumber": "2",
"PoolAmount": "217.00"
},
{
"BettingInterestProgramNumber": "3",
"PoolAmount": "45.00"
},
{
"BettingInterestProgramNumber": "4",
"PoolAmount": "453.00"
},
{
"BettingInterestProgramNumber": "5",
"PoolAmount": "107.00"
},
{
"BettingInterestProgramNumber": "6",
"PoolAmount": "299.00"
}
]
},
{
"OddsType": "SH",
"OddsName": "Show",
"OddsBettingInterest": [
{
"BettingInterestProgramNumber": "1",
"PoolAmount": "94.00"
},
{
"BettingInterestProgramNumber": "2",
"PoolAmount": "454.00"
},
{
"BettingInterestProgramNumber": "3",
"PoolAmount": "48.00"
},
{
"BettingInterestProgramNumber": "4",
"PoolAmount": "359.00"
},
{
"BettingInterestProgramNumber": "5",
"PoolAmount": "70.00"
},
{
"BettingInterestProgramNumber": "6",
"PoolAmount": "129.00"
}
]
},
{
"OddsType": "EX",
"OddsName": "Exacta",
"OddsBettingInterest": {
"OddMatrix": {
"Combination": [
{
"Result": "1-1",
"OddValue": "-",
"PoolAmount": {
}
},
{
"Result": "1-2",
"OddValue": "60",
"PoolAmount": "46.00"
},
{
"Result": "1-3",
"OddValue": "90",
"PoolAmount": "29.00"
},
{
"Result": "1-4",
"OddValue": "35",
"PoolAmount": "71.00"
},
{
"Result": "1-5",
"OddValue": "99",
"PoolAmount": "24.00"
},
{
"Result": "1-6",
"OddValue": "99",
"PoolAmount": "24.00"
},
{
"Result": "2-1",
"OddValue": "30",
"PoolAmount": "87.00"
},
{
"Result": "2-2",
"OddValue": "-",
"PoolAmount": {
}
},
{
"Result": "2-3",
"OddValue": "50",
"PoolAmount": "47.00"
},
{
"Result": "2-4",
"OddValue": "3",
"PoolAmount": "638.00"
},
{
"Result": "2-5",
"OddValue": "11",
"PoolAmount": "226.00"
},
{
"Result": "2-6",
"OddValue": "10",
"PoolAmount": "244.00"
},
{
"Result": "3-1",
"OddValue": "90",
"PoolAmount": "31.00"
},
{
"Result": "3-2",
"OddValue": "90",
"PoolAmount": "30.00"
},
{
"Result": "3-3",
"OddValue": "-",
"PoolAmount": {
}
},
{
"Result": "3-4",
"OddValue": "60",
"PoolAmount": "43.00"
},
{
"Result": "3-5",
"OddValue": "99",
"PoolAmount": "28.00"
},
{
"Result": "3-6",
"OddValue": "60",
"PoolAmount": "42.00"
},
{
"Result": "4-1",
"OddValue": "22",
"PoolAmount": "123.00"
},
{
"Result": "4-2",
"OddValue": "3",
"PoolAmount": "660.00"
},
{
"Result": "4-3",
"OddValue": "40",
"PoolAmount": "64.00"
},
{
"Result": "4-4",
"OddValue": "-",
"PoolAmount": {
}
},
{
"Result": "4-5",
"OddValue": "15",
"PoolAmount": "171.00"
},
{
"Result": "4-6",
"OddValue": "13",
"PoolAmount": "198.00"
},
{
"Result": "5-1",
"OddValue": "80",
"PoolAmount": "32.00"
},
{
"Result": "5-2",
"OddValue": "24",
"PoolAmount": "113.00"
},
{
"Result": "5-3",
"OddValue": "80",
"PoolAmount": "31.00"
},
{
"Result": "5-4",
"OddValue": "30",
"PoolAmount": "91.00"
},
{
"Result": "5-5",
"OddValue": "-",
"PoolAmount": {
}
},
{
"Result": "5-6",
"OddValue": "50",
"PoolAmount": "52.00"
},
{
"Result": "6-1",
"OddValue": "80",
"PoolAmount": "31.00"
},
{
"Result": "6-2",
"OddValue": "24",
"PoolAmount": "112.00"
},
{
"Result": "6-3",
"OddValue": "60",
"PoolAmount": "44.00"
},
{
"Result": "6-4",
"OddValue": "22",
"PoolAmount": "123.00"
},
{
"Result": "6-5",
"OddValue": "45",
"PoolAmount": "60.00"
},
{
"Result": "6-6",
"OddValue": "-",
"PoolAmount": {
}
}
]
}
}
}
],
"Probables": [
{
"ProbablesType": "WN",
"ProbablesName": "Win",
"ProbablesBettingInterest": [
{
"BettingInterestProgramNumber": "1",
"BettingInterestName": "Poised to a
Tee",
"Probables": "32.60",
"BettingInterestStatus": "LIVE",
"PoolAmount": "170.00"
},
{
"BettingInterestProgramNumber": "2",
"BettingInterestName": "Brat",
"Probables": "4.00",
"BettingInterestStatus": "LIVE",
"PoolAmount": "1,366.00"
},
{
"BettingInterestProgramNumber": "3",
"BettingInterestName": "Bopzilla",
"Probables": "72.40",
"BettingInterestStatus": "LIVE",
"PoolAmount": "77.00"
},
{
"BettingInterestProgramNumber": "4",
"BettingInterestName": "Honkeytonk
Man",
"Probables": "5.60",
"BettingInterestStatus": "LIVE",
"PoolAmount": "986.00"
},
{
"BettingInterestProgramNumber": "5",
"BettingInterestName": "Penalty Kill",
"Probables": "22.40",
"BettingInterestStatus": "LIVE",
"PoolAmount": "249.00"
},
{
"BettingInterestProgramNumber": "6",
"BettingInterestName": "Shock Leader",
"Probables": "10.60",
"BettingInterestStatus": "LIVE",
"PoolAmount": "524.00"
}
]
},
{
"ProbablesType": "PL",
"ProbablesName": "Place",
"ProbablesBettingInterest": [
{
"BettingInterestProgramNumber": "1",
"BettingInterestName": "Poised to a
Tee",
"Probables": "8.80",
"ProbablesHi": "13.20",
"BettingInterestStatus": "LIVE",
"PoolAmount": "76.00"
},
{
"BettingInterestProgramNumber": "2",
"BettingInterestName": "Brat",
"Probables": "3.60",
"ProbablesHi": "5.20",
"BettingInterestStatus": "LIVE",
"PoolAmount": "217.00"
},
{
"BettingInterestProgramNumber": "3",
"BettingInterestName": "Bopzilla",
"Probables": "14.40",
"ProbablesHi": "21.40",
"BettingInterestStatus": "LIVE",
"PoolAmount": "45.00"
},
{
"BettingInterestProgramNumber": "4",
"BettingInterestName": "Honkeytonk
Man",
"Probables": "2.40",
"ProbablesHi": "2.80",
"BettingInterestStatus": "LIVE",
"PoolAmount": "453.00"
},
{
"BettingInterestProgramNumber": "5",
"BettingInterestName": "Penalty Kill",
"Probables": "6.40",
"ProbablesHi": "9.60",
"BettingInterestStatus": "LIVE",
"PoolAmount": "107.00"
},
{
"BettingInterestProgramNumber": "6",
"BettingInterestName": "Shock Leader",
"Probables": "2.80",
"ProbablesHi": "4.00",
"BettingInterestStatus": "LIVE",
"PoolAmount": "299.00"
}
]
},
{
"ProbablesType": "SH",
"ProbablesName": "Show",
"ProbablesBettingInterest": [
{
"BettingInterestProgramNumber": "1",
"BettingInterestName": "Poised to a
Tee",
"Probables": "3.00",
"ProbablesHi": "7.00",
"BettingInterestStatus": "LIVE",
"PoolAmount": "94.00"
},
{
"BettingInterestProgramNumber": "2",
"BettingInterestName": "Brat",
"Probables": "2.20",
"ProbablesHi": "2.20",
"BettingInterestStatus": "LIVE",
"PoolAmount": "454.00"
},
{
"BettingInterestProgramNumber": "3",
"BettingInterestName": "Bopzilla",
"Probables": "4.80",
"ProbablesHi": "12.20",
"BettingInterestStatus": "LIVE",
"PoolAmount": "48.00"
},
{
"BettingInterestProgramNumber": "4",
"BettingInterestName": "Honkeytonk
Man",
"Probables": "2.20",
"ProbablesHi": "2.60",
"BettingInterestStatus": "LIVE",
"PoolAmount": "359.00"
},
{
"BettingInterestProgramNumber": "5",
"BettingInterestName": "Penalty Kill",
"Probables": "3.60",
"ProbablesHi": "9.00",
"BettingInterestStatus": "LIVE",
"PoolAmount": "70.00"
},
{
"BettingInterestProgramNumber": "6",
"BettingInterestName": "Shock Leader",
"Probables": "2.40",
"ProbablesHi": "5.40",
"BettingInterestStatus": "LIVE",
"PoolAmount": "129.00"
}
]
},
{
"ProbablesType": "EX",
"ProbablesName": "Exacta",
"ProbablesBettingInterest": {
"ProbableMatrix": {
"Combination": [
{
"Result": "1-1",
"ProbableValue": "-",
"PoolAmount": {
}
},
{
"Result": "1-2",
"ProbableValue":
"122.00",
"PoolAmount": "46.00"
},
{
"Result": "1-3",
"ProbableValue":
"191.80",
"PoolAmount": "29.00"
},
{
"Result": "1-4",
"ProbableValue":
"80.20",
"PoolAmount": "71.00"
},
{
"Result": "1-5",
"ProbableValue":
"232.60",
"PoolAmount": "24.00"
},
{
"Result": "1-6",
"ProbableValue":
"234.60",
"PoolAmount": "24.00"
},
{
"Result": "2-1",
"ProbableValue":
"65.60",
"PoolAmount": "87.00"
},
{
"Result": "2-2",
"ProbableValue": "-",
"PoolAmount": {
}
},
{
"Result": "2-3",
"ProbableValue":
"120.00",
"PoolAmount": "47.00"
},
{
"Result": "2-4",
"ProbableValue": "8.80",
"PoolAmount": "638.00"
},
{
"Result": "2-5",
"ProbableValue":
"25.20",
"PoolAmount": "226.00"
},
{
"Result": "2-6",
"ProbableValue":
"23.20",
"PoolAmount": "244.00"
},
{
"Result": "3-1",
"ProbableValue":
"183.60",
"PoolAmount": "31.00"
},
{
"Result": "3-2",
"ProbableValue":
"185.60",
"PoolAmount": "30.00"
},
{
"Result": "3-3",
"ProbableValue": "-",
"PoolAmount": {
}
},
{
"Result": "3-4",
"ProbableValue":
"131.00",
"PoolAmount": "43.00"
},
{
"Result": "3-5",
"ProbableValue":
"201.60",
"PoolAmount": "28.00"
},
{
"Result": "3-6",
"ProbableValue":
"133.40",
"PoolAmount": "42.00"
},
{
"Result": "4-1",
"ProbableValue":
"46.20",
"PoolAmount": "123.00"
},
{
"Result": "4-2",
"ProbableValue": "8.60",
"PoolAmount": "660.00"
},
{
"Result": "4-3",
"ProbableValue":
"88.40",
"PoolAmount": "64.00"
},
{
"Result": "4-4",
"ProbableValue": "-",
"PoolAmount": {
}
},
{
"Result": "4-5",
"ProbableValue":
"33.40",
"PoolAmount": "171.00"
},
{
"Result": "4-6",
"ProbableValue":
"28.80",
"PoolAmount": "198.00"
},
{
"Result": "5-1",
"ProbableValue":
"174.80",
"PoolAmount": "32.00"
},
{
"Result": "5-2",
"ProbableValue":
"50.40",
"PoolAmount": "113.00"
},
{
"Result": "5-3",
"ProbableValue":
"181.00",
"PoolAmount": "31.00"
},
{
"Result": "5-4",
"ProbableValue":
"62.40",
"PoolAmount": "91.00"
},
{
"Result": "5-5",
"ProbableValue": "-",
"PoolAmount": {
}
},
{
"Result": "5-6",
"ProbableValue":
"109.00",
"PoolAmount": "52.00"
},
{
"Result": "6-1",
"ProbableValue":
"180.20",
"PoolAmount": "31.00"
},
{
"Result": "6-2",
"ProbableValue":
"50.60",
"PoolAmount": "112.00"
},
{
"Result": "6-3",
"ProbableValue":
"127.60",
"PoolAmount": "44.00"
},
{
"Result": "6-4",
"ProbableValue":
"46.20",
"PoolAmount": "123.00"
},
{
"Result": "6-5",
"ProbableValue":
"94.20",
"PoolAmount": "60.00"
},
{
"Result": "6-6",
"ProbableValue": "-",
"PoolAmount": {
}
}
]
}
}
}
],
"PoolTotal": [
{
"PoolCode": "WN",
"PoolName": "Win",
"PoolAmount": "3,373.00"
},
{
"PoolCode": "PL",
"PoolName": "Place",
"PoolAmount": "1,198.00"
},
{
"PoolCode": "SH",
"PoolName": "Show",
"PoolAmount": "1,157.00"
},
{
"PoolCode": "EX",
"PoolName": "Exacta",
"PoolAmount": "3,528.00"
},
{
"PoolCode": "TR",
"PoolName": "Trifecta",
"PoolAmount": "2,764.00"
},
{
"PoolCode": "SU",
"PoolName": "Superfecta",
"PoolAmount": "1,510.00"
},
{
"PoolCode": "P4",
"PoolName": "Pick 4",
"PoolAmount": "13,602.00"
}
]
}
[top]
Advanced Stats
Advanced statistics for betting interests (horse) are available over the GWSDS feed. By
default, these are not activated for a client. Please see your integration manager for more
information about advanced statistics.
[top]
Meeting
The data contained in these files is pulled entirely from the Xpressbet odds feed. When
executed, the 'Meeting' XML generator is given a program code and a program date. For
example, executing the generator with the parameters SAD and 20180501 would result in
the Meeting XML data file being constructed for the 05/01/2018 Santa Anita program. This
generator will be triggered when (1) a new program code appears on the odds feed (such as
at the beginning of the day) and (2) whenever a program's race structure changes.
Common race structure changes include a betting interest being scratched and a pool's
status changing from opened to closed.
The XSD for the Meeting XML file is below:
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="MeetingData">
<xs:complexType>
<xs:sequence>
<xs:element name="DocumentSerialNumber" type="xs:string"/>
<xs:element name="TimeStamp" type="xs:string" />
<xs:element name="TimeZone" type="xs:string" />
<xs:element name="SequenceKey" type="xs:string" />
<xs:element name="SequenceNumber" type="xs:string" />
<xs:element name="SequenceDate" type="xs:string" />
<xs:element name="GeneratorType" type="xs:string" />
<xs:element name="FileName" type="xs:string"/>
<xs:element name="Event">
<xs:complexType>
<xs:sequence>
<xs:element name="EventCode" type="xs:string"/>
<xs:element name="TrackCode" type="xs:string"/>
<xs:element name="EventName" type="xs:string"/>
<xs:element name="EventDate" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Race" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="RaceNumber" type="xs:integer"/>
<xs:element name="BettingInterestList" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Pool" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="PoolCode" type="xs:string"/>
<xs:element name="PoolName" type="xs:string"/>
<xs:element name="MinWagerAmount" type="xs:decimal"/>
<xs:element name="MaxWagerAmount" type="xs:decimal"/>
<xs:element name="MinBoxAmount" type="xs:decimal"/>
<xs:element name="MinWheelAmount" type="xs:decimal"/>
<xs:element name="LegCount" type="xs:integer"/>
<xs:element name="RaceList" type="xs:integer"/>
<xs:element name="PricingRace" type="xs:integer"/>
<xs:element name="PoolStatus">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="Open"/>
<xs:enumeration value="Closed"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
[top]
RaceCard
The data contained in these files is primarily static data that is parsed from
Equibase/TrackMaster program card files and stored in the Xpressbet racing database. This
generator is passed an equibase trackcode, a race number, and a date. For example, if the
generator is invoked with the parameters SA, 4, and 20180501 it would result in the Race
Card XML data file being constructed for the 4th race at Santa Anita on 05/01/2018. This
generator will be triggered whenever an equibase file is parsed or reparsed via Xpressbet's
card parsing subsystem.
The XSD for the Racecard XML file is below:
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="RaceCardData">
<xs:complexType>
<xs:sequence>
<xs:element name="DocumentSerialNumber" type="xs:string" />
<xs:element name="TimeStamp" type="xs:string" />
<xs:element name="TimeZone" type="xs:string" />
<xs:element name="SequenceKey" type="xs:string" />
<xs:element name="SequenceNumber" type="xs:string" />
<xs:element name="SequenceDate" type="xs:string" />
<xs:element name="GeneratorType" type="xs:string" />
<xs:element name="FileName" type="xs:string" />
<xs:element name="Event">
<xs:complexType>
<xs:sequence>
<xs:element name="TrackCode" type="xs:string" />
<xs:element name="EventName" type="xs:string" />
<xs:element name="EventDate" type="xs:string" />
<xs:element name="Weather" type="xs:string" minOccurs="0" />
<xs:element name="TrackCondition" minOccurs="0" maxOccurs="2">
<xs:complexType>
<xs:sequence>
<xs:element name="Course">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="Track" />
<xs:enumeration value="Turf" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Condition">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="fast" />
<xs:enumeration value="frozen" />
<xs:enumeration value="good" />
<xs:enumeration value="muddy" />
<xs:enumeration value="slow" />
<xs:enumeration value="sloppy" />
<xs:enumeration value="Wet Fast" />
<xs:enumeration value="All Weather" />
<xs:enumeration value="firm" />
<xs:enumeration value="dead" />
<xs:enumeration value="heavy" />
<xs:enumeration value="soft" />
<xs:enumeration value="yielding" />
<xs:enumeration value="Off Turf" />
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Race">
<xs:complexType>
<xs:sequence>
<xs:element name="RaceNumber" type="xs:integer" />
<xs:element name="NumberOfBettingInterests" type="xs:integer" />
<xs:element name="RaceBreed" type="xs:string" minOccurs="0" />
<xs:element name="Purse" type="xs:decimal" minOccurs="0" />
<xs:element name="Distance" type="xs:string" minOccurs="0" />
<xs:element name="Class" type="xs:string" minOccurs="0" />
<xs:element name="TrackSurface" type="xs:string" minOccurs="0" />
<xs:element name="SexRestrictions" type="xs:string" minOccurs="0" />
<xs:element name="AgeRestrictions" type="xs:string" minOccurs="0" />
<xs:element name="PublishedPostTime" type="xs:string" minOccurs="0" />
<xs:element name="TrackCondition" type="xs:string" minOccurs="0" />
<xs:element name="TurfCondition" type="xs:string" minOccurs="0" />
<xs:element name="Description" type="xs:string" minOccurs="0" />
<xs:element name="TimeZone" type="xs:string" minOccurs="0" />
<xs:element name="BettingInterest" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="BettingInterestProgramNumber" type="xs:string" />
<xs:element name="ToteNumber" type="xs:integer" />
<xs:element name="PostPosition" type="xs:string" />
<xs:element name="BettingInterestName" type="xs:string" />
<xs:element name="MLOdd" type="xs:string" minOccurs="0" />
<xs:element name="HorseYearOfBirth" type="xs:integer"
minOccurs="0" />
<xs:element name="Color" type="xs:string" minOccurs="0" />
<xs:element name="Gender" type="xs:string" minOccurs="0" />
<xs:element name="SaddleClothColor" type="xs:string"
minOccurs="0" />
<xs:element name="Jockey" type="xs:string" minOccurs="0" />
<xs:element name="ApprenticeWeight" type="xs:integer"
minOccurs="0" />
<xs:element name="Trainer" type="xs:string" minOccurs="0" />
<xs:element name="Owner" type="xs:string" minOccurs="0" />
<xs:element name="OwnerSilks" type="xs:string" minOccurs="0" />
<xs:element name="WeightCarried" type="xs:integer" minOccurs="0" />
<xs:element name="Medication" type="xs:string" minOccurs="0" />
<xs:element name="BettingInterestStatus">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="LIVE" />
<xs:enumeration value="SCRATCHED" />
<xs:enumeration value="ALSO ELIGIBLE" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="PastPerformance" type="xs:string" minOccurs="0"
maxOccurs="unbounded"/>
<xs:element name="Form" type="xs:string" minOccurs="0" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
[top]
Cycle
The data contained in these files is highly dynamic and, accordingly, is pulled from the odds
feed. The Cycle XML generator is passed a program code, a race number, and a date. For
example, if the generator is executed with with the parameters SAD, 4, and 201805201 it
would result in the Cycle XML data file being constructed for the 4th race in the 05/01/2018
Santa Anita program. This generator is triggered whenever any of the data contained in the
files changes. This data primarily consists of betting interest odds and pool totals and, as
such, this generator will be triggered quite often as this data is very dynamic.
The XSD for the Cycle XML file is below:
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="CycleData">
<xs:complexType>
<xs:sequence>
<xs:element name="DocumentSerialNumber" type="xs:string"/>
<xs:element name="TimeStamp" type="xs:string" />
<xs:element name="TimeZone" type="xs:string" />
<xs:element name="SequenceKey" type="xs:string" />
<xs:element name="SequenceNumber" type="xs:string" />
<xs:element name="SequenceDate" type="xs:string" />
<xs:element name="GeneratorType" type="xs:string" />
<xs:element name="FileName" type="xs:string"/>
<xs:element name="Event">
<xs:complexType>
<xs:sequence>
<xs:element name="EventCode" type="xs:string"/>
<xs:element name="TrackCode" type="xs:string"/>
<xs:element name="EventName" type="xs:string"/>
<xs:element name="EventDate" type="xs:string"/>
<xs:element name="ProgramStatus" type="xs:string"/>
<xs:element name="MaxRunners" type="xs:integer"/>
<xs:element name="HighestRace" type="xs:integer"/>
<xs:element name="CurrentRace" type="xs:integer"/>
<xs:element name="BetTypes" type="xs:integer"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Race">
<xs:complexType>
<xs:sequence>
<xs:element name="RaceNumber" type="xs:integer"/>
<xs:element name="MTP" type="xs:integer"/>
<xs:element name="PostTime" type="xs:string"/>
<xs:element name="TimeZone" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Odds" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="OddsType" type="xs:string"/>
<xs:element name="OddsName" type="xs:string"/>
<xs:element name="OddsBettingInterest" minOccurs="0"
maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="BettingInterestProgramNumber" type="xs:integer"
minOccurs="0"/>
<xs:element name="BettingInterestName" type="xs:string"
minOccurs="0"/>
<xs:element name="FractionalOdd" type="xs:string" minOccurs="0"/>
<xs:element name="DollarOdd" type="xs:decimal" minOccurs="0"/>
<xs:element name="BettingInterestStatus" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="LIVE"/>
<xs:enumeration value="SCRATCHED"/>
<xs:enumeration value="ALSO ELIGIBLE"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="PoolAmount" type="xs:decimal" minOccurs="0"/>
<xs:element name="OddMatrix" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="Combination">
<xs:complexType>
<xs:sequence>
<xs:element name="Result" type="xs:string"/>
<xs:element name="OddValue" type="xs:string"/>
<xs:element name="PoolAmount" type="xs:decimal"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Probables" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="ProbablesType" type="xs:string"/>
<xs:element name="ProbablesName" type="xs:string"/>
<xs:element name="ProbablesBettingInterest" minOccurs="0"
maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="BettingInterestProgramNumber" type="xs:integer"
minOccurs="0"/>
<xs:element name="BettingInterestName" type="xs:string"
minOccurs="0"/>
<xs:element name="Probables" type="xs:string" minOccurs="0"/>
<xs:element name="BettingInterestStatus" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="LIVE"/>
<xs:enumeration value="SCRATCHED"/>
<xs:enumeration value="ALSO ELIGIBLE"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="PoolAmount" type="xs:decimal" minOccurs="0"/>
<xs:element name="ProbablesMatrix" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="Combination">
<xs:complexType>
<xs:sequence>
<xs:element name="Result" type="xs:string"/>
<xs:element name="ProbableValue" type="xs:string"/>
<xs:element name="PoolAmount" type="xs:decimal"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="PoolTotal" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="PoolCode" type="xs:string"/>
<xs:element name="PoolName" type="xs:string"/>
<xs:element name="PoolAmount" type="xs:decimal"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
[top]
FinalCycle
The FinalCycle XML is exactly the same as the Cycle XML except it only gets sent when the
race has started and no further bets are allowed. When a client receives a FinalCycle
message, it's a signal that the race is off (i.e., the runner gate has opened and horses/dogs
are running). It's important to note that the first FinalCycle message does not contain the
final odds and pool amounts. This is because a lot of betting activity occurs in the last
seconds before the runners leave the gate. As such, you will receive multiple FinalCycle
messsages with updates odds and pool amounts even after the race is off.
The XSD for the FinalCycle XML file is below:
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="CycleData">
<xs:complexType>
<xs:sequence>
<xs:element name="DocumentSerialNumber" type="xs:string"/>
<xs:element name="TimeStamp" type="xs:string" />
<xs:element name="TimeZone" type="xs:string" />
<xs:element name="SequenceKey" type="xs:string" />
<xs:element name="SequenceNumber" type="xs:string" />
<xs:element name="SequenceDate" type="xs:string" />
<xs:element name="GeneratorType" type="xs:string" />
<xs:element name="FileName" type="xs:string"/>
<xs:element name="Event">
<xs:complexType>
<xs:sequence>
<xs:element name="EventCode" type="xs:string"/>
<xs:element name="TrackCode" type="xs:string"/>
<xs:element name="EventName" type="xs:string"/>
<xs:element name="EventDate" type="xs:string"/>
<xs:element name="ProgramStatus" type="xs:string"/>
<xs:element name="MaxRunners" type="xs:integer"/>
<xs:element name="HighestRace" type="xs:integer"/>
<xs:element name="CurrentRace" type="xs:integer"/>
<xs:element name="BetTypes" type="xs:integer"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Race">
<xs:complexType>
<xs:sequence>
<xs:element name="RaceNumber" type="xs:integer"/>
<xs:element name="MTP" type="xs:integer"/>
<xs:element name="PostTime" type="xs:string"/>
<xs:element name="TimeZone" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Odds" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="OddsType" type="xs:string"/>
<xs:element name="OddsName" type="xs:string"/>
<xs:element name="OddsBettingInterest" minOccurs="0"
maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="BettingInterestProgramNumber" type="xs:integer"
minOccurs="0"/>
<xs:element name="BettingInterestName" type="xs:string"
minOccurs="0"/>
<xs:element name="FractionalOdd" type="xs:string" minOccurs="0"/>
<xs:element name="DollarOdd" type="xs:decimal" minOccurs="0"/>
<xs:element name="BettingInterestStatus" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="LIVE"/>
<xs:enumeration value="SCRATCHED"/>
<xs:enumeration value="ALSO ELIGIBLE"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="PoolAmount" type="xs:decimal" minOccurs="0"/>
<xs:element name="OddMatrix" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="Combination">
<xs:complexType>
<xs:sequence>
<xs:element name="Result" type="xs:string"/>
<xs:element name="OddValue" type="xs:string"/>
<xs:element name="PoolAmount" type="xs:decimal"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Probables" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="ProbablesType" type="xs:string"/>
<xs:element name="ProbablesName" type="xs:string"/>
<xs:element name="ProbablesBettingInterest" minOccurs="0"
maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="BettingInterestProgramNumber" type="xs:integer"
minOccurs="0"/>
<xs:element name="BettingInterestName" type="xs:string"
minOccurs="0"/>
<xs:element name="Probables" type="xs:string" minOccurs="0"/>
<xs:element name="BettingInterestStatus" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="LIVE"/>
<xs:enumeration value="SCRATCHED"/>
<xs:enumeration value="ALSO ELIGIBLE"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="PoolAmount" type="xs:decimal" minOccurs="0"/>
<xs:element name="ProbablesMatrix" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="Combination">
<xs:complexType>
<xs:sequence>
<xs:element name="Result" type="xs:string"/>
<xs:element name="ProbableValue" type="xs:string"/>
<xs:element name="PoolAmount" type="xs:decimal"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="PoolTotal" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="PoolCode" type="xs:string"/>
<xs:element name="PoolName" type="xs:string"/>
<xs:element name="PoolAmount" type="xs:decimal"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
[top]
Price
The Price XML generator is passed a program code, a race number, and a date. For
example, executing the generator with the parameters SAD, 4, and 20180501 would result
in the Price XML data file being constructed for the 4th race in the 05/01/2018 Santa Anita
program. The data contained in these files is essentially race results and payout values and,
as such, whenever this data becomes available and/or changes, the generator will be
triggered.
Note that in the case of a dead-heat, the tag will use a ] to indicate at what position the
dead-heat occurred. For example, 1],2,3 would indicate there was a dead-heat for first
place (WIN); 4,5],6 would indicate there was a dead-heat for second place (PLACE).
Note that if a coupled runner appears in the results, then the letter associated with the
coupled runner will be present. For example, if there is a coupled 1 and 1A pair and 1A wins
the race, then the results may look like 1A,2,3. If 1A wins and 1 shows, then the results
may look like 1A,2,1.
The XSD for the Price XML file is below:
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="PriceData">
<xs:complexType>
<xs:sequence>
<xs:element name="DocumentSerialNumber" type="xs:string"/>
<xs:element name="TimeStamp" type="xs:string" />
<xs:element name="TimeZone" type="xs:string" />
<xs:element name="SequenceKey" type="xs:string" />
<xs:element name="SequenceNumber" type="xs:string" />
<xs:element name="SequenceDate" type="xs:string" />
<xs:element name="GeneratorType" type="xs:string" />
<xs:element name="FileName" type="xs:string"/>
<xs:element name="Event">
<xs:complexType>
<xs:sequence>
<xs:element name="EventCode" type="xs:string"/>
<xs:element name="TrackCode" type="xs:string"/>
<xs:element name="EventName" type="xs:string"/>
<xs:element name="EventDate" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Race">
<xs:complexType>
<xs:sequence>
<xs:element name="RaceNumber" type="xs:integer"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="RaceResult" type="xs:string"/>
<xs:element name="Price">
<xs:complexType>
<xs:sequence>
<xs:element name="PoolCode" type="xs:string"/>
<xs:element name="Pool" type="xs:string"/>
<xs:element name="Result" type="xs:string"/>
<xs:element name="BaseWinAmount" type="xs:decimal"/>
<xs:element name="BasePlaceAmount" type="xs:decimal"/>
<xs:element name="BaseShowAmount" type="xs:decimal"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
[top]
Change
The data contained in these files is pulled from the Xpressbet racing database. The data
gets into the database via a racing operations administrator who is responsible for manually
entering changes. The Change XML generator is passed a trackcode, a race number, and a
date. For example, calling the generator with the parameters SA, 4, and 20180501 would
result in the Changes XML data file being constructed for the 4th race at Santa Anita on
05/01/2018. This generator is triggered whenever a change is entered by the racing
operations administrator.
The XSD for the Change XML file is below:
?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="ChangeData">
<xs:complexType>
<xs:sequence>
<xs:element name="DocumentSerialNumber" type="xs:string"/>
<xs:element name="TimeStamp" type="xs:string" />
<xs:element name="TimeZone" type="xs:string" />
<xs:element name="SequenceKey" type="xs:string" />
<xs:element name="SequenceNumber" type="xs:string" />
<xs:element name="SequenceDate" type="xs:string" />
<xs:element name="GeneratorType" type="xs:string" />
<xs:element name="FileName" type="xs:string"/>
<xs:element name="Event">
<xs:complexType>
<xs:sequence>
<xs:element name="EventCode" type="xs:string"/>
<xs:element name="TrackCode" type="xs:string"/>
<xs:element name="EventName" type="xs:srting"/>
<xs:element name="EventDate" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Race">
<xs:complexType>
<xs:sequence>
<xs:element name="RaceNumber" type="xs:integer"/>
<xs:element name="BettingInterest" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="BettingInterestProgramNumber" type="xs:string"/>
<xs:element name="BettingInterestStatus">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="LIVE"/>
<xs:enumeration value="SCRATCHED"/>
<xs:enumeration value="ALSO ELIGIBLE"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Jockey" type="xs:string" minOccurs="0"/>
<xs:element name="Overwight" type="xs:string" minOccurs="0"/>
<xs:element name="Shoe" type="xs:string" minOccurs="0"/>
<xs:element name="Equipment" type="xs:string" minOccurs="0"/>
<xs:element name="Medication" type="xs:string" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
[top]
Tip
The Tips XML generator is used to construct the Tips XML data files. The data contained in
these files is pulled directly from the Xpressbet racing database. The data gets into the
database via a racing operations administrator who is responsible for manually entering
tips. The Tips XML generator needs to be called with a trackcode, a race number, and a
date. For example, calling the generator with the parameters AQU, 1, and 20180501 would
result in the Tips XML data file being constructed for the 1st race at Aqueduct on
05/01/2018. This generator is triggered whenever a tip is entered by the racing operations
administrator.
The XSD for the Tips XML file is below:
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="TipData">
<xs:complexType>
<xs:sequence>
<xs:element name="DocumentSerialNumber" type="xs:string"/>
<xs:element name="TimeStamp" type="xs:string" />
<xs:element name="TimeZone" type="xs:string" />
<xs:element name="SequenceKey" type="xs:string" />
<xs:element name="SequenceNumber" type="xs:string" />
<xs:element name="SequenceDate" type="xs:string" />
<xs:element name="GeneratorType" type="xs:string" />
<xs:element name="FileName" type="xs:string"/>
<xs:element name="Event">
<xs:complexType>
<xs:sequence>
<xs:element name="TrackCode" type="xs:string"/>
<xs:element name="EventName" type="xs:srting"/>
<xs:element name="EventDate" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Race">
<xs:complexType>
<xs:sequence>
<xs:element name="RaceNumber" type="xs:integer"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="TipInfo">
<xs:complexType>
<xs:sequence>
<xs:element name="Tip" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
[top]
Meeting
<MeetingData xmlns='http://www.w3.org/2001/XMLSchema-instance'>
<DocumentSerialNumber>0030894617</DocumentSerialNumber>
<TimeStamp>2018-05-14 15:16:09</TimeStamp>
<TimeZone>PT</TimeZone>
<SequenceKey>Meeting-GP-2018-05-14</SequenceKey>
<SequenceNumber>00006</SequenceNumber>
<SequenceDate>2018-05-14</SequenceDate>
<GeneratorType>Meeting</GeneratorType>
<FileName>20180514-GP-00-00006-0030894617-Meeting.xml</FileName>
<Event>
<EventCode>GPM</EventCode>
<TrackCode>GP</TrackCode>
<EventName>Gulfstream Park</EventName>
<EventDate>2018-05-14</EventDate>
<Weather>Partly Cloudy</Weather>
<TrackCondition>
<Course>Track</Course>
<Condition>-</Condition>
</TrackCondition>
<TrackCondition>
<Course>Turf</Course>
<Condition>-</Condition>
</TrackCondition>
</Event>
<Race>
<RaceNumber>1</RaceNumber>
<BettingInterestList>1,2,3,4,5,6,7,8,9,10,11,12,13</BettingInterestList>
<Wagerable>0</Wagerable>
</Race>
<Race>
<RaceNumber>2</RaceNumber>
<BettingInterestList>1,2,3,4,5,6,7,8,9,10,11,12,13,14</BettingInterestList>
<Wagerable>0</Wagerable>
</Race>
<Race>
<RaceNumber>3</RaceNumber>
<BettingInterestList>2,3,4,5,6,7,8,9</BettingInterestList>
<ScratchList>1</ScratchList>
<Wagerable>0</Wagerable>
</Race>
<Race>
<RaceNumber>4</RaceNumber>
<BettingInterestList>1,2,3,4,5,6,7,8,9,10,11,12,13</BettingInterestList>
<Wagerable>0</Wagerable>
</Race>
<Race>
<RaceNumber>5</RaceNumber>
<BettingInterestList>2,4,5,6,8,9</BettingInterestList>
<ScratchList>1,3,7</ScratchList>
<Pool>
<PoolCode>WN</PoolCode>
<PoolName>Win</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>1</LegCount>
<RaceList>5</RaceList>
<PricingRace>5</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>PL</PoolCode>
<PoolName>Place</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>1</LegCount>
<RaceList>5</RaceList>
<PricingRace>5</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>SH</PoolCode>
<PoolName>Show</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>1</LegCount>
<RaceList>5</RaceList>
<PricingRace>5</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>WPS</PoolCode>
<PoolName>Win/Place/Show</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>1</LegCount>
<RaceList>5</RaceList>
<PricingRace>5</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>WP</PoolCode>
<PoolName>WP</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>1</LegCount>
<RaceList>5</RaceList>
<PricingRace>5</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>WS</PoolCode>
<PoolName>WS</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>1</LegCount>
<RaceList>5</RaceList>
<PricingRace>5</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>PS</PoolCode>
<PoolName>Place/Show</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>1</LegCount>
<RaceList>5</RaceList>
<PricingRace>5</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>DB</PoolCode>
<PoolName>Double</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>2</LegCount>
<RaceList>5,6</RaceList>
<PricingRace>6</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>EX</PoolCode>
<PoolName>Exacta</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>2</LegCount>
<RaceList>5,5</RaceList>
<PricingRace>5</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>TR</PoolCode>
<PoolName>Trifecta</PoolName>
<MinWagerAmount>0.5</MinWagerAmount>
<MaxWagerAmount>100000</MaxWagerAmount>
<MinBoxAmount>0.5</MinBoxAmount>
<MinWheelAmount>0.5</MinWheelAmount>
<MultipleAmount>0.5</MultipleAmount>
<LegCount>3</LegCount>
<RaceList>5,5,5</RaceList>
<PricingRace>5</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>SU</PoolCode>
<PoolName>Superfecta</PoolName>
<MinWagerAmount>0.1</MinWagerAmount>
<MaxWagerAmount>10000</MaxWagerAmount>
<MinBoxAmount>0.1</MinBoxAmount>
<MinWheelAmount>0.1</MinWheelAmount>
<MultipleAmount>0.1</MultipleAmount>
<LegCount>4</LegCount>
<RaceList>5,5,5,5</RaceList>
<PricingRace>5</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Wagerable>1</Wagerable>
</Race>
<Race>
<RaceNumber>6</RaceNumber>
<BettingInterestList>1,2,3,4,5,6,7</BettingInterestList>
<Pool>
<PoolCode>WN</PoolCode>
<PoolName>Win</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>1</LegCount>
<RaceList>6</RaceList>
<PricingRace>6</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>PL</PoolCode>
<PoolName>Place</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>1</LegCount>
<RaceList>6</RaceList>
<PricingRace>6</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>SH</PoolCode>
<PoolName>Show</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>1</LegCount>
<RaceList>6</RaceList>
<PricingRace>6</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>WPS</PoolCode>
<PoolName>Win/Place/Show</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>1</LegCount>
<RaceList>6</RaceList>
<PricingRace>6</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>WP</PoolCode>
<PoolName>WP</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>1</LegCount>
<RaceList>6</RaceList>
<PricingRace>6</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>WS</PoolCode>
<PoolName>WS</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>1</LegCount>
<RaceList>6</RaceList>
<PricingRace>6</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>PS</PoolCode>
<PoolName>Place/Show</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>1</LegCount>
<RaceList>6</RaceList>
<PricingRace>6</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>DB</PoolCode>
<PoolName>Double</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>2</LegCount>
<RaceList>6,7</RaceList>
<PricingRace>7</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>EX</PoolCode>
<PoolName>Exacta</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>2</LegCount>
<RaceList>6,6</RaceList>
<PricingRace>6</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>TR</PoolCode>
<PoolName>Trifecta</PoolName>
<MinWagerAmount>0.5</MinWagerAmount>
<MaxWagerAmount>100000</MaxWagerAmount>
<MinBoxAmount>0.5</MinBoxAmount>
<MinWheelAmount>0.5</MinWheelAmount>
<MultipleAmount>0.5</MultipleAmount>
<LegCount>3</LegCount>
<RaceList>6,6,6</RaceList>
<PricingRace>6</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>SU</PoolCode>
<PoolName>Superfecta</PoolName>
<MinWagerAmount>0.1</MinWagerAmount>
<MaxWagerAmount>10000</MaxWagerAmount>
<MinBoxAmount>0.1</MinBoxAmount>
<MinWheelAmount>0.1</MinWheelAmount>
<MultipleAmount>0.1</MultipleAmount>
<LegCount>4</LegCount>
<RaceList>6,6,6,6</RaceList>
<PricingRace>6</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Wagerable>1</Wagerable>
</Race>
<Race>
<RaceNumber>7</RaceNumber>
<BettingInterestList>1,2,3,4,5,6,7,8,9,10</BettingInterestList>
<Pool>
<PoolCode>WN</PoolCode>
<PoolName>Win</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>1</LegCount>
<RaceList>7</RaceList>
<PricingRace>7</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>PL</PoolCode>
<PoolName>Place</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>1</LegCount>
<RaceList>7</RaceList>
<PricingRace>7</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>SH</PoolCode>
<PoolName>Show</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>1</LegCount>
<RaceList>7</RaceList>
<PricingRace>7</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>WPS</PoolCode>
<PoolName>Win/Place/Show</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>1</LegCount>
<RaceList>7</RaceList>
<PricingRace>7</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>WP</PoolCode>
<PoolName>WP</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>1</LegCount>
<RaceList>7</RaceList>
<PricingRace>7</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>WS</PoolCode>
<PoolName>WS</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>1</LegCount>
<RaceList>7</RaceList>
<PricingRace>7</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>PS</PoolCode>
<PoolName>Place/Show</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>1</LegCount>
<RaceList>7</RaceList>
<PricingRace>7</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>DB</PoolCode>
<PoolName>Double</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>2</LegCount>
<RaceList>7,8</RaceList>
<PricingRace>8</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>EX</PoolCode>
<PoolName>Exacta</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>2</LegCount>
<RaceList>7,7</RaceList>
<PricingRace>7</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>TR</PoolCode>
<PoolName>Trifecta</PoolName>
<MinWagerAmount>0.5</MinWagerAmount>
<MaxWagerAmount>100000</MaxWagerAmount>
<MinBoxAmount>0.5</MinBoxAmount>
<MinWheelAmount>0.5</MinWheelAmount>
<MultipleAmount>0.5</MultipleAmount>
<LegCount>3</LegCount>
<RaceList>7,7,7</RaceList>
<PricingRace>7</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>SU</PoolCode>
<PoolName>Superfecta</PoolName>
<MinWagerAmount>0.1</MinWagerAmount>
<MaxWagerAmount>10000</MaxWagerAmount>
<MinBoxAmount>0.1</MinBoxAmount>
<MinWheelAmount>0.1</MinWheelAmount>
<MultipleAmount>0.1</MultipleAmount>
<LegCount>4</LegCount>
<RaceList>7,7,7,7</RaceList>
<PricingRace>7</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Wagerable>1</Wagerable>
</Race>
<Race>
<RaceNumber>8</RaceNumber>
<BettingInterestList>1,2,3,4,5,6,7,8,9,10</BettingInterestList>
<Pool>
<PoolCode>WN</PoolCode>
<PoolName>Win</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>1</LegCount>
<RaceList>8</RaceList>
<PricingRace>8</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>PL</PoolCode>
<PoolName>Place</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>1</LegCount>
<RaceList>8</RaceList>
<PricingRace>8</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>SH</PoolCode>
<PoolName>Show</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>1</LegCount>
<RaceList>8</RaceList>
<PricingRace>8</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>WPS</PoolCode>
<PoolName>Win/Place/Show</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>1</LegCount>
<RaceList>8</RaceList>
<PricingRace>8</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>WP</PoolCode>
<PoolName>WP</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>1</LegCount>
<RaceList>8</RaceList>
<PricingRace>8</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>WS</PoolCode>
<PoolName>WS</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>1</LegCount>
<RaceList>8</RaceList>
<PricingRace>8</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>PS</PoolCode>
<PoolName>Place/Show</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>1</LegCount>
<RaceList>8</RaceList>
<PricingRace>8</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>EX</PoolCode>
<PoolName>Exacta</PoolName>
<MinWagerAmount>1</MinWagerAmount>
<MaxWagerAmount>1000000</MaxWagerAmount>
<MinBoxAmount>1</MinBoxAmount>
<MinWheelAmount>1</MinWheelAmount>
<MultipleAmount>1</MultipleAmount>
<LegCount>2</LegCount>
<RaceList>8,8</RaceList>
<PricingRace>8</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>TR</PoolCode>
<PoolName>Trifecta</PoolName>
<MinWagerAmount>0.5</MinWagerAmount>
<MaxWagerAmount>100000</MaxWagerAmount>
<MinBoxAmount>0.5</MinBoxAmount>
<MinWheelAmount>0.5</MinWheelAmount>
<MultipleAmount>0.5</MultipleAmount>
<LegCount>3</LegCount>
<RaceList>8,8,8</RaceList>
<PricingRace>8</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Pool>
<PoolCode>SU</PoolCode>
<PoolName>Superfecta</PoolName>
<MinWagerAmount>0.1</MinWagerAmount>
<MaxWagerAmount>10000</MaxWagerAmount>
<MinBoxAmount>0.1</MinBoxAmount>
<MinWheelAmount>0.1</MinWheelAmount>
<MultipleAmount>0.1</MultipleAmount>
<LegCount>4</LegCount>
<RaceList>8,8,8,8</RaceList>
<PricingRace>8</PricingRace>
<PoolStatus>Open</PoolStatus>
</Pool>
<Wagerable>1</Wagerable>
</Race>
</MeetingData>
[top]
RaceCard
<RaceCardData xmlns='http://www.w3.org/2001/XMLSchema-instance'>
<DocumentSerialNumber>0030748495</DocumentSerialNumber>
<TimeStamp>2018-05-13 00:20:46</TimeStamp>
<TimeZone>PT</TimeZone>
<SequenceKey>RaceCard-GP-1-2018-05-14</SequenceKey>
<SequenceNumber>00002</SequenceNumber>
<SequenceDate>2018-05-14</SequenceDate>
<GeneratorType>RaceCard</GeneratorType>
<FileName>20180514-GP-1-00002-0030748495-RaceCard.xml</FileName>
<Event>
<TrackCode>GP</TrackCode>
<EventName>Gulfstream Park</EventName>
<EventDate>2018-05-14</EventDate>
<Weather>Fair</Weather>
<TrackCondition>
<Course>Track</Course>
<Condition>fast</Condition>
</TrackCondition>
<TrackCondition>
<Course>Turf</Course>
<Condition>firm</Condition>
</TrackCondition>
</Event>
<Race>
<RaceNumber>1</RaceNumber>
<RaceName>Simulcast from Valparaiso Chile</RaceName>
<NumberOfBettingInterests>13</NumberOfBettingInterests>
<RaceBreed>TB</RaceBreed>
<Purse>2587.00</Purse>
<Distance>5F</Distance>
<Class>Handicap</Class>
<TrackSurface>T</TrackSurface>
<AgeRestrictions>4U</AgeRestrictions>
<PublishedPostTime>4:15PM</PublishedPostTime>
<Description>SIMULCAST from Valparaiso, Chile Race #1. To Wager Please ask
for Gulfstream Race #1. Handicap, Open, 4 yo's & up, Dist. 1000
meters.</Description>
<TimeZone>ET</TimeZone>
<BettingInterest>
<BettingInterestProgramNumber>1</BettingInterestProgramNumber>
<ToteNumber>1</ToteNumber>
<PostPosition>01</PostPosition>
<BettingInterestName>Nick Blue (CHI)</BettingInterestName>
<RegistrationNumber>AA9A02D7</RegistrationNumber>
<MLOdd>12/1</MLOdd>
<HorseYearOfBirth>2013</HorseYearOfBirth>
<Color>CH</Color>
<Gender>G</Gender>
<SaddleClothColor>Red</SaddleClothColor>
<Jockey>Luis Felipe Rodriguez</Jockey>
<Trainer>Osvaldo Alfonso Urbina Hernandez</Trainer>
<Owner>Kekita</Owner>
<WeightCarried>123</WeightCarried>
<SireName>Pavarotti</SireName>
<DamName>Tianshan (CHI)</DamName>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<AdvancedStats>
<Horse_THIS_YEAR>0|0|0|0|</Horse_THIS_YEAR>
<Horse_TY_DIRT>0|0|0|0|</Horse_TY_DIRT>
<Horse_TY_TURF>0|0|0|0|</Horse_TY_TURF>
<Horse_TY_ALLWTHR>0|0|0|0|</Horse_TY_ALLWTHR>
<Horse_TY_JUMP>0|0|0|0|</Horse_TY_JUMP>
<Horse_TY_MUD>0|0|0|0|</Horse_TY_MUD>
<Horse_TY_SOFT>0|0|0|0|</Horse_TY_SOFT>
<Horse_LAST_YEAR>0|0|0|0|</Horse_LAST_YEAR>
<Horse_LY_DIRT>0|0|0|0|</Horse_LY_DIRT>
<Horse_LY_TURF>0|0|0|0|</Horse_LY_TURF>
<Horse_LY_JUMP>0|0|0|0|</Horse_LY_JUMP>
<Horse_LY_ALLWTHR>0|0|0|0|</Horse_LY_ALLWTHR>
<Horse_LY_MUD>0|0|0|0|</Horse_LY_MUD>
<Horse_LY_SOFT>0|0|0|0|</Horse_LY_SOFT>
<Horse_LIFETIME>0|0|0|0|</Horse_LIFETIME>
<Horse_DIRT>0|0|0|0|</Horse_DIRT>
<Horse_TURF>0|0|0|0|</Horse_TURF>
<Horse_ALL_WEATHR>0|0|0|0|</Horse_ALL_WEATHR>
<Horse_JUMP>0|0|0|0|</Horse_JUMP>
<Horse_MUD>0|0|0|0|</Horse_MUD>
<Horse_SOFT_TURF>0|0|0|0|</Horse_SOFT_TURF>
<Horse_JOCK_HORSE>0|0|0|0|</Horse_JOCK_HORSE>
<Horse_JOCK_TRAN>0|0|0|0|</Horse_JOCK_TRAN>
<Horse_TRAN_HORSE>0|0|0|0|</Horse_TRAN_HORSE>
<Jockey_DIRT>0|0|0|</Jockey_DIRT>
<Jockey_LAST365>0|0|0|</Jockey_LAST365>
<Jockey_ODDS5ORMORE>0|0|0|</Jockey_ODDS5ORMORE>
<Jockey_ODDSLESSTHAN5>0|0|0|</Jockey_ODDSLESSTHAN5>
<Jockey_ROUTES>0|0|0|</Jockey_ROUTES>
<Jockey_SPRINTS>0|0|0|</Jockey_SPRINTS>
<Jockey_TODAYS_DIST_SURF>0|0|0|</Jockey_TODAYS_DIST_SURF>
<Jockey_TURF>0|0|0|</Jockey_TURF>
<Jockey_ALL_WEATHR>0|0|0|</Jockey_ALL_WEATHR>
<Jockey_LAST10>0|0|0|</Jockey_LAST10>
<Jockey_LAST30>0|0|0|</Jockey_LAST30>
<Jockey_FAVORITE>0|0|0|</Jockey_FAVORITE>
<Trainer_DIRT>0|0|0|</Trainer_DIRT>
<Trainer_LAST365>0|0|0|</Trainer_LAST365>
<Trainer_ODDS5ORMORE>0|0|0|</Trainer_ODDS5ORMORE>
<Trainer_ODDSLESSTHAN5>0|0|0|</Trainer_ODDSLESSTHAN5>
<Trainer_ROUTES>0|0|0|</Trainer_ROUTES>
<Trainer_SPRINTS>0|0|0|</Trainer_SPRINTS>
<Trainer_TODAYS_DIST_SURF>0|0|0|</Trainer_TODAYS_DIST_SURF>
<Trainer_TURF>0|0|0|</Trainer_TURF>
<Trainer_ALL_WEATHR>0|0|0|</Trainer_ALL_WEATHR>
<Trainer_LAST10>0|0|0|</Trainer_LAST10>
<Trainer_LAST30>0|0|0|</Trainer_LAST30>
<Trainer_FAVORITE>0|0|0|</Trainer_FAVORITE>
<Trainer_31_60OFF>0|0|0|</Trainer_31_60OFF>
<Trainer_61_180OFF>0|0|0|</Trainer_61_180OFF>
<Trainer_180_UPOFF>0|0|0|</Trainer_180_UPOFF>
<TM_Premium_Plus_data>0|0|0|0|0|0|</TM_Premium_Plus_data>
</AdvancedStats>
</BettingInterest>
<BettingInterest>
<BettingInterestProgramNumber>2</BettingInterestProgramNumber>
<ToteNumber>2</ToteNumber>
<PostPosition>02</PostPosition>
<BettingInterestName>Croy (CHI)</BettingInterestName>
<RegistrationNumber>A9849446</RegistrationNumber>
<MLOdd>8/1</MLOdd>
<HorseYearOfBirth>2012</HorseYearOfBirth>
<Color>B</Color>
<Gender>H</Gender>
<SaddleClothColor>White</SaddleClothColor>
<Jockey>Miguel Angel Gutierrez Badilla</Jockey>
<Trainer>Ernesto Manuel Guajardo</Trainer>
<Owner>Aida Annabella</Owner>
<WeightCarried>123</WeightCarried>
<SireName>Ivan Denisovich (IRE)</SireName>
<DamName>Creacion (CHI)</DamName>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<AdvancedStats>
<Horse_THIS_YEAR>0|0|0|0|</Horse_THIS_YEAR>
<Horse_TY_DIRT>0|0|0|0|</Horse_TY_DIRT>
<Horse_TY_TURF>0|0|0|0|</Horse_TY_TURF>
<Horse_TY_ALLWTHR>0|0|0|0|</Horse_TY_ALLWTHR>
<Horse_TY_JUMP>0|0|0|0|</Horse_TY_JUMP>
<Horse_TY_MUD>0|0|0|0|</Horse_TY_MUD>
<Horse_TY_SOFT>0|0|0|0|</Horse_TY_SOFT>
<Horse_LAST_YEAR>0|0|0|0|</Horse_LAST_YEAR>
<Horse_LY_DIRT>0|0|0|0|</Horse_LY_DIRT>
<Horse_LY_TURF>0|0|0|0|</Horse_LY_TURF>
<Horse_LY_JUMP>0|0|0|0|</Horse_LY_JUMP>
<Horse_LY_ALLWTHR>0|0|0|0|</Horse_LY_ALLWTHR>
<Horse_LY_MUD>0|0|0|0|</Horse_LY_MUD>
<Horse_LY_SOFT>0|0|0|0|</Horse_LY_SOFT>
<Horse_LIFETIME>0|0|0|0|</Horse_LIFETIME>
<Horse_DIRT>0|0|0|0|</Horse_DIRT>
<Horse_TURF>0|0|0|0|</Horse_TURF>
<Horse_ALL_WEATHR>0|0|0|0|</Horse_ALL_WEATHR>
<Horse_JUMP>0|0|0|0|</Horse_JUMP>
<Horse_MUD>0|0|0|0|</Horse_MUD>
<Horse_SOFT_TURF>0|0|0|0|</Horse_SOFT_TURF>
<Horse_JOCK_HORSE>0|0|0|0|</Horse_JOCK_HORSE>
<Horse_JOCK_TRAN>0|0|0|0|</Horse_JOCK_TRAN>
<Horse_TRAN_HORSE>0|0|0|0|</Horse_TRAN_HORSE>
<Jockey_DIRT>0|0|0|</Jockey_DIRT>
<Jockey_LAST365>0|0|0|</Jockey_LAST365>
<Jockey_ODDS5ORMORE>0|0|0|</Jockey_ODDS5ORMORE>
<Jockey_ODDSLESSTHAN5>0|0|0|</Jockey_ODDSLESSTHAN5>
<Jockey_ROUTES>0|0|0|</Jockey_ROUTES>
<Jockey_SPRINTS>0|0|0|</Jockey_SPRINTS>
<Jockey_TODAYS_DIST_SURF>0|0|0|</Jockey_TODAYS_DIST_SURF>
<Jockey_TURF>0|0|0|</Jockey_TURF>
<Jockey_ALL_WEATHR>0|0|0|</Jockey_ALL_WEATHR>
<Jockey_LAST10>0|0|0|</Jockey_LAST10>
<Jockey_LAST30>0|0|0|</Jockey_LAST30>
<Jockey_FAVORITE>0|0|0|</Jockey_FAVORITE>
<Trainer_DIRT>0|0|0|</Trainer_DIRT>
<Trainer_LAST365>0|0|0|</Trainer_LAST365>
<Trainer_ODDS5ORMORE>0|0|0|</Trainer_ODDS5ORMORE>
<Trainer_ODDSLESSTHAN5>0|0|0|</Trainer_ODDSLESSTHAN5>
<Trainer_ROUTES>0|0|0|</Trainer_ROUTES>
<Trainer_SPRINTS>0|0|0|</Trainer_SPRINTS>
<Trainer_TODAYS_DIST_SURF>0|0|0|</Trainer_TODAYS_DIST_SURF>
<Trainer_TURF>0|0|0|</Trainer_TURF>
<Trainer_ALL_WEATHR>0|0|0|</Trainer_ALL_WEATHR>
<Trainer_LAST10>0|0|0|</Trainer_LAST10>
<Trainer_LAST30>0|0|0|</Trainer_LAST30>
<Trainer_FAVORITE>0|0|0|</Trainer_FAVORITE>
<Trainer_31_60OFF>0|0|0|</Trainer_31_60OFF>
<Trainer_61_180OFF>0|0|0|</Trainer_61_180OFF>
<Trainer_180_UPOFF>0|0|0|</Trainer_180_UPOFF>
<TM_Premium_Plus_data>0|0|0|0|0|0|</TM_Premium_Plus_data>
</AdvancedStats>
</BettingInterest>
<BettingInterest>
<BettingInterestProgramNumber>3</BettingInterestProgramNumber>
<ToteNumber>3</ToteNumber>
<PostPosition>03</PostPosition>
<BettingInterestName>Mirame Linda (CHI)</BettingInterestName>
<RegistrationNumber>AA990570</RegistrationNumber>
<MLOdd>30/1</MLOdd>
<HorseYearOfBirth>2013</HorseYearOfBirth>
<Color>Dk B/Br</Color>
<Gender>M</Gender>
<SaddleClothColor>Blue</SaddleClothColor>
<Jockey>Marcelo Ignacio Contador</Jockey>
<Trainer>Emilio Padovani Estay</Trainer>
<Owner>Alicahue</Owner>
<WeightCarried>123</WeightCarried>
<SireName>Bluegrass Cat</SireName>
<DamName>Mirenme (CHI)</DamName>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<AdvancedStats>
<Horse_THIS_YEAR>0|0|0|0|</Horse_THIS_YEAR>
<Horse_TY_DIRT>0|0|0|0|</Horse_TY_DIRT>
<Horse_TY_TURF>0|0|0|0|</Horse_TY_TURF>
<Horse_TY_ALLWTHR>0|0|0|0|</Horse_TY_ALLWTHR>
<Horse_TY_JUMP>0|0|0|0|</Horse_TY_JUMP>
<Horse_TY_MUD>0|0|0|0|</Horse_TY_MUD>
<Horse_TY_SOFT>0|0|0|0|</Horse_TY_SOFT>
<Horse_LAST_YEAR>0|0|0|0|</Horse_LAST_YEAR>
<Horse_LY_DIRT>0|0|0|0|</Horse_LY_DIRT>
<Horse_LY_TURF>0|0|0|0|</Horse_LY_TURF>
<Horse_LY_JUMP>0|0|0|0|</Horse_LY_JUMP>
<Horse_LY_ALLWTHR>0|0|0|0|</Horse_LY_ALLWTHR>
<Horse_LY_MUD>0|0|0|0|</Horse_LY_MUD>
<Horse_LY_SOFT>0|0|0|0|</Horse_LY_SOFT>
<Horse_LIFETIME>0|0|0|0|</Horse_LIFETIME>
<Horse_DIRT>0|0|0|0|</Horse_DIRT>
<Horse_TURF>0|0|0|0|</Horse_TURF>
<Horse_ALL_WEATHR>0|0|0|0|</Horse_ALL_WEATHR>
<Horse_JUMP>0|0|0|0|</Horse_JUMP>
<Horse_MUD>0|0|0|0|</Horse_MUD>
<Horse_SOFT_TURF>0|0|0|0|</Horse_SOFT_TURF>
<Horse_JOCK_HORSE>0|0|0|0|</Horse_JOCK_HORSE>
<Horse_JOCK_TRAN>0|0|0|0|</Horse_JOCK_TRAN>
<Horse_TRAN_HORSE>0|0|0|0|</Horse_TRAN_HORSE>
<Jockey_DIRT>0|0|0|</Jockey_DIRT>
<Jockey_LAST365>0|0|0|</Jockey_LAST365>
<Jockey_ODDS5ORMORE>0|0|0|</Jockey_ODDS5ORMORE>
<Jockey_ODDSLESSTHAN5>0|0|0|</Jockey_ODDSLESSTHAN5>
<Jockey_ROUTES>0|0|0|</Jockey_ROUTES>
<Jockey_SPRINTS>0|0|0|</Jockey_SPRINTS>
<Jockey_TODAYS_DIST_SURF>0|0|0|</Jockey_TODAYS_DIST_SURF>
<Jockey_TURF>0|0|0|</Jockey_TURF>
<Jockey_ALL_WEATHR>0|0|0|</Jockey_ALL_WEATHR>
<Jockey_LAST10>0|0|0|</Jockey_LAST10>
<Jockey_LAST30>0|0|0|</Jockey_LAST30>
<Jockey_FAVORITE>0|0|0|</Jockey_FAVORITE>
<Trainer_DIRT>0|0|0|</Trainer_DIRT>
<Trainer_LAST365>0|0|0|</Trainer_LAST365>
<Trainer_ODDS5ORMORE>0|0|0|</Trainer_ODDS5ORMORE>
<Trainer_ODDSLESSTHAN5>0|0|0|</Trainer_ODDSLESSTHAN5>
<Trainer_ROUTES>0|0|0|</Trainer_ROUTES>
<Trainer_SPRINTS>0|0|0|</Trainer_SPRINTS>
<Trainer_TODAYS_DIST_SURF>0|0|0|</Trainer_TODAYS_DIST_SURF>
<Trainer_TURF>0|0|0|</Trainer_TURF>
<Trainer_ALL_WEATHR>0|0|0|</Trainer_ALL_WEATHR>
<Trainer_LAST10>0|0|0|</Trainer_LAST10>
<Trainer_LAST30>0|0|0|</Trainer_LAST30>
<Trainer_FAVORITE>0|0|0|</Trainer_FAVORITE>
<Trainer_31_60OFF>0|0|0|</Trainer_31_60OFF>
<Trainer_61_180OFF>0|0|0|</Trainer_61_180OFF>
<Trainer_180_UPOFF>0|0|0|</Trainer_180_UPOFF>
<TM_Premium_Plus_data>0|0|0|0|0|0|</TM_Premium_Plus_data>
</AdvancedStats>
</BettingInterest>
<BettingInterest>
<BettingInterestProgramNumber>4</BettingInterestProgramNumber>
<ToteNumber>4</ToteNumber>
<PostPosition>04</PostPosition>
<BettingInterestName>Vilassar de Mar (CHI)</BettingInterestName>
<RegistrationNumber>A9444022</RegistrationNumber>
<MLOdd>12/1</MLOdd>
<HorseYearOfBirth>2010</HorseYearOfBirth>
<Color>B</Color>
<Gender>H</Gender>
<SaddleClothColor>Yellow</SaddleClothColor>
<Jockey>Piero Ignacio Reyes Podesta</Jockey>
<Trainer>Osman Rodriguez Cespedes</Trainer>
<Owner>Gamboa</Owner>
<WeightCarried>123</WeightCarried>
<SireName>Pyrus</SireName>
<DamName>Revisionista (CHI)</DamName>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<AdvancedStats>
<Horse_THIS_YEAR>0|0|0|0|</Horse_THIS_YEAR>
<Horse_TY_DIRT>0|0|0|0|</Horse_TY_DIRT>
<Horse_TY_TURF>0|0|0|0|</Horse_TY_TURF>
<Horse_TY_ALLWTHR>0|0|0|0|</Horse_TY_ALLWTHR>
<Horse_TY_JUMP>0|0|0|0|</Horse_TY_JUMP>
<Horse_TY_MUD>0|0|0|0|</Horse_TY_MUD>
<Horse_TY_SOFT>0|0|0|0|</Horse_TY_SOFT>
<Horse_LAST_YEAR>0|0|0|0|</Horse_LAST_YEAR>
<Horse_LY_DIRT>0|0|0|0|</Horse_LY_DIRT>
<Horse_LY_TURF>0|0|0|0|</Horse_LY_TURF>
<Horse_LY_JUMP>0|0|0|0|</Horse_LY_JUMP>
<Horse_LY_ALLWTHR>0|0|0|0|</Horse_LY_ALLWTHR>
<Horse_LY_MUD>0|0|0|0|</Horse_LY_MUD>
<Horse_LY_SOFT>0|0|0|0|</Horse_LY_SOFT>
<Horse_LIFETIME>0|0|0|0|</Horse_LIFETIME>
<Horse_DIRT>0|0|0|0|</Horse_DIRT>
<Horse_TURF>0|0|0|0|</Horse_TURF>
<Horse_ALL_WEATHR>0|0|0|0|</Horse_ALL_WEATHR>
<Horse_JUMP>0|0|0|0|</Horse_JUMP>
<Horse_MUD>0|0|0|0|</Horse_MUD>
<Horse_SOFT_TURF>0|0|0|0|</Horse_SOFT_TURF>
<Horse_JOCK_HORSE>0|0|0|0|</Horse_JOCK_HORSE>
<Horse_JOCK_TRAN>0|0|0|0|</Horse_JOCK_TRAN>
<Horse_TRAN_HORSE>0|0|0|0|</Horse_TRAN_HORSE>
<Jockey_DIRT>0|0|0|</Jockey_DIRT>
<Jockey_LAST365>0|0|0|</Jockey_LAST365>
<Jockey_ODDS5ORMORE>0|0|0|</Jockey_ODDS5ORMORE>
<Jockey_ODDSLESSTHAN5>0|0|0|</Jockey_ODDSLESSTHAN5>
<Jockey_ROUTES>0|0|0|</Jockey_ROUTES>
<Jockey_SPRINTS>0|0|0|</Jockey_SPRINTS>
<Jockey_TODAYS_DIST_SURF>0|0|0|</Jockey_TODAYS_DIST_SURF>
<Jockey_TURF>0|0|0|</Jockey_TURF>
<Jockey_ALL_WEATHR>0|0|0|</Jockey_ALL_WEATHR>
<Jockey_LAST10>0|0|0|</Jockey_LAST10>
<Jockey_LAST30>0|0|0|</Jockey_LAST30>
<Jockey_FAVORITE>0|0|0|</Jockey_FAVORITE>
<Trainer_DIRT>0|0|0|</Trainer_DIRT>
<Trainer_LAST365>0|0|0|</Trainer_LAST365>
<Trainer_ODDS5ORMORE>0|0|0|</Trainer_ODDS5ORMORE>
<Trainer_ODDSLESSTHAN5>0|0|0|</Trainer_ODDSLESSTHAN5>
<Trainer_ROUTES>0|0|0|</Trainer_ROUTES>
<Trainer_SPRINTS>0|0|0|</Trainer_SPRINTS>
<Trainer_TODAYS_DIST_SURF>0|0|0|</Trainer_TODAYS_DIST_SURF>
<Trainer_TURF>0|0|0|</Trainer_TURF>
<Trainer_ALL_WEATHR>0|0|0|</Trainer_ALL_WEATHR>
<Trainer_LAST10>0|0|0|</Trainer_LAST10>
<Trainer_LAST30>0|0|0|</Trainer_LAST30>
<Trainer_FAVORITE>0|0|0|</Trainer_FAVORITE>
<Trainer_31_60OFF>0|0|0|</Trainer_31_60OFF>
<Trainer_61_180OFF>0|0|0|</Trainer_61_180OFF>
<Trainer_180_UPOFF>0|0|0|</Trainer_180_UPOFF>
<TM_Premium_Plus_data>0|0|0|0|0|0|</TM_Premium_Plus_data>
</AdvancedStats>
</BettingInterest>
<BettingInterest>
<BettingInterestProgramNumber>5</BettingInterestProgramNumber>
<ToteNumber>5</ToteNumber>
<PostPosition>05</PostPosition>
<BettingInterestName>Real Soldier (CHI)</BettingInterestName>
<RegistrationNumber>AA990332</RegistrationNumber>
<MLOdd>12/1</MLOdd>
<HorseYearOfBirth>2013</HorseYearOfBirth>
<Color>B</Color>
<Gender>H</Gender>
<SaddleClothColor>Green</SaddleClothColor>
<Jockey>Diego Andres Carvacho</Jockey>
<Trainer>Oscar Guillermo Escobar</Trainer>
<Owner>Fenomeno</Owner>
<WeightCarried>123</WeightCarried>
<SireName>Soldier of Fortune (IRE)</SireName>
<DamName>Valreal (ARG)</DamName>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<AdvancedStats>
<Horse_THIS_YEAR>0|0|0|0|</Horse_THIS_YEAR>
<Horse_TY_DIRT>0|0|0|0|</Horse_TY_DIRT>
<Horse_TY_TURF>0|0|0|0|</Horse_TY_TURF>
<Horse_TY_ALLWTHR>0|0|0|0|</Horse_TY_ALLWTHR>
<Horse_TY_JUMP>0|0|0|0|</Horse_TY_JUMP>
<Horse_TY_MUD>0|0|0|0|</Horse_TY_MUD>
<Horse_TY_SOFT>0|0|0|0|</Horse_TY_SOFT>
<Horse_LAST_YEAR>0|0|0|0|</Horse_LAST_YEAR>
<Horse_LY_DIRT>0|0|0|0|</Horse_LY_DIRT>
<Horse_LY_TURF>0|0|0|0|</Horse_LY_TURF>
<Horse_LY_JUMP>0|0|0|0|</Horse_LY_JUMP>
<Horse_LY_ALLWTHR>0|0|0|0|</Horse_LY_ALLWTHR>
<Horse_LY_MUD>0|0|0|0|</Horse_LY_MUD>
<Horse_LY_SOFT>0|0|0|0|</Horse_LY_SOFT>
<Horse_LIFETIME>0|0|0|0|</Horse_LIFETIME>
<Horse_DIRT>0|0|0|0|</Horse_DIRT>
<Horse_TURF>0|0|0|0|</Horse_TURF>
<Horse_ALL_WEATHR>0|0|0|0|</Horse_ALL_WEATHR>
<Horse_JUMP>0|0|0|0|</Horse_JUMP>
<Horse_MUD>0|0|0|0|</Horse_MUD>
<Horse_SOFT_TURF>0|0|0|0|</Horse_SOFT_TURF>
<Horse_JOCK_HORSE>0|0|0|0|</Horse_JOCK_HORSE>
<Horse_JOCK_TRAN>0|0|0|0|</Horse_JOCK_TRAN>
<Horse_TRAN_HORSE>0|0|0|0|</Horse_TRAN_HORSE>
<Jockey_DIRT>0|0|0|</Jockey_DIRT>
<Jockey_LAST365>0|0|0|</Jockey_LAST365>
<Jockey_ODDS5ORMORE>0|0|0|</Jockey_ODDS5ORMORE>
<Jockey_ODDSLESSTHAN5>0|0|0|</Jockey_ODDSLESSTHAN5>
<Jockey_ROUTES>0|0|0|</Jockey_ROUTES>
<Jockey_SPRINTS>0|0|0|</Jockey_SPRINTS>
<Jockey_TODAYS_DIST_SURF>0|0|0|</Jockey_TODAYS_DIST_SURF>
<Jockey_TURF>0|0|0|</Jockey_TURF>
<Jockey_ALL_WEATHR>0|0|0|</Jockey_ALL_WEATHR>
<Jockey_LAST10>0|0|0|</Jockey_LAST10>
<Jockey_LAST30>0|0|0|</Jockey_LAST30>
<Jockey_FAVORITE>0|0|0|</Jockey_FAVORITE>
<Trainer_DIRT>0|0|0|</Trainer_DIRT>
<Trainer_LAST365>0|0|0|</Trainer_LAST365>
<Trainer_ODDS5ORMORE>0|0|0|</Trainer_ODDS5ORMORE>
<Trainer_ODDSLESSTHAN5>0|0|0|</Trainer_ODDSLESSTHAN5>
<Trainer_ROUTES>0|0|0|</Trainer_ROUTES>
<Trainer_SPRINTS>0|0|0|</Trainer_SPRINTS>
<Trainer_TODAYS_DIST_SURF>0|0|0|</Trainer_TODAYS_DIST_SURF>
<Trainer_TURF>0|0|0|</Trainer_TURF>
<Trainer_ALL_WEATHR>0|0|0|</Trainer_ALL_WEATHR>
<Trainer_LAST10>0|0|0|</Trainer_LAST10>
<Trainer_LAST30>0|0|0|</Trainer_LAST30>
<Trainer_FAVORITE>0|0|0|</Trainer_FAVORITE>
<Trainer_31_60OFF>0|0|0|</Trainer_31_60OFF>
<Trainer_61_180OFF>0|0|0|</Trainer_61_180OFF>
<Trainer_180_UPOFF>0|0|0|</Trainer_180_UPOFF>
<TM_Premium_Plus_data>0|0|0|0|0|0|</TM_Premium_Plus_data>
</AdvancedStats>
</BettingInterest>
<BettingInterest>
<BettingInterestProgramNumber>6</BettingInterestProgramNumber>
<ToteNumber>6</ToteNumber>
<PostPosition>06</PostPosition>
<BettingInterestName>Picara Morocha (CHI)</BettingInterestName>
<RegistrationNumber>AA990506</RegistrationNumber>
<MLOdd>30/1</MLOdd>
<HorseYearOfBirth>2013</HorseYearOfBirth>
<Color>Dk B/Br</Color>
<Gender>M</Gender>
<SaddleClothColor>Black</SaddleClothColor>
<Jockey>Victor Manuel Miranda Gallegos</Jockey>
<Trainer>Sebastian Andres Silva Santibanez</Trainer>
<Owner>Dado Siete</Owner>
<WeightCarried>123</WeightCarried>
<SireName>Soldier of Fortune (IRE)</SireName>
<DamName>Pondichery (CHI)</DamName>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<AdvancedStats>
<Horse_THIS_YEAR>0|0|0|0|</Horse_THIS_YEAR>
<Horse_TY_DIRT>0|0|0|0|</Horse_TY_DIRT>
<Horse_TY_TURF>0|0|0|0|</Horse_TY_TURF>
<Horse_TY_ALLWTHR>0|0|0|0|</Horse_TY_ALLWTHR>
<Horse_TY_JUMP>0|0|0|0|</Horse_TY_JUMP>
<Horse_TY_MUD>0|0|0|0|</Horse_TY_MUD>
<Horse_TY_SOFT>0|0|0|0|</Horse_TY_SOFT>
<Horse_LAST_YEAR>0|0|0|0|</Horse_LAST_YEAR>
<Horse_LY_DIRT>0|0|0|0|</Horse_LY_DIRT>
<Horse_LY_TURF>0|0|0|0|</Horse_LY_TURF>
<Horse_LY_JUMP>0|0|0|0|</Horse_LY_JUMP>
<Horse_LY_ALLWTHR>0|0|0|0|</Horse_LY_ALLWTHR>
<Horse_LY_MUD>0|0|0|0|</Horse_LY_MUD>
<Horse_LY_SOFT>0|0|0|0|</Horse_LY_SOFT>
<Horse_LIFETIME>0|0|0|0|</Horse_LIFETIME>
<Horse_DIRT>0|0|0|0|</Horse_DIRT>
<Horse_TURF>0|0|0|0|</Horse_TURF>
<Horse_ALL_WEATHR>0|0|0|0|</Horse_ALL_WEATHR>
<Horse_JUMP>0|0|0|0|</Horse_JUMP>
<Horse_MUD>0|0|0|0|</Horse_MUD>
<Horse_SOFT_TURF>0|0|0|0|</Horse_SOFT_TURF>
<Horse_JOCK_HORSE>0|0|0|0|</Horse_JOCK_HORSE>
<Horse_JOCK_TRAN>0|0|0|0|</Horse_JOCK_TRAN>
<Horse_TRAN_HORSE>0|0|0|0|</Horse_TRAN_HORSE>
<Jockey_DIRT>0|0|0|</Jockey_DIRT>
<Jockey_LAST365>0|0|0|</Jockey_LAST365>
<Jockey_ODDS5ORMORE>0|0|0|</Jockey_ODDS5ORMORE>
<Jockey_ODDSLESSTHAN5>0|0|0|</Jockey_ODDSLESSTHAN5>
<Jockey_ROUTES>0|0|0|</Jockey_ROUTES>
<Jockey_SPRINTS>0|0|0|</Jockey_SPRINTS>
<Jockey_TODAYS_DIST_SURF>0|0|0|</Jockey_TODAYS_DIST_SURF>
<Jockey_TURF>0|0|0|</Jockey_TURF>
<Jockey_ALL_WEATHR>0|0|0|</Jockey_ALL_WEATHR>
<Jockey_LAST10>0|0|0|</Jockey_LAST10>
<Jockey_LAST30>0|0|0|</Jockey_LAST30>
<Jockey_FAVORITE>0|0|0|</Jockey_FAVORITE>
<Trainer_DIRT>0|0|0|</Trainer_DIRT>
<Trainer_LAST365>0|0|0|</Trainer_LAST365>
<Trainer_ODDS5ORMORE>0|0|0|</Trainer_ODDS5ORMORE>
<Trainer_ODDSLESSTHAN5>0|0|0|</Trainer_ODDSLESSTHAN5>
<Trainer_ROUTES>0|0|0|</Trainer_ROUTES>
<Trainer_SPRINTS>0|0|0|</Trainer_SPRINTS>
<Trainer_TODAYS_DIST_SURF>0|0|0|</Trainer_TODAYS_DIST_SURF>
<Trainer_TURF>0|0|0|</Trainer_TURF>
<Trainer_ALL_WEATHR>0|0|0|</Trainer_ALL_WEATHR>
<Trainer_LAST10>0|0|0|</Trainer_LAST10>
<Trainer_LAST30>0|0|0|</Trainer_LAST30>
<Trainer_FAVORITE>0|0|0|</Trainer_FAVORITE>
<Trainer_31_60OFF>0|0|0|</Trainer_31_60OFF>
<Trainer_61_180OFF>0|0|0|</Trainer_61_180OFF>
<Trainer_180_UPOFF>0|0|0|</Trainer_180_UPOFF>
<TM_Premium_Plus_data>0|0|0|0|0|0|</TM_Premium_Plus_data>
</AdvancedStats>
</BettingInterest>
<BettingInterest>
<BettingInterestProgramNumber>7</BettingInterestProgramNumber>
<ToteNumber>7</ToteNumber>
<PostPosition>07</PostPosition>
<BettingInterestName>Amado (CHI)</BettingInterestName>
<RegistrationNumber>A9681607</RegistrationNumber>
<MLOdd>30/1</MLOdd>
<HorseYearOfBirth>2011</HorseYearOfBirth>
<Color>B</Color>
<Gender>H</Gender>
<SaddleClothColor>Orange</SaddleClothColor>
<Jockey>Claudio Sebastian Poblete Bravo</Jockey>
<Trainer>Enrique Simon Lagunas</Trainer>
<Owner>Milton Rodriguez M.</Owner>
<WeightCarried>123</WeightCarried>
<SireName>Pal Tata (CHI)</SireName>
<DamName>Amarelha (CHI)</DamName>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<AdvancedStats>
<Horse_THIS_YEAR>0|0|0|0|</Horse_THIS_YEAR>
<Horse_TY_DIRT>0|0|0|0|</Horse_TY_DIRT>
<Horse_TY_TURF>0|0|0|0|</Horse_TY_TURF>
<Horse_TY_ALLWTHR>0|0|0|0|</Horse_TY_ALLWTHR>
<Horse_TY_JUMP>0|0|0|0|</Horse_TY_JUMP>
<Horse_TY_MUD>0|0|0|0|</Horse_TY_MUD>
<Horse_TY_SOFT>0|0|0|0|</Horse_TY_SOFT>
<Horse_LAST_YEAR>0|0|0|0|</Horse_LAST_YEAR>
<Horse_LY_DIRT>0|0|0|0|</Horse_LY_DIRT>
<Horse_LY_TURF>0|0|0|0|</Horse_LY_TURF>
<Horse_LY_JUMP>0|0|0|0|</Horse_LY_JUMP>
<Horse_LY_ALLWTHR>0|0|0|0|</Horse_LY_ALLWTHR>
<Horse_LY_MUD>0|0|0|0|</Horse_LY_MUD>
<Horse_LY_SOFT>0|0|0|0|</Horse_LY_SOFT>
<Horse_LIFETIME>0|0|0|0|</Horse_LIFETIME>
<Horse_DIRT>0|0|0|0|</Horse_DIRT>
<Horse_TURF>0|0|0|0|</Horse_TURF>
<Horse_ALL_WEATHR>0|0|0|0|</Horse_ALL_WEATHR>
<Horse_JUMP>0|0|0|0|</Horse_JUMP>
<Horse_MUD>0|0|0|0|</Horse_MUD>
<Horse_SOFT_TURF>0|0|0|0|</Horse_SOFT_TURF>
<Horse_JOCK_HORSE>0|0|0|0|</Horse_JOCK_HORSE>
<Horse_JOCK_TRAN>0|0|0|0|</Horse_JOCK_TRAN>
<Horse_TRAN_HORSE>0|0|0|0|</Horse_TRAN_HORSE>
<Jockey_DIRT>0|0|0|</Jockey_DIRT>
<Jockey_LAST365>0|0|0|</Jockey_LAST365>
<Jockey_ODDS5ORMORE>0|0|0|</Jockey_ODDS5ORMORE>
<Jockey_ODDSLESSTHAN5>0|0|0|</Jockey_ODDSLESSTHAN5>
<Jockey_ROUTES>0|0|0|</Jockey_ROUTES>
<Jockey_SPRINTS>0|0|0|</Jockey_SPRINTS>
<Jockey_TODAYS_DIST_SURF>0|0|0|</Jockey_TODAYS_DIST_SURF>
<Jockey_TURF>0|0|0|</Jockey_TURF>
<Jockey_ALL_WEATHR>0|0|0|</Jockey_ALL_WEATHR>
<Jockey_LAST10>0|0|0|</Jockey_LAST10>
<Jockey_LAST30>0|0|0|</Jockey_LAST30>
<Jockey_FAVORITE>0|0|0|</Jockey_FAVORITE>
<Trainer_DIRT>0|0|0|</Trainer_DIRT>
<Trainer_LAST365>0|0|0|</Trainer_LAST365>
<Trainer_ODDS5ORMORE>0|0|0|</Trainer_ODDS5ORMORE>
<Trainer_ODDSLESSTHAN5>0|0|0|</Trainer_ODDSLESSTHAN5>
<Trainer_ROUTES>0|0|0|</Trainer_ROUTES>
<Trainer_SPRINTS>0|0|0|</Trainer_SPRINTS>
<Trainer_TODAYS_DIST_SURF>0|0|0|</Trainer_TODAYS_DIST_SURF>
<Trainer_TURF>0|0|0|</Trainer_TURF>
<Trainer_ALL_WEATHR>0|0|0|</Trainer_ALL_WEATHR>
<Trainer_LAST10>0|0|0|</Trainer_LAST10>
<Trainer_LAST30>0|0|0|</Trainer_LAST30>
<Trainer_FAVORITE>0|0|0|</Trainer_FAVORITE>
<Trainer_31_60OFF>0|0|0|</Trainer_31_60OFF>
<Trainer_61_180OFF>0|0|0|</Trainer_61_180OFF>
<Trainer_180_UPOFF>0|0|0|</Trainer_180_UPOFF>
<TM_Premium_Plus_data>0|0|0|0|0|0|</TM_Premium_Plus_data>
</AdvancedStats>
</BettingInterest>
<BettingInterest>
<BettingInterestProgramNumber>8</BettingInterestProgramNumber>
<ToteNumber>8</ToteNumber>
<PostPosition>08</PostPosition>
<BettingInterestName>Belle Satine (CHI)</BettingInterestName>
<RegistrationNumber>AA9A0173</RegistrationNumber>
<MLOdd>30/1</MLOdd>
<HorseYearOfBirth>2014</HorseYearOfBirth>
<Color>CH</Color>
<Gender>F</Gender>
<SaddleClothColor>Pink</SaddleClothColor>
<Jockey>Patricio Andres Suarez Almendares</Jockey>
<Trainer>Emilio Padovani Estay</Trainer>
<Owner>Emilio Padovani E.</Owner>
<WeightCarried>123</WeightCarried>
<SireName>Breathless Storm</SireName>
<DamName>Satine (CHI)</DamName>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<AdvancedStats>
<Horse_THIS_YEAR>0|0|0|0|</Horse_THIS_YEAR>
<Horse_TY_DIRT>0|0|0|0|</Horse_TY_DIRT>
<Horse_TY_TURF>0|0|0|0|</Horse_TY_TURF>
<Horse_TY_ALLWTHR>0|0|0|0|</Horse_TY_ALLWTHR>
<Horse_TY_JUMP>0|0|0|0|</Horse_TY_JUMP>
<Horse_TY_MUD>0|0|0|0|</Horse_TY_MUD>
<Horse_TY_SOFT>0|0|0|0|</Horse_TY_SOFT>
<Horse_LAST_YEAR>0|0|0|0|</Horse_LAST_YEAR>
<Horse_LY_DIRT>0|0|0|0|</Horse_LY_DIRT>
<Horse_LY_TURF>0|0|0|0|</Horse_LY_TURF>
<Horse_LY_JUMP>0|0|0|0|</Horse_LY_JUMP>
<Horse_LY_ALLWTHR>0|0|0|0|</Horse_LY_ALLWTHR>
<Horse_LY_MUD>0|0|0|0|</Horse_LY_MUD>
<Horse_LY_SOFT>0|0|0|0|</Horse_LY_SOFT>
<Horse_LIFETIME>0|0|0|0|</Horse_LIFETIME>
<Horse_DIRT>0|0|0|0|</Horse_DIRT>
<Horse_TURF>0|0|0|0|</Horse_TURF>
<Horse_ALL_WEATHR>0|0|0|0|</Horse_ALL_WEATHR>
<Horse_JUMP>0|0|0|0|</Horse_JUMP>
<Horse_MUD>0|0|0|0|</Horse_MUD>
<Horse_SOFT_TURF>0|0|0|0|</Horse_SOFT_TURF>
<Horse_JOCK_HORSE>0|0|0|0|</Horse_JOCK_HORSE>
<Horse_JOCK_TRAN>0|0|0|0|</Horse_JOCK_TRAN>
<Horse_TRAN_HORSE>0|0|0|0|</Horse_TRAN_HORSE>
<Jockey_DIRT>0|0|0|</Jockey_DIRT>
<Jockey_LAST365>0|0|0|</Jockey_LAST365>
<Jockey_ODDS5ORMORE>0|0|0|</Jockey_ODDS5ORMORE>
<Jockey_ODDSLESSTHAN5>0|0|0|</Jockey_ODDSLESSTHAN5>
<Jockey_ROUTES>0|0|0|</Jockey_ROUTES>
<Jockey_SPRINTS>0|0|0|</Jockey_SPRINTS>
<Jockey_TODAYS_DIST_SURF>0|0|0|</Jockey_TODAYS_DIST_SURF>
<Jockey_TURF>0|0|0|</Jockey_TURF>
<Jockey_ALL_WEATHR>0|0|0|</Jockey_ALL_WEATHR>
<Jockey_LAST10>0|0|0|</Jockey_LAST10>
<Jockey_LAST30>0|0|0|</Jockey_LAST30>
<Jockey_FAVORITE>0|0|0|</Jockey_FAVORITE>
<Trainer_DIRT>0|0|0|</Trainer_DIRT>
<Trainer_LAST365>0|0|0|</Trainer_LAST365>
<Trainer_ODDS5ORMORE>0|0|0|</Trainer_ODDS5ORMORE>
<Trainer_ODDSLESSTHAN5>0|0|0|</Trainer_ODDSLESSTHAN5>
<Trainer_ROUTES>0|0|0|</Trainer_ROUTES>
<Trainer_SPRINTS>0|0|0|</Trainer_SPRINTS>
<Trainer_TODAYS_DIST_SURF>0|0|0|</Trainer_TODAYS_DIST_SURF>
<Trainer_TURF>0|0|0|</Trainer_TURF>
<Trainer_ALL_WEATHR>0|0|0|</Trainer_ALL_WEATHR>
<Trainer_LAST10>0|0|0|</Trainer_LAST10>
<Trainer_LAST30>0|0|0|</Trainer_LAST30>
<Trainer_FAVORITE>0|0|0|</Trainer_FAVORITE>
<Trainer_31_60OFF>0|0|0|</Trainer_31_60OFF>
<Trainer_61_180OFF>0|0|0|</Trainer_61_180OFF>
<Trainer_180_UPOFF>0|0|0|</Trainer_180_UPOFF>
<TM_Premium_Plus_data>0|0|0|0|0|0|</TM_Premium_Plus_data>
</AdvancedStats>
</BettingInterest>
<BettingInterest>
<BettingInterestProgramNumber>9</BettingInterestProgramNumber>
<ToteNumber>9</ToteNumber>
<PostPosition>09</PostPosition>
<BettingInterestName>Talansky (CHI)</BettingInterestName>
<RegistrationNumber>AA9903F0</RegistrationNumber>
<MLOdd>6/1</MLOdd>
<HorseYearOfBirth>2013</HorseYearOfBirth>
<Color>B</Color>
<Gender>G</Gender>
<SaddleClothColor>Turquoise</SaddleClothColor>
<Jockey>Ariel Daniel Varas</Jockey>
<Trainer>Oscar S. Silva</Trainer>
<Owner>Aymara</Owner>
<WeightCarried>123</WeightCarried>
<SireName>Mayakovsky</SireName>
<DamName>Sos Loca (CHI)</DamName>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<AdvancedStats>
<Horse_THIS_YEAR>0|0|0|0|</Horse_THIS_YEAR>
<Horse_TY_DIRT>0|0|0|0|</Horse_TY_DIRT>
<Horse_TY_TURF>0|0|0|0|</Horse_TY_TURF>
<Horse_TY_ALLWTHR>0|0|0|0|</Horse_TY_ALLWTHR>
<Horse_TY_JUMP>0|0|0|0|</Horse_TY_JUMP>
<Horse_TY_MUD>0|0|0|0|</Horse_TY_MUD>
<Horse_TY_SOFT>0|0|0|0|</Horse_TY_SOFT>
<Horse_LAST_YEAR>0|0|0|0|</Horse_LAST_YEAR>
<Horse_LY_DIRT>0|0|0|0|</Horse_LY_DIRT>
<Horse_LY_TURF>0|0|0|0|</Horse_LY_TURF>
<Horse_LY_JUMP>0|0|0|0|</Horse_LY_JUMP>
<Horse_LY_ALLWTHR>0|0|0|0|</Horse_LY_ALLWTHR>
<Horse_LY_MUD>0|0|0|0|</Horse_LY_MUD>
<Horse_LY_SOFT>0|0|0|0|</Horse_LY_SOFT>
<Horse_LIFETIME>0|0|0|0|</Horse_LIFETIME>
<Horse_DIRT>0|0|0|0|</Horse_DIRT>
<Horse_TURF>0|0|0|0|</Horse_TURF>
<Horse_ALL_WEATHR>0|0|0|0|</Horse_ALL_WEATHR>
<Horse_JUMP>0|0|0|0|</Horse_JUMP>
<Horse_MUD>0|0|0|0|</Horse_MUD>
<Horse_SOFT_TURF>0|0|0|0|</Horse_SOFT_TURF>
<Horse_JOCK_HORSE>0|0|0|0|</Horse_JOCK_HORSE>
<Horse_JOCK_TRAN>0|0|0|0|</Horse_JOCK_TRAN>
<Horse_TRAN_HORSE>0|0|0|0|</Horse_TRAN_HORSE>
<Jockey_DIRT>0|0|0|</Jockey_DIRT>
<Jockey_LAST365>0|0|0|</Jockey_LAST365>
<Jockey_ODDS5ORMORE>0|0|0|</Jockey_ODDS5ORMORE>
<Jockey_ODDSLESSTHAN5>0|0|0|</Jockey_ODDSLESSTHAN5>
<Jockey_ROUTES>0|0|0|</Jockey_ROUTES>
<Jockey_SPRINTS>0|0|0|</Jockey_SPRINTS>
<Jockey_TODAYS_DIST_SURF>0|0|0|</Jockey_TODAYS_DIST_SURF>
<Jockey_TURF>0|0|0|</Jockey_TURF>
<Jockey_ALL_WEATHR>0|0|0|</Jockey_ALL_WEATHR>
<Jockey_LAST10>0|0|0|</Jockey_LAST10>
<Jockey_LAST30>0|0|0|</Jockey_LAST30>
<Jockey_FAVORITE>0|0|0|</Jockey_FAVORITE>
<Trainer_DIRT>0|0|0|</Trainer_DIRT>
<Trainer_LAST365>0|0|0|</Trainer_LAST365>
<Trainer_ODDS5ORMORE>0|0|0|</Trainer_ODDS5ORMORE>
<Trainer_ODDSLESSTHAN5>0|0|0|</Trainer_ODDSLESSTHAN5>
<Trainer_ROUTES>0|0|0|</Trainer_ROUTES>
<Trainer_SPRINTS>0|0|0|</Trainer_SPRINTS>
<Trainer_TODAYS_DIST_SURF>0|0|0|</Trainer_TODAYS_DIST_SURF>
<Trainer_TURF>0|0|0|</Trainer_TURF>
<Trainer_ALL_WEATHR>0|0|0|</Trainer_ALL_WEATHR>
<Trainer_LAST10>0|0|0|</Trainer_LAST10>
<Trainer_LAST30>0|0|0|</Trainer_LAST30>
<Trainer_FAVORITE>0|0|0|</Trainer_FAVORITE>
<Trainer_31_60OFF>0|0|0|</Trainer_31_60OFF>
<Trainer_61_180OFF>0|0|0|</Trainer_61_180OFF>
<Trainer_180_UPOFF>0|0|0|</Trainer_180_UPOFF>
<TM_Premium_Plus_data>0|0|0|0|0|0|</TM_Premium_Plus_data>
</AdvancedStats>
</BettingInterest>
<BettingInterest>
<BettingInterestProgramNumber>10</BettingInterestProgramNumber>
<ToteNumber>10</ToteNumber>
<PostPosition>10</PostPosition>
<BettingInterestName>Anicetto (CHI)</BettingInterestName>
<RegistrationNumber>AA9A0408</RegistrationNumber>
<MLOdd>4/1</MLOdd>
<HorseYearOfBirth>2014</HorseYearOfBirth>
<Color>B</Color>
<Gender>C</Gender>
<SaddleClothColor>Purple</SaddleClothColor>
<Jockey>Alejandro Maureira</Jockey>
<Trainer>Emilio Padovani Estay</Trainer>
<Owner>Samia Widad</Owner>
<WeightCarried>123</WeightCarried>
<SireName>Send Inthe Clowns (BRZ)</SireName>
<DamName>Aceituna (CHI)</DamName>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<AdvancedStats>
<Horse_THIS_YEAR>0|0|0|0|</Horse_THIS_YEAR>
<Horse_TY_DIRT>0|0|0|0|</Horse_TY_DIRT>
<Horse_TY_TURF>0|0|0|0|</Horse_TY_TURF>
<Horse_TY_ALLWTHR>0|0|0|0|</Horse_TY_ALLWTHR>
<Horse_TY_JUMP>0|0|0|0|</Horse_TY_JUMP>
<Horse_TY_MUD>0|0|0|0|</Horse_TY_MUD>
<Horse_TY_SOFT>0|0|0|0|</Horse_TY_SOFT>
<Horse_LAST_YEAR>0|0|0|0|</Horse_LAST_YEAR>
<Horse_LY_DIRT>0|0|0|0|</Horse_LY_DIRT>
<Horse_LY_TURF>0|0|0|0|</Horse_LY_TURF>
<Horse_LY_JUMP>0|0|0|0|</Horse_LY_JUMP>
<Horse_LY_ALLWTHR>0|0|0|0|</Horse_LY_ALLWTHR>
<Horse_LY_MUD>0|0|0|0|</Horse_LY_MUD>
<Horse_LY_SOFT>0|0|0|0|</Horse_LY_SOFT>
<Horse_LIFETIME>0|0|0|0|</Horse_LIFETIME>
<Horse_DIRT>0|0|0|0|</Horse_DIRT>
<Horse_TURF>0|0|0|0|</Horse_TURF>
<Horse_ALL_WEATHR>0|0|0|0|</Horse_ALL_WEATHR>
<Horse_JUMP>0|0|0|0|</Horse_JUMP>
<Horse_MUD>0|0|0|0|</Horse_MUD>
<Horse_SOFT_TURF>0|0|0|0|</Horse_SOFT_TURF>
<Horse_JOCK_HORSE>0|0|0|0|</Horse_JOCK_HORSE>
<Horse_JOCK_TRAN>0|0|0|0|</Horse_JOCK_TRAN>
<Horse_TRAN_HORSE>0|0|0|0|</Horse_TRAN_HORSE>
<Jockey_DIRT>0|0|0|</Jockey_DIRT>
<Jockey_LAST365>0|0|0|</Jockey_LAST365>
<Jockey_ODDS5ORMORE>0|0|0|</Jockey_ODDS5ORMORE>
<Jockey_ODDSLESSTHAN5>0|0|0|</Jockey_ODDSLESSTHAN5>
<Jockey_ROUTES>0|0|0|</Jockey_ROUTES>
<Jockey_SPRINTS>0|0|0|</Jockey_SPRINTS>
<Jockey_TODAYS_DIST_SURF>0|0|0|</Jockey_TODAYS_DIST_SURF>
<Jockey_TURF>0|0|0|</Jockey_TURF>
<Jockey_ALL_WEATHR>0|0|0|</Jockey_ALL_WEATHR>
<Jockey_LAST10>0|0|0|</Jockey_LAST10>
<Jockey_LAST30>0|0|0|</Jockey_LAST30>
<Jockey_FAVORITE>0|0|0|</Jockey_FAVORITE>
<Trainer_DIRT>0|0|0|</Trainer_DIRT>
<Trainer_LAST365>0|0|0|</Trainer_LAST365>
<Trainer_ODDS5ORMORE>0|0|0|</Trainer_ODDS5ORMORE>
<Trainer_ODDSLESSTHAN5>0|0|0|</Trainer_ODDSLESSTHAN5>
<Trainer_ROUTES>0|0|0|</Trainer_ROUTES>
<Trainer_SPRINTS>0|0|0|</Trainer_SPRINTS>
<Trainer_TODAYS_DIST_SURF>0|0|0|</Trainer_TODAYS_DIST_SURF>
<Trainer_TURF>0|0|0|</Trainer_TURF>
<Trainer_ALL_WEATHR>0|0|0|</Trainer_ALL_WEATHR>
<Trainer_LAST10>0|0|0|</Trainer_LAST10>
<Trainer_LAST30>0|0|0|</Trainer_LAST30>
<Trainer_FAVORITE>0|0|0|</Trainer_FAVORITE>
<Trainer_31_60OFF>0|0|0|</Trainer_31_60OFF>
<Trainer_61_180OFF>0|0|0|</Trainer_61_180OFF>
<Trainer_180_UPOFF>0|0|0|</Trainer_180_UPOFF>
<TM_Premium_Plus_data>0|0|0|0|0|0|</TM_Premium_Plus_data>
</AdvancedStats>
<PastPerformance>20180509|VSC|5f|Alejandro Maureira|4|0.8</PastPerformance>
<PastPerformance>20180502|VSC|5f|Cristian P. Bobadilla|4|
5.2</PastPerformance>
<PastPerformance>20180425|VSC|5f|Marcelo Contador|4|5.9</PastPerformance>
<Form>3312654444</Form>
</BettingInterest>
<BettingInterest>
<BettingInterestProgramNumber>11</BettingInterestProgramNumber>
<ToteNumber>11</ToteNumber>
<PostPosition>11</PostPosition>
<BettingInterestName>Mi Agustinita (CHI)</BettingInterestName>
<RegistrationNumber>AA9A05AA</RegistrationNumber>
<MLOdd>30/1</MLOdd>
<HorseYearOfBirth>2014</HorseYearOfBirth>
<Color>B</Color>
<Gender>F</Gender>
<SaddleClothColor>Grey</SaddleClothColor>
<Jockey>Oscar Enrique Meneses Trigo</Jockey>
<Trainer>Oscar Guillermo Escobar</Trainer>
<Owner>Fenomeno</Owner>
<WeightCarried>123</WeightCarried>
<SireName>Sundar (CHI)</SireName>
<DamName>Derechita (CHI)</DamName>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<AdvancedStats>
<Horse_THIS_YEAR>0|0|0|0|</Horse_THIS_YEAR>
<Horse_TY_DIRT>0|0|0|0|</Horse_TY_DIRT>
<Horse_TY_TURF>0|0|0|0|</Horse_TY_TURF>
<Horse_TY_ALLWTHR>0|0|0|0|</Horse_TY_ALLWTHR>
<Horse_TY_JUMP>0|0|0|0|</Horse_TY_JUMP>
<Horse_TY_MUD>0|0|0|0|</Horse_TY_MUD>
<Horse_TY_SOFT>0|0|0|0|</Horse_TY_SOFT>
<Horse_LAST_YEAR>0|0|0|0|</Horse_LAST_YEAR>
<Horse_LY_DIRT>0|0|0|0|</Horse_LY_DIRT>
<Horse_LY_TURF>0|0|0|0|</Horse_LY_TURF>
<Horse_LY_JUMP>0|0|0|0|</Horse_LY_JUMP>
<Horse_LY_ALLWTHR>0|0|0|0|</Horse_LY_ALLWTHR>
<Horse_LY_MUD>0|0|0|0|</Horse_LY_MUD>
<Horse_LY_SOFT>0|0|0|0|</Horse_LY_SOFT>
<Horse_LIFETIME>0|0|0|0|</Horse_LIFETIME>
<Horse_DIRT>0|0|0|0|</Horse_DIRT>
<Horse_TURF>0|0|0|0|</Horse_TURF>
<Horse_ALL_WEATHR>0|0|0|0|</Horse_ALL_WEATHR>
<Horse_JUMP>0|0|0|0|</Horse_JUMP>
<Horse_MUD>0|0|0|0|</Horse_MUD>
<Horse_SOFT_TURF>0|0|0|0|</Horse_SOFT_TURF>
<Horse_JOCK_HORSE>0|0|0|0|</Horse_JOCK_HORSE>
<Horse_JOCK_TRAN>0|0|0|0|</Horse_JOCK_TRAN>
<Horse_TRAN_HORSE>0|0|0|0|</Horse_TRAN_HORSE>
<Jockey_DIRT>0|0|0|</Jockey_DIRT>
<Jockey_LAST365>0|0|0|</Jockey_LAST365>
<Jockey_ODDS5ORMORE>0|0|0|</Jockey_ODDS5ORMORE>
<Jockey_ODDSLESSTHAN5>0|0|0|</Jockey_ODDSLESSTHAN5>
<Jockey_ROUTES>0|0|0|</Jockey_ROUTES>
<Jockey_SPRINTS>0|0|0|</Jockey_SPRINTS>
<Jockey_TODAYS_DIST_SURF>0|0|0|</Jockey_TODAYS_DIST_SURF>
<Jockey_TURF>0|0|0|</Jockey_TURF>
<Jockey_ALL_WEATHR>0|0|0|</Jockey_ALL_WEATHR>
<Jockey_LAST10>0|0|0|</Jockey_LAST10>
<Jockey_LAST30>0|0|0|</Jockey_LAST30>
<Jockey_FAVORITE>0|0|0|</Jockey_FAVORITE>
<Trainer_DIRT>0|0|0|</Trainer_DIRT>
<Trainer_LAST365>0|0|0|</Trainer_LAST365>
<Trainer_ODDS5ORMORE>0|0|0|</Trainer_ODDS5ORMORE>
<Trainer_ODDSLESSTHAN5>0|0|0|</Trainer_ODDSLESSTHAN5>
<Trainer_ROUTES>0|0|0|</Trainer_ROUTES>
<Trainer_SPRINTS>0|0|0|</Trainer_SPRINTS>
<Trainer_TODAYS_DIST_SURF>0|0|0|</Trainer_TODAYS_DIST_SURF>
<Trainer_TURF>0|0|0|</Trainer_TURF>
<Trainer_ALL_WEATHR>0|0|0|</Trainer_ALL_WEATHR>
<Trainer_LAST10>0|0|0|</Trainer_LAST10>
<Trainer_LAST30>0|0|0|</Trainer_LAST30>
<Trainer_FAVORITE>0|0|0|</Trainer_FAVORITE>
<Trainer_31_60OFF>0|0|0|</Trainer_31_60OFF>
<Trainer_61_180OFF>0|0|0|</Trainer_61_180OFF>
<Trainer_180_UPOFF>0|0|0|</Trainer_180_UPOFF>
<TM_Premium_Plus_data>0|0|0|0|0|0|</TM_Premium_Plus_data>
</AdvancedStats>
<PastPerformance>20180418|VSC|5f|Maximiliano J. Salinas|16|
56.8</PastPerformance>
<PastPerformance>20180411|VSC|5f|Israel R. Villagran|1|
1.4</PastPerformance>
<PastPerformance>20180326|VSC|5f|Israel R. Villagran|2|
2.4</PastPerformance>
<Form>3572932210</Form>
</BettingInterest>
<BettingInterest>
<BettingInterestProgramNumber>12</BettingInterestProgramNumber>
<ToteNumber>12</ToteNumber>
<PostPosition>12</PostPosition>
<BettingInterestName>Divergente (CHI)</BettingInterestName>
<RegistrationNumber>A9679273</RegistrationNumber>
<MLOdd>12/1</MLOdd>
<HorseYearOfBirth>2011</HorseYearOfBirth>
<Color>GR/RO</Color>
<Gender>H</Gender>
<SaddleClothColor>Lime</SaddleClothColor>
<Jockey>Carlos Alejandro Ortega Tapia</Jockey>
<Trainer>Luis Salinas Trigo</Trainer>
<Owner>Trento</Owner>
<WeightCarried>123</WeightCarried>
<SireName>Dunkirk</SireName>
<DamName>Mi Primera Victoria (CHI)</DamName>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<AdvancedStats>
<Horse_THIS_YEAR>0|0|0|0|</Horse_THIS_YEAR>
<Horse_TY_DIRT>0|0|0|0|</Horse_TY_DIRT>
<Horse_TY_TURF>0|0|0|0|</Horse_TY_TURF>
<Horse_TY_ALLWTHR>0|0|0|0|</Horse_TY_ALLWTHR>
<Horse_TY_JUMP>0|0|0|0|</Horse_TY_JUMP>
<Horse_TY_MUD>0|0|0|0|</Horse_TY_MUD>
<Horse_TY_SOFT>0|0|0|0|</Horse_TY_SOFT>
<Horse_LAST_YEAR>0|0|0|0|</Horse_LAST_YEAR>
<Horse_LY_DIRT>0|0|0|0|</Horse_LY_DIRT>
<Horse_LY_TURF>0|0|0|0|</Horse_LY_TURF>
<Horse_LY_JUMP>0|0|0|0|</Horse_LY_JUMP>
<Horse_LY_ALLWTHR>0|0|0|0|</Horse_LY_ALLWTHR>
<Horse_LY_MUD>0|0|0|0|</Horse_LY_MUD>
<Horse_LY_SOFT>0|0|0|0|</Horse_LY_SOFT>
<Horse_LIFETIME>0|0|0|0|</Horse_LIFETIME>
<Horse_DIRT>0|0|0|0|</Horse_DIRT>
<Horse_TURF>0|0|0|0|</Horse_TURF>
<Horse_ALL_WEATHR>0|0|0|0|</Horse_ALL_WEATHR>
<Horse_JUMP>0|0|0|0|</Horse_JUMP>
<Horse_MUD>0|0|0|0|</Horse_MUD>
<Horse_SOFT_TURF>0|0|0|0|</Horse_SOFT_TURF>
<Horse_JOCK_HORSE>0|0|0|0|</Horse_JOCK_HORSE>
<Horse_JOCK_TRAN>0|0|0|0|</Horse_JOCK_TRAN>
<Horse_TRAN_HORSE>0|0|0|0|</Horse_TRAN_HORSE>
<Jockey_DIRT>0|0|0|</Jockey_DIRT>
<Jockey_LAST365>0|0|0|</Jockey_LAST365>
<Jockey_ODDS5ORMORE>0|0|0|</Jockey_ODDS5ORMORE>
<Jockey_ODDSLESSTHAN5>0|0|0|</Jockey_ODDSLESSTHAN5>
<Jockey_ROUTES>0|0|0|</Jockey_ROUTES>
<Jockey_SPRINTS>0|0|0|</Jockey_SPRINTS>
<Jockey_TODAYS_DIST_SURF>0|0|0|</Jockey_TODAYS_DIST_SURF>
<Jockey_TURF>0|0|0|</Jockey_TURF>
<Jockey_ALL_WEATHR>0|0|0|</Jockey_ALL_WEATHR>
<Jockey_LAST10>0|0|0|</Jockey_LAST10>
<Jockey_LAST30>0|0|0|</Jockey_LAST30>
<Jockey_FAVORITE>0|0|0|</Jockey_FAVORITE>
<Trainer_DIRT>0|0|0|</Trainer_DIRT>
<Trainer_LAST365>0|0|0|</Trainer_LAST365>
<Trainer_ODDS5ORMORE>0|0|0|</Trainer_ODDS5ORMORE>
<Trainer_ODDSLESSTHAN5>0|0|0|</Trainer_ODDSLESSTHAN5>
<Trainer_ROUTES>0|0|0|</Trainer_ROUTES>
<Trainer_SPRINTS>0|0|0|</Trainer_SPRINTS>
<Trainer_TODAYS_DIST_SURF>0|0|0|</Trainer_TODAYS_DIST_SURF>
<Trainer_TURF>0|0|0|</Trainer_TURF>
<Trainer_ALL_WEATHR>0|0|0|</Trainer_ALL_WEATHR>
<Trainer_LAST10>0|0|0|</Trainer_LAST10>
<Trainer_LAST30>0|0|0|</Trainer_LAST30>
<Trainer_FAVORITE>0|0|0|</Trainer_FAVORITE>
<Trainer_31_60OFF>0|0|0|</Trainer_31_60OFF>
<Trainer_61_180OFF>0|0|0|</Trainer_61_180OFF>
<Trainer_180_UPOFF>0|0|0|</Trainer_180_UPOFF>
<TM_Premium_Plus_data>0|0|0|0|0|0|</TM_Premium_Plus_data>
</AdvancedStats>
<PastPerformance>20180509|VSC|5 1/2f|Carlos A. Ortega|11|
24.5</PastPerformance>
<PastPerformance>20180502|VSC|5f|Francisco P. Bernal|3|
11.2</PastPerformance>
<PastPerformance>20180425|VSC|5f|Julio A. Sarmiento|11|
92.3</PastPerformance>
<Form>0201000030</Form>
</BettingInterest>
<BettingInterest>
<BettingInterestProgramNumber>13</BettingInterestProgramNumber>
<ToteNumber>13</ToteNumber>
<PostPosition>13</PostPosition>
<BettingInterestName>Pequeno Napoleon (CHI)</BettingInterestName>
<RegistrationNumber>AA9A04F7</RegistrationNumber>
<MLOdd>3/2</MLOdd>
<HorseYearOfBirth>2014</HorseYearOfBirth>
<Color>Dk B/Br</Color>
<Gender>G</Gender>
<SaddleClothColor>Brown</SaddleClothColor>
<Jockey>Sebastian Andres Marin Quezada</Jockey>
<Trainer>Carlos Americo Silva</Trainer>
<Owner>Tata Beto</Owner>
<WeightCarried>123</WeightCarried>
<SireName>Caesarion (IRE)</SireName>
<DamName>Eppursimuove (IRE)</DamName>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<AdvancedStats>
<Horse_THIS_YEAR>0|0|0|0|</Horse_THIS_YEAR>
<Horse_TY_DIRT>0|0|0|0|</Horse_TY_DIRT>
<Horse_TY_TURF>0|0|0|0|</Horse_TY_TURF>
<Horse_TY_ALLWTHR>0|0|0|0|</Horse_TY_ALLWTHR>
<Horse_TY_JUMP>0|0|0|0|</Horse_TY_JUMP>
<Horse_TY_MUD>0|0|0|0|</Horse_TY_MUD>
<Horse_TY_SOFT>0|0|0|0|</Horse_TY_SOFT>
<Horse_LAST_YEAR>0|0|0|0|</Horse_LAST_YEAR>
<Horse_LY_DIRT>0|0|0|0|</Horse_LY_DIRT>
<Horse_LY_TURF>0|0|0|0|</Horse_LY_TURF>
<Horse_LY_JUMP>0|0|0|0|</Horse_LY_JUMP>
<Horse_LY_ALLWTHR>0|0|0|0|</Horse_LY_ALLWTHR>
<Horse_LY_MUD>0|0|0|0|</Horse_LY_MUD>
<Horse_LY_SOFT>0|0|0|0|</Horse_LY_SOFT>
<Horse_LIFETIME>0|0|0|0|</Horse_LIFETIME>
<Horse_DIRT>0|0|0|0|</Horse_DIRT>
<Horse_TURF>0|0|0|0|</Horse_TURF>
<Horse_ALL_WEATHR>0|0|0|0|</Horse_ALL_WEATHR>
<Horse_JUMP>0|0|0|0|</Horse_JUMP>
<Horse_MUD>0|0|0|0|</Horse_MUD>
<Horse_SOFT_TURF>0|0|0|0|</Horse_SOFT_TURF>
<Horse_JOCK_HORSE>0|0|0|0|</Horse_JOCK_HORSE>
<Horse_JOCK_TRAN>0|0|0|0|</Horse_JOCK_TRAN>
<Horse_TRAN_HORSE>0|0|0|0|</Horse_TRAN_HORSE>
<Jockey_DIRT>0|0|0|</Jockey_DIRT>
<Jockey_LAST365>0|0|0|</Jockey_LAST365>
<Jockey_ODDS5ORMORE>0|0|0|</Jockey_ODDS5ORMORE>
<Jockey_ODDSLESSTHAN5>0|0|0|</Jockey_ODDSLESSTHAN5>
<Jockey_ROUTES>0|0|0|</Jockey_ROUTES>
<Jockey_SPRINTS>0|0|0|</Jockey_SPRINTS>
<Jockey_TODAYS_DIST_SURF>0|0|0|</Jockey_TODAYS_DIST_SURF>
<Jockey_TURF>0|0|0|</Jockey_TURF>
<Jockey_ALL_WEATHR>0|0|0|</Jockey_ALL_WEATHR>
<Jockey_LAST10>0|0|0|</Jockey_LAST10>
<Jockey_LAST30>0|0|0|</Jockey_LAST30>
<Jockey_FAVORITE>0|0|0|</Jockey_FAVORITE>
<Trainer_DIRT>0|0|0|</Trainer_DIRT>
<Trainer_LAST365>0|0|0|</Trainer_LAST365>
<Trainer_ODDS5ORMORE>0|0|0|</Trainer_ODDS5ORMORE>
<Trainer_ODDSLESSTHAN5>0|0|0|</Trainer_ODDSLESSTHAN5>
<Trainer_ROUTES>0|0|0|</Trainer_ROUTES>
<Trainer_SPRINTS>0|0|0|</Trainer_SPRINTS>
<Trainer_TODAYS_DIST_SURF>0|0|0|</Trainer_TODAYS_DIST_SURF>
<Trainer_TURF>0|0|0|</Trainer_TURF>
<Trainer_ALL_WEATHR>0|0|0|</Trainer_ALL_WEATHR>
<Trainer_LAST10>0|0|0|</Trainer_LAST10>
<Trainer_LAST30>0|0|0|</Trainer_LAST30>
<Trainer_FAVORITE>0|0|0|</Trainer_FAVORITE>
<Trainer_31_60OFF>0|0|0|</Trainer_31_60OFF>
<Trainer_61_180OFF>0|0|0|</Trainer_61_180OFF>
<Trainer_180_UPOFF>0|0|0|</Trainer_180_UPOFF>
<TM_Premium_Plus_data>0|0|0|0|0|0|</TM_Premium_Plus_data>
</AdvancedStats>
<PastPerformance>20180411|VSC|5f|Sebastian A. Marin|5|
13.4</PastPerformance>
<PastPerformance>20180409|VSC|5f|Sebastian A. Marin|5|5.2</PastPerformance>
<PastPerformance>20180404|VSC|5f|Sebastian A. Marin|6|8.8</PastPerformance>
<Form>8349734655</Form>
</BettingInterest>
</Race>
</RaceCardData>
[top]
Cycle
<CycleData xmlns='http://www.w3.org/2001/XMLSchema-instance'>
<DocumentSerialNumber>0030842701</DocumentSerialNumber>
<TimeStamp>2018-05-14 01:38:57</TimeStamp>
<TimeZone>PT</TimeZone>
<SequenceKey>Cycle-GP-1-2018-05-14</SequenceKey>
<SequenceNumber>00001</SequenceNumber>
<SequenceDate>2018-05-14</SequenceDate>
<GeneratorType>Cycle</GeneratorType>
<FileName>20180514-GP-1-00001-0030842701-Cycle.xml</FileName>
<Event>
<EventCode>GPM</EventCode>
<TrackCode>GP</TrackCode>
<EventName>Gulfstream Park</EventName>
<EventDate>2018-05-14</EventDate>
<ProgramStatus>O</ProgramStatus>
<MaxRunners>24</MaxRunners>
<HighestRace>8</HighestRace>
<CurrentRace>1</CurrentRace>
</Event>
<Race>
<RaceNumber>1</RaceNumber>
<MTP>99</MTP>
<PostTime>10:30</PostTime>
<TimeZone>PT</TimeZone>
</Race>
<Odds>
<OddsType>WN</OddsType>
<OddsName>Win</OddsName>
<OddsBettingInterest>
<BettingInterestProgramNumber>1</BettingInterestProgramNumber>
<BettingInterestName>Nick Blue (CHI)</BettingInterestName>
<FractionalOdd>99</FractionalOdd>
<DollarOdd>200.00</DollarOdd>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>2</BettingInterestProgramNumber>
<BettingInterestName>Croy (CHI)</BettingInterestName>
<FractionalOdd>99</FractionalOdd>
<DollarOdd>200.00</DollarOdd>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>3</BettingInterestProgramNumber>
<BettingInterestName>Mirame Linda (CHI)</BettingInterestName>
<FractionalOdd>99</FractionalOdd>
<DollarOdd>200.00</DollarOdd>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>4</BettingInterestProgramNumber>
<BettingInterestName>Vilassar de Mar (CHI)</BettingInterestName>
<FractionalOdd>99</FractionalOdd>
<DollarOdd>200.00</DollarOdd>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>5</BettingInterestProgramNumber>
<BettingInterestName>Real Soldier (CHI)</BettingInterestName>
<FractionalOdd>99</FractionalOdd>
<DollarOdd>200.00</DollarOdd>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>6</BettingInterestProgramNumber>
<BettingInterestName>Picara Morocha (CHI)</BettingInterestName>
<FractionalOdd>99</FractionalOdd>
<DollarOdd>200.00</DollarOdd>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>7</BettingInterestProgramNumber>
<BettingInterestName>Amado (CHI)</BettingInterestName>
<FractionalOdd>99</FractionalOdd>
<DollarOdd>200.00</DollarOdd>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>8</BettingInterestProgramNumber>
<BettingInterestName>Belle Satine (CHI)</BettingInterestName>
<FractionalOdd>99</FractionalOdd>
<DollarOdd>200.00</DollarOdd>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>9</BettingInterestProgramNumber>
<BettingInterestName>Talansky (CHI)</BettingInterestName>
<FractionalOdd>99</FractionalOdd>
<DollarOdd>200.00</DollarOdd>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>10</BettingInterestProgramNumber>
<BettingInterestName>Anicetto (CHI)</BettingInterestName>
<FractionalOdd>99</FractionalOdd>
<DollarOdd>200.00</DollarOdd>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>11</BettingInterestProgramNumber>
<BettingInterestName>Mi Agustinita (CHI)</BettingInterestName>
<FractionalOdd>99</FractionalOdd>
<DollarOdd>200.00</DollarOdd>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>12</BettingInterestProgramNumber>
<BettingInterestName>Divergente (CHI)</BettingInterestName>
<FractionalOdd>99</FractionalOdd>
<DollarOdd>200.00</DollarOdd>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>13</BettingInterestProgramNumber>
<BettingInterestName>Pequeno Napoleon (CHI)</BettingInterestName>
<FractionalOdd>99</FractionalOdd>
<DollarOdd>200.00</DollarOdd>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
</Odds>
<Odds>
<OddsType>PL</OddsType>
<OddsName>Place</OddsName>
<OddsBettingInterest>
<BettingInterestProgramNumber>1</BettingInterestProgramNumber>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>2</BettingInterestProgramNumber>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>3</BettingInterestProgramNumber>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>4</BettingInterestProgramNumber>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>5</BettingInterestProgramNumber>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>6</BettingInterestProgramNumber>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>7</BettingInterestProgramNumber>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>8</BettingInterestProgramNumber>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>9</BettingInterestProgramNumber>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>10</BettingInterestProgramNumber>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>11</BettingInterestProgramNumber>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>12</BettingInterestProgramNumber>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>13</BettingInterestProgramNumber>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
</Odds>
<Odds>
<OddsType>SH</OddsType>
<OddsName>Show</OddsName>
<OddsBettingInterest>
<BettingInterestProgramNumber>1</BettingInterestProgramNumber>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>2</BettingInterestProgramNumber>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>3</BettingInterestProgramNumber>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>4</BettingInterestProgramNumber>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>5</BettingInterestProgramNumber>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>6</BettingInterestProgramNumber>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>7</BettingInterestProgramNumber>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>8</BettingInterestProgramNumber>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>9</BettingInterestProgramNumber>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>10</BettingInterestProgramNumber>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>11</BettingInterestProgramNumber>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>12</BettingInterestProgramNumber>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>13</BettingInterestProgramNumber>
<PoolAmount>0.00</PoolAmount>
</OddsBettingInterest>
</Odds>
<Odds>
<OddsType>DB</OddsType>
<OddsName>Double</OddsName>
<OddsBettingInterest>
<OddMatrix>
<Combination>
<Result>1-1</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-2</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-3</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-4</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-5</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-6</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-7</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-8</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-9</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-10</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-11</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-12</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-13</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-14</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-1</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-2</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-3</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-4</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-5</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-6</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-7</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-8</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-9</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-10</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-11</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-12</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-13</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-14</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-1</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-2</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-3</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-4</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-5</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-6</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-7</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-8</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-9</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-10</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-11</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-12</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-13</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-14</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-1</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-2</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-3</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-4</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-5</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-6</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-7</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-8</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-9</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-10</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-11</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-12</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-13</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-14</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-1</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-2</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-3</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-4</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-5</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-6</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-7</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-8</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-9</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-10</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-11</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-12</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-13</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-14</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-1</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-2</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-3</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-4</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-5</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-6</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-7</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-8</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-9</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-10</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-11</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-12</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-13</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-14</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-1</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-2</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-3</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-4</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-5</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-6</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-7</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-8</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-9</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-10</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-11</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-12</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-13</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-14</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-1</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-2</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-3</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-4</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-5</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-6</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-7</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-8</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-9</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-10</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-11</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-12</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-13</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-14</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-1</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-2</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-3</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-4</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-5</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-6</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-7</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-8</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-9</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-10</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-11</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-12</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-13</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-14</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-1</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-2</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-3</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-4</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-5</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-6</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-7</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-8</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-9</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-10</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-11</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-12</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-13</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-14</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-1</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-2</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-3</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-4</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-5</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-6</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-7</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-8</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-9</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-10</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-11</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-12</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-13</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-14</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-1</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-2</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-3</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-4</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-5</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-6</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-7</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-8</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-9</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-10</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-11</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-12</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-13</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-14</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-1</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-2</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-3</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-4</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-5</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-6</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-7</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-8</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-9</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-10</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-11</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-12</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-13</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-14</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
</OddMatrix>
</OddsBettingInterest>
</Odds>
<Odds>
<OddsType>EX</OddsType>
<OddsName>Exacta</OddsName>
<OddsBettingInterest>
<OddMatrix>
<Combination>
<Result>1-1</Result>
<OddValue>-</OddValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>1-2</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-3</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-4</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-5</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-6</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-7</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-8</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-9</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-10</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-11</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-12</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-13</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-1</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-2</Result>
<OddValue>-</OddValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>2-3</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-4</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-5</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-6</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-7</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-8</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-9</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-10</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-11</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-12</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-13</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-1</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-2</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-3</Result>
<OddValue>-</OddValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>3-4</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-5</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-6</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-7</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-8</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-9</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-10</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-11</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-12</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-13</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-1</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-2</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-3</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-4</Result>
<OddValue>-</OddValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>4-5</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-6</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-7</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-8</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-9</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-10</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-11</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-12</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-13</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-1</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-2</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-3</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-4</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-5</Result>
<OddValue>-</OddValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>5-6</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-7</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-8</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-9</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-10</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-11</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-12</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-13</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-1</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-2</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-3</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-4</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-5</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-6</Result>
<OddValue>-</OddValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>6-7</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-8</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-9</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-10</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-11</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-12</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-13</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-1</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-2</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-3</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-4</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-5</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-6</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-7</Result>
<OddValue>-</OddValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>7-8</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-9</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-10</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-11</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-12</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-13</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-1</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-2</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-3</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-4</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-5</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-6</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-7</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-8</Result>
<OddValue>-</OddValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>8-9</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-10</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-11</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-12</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-13</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-1</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-2</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-3</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-4</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-5</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-6</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-7</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-8</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-9</Result>
<OddValue>-</OddValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>9-10</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-11</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-12</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-13</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-1</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-2</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-3</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-4</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-5</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-6</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-7</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-8</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-9</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-10</Result>
<OddValue>-</OddValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>10-11</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-12</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-13</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-1</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-2</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-3</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-4</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-5</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-6</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-7</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-8</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-9</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-10</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-11</Result>
<OddValue>-</OddValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>11-12</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-13</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-1</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-2</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-3</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-4</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-5</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-6</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-7</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-8</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-9</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-10</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-11</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-12</Result>
<OddValue>-</OddValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>12-13</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-1</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-2</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-3</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-4</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-5</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-6</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-7</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-8</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-9</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-10</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-11</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-12</Result>
<OddValue>99</OddValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-13</Result>
<OddValue>-</OddValue>
<PoolAmount>
</PoolAmount>
</Combination>
</OddMatrix>
</OddsBettingInterest>
</Odds>
<Probables>
<ProbablesType>WN</ProbablesType>
<ProbablesName>Win</ProbablesName>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>1</BettingInterestProgramNumber>
<BettingInterestName>Nick Blue
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>2</BettingInterestProgramNumber>
<BettingInterestName>Croy
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>3</BettingInterestProgramNumber>
<BettingInterestName>Mirame Linda
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>4</BettingInterestProgramNumber>
<BettingInterestName>Vilassar de Mar
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>5</BettingInterestProgramNumber>
<BettingInterestName>Real Soldier
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>6</BettingInterestProgramNumber>
<BettingInterestName>Picara Morocha
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>7</BettingInterestProgramNumber>
<BettingInterestName>Amado
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>8</BettingInterestProgramNumber>
<BettingInterestName>Belle Satine
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>9</BettingInterestProgramNumber>
<BettingInterestName>Talansky
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>10</BettingInterestProgramNumber>
<BettingInterestName>Anicetto
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>11</BettingInterestProgramNumber>
<BettingInterestName>Mi Agustinita
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>12</BettingInterestProgramNumber>
<BettingInterestName>Divergente
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>13</BettingInterestProgramNumber>
<BettingInterestName>Pequeno Napoleon
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
</Probables>
<Probables>
<ProbablesType>PL</ProbablesType>
<ProbablesName>Place</ProbablesName>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>1</BettingInterestProgramNumber>
<BettingInterestName>Nick Blue
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<ProbablesHi>9999.99</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>2</BettingInterestProgramNumber>
<BettingInterestName>Croy
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<ProbablesHi>9999.99</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>3</BettingInterestProgramNumber>
<BettingInterestName>Mirame Linda
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<ProbablesHi>9999.99</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>4</BettingInterestProgramNumber>
<BettingInterestName>Vilassar de Mar
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<ProbablesHi>9999.99</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>5</BettingInterestProgramNumber>
<BettingInterestName>Real Soldier
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<ProbablesHi>9999.99</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>6</BettingInterestProgramNumber>
<BettingInterestName>Picara Morocha
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<ProbablesHi>9999.99</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>7</BettingInterestProgramNumber>
<BettingInterestName>Amado
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<ProbablesHi>9999.99</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>8</BettingInterestProgramNumber>
<BettingInterestName>Belle Satine
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<ProbablesHi>9999.99</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>9</BettingInterestProgramNumber>
<BettingInterestName>Talansky
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<ProbablesHi>9999.99</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>10</BettingInterestProgramNumber>
<BettingInterestName>Anicetto
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<ProbablesHi>9999.99</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>11</BettingInterestProgramNumber>
<BettingInterestName>Mi Agustinita
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<ProbablesHi>9999.99</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>12</BettingInterestProgramNumber>
<BettingInterestName>Divergente
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<ProbablesHi>9999.99</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>13</BettingInterestProgramNumber>
<BettingInterestName>Pequeno Napoleon
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<ProbablesHi>9999.99</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
</Probables>
<Probables>
<ProbablesType>SH</ProbablesType>
<ProbablesName>Show</ProbablesName>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>1</BettingInterestProgramNumber>
<BettingInterestName>Nick Blue
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<ProbablesHi>9999.99</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>2</BettingInterestProgramNumber>
<BettingInterestName>Croy
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<ProbablesHi>9999.99</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>3</BettingInterestProgramNumber>
<BettingInterestName>Mirame Linda
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<ProbablesHi>9999.99</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>4</BettingInterestProgramNumber>
<BettingInterestName>Vilassar de Mar
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<ProbablesHi>9999.99</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>5</BettingInterestProgramNumber>
<BettingInterestName>Real Soldier
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<ProbablesHi>9999.99</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>6</BettingInterestProgramNumber>
<BettingInterestName>Picara Morocha
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<ProbablesHi>9999.99</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>7</BettingInterestProgramNumber>
<BettingInterestName>Amado
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<ProbablesHi>9999.99</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>8</BettingInterestProgramNumber>
<BettingInterestName>Belle Satine
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<ProbablesHi>9999.99</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>9</BettingInterestProgramNumber>
<BettingInterestName>Talansky
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<ProbablesHi>9999.99</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>10</BettingInterestProgramNumber>
<BettingInterestName>Anicetto
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<ProbablesHi>9999.99</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>11</BettingInterestProgramNumber>
<BettingInterestName>Mi Agustinita
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<ProbablesHi>9999.99</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>12</BettingInterestProgramNumber>
<BettingInterestName>Divergente
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<ProbablesHi>9999.99</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>13</BettingInterestProgramNumber>
<BettingInterestName>Pequeno Napoleon
(CHI)</BettingInterestName>
<Probables>9999.99</Probables>
<ProbablesHi>9999.99</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>0.00</PoolAmount>
</ProbablesBettingInterest>
</Probables>
<Probables>
<ProbablesType>DB</ProbablesType>
<ProbablesName>Double</ProbablesName>
<ProbablesBettingInterest>
<ProbableMatrix>
<Combination>
<Result>1-1</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-2</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-3</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-4</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-5</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-6</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-7</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-8</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-9</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-10</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-11</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-12</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-13</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-14</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-1</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-2</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-3</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-4</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-5</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-6</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-7</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-8</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-9</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-10</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-11</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-12</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-13</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-14</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-1</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-2</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-3</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-4</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-5</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-6</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-7</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-8</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-9</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-10</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-11</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-12</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-13</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-14</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-1</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-2</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-3</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-4</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-5</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-6</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-7</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-8</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-9</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-10</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-11</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-12</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-13</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-14</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-1</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-2</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-3</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-4</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-5</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-6</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-7</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-8</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-9</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-10</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-11</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-12</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-13</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-14</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-1</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-2</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-3</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-4</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-5</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-6</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-7</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-8</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-9</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-10</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-11</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-12</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-13</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-14</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-1</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-2</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-3</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-4</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-5</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-6</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-7</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-8</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-9</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-10</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-11</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-12</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-13</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-14</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-1</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-2</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-3</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-4</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-5</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-6</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-7</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-8</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-9</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-10</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-11</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-12</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-13</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-14</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-1</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-2</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-3</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-4</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-5</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-6</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-7</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-8</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-9</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-10</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-11</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-12</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-13</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-14</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-1</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-2</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-3</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-4</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-5</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-6</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-7</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-8</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-9</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-10</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-11</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-12</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-13</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-14</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-1</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-2</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-3</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-4</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-5</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-6</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-7</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-8</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-9</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-10</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-11</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-12</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-13</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-14</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-1</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-2</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-3</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-4</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-5</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-6</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-7</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-8</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-9</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-10</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-11</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-12</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-13</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-14</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-1</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-2</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-3</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-4</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-5</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-6</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-7</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-8</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-9</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-10</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-11</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-12</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-13</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-14</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
</ProbableMatrix>
</ProbablesBettingInterest>
</Probables>
<Probables>
<ProbablesType>EX</ProbablesType>
<ProbablesName>Exacta</ProbablesName>
<ProbablesBettingInterest>
<ProbableMatrix>
<Combination>
<Result>1-1</Result>
<ProbableValue>-</ProbableValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>1-2</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-3</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-4</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-5</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-6</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-7</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-8</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-9</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-10</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-11</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-12</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>1-13</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-1</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-2</Result>
<ProbableValue>-</ProbableValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>2-3</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-4</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-5</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-6</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-7</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-8</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-9</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-10</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-11</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-12</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>2-13</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-1</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-2</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-3</Result>
<ProbableValue>-</ProbableValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>3-4</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-5</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-6</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-7</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-8</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-9</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-10</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-11</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-12</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>3-13</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-1</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-2</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-3</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-4</Result>
<ProbableValue>-</ProbableValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>4-5</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-6</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-7</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-8</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-9</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-10</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-11</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-12</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>4-13</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-1</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-2</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-3</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-4</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-5</Result>
<ProbableValue>-</ProbableValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>5-6</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-7</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-8</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-9</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-10</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-11</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-12</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>5-13</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-1</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-2</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-3</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-4</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-5</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-6</Result>
<ProbableValue>-</ProbableValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>6-7</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-8</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-9</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-10</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-11</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-12</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>6-13</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-1</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-2</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-3</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-4</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-5</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-6</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-7</Result>
<ProbableValue>-</ProbableValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>7-8</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-9</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-10</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-11</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-12</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>7-13</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-1</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-2</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-3</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-4</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-5</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-6</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-7</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-8</Result>
<ProbableValue>-
</ProbableValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>8-9</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-10</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-11</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-12</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>8-13</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-1</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-2</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-3</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-4</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-5</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-6</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-7</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-8</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-9</Result>
<ProbableValue>-
</ProbableValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>9-10</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-11</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-12</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>9-13</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-1</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-2</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-3</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-4</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-5</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-6</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-7</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-8</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-9</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-10</Result>
<ProbableValue>-
</ProbableValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>10-11</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-12</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>10-13</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-1</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-2</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-3</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-4</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-5</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-6</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-7</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-8</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-9</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-10</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-11</Result>
<ProbableValue>-
</ProbableValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>11-12</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>11-13</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-1</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-2</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-3</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-4</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-5</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-6</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-7</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-8</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-9</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-10</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-11</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>12-12</Result>
<ProbableValue>-
</ProbableValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>12-
13</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-
1</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-
2</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-
3</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-
4</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-
5</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-
6</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-
7</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-
8</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-
9</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-
10</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-
11</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-
12</Result>
<ProbableValue>9999.99</ProbableValue>
<PoolAmount>0.00</PoolAmount>
</Combination>
<Combination>
<Result>13-
13</Result>
<ProbableValue>-
</ProbableValue>
<PoolAmount>
</PoolAmount>
</Combination>
</ProbableMatrix>
</ProbablesBettingInterest>
</Probables>
<PoolTotal>
<PoolCode>WN</PoolCode>
<PoolName>Win</PoolName>
<PoolAmount>0.00</PoolAmount>
</PoolTotal>
<PoolTotal>
<PoolCode>PL</PoolCode>
<PoolName>Place</PoolName>
<PoolAmount>0.00</PoolAmount>
</PoolTotal>
<PoolTotal>
<PoolCode>SH</PoolCode>
<PoolName>Show</PoolName>
<PoolAmount>0.00</PoolAmount>
</PoolTotal>
<PoolTotal>
<PoolCode>DB</PoolCode>
<PoolName>Double</PoolName>
<PoolAmount>0.00</PoolAmount>
</PoolTotal>
<PoolTotal>
<PoolCode>EX</PoolCode>
<PoolName>Exacta</PoolName>
<PoolAmount>0.00</PoolAmount>
</PoolTotal>
<PoolTotal>
<PoolCode>TR</PoolCode>
<PoolName>Trifecta</PoolName>
<PoolAmount>0.00</PoolAmount>
</PoolTotal>
<PoolTotal>
<PoolCode>SU</PoolCode>
<PoolName>Superfecta</PoolName>
<PoolAmount>0.00</PoolAmount>
</PoolTotal>
</CycleData>
[top]
FinalCycle
<CycleData xmlns='http://www.w3.org/2001/XMLSchema-instance'>
<DocumentSerialNumber>0017845797</DocumentSerialNumber>
<TimeStamp>2018-05-13 22:17:02</TimeStamp>
<TimeZone>PT</TimeZone>
<SequenceKey>Cycle-LA-10-2018-05-13</SequenceKey>
<SequenceNumber>00021</SequenceNumber>
<SequenceDate>2018-05-13</SequenceDate>
<GeneratorType>Cycle</GeneratorType>
<FileName>20180513-LA-10-00021-0017845797-FinalCycle.xml</FileName>
<Event>
<EventCode>LQN</EventCode>
<TrackCode>LA</TrackCode>
<EventName>Los Alamitos</EventName>
<EventDate>2018-05-13</EventDate>
<ProgramStatus>O</ProgramStatus>
<MaxRunners>12</MaxRunners>
<HighestRace>10</HighestRace>
<CurrentRace>10</CurrentRace>
<BetTypes>WN|WT,PY:PL|WT,PY:SH|WT,PY:WPS|WT,PY:WP|WT,PY:WS|WT,PY:PS|
WT,PY:DB|WT,AL:EX|WT,BX,KY,AL,BW:TR|WT,BX,KY,AL,BN,KL,BW:P3|WT,AL:SU|
WT,BX,KY,AL,BN,BW:P4|WT,AL:P6|WT,AL:P10|WT,AL</BetTypes>
</Event>
<Race>
<RaceNumber>10</RaceNumber>
<MTP>0</MTP>
</Race>
<Odds>
<OddsType>WN</OddsType>
<OddsName>Win</OddsName>
<OddsBettingInterest>
<BettingInterestProgramNumber>1</BettingInterestProgramNumber>
<BettingInterestName>Jess Mas</BettingInterestName>
<FractionalOdd>8</FractionalOdd>
<DollarOdd>18.00</DollarOdd>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>1,617.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>2</BettingInterestProgramNumber>
<BettingInterestName>Tough to Figure</BettingInterestName>
<FractionalOdd>18</FractionalOdd>
<DollarOdd>38.00</DollarOdd>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>825.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>3</BettingInterestProgramNumber>
<BettingInterestName>Zendaya</BettingInterestName>
<FractionalOdd>25</FractionalOdd>
<DollarOdd>52.00</DollarOdd>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>569.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>4</BettingInterestProgramNumber>
<BettingInterestName>Still Friends</BettingInterestName>
<FractionalOdd>25</FractionalOdd>
<DollarOdd>52.00</DollarOdd>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>582.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>5</BettingInterestProgramNumber>
<BettingInterestName>Strawfinders Jessee</BettingInterestName>
<FractionalOdd>2</FractionalOdd>
<DollarOdd>6.00</DollarOdd>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>4,641.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>6</BettingInterestProgramNumber>
<BettingInterestName>Imaqtpie</BettingInterestName>
<FractionalOdd>14</FractionalOdd>
<DollarOdd>30.00</DollarOdd>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>1,056.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>7</BettingInterestProgramNumber>
<BettingInterestName>Designs by Dynasty</BettingInterestName>
<FractionalOdd>2</FractionalOdd>
<DollarOdd>6.00</DollarOdd>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>5,131.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>8</BettingInterestProgramNumber>
<BettingInterestName>Jess Hawk</BettingInterestName>
<FractionalOdd>2</FractionalOdd>
<DollarOdd>6.00</DollarOdd>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>4,846.00</PoolAmount>
</OddsBettingInterest>
</Odds>
<Odds>
<OddsType>PL</OddsType>
<OddsName>Place</OddsName>
<OddsBettingInterest>
<BettingInterestProgramNumber>1</BettingInterestProgramNumber>
<PoolAmount>547.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>2</BettingInterestProgramNumber>
<PoolAmount>329.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>3</BettingInterestProgramNumber>
<PoolAmount>223.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>4</BettingInterestProgramNumber>
<PoolAmount>209.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>5</BettingInterestProgramNumber>
<PoolAmount>1,361.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>6</BettingInterestProgramNumber>
<PoolAmount>264.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>7</BettingInterestProgramNumber>
<PoolAmount>1,809.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>8</BettingInterestProgramNumber>
<PoolAmount>1,598.00</PoolAmount>
</OddsBettingInterest>
</Odds>
<Odds>
<OddsType>SH</OddsType>
<OddsName>Show</OddsName>
<OddsBettingInterest>
<BettingInterestProgramNumber>1</BettingInterestProgramNumber>
<PoolAmount>322.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>2</BettingInterestProgramNumber>
<PoolAmount>117.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>3</BettingInterestProgramNumber>
<PoolAmount>178.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>4</BettingInterestProgramNumber>
<PoolAmount>199.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>5</BettingInterestProgramNumber>
<PoolAmount>570.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>6</BettingInterestProgramNumber>
<PoolAmount>137.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>7</BettingInterestProgramNumber>
<PoolAmount>621.00</PoolAmount>
</OddsBettingInterest>
<OddsBettingInterest>
<BettingInterestProgramNumber>8</BettingInterestProgramNumber>
<PoolAmount>845.00</PoolAmount>
</OddsBettingInterest>
</Odds>
<Odds>
<OddsType>EX</OddsType>
<OddsName>Exacta</OddsName>
<OddsBettingInterest>
<OddMatrix>
<Combination>
<Result>1-1</Result>
<OddValue>-</OddValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>1-2</Result>
<OddValue>90</OddValue>
<PoolAmount>119.00</PoolAmount>
</Combination>
<Combination>
<Result>1-3</Result>
<OddValue>99</OddValue>
<PoolAmount>64.00</PoolAmount>
</Combination>
<Combination>
<Result>1-4</Result>
<OddValue>99</OddValue>
<PoolAmount>33.00</PoolAmount>
</Combination>
<Combination>
<Result>1-5</Result>
<OddValue>30</OddValue>
<PoolAmount>337.00</PoolAmount>
</Combination>
<Combination>
<Result>1-6</Result>
<OddValue>70</OddValue>
<PoolAmount>144.00</PoolAmount>
</Combination>
<Combination>
<Result>1-7</Result>
<OddValue>45</OddValue>
<PoolAmount>234.00</PoolAmount>
</Combination>
<Combination>
<Result>1-8</Result>
<OddValue>30</OddValue>
<PoolAmount>340.00</PoolAmount>
</Combination>
<Combination>
<Result>2-1</Result>
<OddValue>99</OddValue>
<PoolAmount>101.00</PoolAmount>
</Combination>
<Combination>
<Result>2-2</Result>
<OddValue>-</OddValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>2-3</Result>
<OddValue>99</OddValue>
<PoolAmount>29.00</PoolAmount>
</Combination>
<Combination>
<Result>2-4</Result>
<OddValue>99</OddValue>
<PoolAmount>33.00</PoolAmount>
</Combination>
<Combination>
<Result>2-5</Result>
<OddValue>80</OddValue>
<PoolAmount>125.00</PoolAmount>
</Combination>
<Combination>
<Result>2-6</Result>
<OddValue>99</OddValue>
<PoolAmount>62.00</PoolAmount>
</Combination>
<Combination>
<Result>2-7</Result>
<OddValue>99</OddValue>
<PoolAmount>85.00</PoolAmount>
</Combination>
<Combination>
<Result>2-8</Result>
<OddValue>80</OddValue>
<PoolAmount>123.00</PoolAmount>
</Combination>
<Combination>
<Result>3-1</Result>
<OddValue>99</OddValue>
<PoolAmount>35.00</PoolAmount>
</Combination>
<Combination>
<Result>3-2</Result>
<OddValue>99</OddValue>
<PoolAmount>13.00</PoolAmount>
</Combination>
<Combination>
<Result>3-3</Result>
<OddValue>-</OddValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>3-4</Result>
<OddValue>99</OddValue>
<PoolAmount>23.00</PoolAmount>
</Combination>
<Combination>
<Result>3-5</Result>
<OddValue>99</OddValue>
<PoolAmount>56.00</PoolAmount>
</Combination>
<Combination>
<Result>3-6</Result>
<OddValue>99</OddValue>
<PoolAmount>29.00</PoolAmount>
</Combination>
<Combination>
<Result>3-7</Result>
<OddValue>99</OddValue>
<PoolAmount>47.00</PoolAmount>
</Combination>
<Combination>
<Result>3-8</Result>
<OddValue>99</OddValue>
<PoolAmount>61.00</PoolAmount>
</Combination>
<Combination>
<Result>4-1</Result>
<OddValue>99</OddValue>
<PoolAmount>21.00</PoolAmount>
</Combination>
<Combination>
<Result>4-2</Result>
<OddValue>99</OddValue>
<PoolAmount>14.00</PoolAmount>
</Combination>
<Combination>
<Result>4-3</Result>
<OddValue>99</OddValue>
<PoolAmount>20.00</PoolAmount>
</Combination>
<Combination>
<Result>4-4</Result>
<OddValue>-</OddValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>4-5</Result>
<OddValue>99</OddValue>
<PoolAmount>44.00</PoolAmount>
</Combination>
<Combination>
<Result>4-6</Result>
<OddValue>99</OddValue>
<PoolAmount>21.00</PoolAmount>
</Combination>
<Combination>
<Result>4-7</Result>
<OddValue>99</OddValue>
<PoolAmount>41.00</PoolAmount>
</Combination>
<Combination>
<Result>4-8</Result>
<OddValue>99</OddValue>
<PoolAmount>43.00</PoolAmount>
</Combination>
<Combination>
<Result>5-1</Result>
<OddValue>24</OddValue>
<PoolAmount>432.00</PoolAmount>
</Combination>
<Combination>
<Result>5-2</Result>
<OddValue>50</OddValue>
<PoolAmount>197.00</PoolAmount>
</Combination>
<Combination>
<Result>5-3</Result>
<OddValue>70</OddValue>
<PoolAmount>143.00</PoolAmount>
</Combination>
<Combination>
<Result>5-4</Result>
<OddValue>99</OddValue>
<PoolAmount>104.00</PoolAmount>
</Combination>
<Combination>
<Result>5-5</Result>
<OddValue>-</OddValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>5-6</Result>
<OddValue>30</OddValue>
<PoolAmount>338.00</PoolAmount>
</Combination>
<Combination>
<Result>5-7</Result>
<OddValue>11</OddValue>
<PoolAmount>908.00</PoolAmount>
</Combination>
<Combination>
<Result>5-8</Result>
<OddValue>8</OddValue>
<PoolAmount>1,167.00</PoolAmount>
</Combination>
<Combination>
<Result>6-1</Result>
<OddValue>99</OddValue>
<PoolAmount>100.00</PoolAmount>
</Combination>
<Combination>
<Result>6-2</Result>
<OddValue>99</OddValue>
<PoolAmount>62.00</PoolAmount>
</Combination>
<Combination>
<Result>6-3</Result>
<OddValue>99</OddValue>
<PoolAmount>37.00</PoolAmount>
</Combination>
<Combination>
<Result>6-4</Result>
<OddValue>99</OddValue>
<PoolAmount>28.00</PoolAmount>
</Combination>
<Combination>
<Result>6-5</Result>
<OddValue>50</OddValue>
<PoolAmount>205.00</PoolAmount>
</Combination>
<Combination>
<Result>6-6</Result>
<OddValue>-</OddValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>6-7</Result>
<OddValue>40</OddValue>
<PoolAmount>261.00</PoolAmount>
</Combination>
<Combination>
<Result>6-8</Result>
<OddValue>45</OddValue>
<PoolAmount>222.00</PoolAmount>
</Combination>
<Combination>
<Result>7-1</Result>
<OddValue>25</OddValue>
<PoolAmount>372.00</PoolAmount>
</Combination>
<Combination>
<Result>7-2</Result>
<OddValue>70</OddValue>
<PoolAmount>148.00</PoolAmount>
</Combination>
<Combination>
<Result>7-3</Result>
<OddValue>99</OddValue>
<PoolAmount>105.00</PoolAmount>
</Combination>
<Combination>
<Result>7-4</Result>
<OddValue>99</OddValue>
<PoolAmount>107.00</PoolAmount>
</Combination>
<Combination>
<Result>7-5</Result>
<OddValue>7</OddValue>
<PoolAmount>1,226.00</PoolAmount>
</Combination>
<Combination>
<Result>7-6</Result>
<OddValue>25</OddValue>
<PoolAmount>369.00</PoolAmount>
</Combination>
<Combination>
<Result>7-7</Result>
<OddValue>-</OddValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>7-8</Result>
<OddValue>6</OddValue>
<PoolAmount>1,507.00</PoolAmount>
</Combination>
<Combination>
<Result>8-1</Result>
<OddValue>23</OddValue>
<PoolAmount>457.00</PoolAmount>
</Combination>
<Combination>
<Result>8-2</Result>
<OddValue>50</OddValue>
<PoolAmount>193.00</PoolAmount>
</Combination>
<Combination>
<Result>8-3</Result>
<OddValue>80</OddValue>
<PoolAmount>133.00</PoolAmount>
</Combination>
<Combination>
<Result>8-4</Result>
<OddValue>99</OddValue>
<PoolAmount>88.00</PoolAmount>
</Combination>
<Combination>
<Result>8-5</Result>
<OddValue>7</OddValue>
<PoolAmount>1,335.00</PoolAmount>
</Combination>
<Combination>
<Result>8-6</Result>
<OddValue>35</OddValue>
<PoolAmount>283.00</PoolAmount>
</Combination>
<Combination>
<Result>8-7</Result>
<OddValue>6</OddValue>
<PoolAmount>1,421.00</PoolAmount>
</Combination>
<Combination>
<Result>8-8</Result>
<OddValue>-</OddValue>
<PoolAmount>
</PoolAmount>
</Combination>
</OddMatrix>
</OddsBettingInterest>
</Odds>
<Probables>
<ProbablesType>WN</ProbablesType>
<ProbablesName>Win</ProbablesName>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>1</BettingInterestProgramNumber>
<BettingInterestName>Jess Mas</BettingInterestName>
<Probables>19.60</Probables>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>1,617.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>2</BettingInterestProgramNumber>
<BettingInterestName>Tough to
Figure</BettingInterestName>
<Probables>38.40</Probables>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>825.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>3</BettingInterestProgramNumber>
<BettingInterestName>Zendaya</BettingInterestName>
<Probables>55.60</Probables>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>569.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>4</BettingInterestProgramNumber>
<BettingInterestName>Still Friends</BettingInterestName>
<Probables>54.40</Probables>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>582.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>5</BettingInterestProgramNumber>
<BettingInterestName>Strawfinders
Jessee</BettingInterestName>
<Probables>6.80</Probables>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>4,641.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>6</BettingInterestProgramNumber>
<BettingInterestName>Imaqtpie</BettingInterestName>
<Probables>30.00</Probables>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>1,056.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>7</BettingInterestProgramNumber>
<BettingInterestName>Designs by
Dynasty</BettingInterestName>
<Probables>6.00</Probables>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>5,131.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>8</BettingInterestProgramNumber>
<BettingInterestName>Jess Hawk</BettingInterestName>
<Probables>6.40</Probables>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>4,846.00</PoolAmount>
</ProbablesBettingInterest>
</Probables>
<Probables>
<ProbablesType>PL</ProbablesType>
<ProbablesName>Place</ProbablesName>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>1</BettingInterestProgramNumber>
<BettingInterestName>Jess Mas</BettingInterestName>
<Probables>7.60</Probables>
<ProbablesHi>10.00</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>547.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>2</BettingInterestProgramNumber>
<BettingInterestName>Tough to
Figure</BettingInterestName>
<Probables>12.00</Probables>
<ProbablesHi>16.00</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>329.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>3</BettingInterestProgramNumber>
<BettingInterestName>Zendaya</BettingInterestName>
<Probables>17.40</Probables>
<ProbablesHi>23.40</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>223.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>4</BettingInterestProgramNumber>
<BettingInterestName>Still Friends</BettingInterestName>
<Probables>18.60</Probables>
<ProbablesHi>24.80</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>209.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>5</BettingInterestProgramNumber>
<BettingInterestName>Strawfinders
Jessee</BettingInterestName>
<Probables>3.40</Probables>
<ProbablesHi>4.40</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>1,361.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>6</BettingInterestProgramNumber>
<BettingInterestName>Imaqtpie</BettingInterestName>
<Probables>14.80</Probables>
<ProbablesHi>19.80</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>264.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>7</BettingInterestProgramNumber>
<BettingInterestName>Designs by
Dynasty</BettingInterestName>
<Probables>2.80</Probables>
<ProbablesHi>3.60</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>1,809.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>8</BettingInterestProgramNumber>
<BettingInterestName>Jess Hawk</BettingInterestName>
<Probables>3.00</Probables>
<ProbablesHi>3.80</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>1,598.00</PoolAmount>
</ProbablesBettingInterest>
</Probables>
<Probables>
<ProbablesType>SH</ProbablesType>
<ProbablesName>Show</ProbablesName>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>1</BettingInterestProgramNumber>
<BettingInterestName>Jess Mas</BettingInterestName>
<Probables>3.60</Probables>
<ProbablesHi>5.60</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>322.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>2</BettingInterestProgramNumber>
<BettingInterestName>Tough to
Figure</BettingInterestName>
<Probables>8.20</Probables>
<ProbablesHi>13.60</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>117.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>3</BettingInterestProgramNumber>
<BettingInterestName>Zendaya</BettingInterestName>
<Probables>5.60</Probables>
<ProbablesHi>9.40</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>178.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>4</BettingInterestProgramNumber>
<BettingInterestName>Still Friends</BettingInterestName>
<Probables>5.20</Probables>
<ProbablesHi>8.60</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>199.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>5</BettingInterestProgramNumber>
<BettingInterestName>Strawfinders
Jessee</BettingInterestName>
<Probables>2.40</Probables>
<ProbablesHi>3.60</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>570.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>6</BettingInterestProgramNumber>
<BettingInterestName>Imaqtpie</BettingInterestName>
<Probables>7.20</Probables>
<ProbablesHi>11.80</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>137.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>7</BettingInterestProgramNumber>
<BettingInterestName>Designs by
Dynasty</BettingInterestName>
<Probables>2.40</Probables>
<ProbablesHi>3.40</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>621.00</PoolAmount>
</ProbablesBettingInterest>
<ProbablesBettingInterest>
<BettingInterestProgramNumber>8</BettingInterestProgramNumber>
<BettingInterestName>Jess Hawk</BettingInterestName>
<Probables>2.20</Probables>
<ProbablesHi>2.80</ProbablesHi>
<BettingInterestStatus>LIVE</BettingInterestStatus>
<PoolAmount>845.00</PoolAmount>
</ProbablesBettingInterest>
</Probables>
<Probables>
<ProbablesType>EX</ProbablesType>
<ProbablesName>Exacta</ProbablesName>
<ProbablesBettingInterest>
<ProbableMatrix>
<Combination>
<Result>1-1</Result>
<ProbableValue>-</ProbableValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>1-2</Result>
<ProbableValue>184.00</ProbableValue>
<PoolAmount>119.00</PoolAmount>
</Combination>
<Combination>
<Result>1-3</Result>
<ProbableValue>346.20</ProbableValue>
<PoolAmount>64.00</PoolAmount>
</Combination>
<Combination>
<Result>1-4</Result>
<ProbableValue>674.80</ProbableValue>
<PoolAmount>33.00</PoolAmount>
</Combination>
<Combination>
<Result>1-5</Result>
<ProbableValue>65.00</ProbableValue>
<PoolAmount>337.00</PoolAmount>
</Combination>
<Combination>
<Result>1-6</Result>
<ProbableValue>152.00</ProbableValue>
<PoolAmount>144.00</PoolAmount>
</Combination>
<Combination>
<Result>1-7</Result>
<ProbableValue>93.60</ProbableValue>
<PoolAmount>234.00</PoolAmount>
</Combination>
<Combination>
<Result>1-8</Result>
<ProbableValue>64.60</ProbableValue>
<PoolAmount>340.00</PoolAmount>
</Combination>
<Combination>
<Result>2-1</Result>
<ProbableValue>216.40</ProbableValue>
<PoolAmount>101.00</PoolAmount>
</Combination>
<Combination>
<Result>2-2</Result>
<ProbableValue>-</ProbableValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>2-3</Result>
<ProbableValue>738.00</ProbableValue>
<PoolAmount>29.00</PoolAmount>
</Combination>
<Combination>
<Result>2-4</Result>
<ProbableValue>650.40</ProbableValue>
<PoolAmount>33.00</PoolAmount>
</Combination>
<Combination>
<Result>2-5</Result>
<ProbableValue>177.00</ProbableValue>
<PoolAmount>125.00</PoolAmount>
</Combination>
<Combination>
<Result>2-6</Result>
<ProbableValue>350.00</ProbableValue>
<PoolAmount>62.00</PoolAmount>
</Combination>
<Combination>
<Result>2-7</Result>
<ProbableValue>257.40</ProbableValue>
<PoolAmount>85.00</PoolAmount>
</Combination>
<Combination>
<Result>2-8</Result>
<ProbableValue>179.00</ProbableValue>
<PoolAmount>123.00</PoolAmount>
</Combination>
<Combination>
<Result>3-1</Result>
<ProbableValue>618.00</ProbableValue>
<PoolAmount>35.00</PoolAmount>
</Combination>
<Combination>
<Result>3-2</Result>
<ProbableValue>1690.20</ProbableValue>
<PoolAmount>13.00</PoolAmount>
</Combination>
<Combination>
<Result>3-3</Result>
<ProbableValue>-</ProbableValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>3-4</Result>
<ProbableValue>933.00</ProbableValue>
<PoolAmount>23.00</PoolAmount>
</Combination>
<Combination>
<Result>3-5</Result>
<ProbableValue>390.00</ProbableValue>
<PoolAmount>56.00</PoolAmount>
</Combination>
<Combination>
<Result>3-6</Result>
<ProbableValue>743.40</ProbableValue>
<PoolAmount>29.00</PoolAmount>
</Combination>
<Combination>
<Result>3-7</Result>
<ProbableValue>466.40</ProbableValue>
<PoolAmount>47.00</PoolAmount>
</Combination>
<Combination>
<Result>3-8</Result>
<ProbableValue>357.00</ProbableValue>
<PoolAmount>61.00</PoolAmount>
</Combination>
<Combination>
<Result>4-1</Result>
<ProbableValue>1046.40</ProbableValue>
<PoolAmount>21.00</PoolAmount>
</Combination>
<Combination>
<Result>4-2</Result>
<ProbableValue>1569.60</ProbableValue>
<PoolAmount>14.00</PoolAmount>
</Combination>
<Combination>
<Result>4-3</Result>
<ProbableValue>1057.40</ProbableValue>
<PoolAmount>20.00</PoolAmount>
</Combination>
<Combination>
<Result>4-4</Result>
<ProbableValue>-</ProbableValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>4-5</Result>
<ProbableValue>499.40</ProbableValue>
<PoolAmount>44.00</PoolAmount>
</Combination>
<Combination>
<Result>4-6</Result>
<ProbableValue>1046.40</ProbableValue>
<PoolAmount>21.00</PoolAmount>
</Combination>
<Combination>
<Result>4-7</Result>
<ProbableValue>536.00</ProbableValue>
<PoolAmount>41.00</PoolAmount>
</Combination>
<Combination>
<Result>4-8</Result>
<ProbableValue>511.00</ProbableValue>
<PoolAmount>43.00</PoolAmount>
</Combination>
<Combination>
<Result>5-1</Result>
<ProbableValue>50.60</ProbableValue>
<PoolAmount>432.00</PoolAmount>
</Combination>
<Combination>
<Result>5-2</Result>
<ProbableValue>111.80</ProbableValue>
<PoolAmount>197.00</PoolAmount>
</Combination>
<Combination>
<Result>5-3</Result>
<ProbableValue>153.80</ProbableValue>
<PoolAmount>143.00</PoolAmount>
</Combination>
<Combination>
<Result>5-4</Result>
<ProbableValue>212.20</ProbableValue>
<PoolAmount>104.00</PoolAmount>
</Combination>
<Combination>
<Result>5-5</Result>
<ProbableValue>-</ProbableValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>5-6</Result>
<ProbableValue>65.00</ProbableValue>
<PoolAmount>338.00</PoolAmount>
</Combination>
<Combination>
<Result>5-7</Result>
<ProbableValue>24.00</ProbableValue>
<PoolAmount>908.00</PoolAmount>
</Combination>
<Combination>
<Result>5-8</Result>
<ProbableValue>18.80</ProbableValue>
<PoolAmount>1,167.00</PoolAmount>
</Combination>
<Combination>
<Result>6-1</Result>
<ProbableValue>218.40</ProbableValue>
<PoolAmount>100.00</PoolAmount>
</Combination>
<Combination>
<Result>6-2</Result>
<ProbableValue>350.00</ProbableValue>
<PoolAmount>62.00</PoolAmount>
</Combination>
<Combination>
<Result>6-3</Result>
<ProbableValue>581.60</ProbableValue>
<PoolAmount>37.00</PoolAmount>
</Combination>
<Combination>
<Result>6-4</Result>
<ProbableValue>784.80</ProbableValue>
<PoolAmount>28.00</PoolAmount>
</Combination>
<Combination>
<Result>6-5</Result>
<ProbableValue>106.60</ProbableValue>
<PoolAmount>205.00</PoolAmount>
</Combination>
<Combination>
<Result>6-6</Result>
<ProbableValue>-</ProbableValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>6-7</Result>
<ProbableValue>84.00</ProbableValue>
<PoolAmount>261.00</PoolAmount>
</Combination>
<Combination>
<Result>6-8</Result>
<ProbableValue>98.60</ProbableValue>
<PoolAmount>222.00</PoolAmount>
</Combination>
<Combination>
<Result>7-1</Result>
<ProbableValue>59.00</ProbableValue>
<PoolAmount>372.00</PoolAmount>
</Combination>
<Combination>
<Result>7-2</Result>
<ProbableValue>149.60</ProbableValue>
<PoolAmount>148.00</PoolAmount>
</Combination>
<Combination>
<Result>7-3</Result>
<ProbableValue>208.80</ProbableValue>
<PoolAmount>105.00</PoolAmount>
</Combination>
<Combination>
<Result>7-4</Result>
<ProbableValue>206.60</ProbableValue>
<PoolAmount>107.00</PoolAmount>
</Combination>
<Combination>
<Result>7-5</Result>
<ProbableValue>17.80</ProbableValue>
<PoolAmount>1,226.00</PoolAmount>
</Combination>
<Combination>
<Result>7-6</Result>
<ProbableValue>59.40</ProbableValue>
<PoolAmount>369.00</PoolAmount>
</Combination>
<Combination>
<Result>7-7</Result>
<ProbableValue>-</ProbableValue>
<PoolAmount>
</PoolAmount>
</Combination>
<Combination>
<Result>7-8</Result>
<ProbableValue>14.40</ProbableValue>
<PoolAmount>1,507.00</PoolAmount>
</Combination>
<Combination>
<Result>8-1</Result>
<ProbableValue>48.00</ProbableValue>
<PoolAmount>457.00</PoolAmount>
</Combination>
<Combination>
<Result>8-2</Result>
<ProbableValue>114.80</ProbableValue>
<PoolAmount>193.00</PoolAmount>
</Combination>
<Combination>
<Result>8-3</Result>
<ProbableValue>165.00</ProbableValue>
<PoolAmount>133.00</PoolAmount>
</Combination>
<Combination>
<Result>8-4</Result>
<ProbableValue>250.40</ProbableValue>
<PoolAmount>88.00</PoolAmount>
</Combination>
<Combination>
<Result>8-5</Result>
<ProbableValue>16.40</ProbableValue>
<PoolAmount>1,335.00</PoolAmount>
</Combination>
<Combination>
<Result>8-6</Result>
<ProbableValue>77.40</ProbableValue>
<PoolAmount>283.00</PoolAmount>
</Combination>
<Combination>
<Result>8-7</Result>
<ProbableValue>15.40</ProbableValue>
<PoolAmount>1,421.00</PoolAmount>
</Combination>
<Combination>
<Result>8-8</Result>
<ProbableValue>-</ProbableValue>
<PoolAmount>
</PoolAmount>
</Combination>
</ProbableMatrix>
</ProbablesBettingInterest>
</Probables>
<PoolTotal>
<PoolCode>WN</PoolCode>
<PoolName>Win</PoolName>
<PoolAmount>19,274.00</PoolAmount>
</PoolTotal>
<PoolTotal>
<PoolCode>PL</PoolCode>
<PoolName>Place</PoolName>
<PoolAmount>6,347.00</PoolAmount>
</PoolTotal>
<PoolTotal>
<PoolCode>SH</PoolCode>
<PoolName>Show</PoolName>
<PoolAmount>2,992.00</PoolAmount>
</PoolTotal>
<PoolTotal>
<PoolCode>EX</PoolCode>
<PoolName>Exacta</PoolName>
<PoolAmount>14,268.00</PoolAmount>
</PoolTotal>
<PoolTotal>
<PoolCode>TR</PoolCode>
<PoolName>Trifecta</PoolName>
<PoolAmount>16,662.00</PoolAmount>
</PoolTotal>
<PoolTotal>
<PoolCode>SU</PoolCode>
<PoolName>Superfecta</PoolName>
<PoolAmount>24,939.00</PoolAmount>
</PoolTotal>
</CycleData>
[top]
Price
<PriceData xmlns='http://www.w3.org/2001/XMLSchema-instance'>
<DocumentSerialNumber>0030889383</DocumentSerialNumber>
<TimeStamp>2018-05-14 13:29:03</TimeStamp>
<TimeZone>PT</TimeZone>
<SequenceKey>Price-GP-1-2018-05-14</SequenceKey>
<SequenceNumber>00000</SequenceNumber>
<SequenceDate>2018-05-14</SequenceDate>
<GeneratorType>Price</GeneratorType>
<FileName>20180514-GP-1-00000-0030889383-Price.xml</FileName>
<Event>
<EventCode>GPM</EventCode>
<TrackCode>GP</TrackCode>
<EventName>Gulfstream Park</EventName>
<EventDate>2018-05-14</EventDate>
</Event>
<Race>
<RaceNumber>1</RaceNumber>
</Race>
<RaceResult>1,2,10,11</RaceResult>
<Price>
<PoolCode>WN</PoolCode>
<Pool>WIN</Pool>
<Result>1</Result>
<BaseWinAmount>9.80</BaseWinAmount>
<BasePlaceAmount>7.00</BasePlaceAmount>
<BaseShowAmount>4.80</BaseShowAmount>
<BaseAmount>2</BaseAmount>
</Price>
<Price>
<PoolCode>PL</PoolCode>
<Pool>PLACE</Pool>
<Result>2</Result>
<BaseWinAmount>0.00</BaseWinAmount>
<BasePlaceAmount>10.20</BasePlaceAmount>
<BaseShowAmount>6.80</BaseShowAmount>
<BaseAmount>2</BaseAmount>
</Price>
<Price>
<PoolCode>SH</PoolCode>
<Pool>SHOW</Pool>
<Result>10</Result>
<BaseWinAmount>0.00</BaseWinAmount>
<BasePlaceAmount>0.00</BasePlaceAmount>
<BaseShowAmount>5.20</BaseShowAmount>
<BaseAmount>2</BaseAmount>
</Price>
<Price>
<PoolCode>EX</PoolCode>
<Pool>EXACTA</Pool>
<Result>1-2</Result>
<BaseWinAmount>57.60</BaseWinAmount>
<BaseAmount>2</BaseAmount>
</Price>
<Price>
<PoolCode>TR</PoolCode>
<Pool>TRIFECTA</Pool>
<Result>1-2-10</Result>
<BaseWinAmount>51.75</BaseWinAmount>
<BaseAmount>0.50</BaseAmount>
</Price>
<Price>
<PoolCode>SU</PoolCode>
<Pool>SUPERFECTA</Pool>
<Result>1-2-10-11</Result>
<BaseWinAmount>295.16</BaseWinAmount>
<BaseAmount>0.10</BaseAmount>
</Price>
</PriceData>
[top]
Change
<ChangeData xmlns='http://www.w3.org/2001/XMLSchema-instance'>
<DocumentSerialNumber>0053371358</DocumentSerialNumber>
<TimeStamp>2018-05-14 08:05:02</TimeStamp>
<TimeZone>PT</TimeZone>
<SequenceKey>Change-FL-2-2018-05-14</SequenceKey>
<SequenceNumber>00000</SequenceNumber>
<SequenceDate>2018-05-14</SequenceDate>
<GeneratorType>Change</GeneratorType>
<FileName>20180514-FL-2-00000-0053371358-Change.xml</FileName>
<Event>
<EventCode>FIM</EventCode>
<TrackCode>FL</TrackCode>
<EventName>Finger Lakes</EventName>
<EventDate>2018-05-14</EventDate>
</Event>
<Race>
<RaceNumber>2</RaceNumber>
<BettingInterest>
<PostPosition>01</PostPosition>
<BettingInterestProgramNumber>1</BettingInterestProgramNumber>
<BettingInterestStatus>SCRATCHED</BettingInterestStatus>
</BettingInterest>
</Race>
</ChangeData>
[top]
Tip
<TipData xmlns='http://www.w3.org/2001/XMLSchema-instance'>
<DocumentSerialNumber>0053371358</DocumentSerialNumber>
<TimeStamp>2018-05-14 08:05:02</TimeStamp>
<TimeZone>PT</TimeZone>
<SequenceKey>Tip-FL-2-2018-05-14</SequenceKey>
<SequenceNumber>00000</SequenceNumber>
<SequenceDate>2018-05-14</SequenceDate>
<GeneratorType>Tip</GeneratorType>
<FileName>20180514-FL-2-00000-0053371358-Tip.xml</FileName>
<Event>
<EventCode>FIM</EventCode>
<TrackCode>FL</TrackCode>
<EventName>Finger Lakes</EventName>
<EventDate>2018-05-14</EventDate>
</Event>
<Race>
<RaceNumber>2</RaceNumber>
</Race>
<TipInfo>
<Tip>Bet on runner 1</Tip>
</TipInfo>
</TipData>
Overview
Purpose
The xwsx (Xpressbet web service X) web service is a SOAP web service that implements all
of the functionality necessary for developing a complete ADW interface. This web service
allows you to retrieve horse-racing data, validate user logins, place wagers, get user
statements, check account balances, get race videos and replays, and a host of other
operations.
Note that though you can pull racing information from xwsx, you should be using the
GWSDS feed for this type of data. The GWSDS feed will send the data automatically to your
endpoint the instant it becomes available at Xpressbet.
[top]
WSDL
The WSDL for the xwsx web service is located in the following locations (based on operating
environment):
dev: http://dev-xwsx.xpressbetonline.com/xwsx/wsdl/xwsx.dev.wsdl
qa: https://qa-xwsx.xpressbetonline.com/xwsx/wsdl/xwsx.qa.wsdl
prod: https://xwsx.xpressbetonline.com/xwsx/wsdl/xwsx.prod.wsdl
For making SOAP calls the following locations and uris should be used
Authentication
Access to xwsx is granted via a SOAP username/password. If you do not have xwsx
credentials, please contact your integration manager. The technique of passing the SOAP
username/password to xwsx varies from language to language -- please check your
language documentation.
[top]
This documentation will refer to both track codes and event codes. These are not the same
thing.
The track codes are alphanumeric codes for the tracks based on the data that is sent to
Xpressbet from the card providers like Equibase and TrackMaster. Generally, track codes are
used when dealing with static data like program cards, runners, and general track
information.
Event codes are alphanumeric codes defined by tote and are used when dealing with
dynamic data like MTPs, odds, and pools. Bets will always be placed with event codes.
For the most part the track code for a track will always be the same; the event code,
however, can vary from day-to-day for the same track.
For example, Santa Anita will always have a track code of SA. The event code however can
be either SAD or SAN depending on what tote has defined for Santa Anita for a given day.
You can use the GetEventMap function to get a map between the two code types for a
specific date and use that as a translaton table.
[top]
Pool Codes
The following codes should be used for any xwsx functions that take a betcode/pool as a
parameter.
[top]
End of Session
At the conclusion of the race day, tote will enter a state known as end of session (EOS) as
they end the current race day and intialize the next race day. During EOS, the tote is
unavailable and, accordingly, any xwsx functions that require tote connectivity will error.
Specifically, the PlaceBet and GetBalance functions will not work. The length of EOS varies
from day to day and can be a couple hours in length.
[top]
Transaction Types
The following tranaction types should be used for any xwsx functions that take a transaction
type as a parameter.
[top]
When sending bets via PlaceBet, the selections field must be formatted in accordance with
the following rules:
The runner string is a list of comma delimited runner and special tokens.
The runner tokens are '1', '2', '3', ... , '24'.
The special tokens are: 'BX' (Box), 'KY', (Key), 'WT' (With).
The 'BX' or box token indicates the following runners are to be used to generate all
possible combinations of two(exacta), three(Trifecta), or four(Superfecta) runners. The 'BX'
token may only be applied to runner strings associated with Exacta, Trifecta, and Superfecta
bet types. It must be the first token in the string. (e.g., BX,1,2)
The 'KY' or key token indicates the following runner is expected to come in first,
followed by all combinations of the remaining runners being boxed. It must be the first
token, followed by a runner, followed by the 'WT' (with) token, followed by the runners to
be boxed. The 'KY' token may only be used with Trifecta and Superfecta bet types (e.g.,
KY,1,WT,2,3,4 or KY,1,BX,2,3,4).
The 'WT' or with token is used to separate parts of a multi-part wager. An Exacta has
two parts as does a Daily Double. A Trifecta has three parts as does a Pick 3. the 'WT' token
is required to separate each part. (e.g., 1,WT,2 or 1,2,3,WT,4,5,6 or 1,WT,2,WT,3,WT,4)
The runner format for parlay (PRLY) wagers is [event] [race] [amount] [pool]
[comma-separated list of runners] | [event] [race2] [pool2] [comma-separated list of
runners2] | ... and so on. For example, GPM 2 6 WN 2 | GPM 3 PL 3,4 | GPM 4 WN 3 would
be a $6 three-leg parlay on races 2, 3, and 4 at Gulfstream. All white space is mandatory.
A parlay wager needs at least 2 legs and no more than 6.
The following bet types are allowed for parlays: WN, PL, SH, WP, PS, WS, and WPS.
Exotics like QU are not allowed for parlays.
The cost of a parlay bet is the cost of the bet in the first leg of the parlay.
The legs in a parlay bet need to be sequential but need not be consecutive: 2,4,6 is
allowed; 6,4,2, is not allowed.
[top]
Functions
GetTracksByDate
Input
date
Date in yyyy-mm-dd format.
fields
JSON-encoded array of fields that will be returned (if left empty, all fields are
returned).
Output
tracks
JSON-encoded array of requested data (if any)
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("GetTracksByDate",
array(
"date"=>"2018-01-01",
"fields"=>json_encode(array("numraces"))
)
);
Response:
{
"AUS-AUB": {
"numraces": "7"
},
"AUS-AUC": {
"numraces": "7"
},
"AUS-AUD": {
"numraces": "4"
},
"AUS-AUS": {
"numraces": "10"
},
"AUS-BKA": {
"numraces": "8"
},
"AUS-SNH": {
"numraces": "8"
},
"BAN": {
"numraces": "8"
},
"BHP": {
"numraces": "2"
},
"ENG-BRG": {
"numraces": "7"
},
"ENG-EXE": {
"numraces": "6"
},
"ENG-FKN": {
"numraces": "6"
},
"ENG-LUD": {
"numraces": "7"
},
"ENG-THI": {
"numraces": "8"
},
"FP": {
"numraces": "7"
},
"FRA-BOR": {
"numraces": "8"
},
"FRA-STC": {
"numraces": "8"
},
"FRA-VIN": {
"numraces": "7"
},
"GP": {
"numraces": "6"
},
"HAR": {
"numraces": "11"
},
"HK-ST": {
"numraces": "11"
},
"HOP": {
"numraces": "12"
},
"IND": {
"numraces": "9"
},
"IRE-ROS": {
"numraces": "7"
},
"LAD": {
"numraces": "7"
},
"LON": {
"numraces": "10"
},
"MEA": {
"numraces": "13"
},
"MNR": {
"numraces": "9"
},
"MR": {
"numraces": "7"
},
"NFL": {
"numraces": "15"
},
"PCD": {
"numraces": "13"
},
"PRC": {
"numraces": "11"
},
"PRX": {
"numraces": "9"
},
"SAF-VAA": {
"numraces": "8"
},
"SCD": {
"numraces": "11"
},
"TDN": {
"numraces": "8"
},
"WRD": {
"numraces": "8"
},
"YR": {
"numraces": "11"
}
}
[top]
GetTracksByDateAndTrack
trackcode
The track code (letters, numbers, dashes)
fields
JSON-encoded array of fields that will be returned (if left empty, all fields are
returned).
Output
tracks
JSON-encoded array of requested data (if any)
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("GetTracksByDateAndTrack",
array(
"date"=>"2018-01-01",
"trackcode"=>"SA",
"fields"=>json_encode(array("firstposttime,numraces"))
)
);
Response:
{
"firstposttime": "12:30",
"numraces": "9"
}
[top]
GetRacesByDateAndTrack
trackcode
The track code (letters, numbers, dashes)
fields
JSON-encoded array of fields that will be returned (if left empty, all fields are
returned).
Output
races
JSON-encoded array of requested data (if any)
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("GetRacesByDateAndTrack",
array(
"date"=>"2018-01-01",
"trackcode"=>"SA",
"fields"=>json_encode(array("racetype","numrunners","purse"))
)
);
Response:
{
"1": {
"racetype": "AOC",
"numrunners": "8",
"purse": "56000.00"
},
"2": {
"racetype": "CLM",
"numrunners": "6",
"purse": "16000.00"
},
"3": {
"racetype": "MSW",
"numrunners": "7",
"purse": "54000.00"
},
"4": {
"racetype": "AOC",
"numrunners": "8",
"purse": "56000.00"
},
"5": {
"racetype": "STK",
"numrunners": "7",
"purse": "100000.00"
},
"6": {
"racetype": "AOC",
"numrunners": "8",
"purse": "56000.00"
},
"7": {
"racetype": "MCL",
"numrunners": "9",
"purse": "18000.00"
},
"8": {
"racetype": "STK",
"numrunners": "10",
"purse": "75000.00"
},
"9": {
"racetype": "MSW",
"numrunners": "12",
"purse": "54000.00"
}
}
[top]
GetRacesByDateAndTrackAndRace
Pulls all races running on a specific date at a specific track for a specific race.
Input
date
Date in yyyy-mm-dd format.
trackcode
The track code (letters, numbers, dashes)
race
The race number (1-99)
fields
JSON-encoded array of fields that will be returned (if left empty, all fields are
returned).
Output
races
JSON-encoded array of requested data (if any)
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("GetRacesByDateAndTrackAndRace",
array(
"date"=>"2018-01-01",
"trackcode"=>"SA",
"race"=>2,
"fields"=>json_encode(array("racetype","numrunners","purse"))
)
);
Response:
{
"racetype": "CLM",
"numrunners": "6",
"purse": "16000.00"
}
[top]
GetRunnersByDateAndTrackAndRace
Input
date
Date in yyyy-mm-dd format.
trackcode
The track code (letters, numbers, dashes)
race
The race number (1-99)
fields
JSON-encoded array of fields that will be returned (if left empty, all fields are
returned).
Output
races
JSON-encoded array of requested data (if any). Note that runners are indexed via
program number => post position. In the event of coupled runners (e.g., 1/1A), it is
possible that more than one runner will have the same program number. The post position
will always be unique.
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("GetRunnersByDateAndTrackAndRace",
array(
"date"=>"2018-01-01",
"trackcode"=>"SA",
"race"=>2,
"fields"=>json_encode(array("horsename","color"))
)
);
Response:
{
"1": {
"01": {
"horsename": "Candy Pink",
"color": "B"
}
},
"2": {
"02": {
"horsename": "Coronado Cool",
"color": "CH"
}
},
"3": {
"03": {
"horsename": "Mamas Secretstorm",
"color": "CH"
}
},
"4": {
"04": {
"horsename": "Tuscany Beauty",
"color": "CH"
}
},
"5": {
"05": {
"horsename": "Foxy Fresh",
"color": "CH"
}
},
"6": {
"06": {
"horsename": "Irish Dame",
"color": "GRRO"
}
}
}
[top]
GetEventsByDate
Input
date
Date in yyyy-mm-dd format.
fields
JSON-encoded array of fields that will be returned (if left empty, all fields are
returned).
Output
tracks
JSON-encoded array of requested data (if any)
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("GetEventsByDate",
array(
"date"=>"2018-01-01",
"fields"=>json_encode(array("MTP"))
)
);
Response:
{
"2BD": {
"MTP": 8
},
"AOD": {
"MTP": 0
},
"APM": {
"MTP": 11
},
"AUB": {
"MTP": 99
},
"AUC": {
"MTP": 99
},
"AUD": {
"MTP": 99
},
"AUS": {
"MTP": 99
},
"BED": {
"MTP": 99
},
"BFM": {
"MTP": 0
},
"BFN": {
"MTP": 99
},
"BFT": {
"MTP": 0
},
"BIE": {
"MTP": 99
},
"BIM": {
"MTP": 15
},
"BUN": {
"MTP": 99
},
"CBD": {
"MTP": 9
},
"CEH": {
"MTP": 30
},
"CHD": {
"MTP": 0
},
"CON": {
"MTP": 99
},
"DTN": {
"MTP": 99
},
"EMD": {
"MTP": 99
},
"ETE": {
"MTP": 99
},
"EVN": {
"MTP": 99
},
"FAN": {
"MTP": 99
},
"FBM": {
"MTP": 99
},
"FHD": {
"MTP": 13
},
"FIM": {
"MTP": 16
},
"GGD": {
"MTP": 60
},
"GPM": {
"MTP": 1
},
"HAN": {
"MTP": 99
},
"HJD": {
"MTP": 0
},
"HSM": {
"MTP": 99
},
"HTN": {
"MTP": 99
},
"HXD": {
"MTP": 0
},
"IJN": {
"MTP": 99
},
"IVM": {
"MTP": 0
},
"IVN": {
"MTP": 99
},
"JNN": {
"MTP": 99
},
"JTD": {
"MTP": 0
},
"KRS": {
"MTP": 99
},
"LDM": {
"MTP": 90
},
"LFD": {
"MTP": 0
},
"LQN": {
"MTP": 99
},
"LSE": {
"MTP": 50
},
"MEE": {
"MTP": 0
},
"MSA": {
"MTP": 99
},
"MTD": {
"MTP": 0
},
"MZN": {
"MTP": 99
},
"NDT": {
"MTP": 15
},
"NGD": {
"MTP": 0
},
"NPN": {
"MTP": 99
},
"NRN": {
"MTP": 99
},
"OKM": {
"MTP": 0
},
"OKN": {
"MTP": 99
},
"ORE": {
"MTP": 99
},
"ORM": {
"MTP": 5
},
"PCN": {
"MTP": 99
},
"PEN": {
"MTP": 99
},
"PHD": {
"MTP": 1
},
"PIM": {
"MTP": 0
},
"PMM": {
"MTP": 12
},
"RED": {
"MTP": 99
},
"RSM": {
"MTP": 30
},
"SAD": {
"MTP": 45
},
"SGM": {
"MTP": 3
},
"SGN": {
"MTP": 99
},
"SHQ": {
"MTP": 81
},
"SKM": {
"MTP": 9
},
"SKN": {
"MTP": 99
},
"SRN": {
"MTP": 99
},
"TBD": {
"MTP": 0
},
"TDM": {
"MTP": 0
},
"TQN": {
"MTP": 99
},
"TST": {
"MTP": 99
},
"TWN": {
"MTP": 99
},
"VHD": {
"MTP": 5
},
"VMD": {
"MTP": 0
},
"VRN": {
"MTP": 99
},
"VUE": {
"MTP": 81
},
"VUM": {
"MTP": 81
},
"WEE": {
"MTP": 99
},
"WEM": {
"MTP": 6
},
"WOH": {
"MTP": 99
},
"WOT": {
"MTP": 1
},
"WRD": {
"MTP": 15
},
"WUH": {
"MTP": 81
},
"WWD": {
"MTP": 15
},
"XFD": {
"MTP": 0
},
"XTD": {
"MTP": 0
},
"Y7D": {
"MTP": 0
},
"YON": {
"MTP": 99
},
"ZGD": {
"MTP": 99
}
}
[top]
GetEventsByDateAndEvent
Input
date
Date in yyyy-mm-dd format.
eventcode
The event code (letters and numbers only)
fields
JSON-encoded array of fields that will be returned (if left empty, all fields are
returned).
Output
events
JSON-encoded array of requested data (if any)
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("GetEventsByDateAndEvent",
array(
"date"=>"2018-01-01",
"eventcode"=>"SAD",
"fields"=>json_encode(array("programStatus","MTP""))
)
);
Response:
{
"programStatus": "O",
"MTP": 41
}
[top]
GetEventRacesByDate
Input
date
Date in yyyy-mm-dd format.
fields
JSON-encoded array of fields that will be returned (if left empty, all fields are
returned).
Output
races
JSON-encoded array of requested data (if any)
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("GetEventRacesByDate",
array(
"date"=>"2018-01-01",
"fields"=>json_encode(array("liveRunners"))
)
);
Response (truncated):
{
"2BD": {
"1": {
"liveRunners": [
1,
2,
3,
4,
5,
6
]
},
"2": {
"liveRunners": [
1,
2,
3,
4,
5,
6,
7
]
},
"3": {
"liveRunners": [
1,
2,
3,
4,
5,
6,
7,
8,
9
]
},
"4": {
"liveRunners": [
1,
2,
3,
4,
5,
6,
7,
8
]
},
"5": {
"liveRunners": [
1,
2,
3,
4,
5,
6,
7,
8
]
},
"6": {
"liveRunners": [
1,
2,
3,
4,
5,
6,
7,
8
]
},
"7": {
"liveRunners": [
1,
2,
3,
4,
5,
6
]
},
"8": {
"liveRunners": [
1,
2,
3,
4,
5,
6,
7,
8
]
}
},
"AOD": {
"1": {
"liveRunners": [
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16
]
},
"2": {
"liveRunners": [
1,
2,
3,
4,
5,
6
]
},
"3": {
"liveRunners": [
1,
2,
3,
4,
5,
6,
7,
8,
9
]
},
"4": {
"liveRunners": [
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23
]
},
"5": {
"liveRunners": [
1,
2,
3,
4,
5,
6,
7,
8,
9,
10
]
},
"6": {
"liveRunners": [
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18
]
}
}
}
[top]
GetEventRacesByDateAndEvent
Input
date
Date in yyyy-mm-dd format.
eventcode
The event code (letters and numbers only)
fields
JSON-encoded array of fields that will be returned (if left empty, all fields are
returned).
Output
races
JSON-encoded array of requested data (if any)
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("GetEventRacesByDateAndEvent",
array(
"date"=>"2018-01-01",
"eventcode"=>"SAD",
"fields"=>json_encode(array("liveRunners","canWager"))
)
);
Response:
{
"1": {
"liveRunners": [
1,
2,
3,
4,
5,
6,
7,
8
],
"canWager": true
},
"2": {
"liveRunners": [
1,
2,
3,
4,
5,
6
],
"canWager": true
},
"3": {
"liveRunners": [
1,
2,
3,
4,
5,
6,
7
],
"canWager": true
},
"4": {
"liveRunners": [
1,
2,
3,
4,
5,
6,
7,
8
],
"canWager": true
},
"5": {
"liveRunners": [
1,
2,
3,
4,
5,
6,
7
],
"canWager": true
},
"6": {
"liveRunners": [
1,
2,
3,
4,
5,
6,
7,
8
],
"canWager": true
},
"7": {
"liveRunners": [
1,
2,
3,
4,
5,
6,
7,
8,
9
],
"canWager": true
},
"8": {
"liveRunners": [
1,
2,
3,
4,
5,
6,
7,
8,
9,
10
],
"canWager": true
},
"9": {
"liveRunners": [
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12
],
"canWager": true
}
}
[top]
GetEventRacesByDateAndEventAndRace
Pulls event race data for a specific race running on a specific date at a specific track.
Input
date
Date in yyyy-mm-dd format.
eventcode
The event code (letters and numbers only)
race
The race number (1-99)
fields
JSON-encoded array of fields that will be returned (if left empty, all fields are
returned).
Output
races
JSON-encoded array of requested data (if any)
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("GetEventRacesByDateAndEventAndRace",
array(
"date"=>"2018-01-01",
"eventcode"=>"SA",
"race"=>2,
"fields"=>json_encode(array("canWager"))
)
);
Response:
{
"canWager": true
}
[top]
GetOddsByDateAndEventAndRace
Pulls odds data for a specific race running on a specific date at a specific track.
Input
date
Date in yyyy-mm-dd format.
eventcode
The event code (letters and numbers only)
race
The race number (1-99)
fields
JSON-encoded array of fields that will be returned (if left empty, all fields are
returned).
Output
races
JSON-encoded array of requested data (if any)
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("GetOddsByDateAndEventAndRace",
array(
"date"=>"2018-01-01",
"eventcode"=>"SA",
"race"=>2,
"fields"=>json_encode(array("betType","odds"))
)
);
Response:
{
"DB": {
"betType": "DB",
"odds": [
[
"50",
"17",
"50",
"50",
"7",
"25"
],
[
"99",
"23",
"90",
"80",
"45",
"40"
],
[
"99",
"21",
"45",
"99",
"13",
"24"
],
[
"99",
"60",
"99",
"99",
"40",
"70"
],
[
"40",
"30",
"60",
"99",
"9",
"35"
],
[
"99",
"50",
"99",
"99",
"30",
"40"
],
[
"99",
"80",
"99",
"99",
"60",
"99"
],
[
"90",
"18",
"40",
"80",
"8",
"14"
]
]
},
"EX": {
"betType": "EX",
"odds": [
[
"-",
"20",
"19",
"50",
"12",
"24",
"45",
"12"
],
[
"40",
"-",
"70",
"99",
"60",
"90",
"99",
"40"
],
[
"22",
"60",
"-",
"99",
"22",
"70",
"99",
"25"
],
[
"50",
"99",
"99",
"-",
"70",
"99",
"99",
"99"
],
[
"15",
"60",
"22",
"60",
"-",
"60",
"70",
"16"
],
[
"50",
"80",
"80",
"99",
"80",
"-",
"99",
"45"
],
[
"60",
"99",
"99",
"99",
"70",
"99",
"-",
"99"
],
[
"10",
"25",
"17",
"80",
"19",
"30",
"60",
"-"
]
]
},
"WN": {
"betType": "WN",
"odds": [
[
"5",
"5",
"5",
"14",
"4",
"5",
"25",
"5-2"
]
]
}
}
[top]
GetOddsByDateAndEventAndRaceAndPool
Pulls odds data for a specific pool at a specific race running on a specific date at a specific
track.
Input
date
Date in yyyy-mm-dd format.
eventcode
The event code (letters and numbers only)
race
The race number (1-99)
pool
The pool code (see Pool Codes)
fields
JSON-encoded array of fields that will be returned (if left empty, all fields are
returned).
Output
races
JSON-encoded array of requested data (if any)
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("GetOddsByDateAndEventAndRaceAndPool",
array(
"date"=>"2018-01-01",
"eventcode"=>"SA",
"race"=>2,
"pool"=>"WN",
"fields"=>json_encode(array("odds"))
)
);
Response:
{
"odds": [
[
"3",
"5",
"5",
"14",
"9-2",
"6",
"25",
"3"
]
]
}
[top]
GetEventMap
Generates the track code => event code map for a specific date. This can be used to
translate between track codes and event codes and vice versa. See 'Track Codes vs. Event
Codes' for more information.
Input
date
Date in yyyy-mm-dd format.
Output
eventmap
JSON-encoded event map
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("GetEventMap",
array(
"date"=>"2018-01-01"
)
);
Response:
{
"ENG-ASC": "AOD",
"AP": "ZGD",
"AUS-AUB": "AUB",
"AUS-AUC": "AUC",
"AUS-AUD": "AUD",
"AUS-AUS": "AUS",
"BEL": "BED",
"BR": "BUN",
"CBY": "CBD",
"CD": "CHD",
"CHR": "CON",
"DED": "DTN",
"EMD": "EMD",
"SCD": "ETE",
"EVD": "EVN",
"FP": "FAN",
"FLM": "FBM",
"FHL": "FHD",
"FL": "FIM",
"GG": "GGD",
"GP": "GPM",
"HWT": "HAN",
"ENG-HAY": "HJD",
"HST": "HSM",
"HOP": "HTN",
"ENG-HEX": "HXD",
"IND": "IJN",
"SP9": "JNN",
"FRA-STR": "JTD",
"LAD": "LDM",
"ENG-LIN": "LFD",
"LA": "LQN",
"LS": "LSE",
"MEA": "MEE",
"MTH": "MTD",
"M": "MZN",
"NP": "NDT",
"ENG-NOT": "NGD",
"NFL": "NPN",
"NOR": "NRN",
"PCD": "PCN",
"PEN": "PEN",
"PRX": "PHD",
"PIM": "PIM",
"PRM": "PMM",
"RP": "RED",
"SRP": "RSM",
"SA": "SAD",
"STG": "SRN",
"ENG-THI": "TBD",
"TDN": "TDM",
"TGD": "TQN",
"CT": "TWN",
"FRA-VHY": "VHD",
"FRA-VIN": "VMD",
"VD": "VRN",
"WDB": "WOH",
"WO": "WOT",
"WRD": "WRD",
"ENG-WAR": "WWD",
"SAF-FVW": "XFD",
"SAF-TFF": "XTD",
"FRA-AUT": "Y7D"
}
[top]
GetTrackInfo
Returns back track properties for a set of tracks. These are [generally] static properties like
track name, time zone, and breed.
Input
trackcodes
JSON-encoded array of track codes.
fields
JSON-encoded array of fields that will be returned (if left empty, all fields are
returned).
Output
trackinfo
JSON-encoded array of track information.
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("GetTrackInfo",
array(
"date"=>"2018-01-01"
"trackcodes"=>json_encode(array("SA","GP")),
"fields"=>json_encode(array("trackname","timezone","breed","countrycode"))
)
);
Response:
{
"SA": {
"trackcode": "SA",
"trackname": "Santa Anita",
"timezone": "PT",
"breed": "T",
"countrycode": "USA"
},
"GP": {
"trackcode": "GP",
"trackname": "Gulfstream Park",
"timezone": "ET",
"breed": "T",
"countrycode": "USA"
}
}
[top]
GetChangesByDateAndTrack
Input
date
Date in yyyy-mm-dd format.
trackcode
The track code (letters, numbers, dashes)
fields
JSON-encoded array of fields that will be returned (if left empty, all fields are
returned).
Output
changes
JSON-encoded array of requested data (if any). The array is indexed by race number
=> program number => post position. A runner will be included in the result only if it has at
least one change associated with it.
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("GetChangesByDateAndTrack",
array(
"date"=>"2018-01-01",
"trackcode"=>"SA",
"fields"=>json_encode(array("scratch","jockeyChange"))
)
);
Response:
{
"5": {
"2": {
"02": {
"id": "2164980",
"date": "2018-05-12",
"trackcode": "SA",
"racenum": "5",
"postpos": "02",
"programnum": "2",
"scratch": "1",
"jockeychange": "emma rose"
}
}
},
"9": {
"3": {
"03": {
"id": "2164983",
"date": "2018-05-12",
"trackcode": "SA",
"racenum": "9",
"postpos": "03",
"programnum": "3",
"scratch": "1",
"jockeychange": null
}
},
"6": {
"06": {
"id": "2164986",
"date": "2018-05-12",
"trackcode": "SA",
"racenum": "9",
"postpos": "06",
"programnum": "6",
"scratch": "1",
"jockeychange": null
}
}
}
}
[top]
GetChangesByDateAndTrackAndRace
Pulls changes for a specific race at specific track on a specific date.
Input
date
Date in yyyy-mm-dd format.
trackcode
The track code (letters, numbers, dashes)
race
The race number (1-99)
fields
JSON-encoded array of fields that will be returned (if left empty, all fields are
returned).
Output
changes
JSON-encoded array of requested data (if any). The array is indexed program
number => post position. A runner will be included in the result only if it has at least one
change associated with it.
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("GetChangesByDateAndTrackAndRace",
array(
"date"=>"2018-01-01",
"trackcode"=>"SA",
"race"=>5,
"fields"=>json_encode(array("scratch","jockeyChange"))
)
);
Response:
{
"2": {
"02": {
"id": "2164980",
"date": "2018-05-12",
"trackcode": "SA",
"racenum": "5",
"postpos": "02",
"programnum": "2",
"scratch": "1",
"jockeychange": null
}
}
}
[top]
PlaceBet
Input
account
The account number of the account placing the bet.
pin
The PIN of the account placing the bet (number between 1000 and 9999).
eventcode
The event code of the event being bet on (letters and numbers only).
race
The race number (1-99)
pool
The pool beint bet on (see Pool Codes)
amount
The stake amount of the bet in x.yy format (.00 can be omitted) - note this is the
stake amount, not the total bet amount.
selection
The runners being bet on. The format depends on the pool type and the number of
runners (see Runner Selection Format).
selection meaning
1 Runner 1
1,2 Runners 1 and 2
1,2,WT,3,4 Runners 1 and 2 in first leg and runners 3 and 4 in second leg
1,WT,2,WT,3 Runner 1 in first leg, runner 2 in second leg, and runner 3 in third leg
KY,1,WT,2,3,
Runner 1 keyed and runners 2, 3, and 4 filling out the rest of the bet
4
community
The tote communinty into which your bet will be placed. This value will be provided
by your integration manager.
audittrailid
A special id that is assigned to each client and must be sent with each request. This
id will be provided by your integration manager.
fields
JSON-encoded array of fields that will be returned (if left empty, all fields are
returned).
Output
bet
JSON-encoded result of bet attempt. If successful, a bet serial number will be
returned which is unique for every bet. If there's an error placing the bet for any reason, a
SOAP fault will be returned with an appropriate error message. The 'BetCost' in the
response is the total amount of bet not the stake amount. For example, if a customer does
a $2 win bet on 6 runners, then the stake amount is $2 and the bet cost is ($2x6=) $12.
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("PlaceBet",
array(
"account"=>"12345678",
"pin"=>"1234",
"eventcode"=>"AUS",
"race"=>"8",
"pool"=>"WN",
"amount"=>"2",
"selection"=>"8"
"community"=>"US",
"audittrailid"=>"test",
"fields"=>json_encode(array())
)
);
Response (success):
{
"0": "Runners: 8",
"1": "SerialNumber: 98221982182659",
"2": "Race: 8",
"3": "ProgramName: AUS",
"4": "FractionalPercentage: ",
"5": "AdditionalInfo: ",
"6": "NumberOfBets: 1",
"7": "BetCost: 2.00",
"8": "Amount: 2",
"9": "BetType: WN",
"10": "AccountBalance: 20.67",
"11": "errorNumber: 0",
"Runners": "8",
"SerialNumber": "98221982182659",
"Race": "8",
"ProgramName": "AUS",
"FractionalPercentage": "",
"AdditionalInfo": "",
"NumberOfBets": "1",
"BetCost": "2.00",
"Amount": "2",
"BetType": "WN",
"AccountBalance": "20.67",
"errorNumber": "0"
}
[top]
PlaceCaliforniaBet
Places a bet on a race with special California rules. This function needs to be used in certain
circumstaces depending on the users physical location due to California laws. Please contact
your integration manager for more details.
Input
account
The account number of the account placing the bet.
pin
The PIN of the account placing the bet (number between 1000 and 9999).
eventcode
The event code of the event being bet on (letters and numbers only).
race
The race number (1-99)
pool
The pool beint bet on (see 'Pool Codes')
amount
The stake amount of the bet in x.yy format (.00 can be omitted) - note this is the
stake amount, not the total bet amount.
selection
The runners being bet on. The format depends on the pool type and the number of
runners (see 'Runner Selection Format').
community
The tote communinty into which your bet will be placed. This value will be provided
by your integration manager.
audittrailid
A special id that is assigned to each client and must be sent with each request. This
id will be provided by your integration manager.
sourcetrack
The event code of the track the user is physically located at.
fields
JSON-encoded array of fields that will be returned (if left empty, all fields are
returned).
Output
bet
JSON-encoded result of bet attempt. If successful, a bet serial number will be
returned which is unique for every bet. If there's an error placing the bet for any reason, a
SOAP fault will be returned with an appropriate error message. The 'BetCost' in the
response is the total amount of bet not the stake amount. For example, if a customer does
a $2 win bet on 6 runners, then the stake amount is $2 and the bet cost is ($2x6=) $12.
CancelBet
Cancels a bet.
Input
account
The account number of the account canceling the bet.
pin
The PIN of the account canceling the bet (number between 1000 and 9999).
bet
The serial number of the bet being canceled.
Output
cancelbet
A string indicating the cancel was successful.
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("CancelBet",
array(
"account"=>"12345678",
"pin"=>"1234",
"bet"=>"47380454998383",
)
);
Response:
Cancel Completed!
[top]
GetBalance
Gets the balance on an account.
Input
account
The account number of the account placing the bet.
pin
The PIN of the account placing the bet (number between 1000 and 9999).
fields
JSON-encoded array of fields that will be returned (if left empty, all fields are
returned).
community
The tote communinty into which your bet will be placed. This value will be provided
by your integration manager.
Output
balance
JSON-encoded result of bet attempt.
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("GetBalance",
array(
"account"=>"12345678",
"pin"=>"1234",
"fields"=>json_encode(array()),
"community"=>"US",
)
);
Response (success):
{
"0": "AccountFlags:",
"1": "\tDepositOnly: 78",
"2": "\tKenoDisabled: 78",
"3": "\tParimutuelAccessDisabled: 78",
"4": "\tTbtComment: ",
"5": "\tTbtAccessDisabled: 78",
"6": "\tSportDisabled: 78",
"7": "\tGatewayAccessDisabled: 78",
"8": "AccountBalance:",
"9": "\tAmountAllowedToWithdraw: ",
"10": "\tIRSEscrowBalance: 0.00",
"11": "\tChecksHeldBalance: 0.00",
"12": "\tEscrowBalance: 0.00",
"13": "\tAccountBalance: 18.67",
"14": "\tCreditLimit: 0.00",
"15": "errorNumber: 0",
"AccountFlags": "",
"DepositOnly": "78",
"KenoDisabled": "78",
"ParimutuelAccessDisabled": "78",
"TbtComment": "",
"TbtAccessDisabled": "78",
"SportDisabled": "78",
"GatewayAccessDisabled": "78",
"AccountBalance": "18.67",
"AmountAllowedToWithdraw": "",
"IRSEscrowBalance": "0.00",
"ChecksHeldBalance": "0.00",
"EscrowBalance": "0.00",
"CreditLimit": "0.00",
"errorNumber": "0"
}
[top]
GetTransactions
Input
account
The account number.
start
The date/time to start looking for transactions in yyyy-mm-dd hh:mm:ss format.
end
The date/time to stop looking for transactions in yyyy-mm-dd hh:mm:ss format.
fields
JSON-encoded array of fields that will be returned (if left empty, all fields are
returned).
typefilter
JSON-encoded array of transaction types to return (if left empty, all types will be
returned). See 'Transaction Types' for more information.
Output
transactions
JSON-encoded set of transactions matching the search criteria (if any). Two sets of
elements are returned: the actual transactions in "transactions" and a "serialnumbermap"
that facilitates the process of matching bets with their resolves.
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("GetBalance",
array(
"account"=>"12345678",
"start"=>"2018-05-12 00:00:00",
"end"=>"2018-05-12 23:59:59",
"fields"=>json_encode(array()),
"typefilter"=>json_encode(array("Bet"))
)
);
Response (success):
{
"transactions": {
"2082484913": {
"SerialNumber": "0",
"TransactionType": "Bet",
"ID": "2082484913"
},
"2082484904": {
"SerialNumber": "47380454998383",
"TransactionType": "Bet",
"ID": "2082484904"
},
"2082484907": {
"SerialNumber": "98221982182659",
"TransactionType": "Bet",
"ID": "2082484907"
},
"2082484910": {
"SerialNumber": "81748035703910",
"TransactionType": "Bet",
"ID": "2082484910"
}
},
"serialnumbermap": {
"47380454998383": {
"Bet": 2082484904
},
"98221982182659": {
"Bet": 2082484907
},
"81748035703910": {
"Bet": 2082484910
}
}
}
[top]
ValidateUser
Validates a username and password and returns information related to that user.
If a specific username is tried X times in Y minutes without success, then the account will be
locked.
Input
username
The username - alphanumeric and special characters @#%&_.!$^()'*+-/=?
^`{|}~s,:;<>[]\]
password
The password - alphanumeric and special characters @#%&_.!$^()'*+-/=?
^`{|}~s,:;<>[]\]
state
The 2-letter state abbreviation the user is located in (optional)
fields
JSON-encoded array of fields that will be returned (if left empty, all fields are
returned).
Output
user
JSON-encoded array of customer information if validation is successful. If validation
is not successful, a SOAP fault will be thrown. If the username/password exists, but the
account is not open, then you will get a SOAP fault indicating that the account is not open
and the status of the account: 2 = closed, 3 = locked
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("ValidateUser",
array(
"username"=>"testuser",
"password"=>"testpass",
"state"=>"CA",
"fields"=>json_encode(array())
)
);
Response:
{
"uid": "testuser",
"displayname": "emma rose",
"userpassword": "5AC749C643A487A4DC7C8C3194F9F20C",
"sn": "rose",
"givenname": "emma",
"cn": "emma rose",
"accountid": "0001464677",
"customerid": "364677",
"xborole": "customer",
"accountpin": "1111",
"accountstatus": "1",
"xboproduct": "xbohorse",
"accountstate": "CA",
"c": "US",
"accountaccesslvl": "1",
"preferredlanguage": "en",
"rewtype": "0|",
"custseg": "NS",
"viplvl": "0",
"viplvlname": "Not VIP"
}
[top]
ValidateUserAndLink
Validates a username and password and returns information related to that user and also
'links' the account to a b2b partner. This allows a b2b partner to indicate that account X on
their end is associated with Xpressbet account Y. The ability to link is restricted. Contact
your intgration manager for more information. You can unlink an account
with UnlinkAccount.
Input
username
The username - alphanumeric and special characters @#%&_.!$^()'*+-/=?
^`{|}~s,:;<>[]\]
password
The password - alphanumeric and special characters @#%&_.!$^()'*+-/=?
^`{|}~s,:;<>[]\]
linkacct
The b2b partner's account number for the customer (up to 30 letters, numbers, and
dashes).
state
The 2-letter state abbreviation the user is located in (optional)
fields
JSON-encoded array of fields that will be returned (if left empty, all fields are
returned).
Output
user
JSON-encoded array of customer information if validation is successful. If validation
is not successful, a SOAP fault will be thrown. If the username/password exists, but the
account is not open, then you will get a SOAP fault indicating that the account is not open
and the status of the account: 2 = closed, 3 = locked
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("ValidateUserAndLink",
array(
"username"=>"testuser",
"password"=>"testpass",
"state"=>"CA",
"fields"=>json_encode(array())
)
);
Response:
{
"uid": "testuser",
"displayname": "emma rose",
"userpassword": "5AC749C643A487A4DC7C8C3194F9F20C",
"sn": "rose",
"givenname": "emma",
"cn": "emma rose",
"accountid": "0001464677",
"customerid": "364677",
"xborole": "customer",
"accountpin": "1111",
"accountstatus": "1",
"xboproduct": "xbohorse",
"accountstate": "CA",
"c": "US",
"accountaccesslvl": "1",
"preferredlanguage": "en",
"rewtype": "0|",
"custseg": "NS",
"viplvl": "0",
"viplvlname": "Not VIP"
}
[top]
UnlinkAccount
Input
account
The Xpressbet account number to be unlinked.
Output
none; SOAP fault on error.
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("UnlinkAccount",
array(
"account"=>"12345678"
)
);
[top]
ValidateAdmin
[top]
GetSessionID
[top]
WriteSession
[top]
GetSession
[top]
EndSession
Internal Xpressbet use only
[top]
GetStateInformation
Input
fields
JSON-encoded array of fields that will be returned (if left empty, all fields are
returned).
Output
states
JSON-encoded array of state information.
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("GetStateInformation",
array(
"fields"=>json_encode(array())
)
);
Response:
{
"AL": {
"abbr": "AL"
},
"AK": {
"abbr": "AK"
},
"AZ": {
"abbr": "AZ"
},
"AR": {
"abbr": "AR"
},
"CA": {
"abbr": "CA"
},
"CO": {
"abbr": "CO"
},
"CT": {
"abbr": "CT"
},
"DE": {
"abbr": "DE"
},
"FL": {
"abbr": "FL"
},
"GA": {
"abbr": "GA"
},
"HI": {
"abbr": "HI"
},
"ID": {
"abbr": "ID"
},
"IL": {
"abbr": "IL"
},
"IN": {
"abbr": "IN"
},
"IA": {
"abbr": "IA"
},
"KS": {
"abbr": "KS"
},
"KY": {
"abbr": "KY"
},
"LA": {
"abbr": "LA"
},
"ME": {
"abbr": "ME"
},
"MS": {
"abbr": "MS"
},
"MO": {
"abbr": "MO"
},
"MD": {
"abbr": "MD"
},
"MA": {
"abbr": "MA"
},
"MI": {
"abbr": "MI"
},
"MN": {
"abbr": "MN"
},
"MT": {
"abbr": "MT"
},
"NE": {
"abbr": "NE"
},
"NV": {
"abbr": "NV"
},
"NH": {
"abbr": "NH"
},
"NJ": {
"abbr": "NJ"
},
"NM": {
"abbr": "NM"
},
"NY": {
"abbr": "NY"
},
"NC": {
"abbr": "NC"
},
"ND": {
"abbr": "ND"
},
"OH": {
"abbr": "OH"
},
"OK": {
"abbr": "OK"
},
"OR": {
"abbr": "OR"
},
"PA": {
"abbr": "PA"
},
"RI": {
"abbr": "RI"
},
"SC": {
"abbr": "SC"
},
"SD": {
"abbr": "SD"
},
"TN": {
"abbr": "TN"
},
"TX": {
"abbr": "TX"
},
"UT": {
"abbr": "UT"
},
"VT": {
"abbr": "VT"
},
"VA": {
"abbr": "VA"
},
"WA": {
"abbr": "WA"
},
"WV": {
"abbr": "WV"
},
"WI": {
"abbr": "WI"
},
"WY": {
"abbr": "WY"
}
}
[top]
GetInvalidTracksByDate
Returns a list of tracks are an invalid for a specific date for a specific brand. These tracks
should not be displayed.
Input
date
Date in yyyy-mm-dd format.
brand
The brand id. Set to XPB unless instructed otherwise.
Output
tracks
JSON-encoded array of tracks. Note these are track codes not event codes.
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("GetInvalidTracksByDate",
array(
"date"=>"2018-05-12",
"brand"=>"XPB"
)
);
Response:
[
"AUS-AUD",
"AUS-GAW",
"BTP",
"CND",
"HIW",
"HWT",
"IRE-CUR",
"LBG",
"NOR",
"NTS",
"SCA",
"WBS",
"WRD"
]
[top]
GetTrackRestrictionsByState
Returns a list of tracks are an invalid for a specific date for a specific brand. These tracks
should not be displayed.
Input
state
2-letter state abbreviation.
restrictions
The type of restriction (online, phone, video). Leave blank for all restrictions.
brand
The brand id. Set to XPB unless instructed otherwise.
Output
tracks
JSON-encoded array of tracks. Note these are track codes not event codes.
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("GetTrackRestrictionsByState",
array(
"state"=>"CA",
"restrictions"=>"",
"brand"=>"XPB"
)
);
Response:
{
"online": [
"CT",
"ENG-HTN"
],
"phone": [
],
"video": [
"BEL"
]
}
[top]
GetProfileData
[top]
GetVideo
Returns a video stream URL for a track.
Input
trackcode
The track code (letters, numbers, dashes)
user
A unique user id of customer requesting video (up to 15 alphanumeric characters).
width
Desired width in pixels or a percentage.
height
Desired height in pixels or a percentage.
siteid
Unique identifier given to each client. See your integration manager for more details.
originid
Unique identifier set by the client to indicate where video is being requested (up to
30 alphanumeric characters).
mobile
boolean if video is being requested on a mobile device.
userip
The IP of the user requesting video.
Output
video
A JSON-encoded set of information about the video stream including the URL. The
type indicates the provider of the video. Most often this will be rcnx for Roberts
Communicatons. Note these URLs expire after a few minutes if not used.
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("GetVideo",
array(
"trackcode"=>"SA",
"user"=>"123456",
"width"=>"640",
"height"=>"480",
"siteid"=>"BetsInc",
"originid"=>"Wagerpad",
"mobile"=>false,
"userip"=>"1.1.1.1"
)
);
Response:
{
"type": "rcnx",
"urlx": "https:\/\/stream.robertsstream.com\/streamflash.php?
stream=gulfstream_mbr&referer=XpressBet&t=1526181863&h=6eed5bd398425d6c24f8cea
3b8c4d74f&width=640&height=480&usr=123456&optp=siteid%3ABetsInc%7Coriginid
%3AWagerpad",
"wdth": "640",
"hght": "480"
[top]
GetVideoAndCheckQuota
Returns a video stream URL for a track if the user has quota remaining. This is identical
to GetVideo except it checks the users quota.
Input
account
The account number of the account requesting video.
trackcode
The track code (letters, numbers, dashes)
user
A unique user id of customer requesting video (up to 30 alphanumeric characters).
width
Desired width in pixels or a percentage.
height
Desired height in pixels or a percentage.
siteid
Unique identifier given to each client. See your integration manager for more details.
originid
Unique identifier set by the client to indicate where video is being requested (up to
30 alphanumeric characters).
mobile
boolean if video is being requested on a mobile device.
userip
The IP of the user requesting video.
Output
video
A JSON-encoded set of information about the video stream including the URL. The
type indicates the provider of the video. Most often this will be rcnx for Roberts
Communicatons. Note these URLs expire after a few minutes if not used.
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("GetVideoAndCheckQuota",
array(
"trackcode"=>"SA",
"user"=>"123456",
"width"=>"640",
"height"=>"480",
"siteid"=>"BetsInc",
"originid"=>"Wagerpad",
"mobile"=>false,
"userip"=>"1.1.1.1"
)
);
Response:
{
"type": "rcnx",
"urlx": "https:\/\/stream.robertsstream.com\/streamflash.php?
stream=gulfstream_mbr&referer=XpressBet&t=1526181863&h=6eed5bd398425d6c24f8cea
3b8c4d74f&width=640&height=480&usr=123456&optp=siteid%3ABetsInc%7Coriginid
%3AWagerpad",
"wdth": "640",
"hght": "480"
[top]
GetVideoQuotaInfo
Input
account
The account number of the user.
Output
quotar
A JSON-encoded set of information about the user's video quota (including their
remaining quota in bytes).
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("GetVideoQuotaInfo",
array(
"account"=>"12345678"
)
);
Response:
{
"opendate": "2006-10-16 20:01:15",
"quota": "1073741824",
"lastquotainc": "2017-07-24 19:11:22",
"lastquotauser": "chris99",
"lastreview": "2018-04-17 00:30:28"
}
[top]
GetVideoUsage
Returns how much video a user has consumed since their last video review.
Input
account
The account number of the user.
Output
usage
The amount of video used in bytes.
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("GetVideoUsage",
array(
"account"=>"12345678"
)
);
Response:
1262892080
[top]
GetRemainingVideoQuota
Input
account
The account number of the user.
Output
usage
The amount of video quota remaining in bytes.
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("GetRemainingVideoQuota",
array(
"account"=>"12345678"
)
);
Response:
1882938589
[top]
GetRacesBetForEvent
Input
account
The account number of the user.
date
Date in yyyy-mm-dd format.
eventcode
The event code (letters and numbers only)
Output
races
JSON-encoded array of races bet.
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("GetRacesBetForEvent",
array(
"account"=>"12345678",
"date"=>"2018-01-01",
"eventcode"=>"SAD"
)
);
Response:
[
1,
2,
3
]
[top]
CreateSampleVideoUser
[top]
GetRaceDayDataSet
[top]
GetRacingSnapshot
[top]
GeolocateTrack
Takes a latitude and longitude and returns the race track at those coordinates (if defined in
Xpressbet's coordinate system).
Input
latitude
The latitude
longitude
The longitude
Output
eventcode
The track code of the race track located at the latitude and longitude (returns -1 if no
track)).
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("GeolocateTrack",
array(
"latitude"=>"39.103910",
"longitude"=>"-76.830763"
)
);
Response:
LRL
[top]
GetCustomerInfoByAccountNumber
Input
account
The account number of the user.
fields
A JSON-encoded array of requested fields. Allowed fields are:
o FirstName
o LastName
o Email
o State
o Zip
o CustomerStatus
o pscAcct
This value can be used to determine the account type per the following
table
pscAcc
Type
t
0 Normal Xpressbet
1 Normal Xpressbet
3 MagnaBet
6 DelMar
7 DelMar
8 OakTree
9 OakTree
10 DRF
11 DRF
20 Derby Jackpot
21 Derby Jackpot
40 Singpoli
55 PMG
56 PMG GreyHounds
60 TurfBets
70 RMTC
102 PM rewards
104 GG rewards
106 LR rewards
108 SA rewards
109 SAX rewards
110 PI rewards
81 NGE
Output
customerinfo
A JSON-encoded set of the requested customer information.
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("GetCustomerInfoByAccountNumber",
array(
"account"=>"12345678",
"fields"=>json_encode(array("Email","State"))
)
);
Response:
{
"Email": "[email protected]",
"State": "CA"
}
[top]
GetTracksForCommunity
Input
date
The date for which the track list is desired.
community
The desired community (either XB, SA, GG, or GP)
Output
tracks
A JSON-encoded set of the tracks for the community (event code and event name
are returned).
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("GetTracksForCommunity",
array(
"date"=>"2018-09-12",
"community"=>"SA"
)
);
Response:
{
"2BD": "Belterra Park",
"ADM": "Albuquerque Downs",
"APM": "Arlington Park",
"AUB": "Australia B",
"AUC": "Australia C",
"AUD": "Australia D",
"AUS": "Australia A",
"CON": "Charlottetown Eve",
"DAN": "Dayton Raceway",
"DBN": "Dubuque Evening",
"DLD": "Delaware Park",
"DND": "Doncaster",
"Dog": "Southland Twilight",
"FBM": "Flamboro Downs",
"FIM": "Finger Lakes",
"FSD": "FFOS Las Racecourse",
"GGD": "GGF",
"GPL": " Gulfstream Tropical",
"HAN": "Hawthorne Harness",
"HKS": "Sha Tin HK",
"HLD": "Hamilton",
"HTN": "Hoosier Park Harness",
"IVM": "Palm Beach Mat",
"JK7": "JK7",
"JKN": "Jacksonville Eve",
"KDM": "Kentucky Downs",
"KRB": "KRB",
"LQD": "LAT",
"LRM": "Laurel Park",
"MRD": "Monticello Raceway",
"ORM": "SanfordOrlando Mat",
"PEN": "Penn National",
"PRD": "Plainridge Racecours",
"QIN": "Presque Isle Downs",
"QMD": "Sables D`Olonne",
"QVD": "Lyon-Parilly",
"RCN": "Rideau Carlton Racew",
"RED": "Remington Park",
"RFD": "Reims",
"RLD": "Red Mile",
"SRN": "Saratoga Harness",
"TKM": "Tampa at DerbyLn Mat",
"TSE": "TriState Evening",
"TWN": "Charles Town RC",
"VCD": "Harrah`s Chester",
"VUE": "Daytona Beach Eve",
"WOH": "Woodbine Harness",
"XVD": "Vaal",
"Y7D": "Auteuil",
"YON": "Yonkers Raceway",
"ZXD": "NZ Woodville"
}
[top]
GetTracksAndRacesForCommunity
Returns a list of tracks and races available for a specific tote community.
Input
date
The date for which the track list is desired.
community
The desired community (either XB, SA, GG, or GP)
Output
tracks
A JSON-encoded set of the tracks for the community. The set is indexed by event
code and contains the name and a list of races.
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("GetTracksAndRacesForCommunity",
array(
"date"=>"2018-09-12",
"community"=>"SA"
)
);
Response:
{
"AUB": {
"name": "Australia B",
"races": "1,2,3,4,5,6,7,8"
},
"AUS": {
"name": "Australia A",
"races": "1,2,3,4,5,6,7"
},
"BIM": {
"name": "Birmingham Dogs MAT",
"races": "1,2,3,4,5,6,7,8,9,10"
},
"DAN": {
"name": "Dayton Raceway",
"races": "1,2,3,4,5,6,7,8,9,10,11,12,13,14"
},
"DLD": {
"name": "Delaware Park",
"races": "1,2,3,4,5,6,7,8,9"
},
"Dog": {
"name": "Southland Twilight",
"races": "1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18"
},
"EAM": {
"name": "Grand River",
"races": "1,2,3,4,5,6,7,8,9,10,11"
},
"FIM": {
"name": "Finger Lakes",
"races": "1,2,3,4,5,6,7,8"
},
"GPL": {
"name": " Gulfstream Tropical",
"races": "1,2,3,4,5,6"
},
"HAN": {
"name": "Hawthorne Harness",
"races": "1,2,3,4,5,6,7,8,9"
},
"HRT": {
"name": "Harrington Raceway",
"races": "1,2,3,4,5,6,7,8,9,10,11,12,13"
},
"IVM": {
"name": "Palm Beach Mat",
"races": "1,2,3,4,5,6,7,8,9,10,11,12,13,14,15"
},
"JKN": {
"name": "Jacksonville Eve",
"races": "1,2,3,4,5,6,7,8,9,10,11,12,13,14,15"
},
"LDM": {
"name": "Louisiana Downs",
"races": "1,2,3,4,5,6,7"
},
"LRM": {
"name": "Laurel Park",
"races": "1,2,3,4,5,6,7,8,9,10,11,12,13,14,15"
},
"MEE": {
"name": "The Meadows",
"races": "1,2,3,4,5,6,7,8,9,10,11,12,13"
},
"MNE": {
"name": "Mountaineer Park",
"races": "1,2,3,4,5,6,7,8,9"
},
"MRD": {
"name": "Monticello Raceway",
"races": "1,2,3,4,5,6,7,8,9,10"
},
"NPN": {
"name": "Northfield Park",
"races": "1,2,3,4,5,6,7,8,9,10,11,12,13,14,15"
},
"NZM": {
"name": "Zia Park",
"races": "1,2,3,4,5,6,7,8,9"
},
"PCN": {
"name": "Pocono Downs Eve",
"races": "1,2,3,4,5,6,7,8,9,10,11,12,13,14"
},
"PHD": {
"name": "ParxRacing at Philly",
"races": "1,2,3,4,5,6,7,8,9"
},
"PRD": {
"name": "Plainridge Racecours",
"races": "1,2,3,4,5,6,7,8,9,10,11"
},
"PVD": {
"name": "Ajax Downs",
"races": "1,2,3,4,5,6,7,8,9"
},
"QIN": {
"name": "Presque Isle Downs",
"races": "1,2,3,4,5,6,7,8,9"
},
"TDM": {
"name": "Thistledown",
"races": "1,2,3,4,5,6,7,8"
},
"TKM": {
"name": "Tampa at DerbyLn Mat",
"races": "1,2,3,4,5,6,7,8,9,10,11,12,13,14,15"
},
"VUE": {
"name": "Daytona Beach Eve",
"races": "1,2,3,4,5,6,7,8,9,10,11,12,13,14,15"
},
"WOH": {
"name": "Woodbine Harness",
"races": "1,2,3,4,5,6,7,8,9,10,11"
},
"XTD": {
"name": "Turffontein",
"races": "1,2,3,4,5,6,7,8,9"
},
"YON": {
"name": "Yonkers Raceway",
"races": "1,2,3,4,5,6,7,8,9,10"
}
}
[top]
GetReplaysByDateAndTrackAndRace
eventcode
The event code (letters and numbers only)
race
The race number (1-99)
userid
A unique user id of customer requesting video (up to 30 alphanumeric characters).
siteid
Unique identifier given to each client. See your integration manager for more details.
originid
Unique identifier set by the client to indicate where video is being requested (up to
30 alphanumeric characters).
mobile
boolean if video is being requested on a mobile device.
viewtype
The type of replay (pan view = 0; head-on view = 1).
Output
streamurl
The replay stream URL (if available).
Example
$soapClient = new SOAPClient(
"https://xwsx/wsdl/xwsx.prod.wsdl",
array(
"soap_version"=>SOAP_1_2,
"login"=>"testuser",
"password"=>"testpass"
)
);
$soapClient->__soapCall("GetReplaysByDateAndTrackAndRace",
array(
"date"=>"2018-05-01",
"eventcode"=>"SAD",
"race"=>"2",
"userid"=>"123456",
"siteid"=>"BetsInc",
"originid"=>"ReplayScreen",
"mobile"=>false,
"viewtype"=>"0"
)
);
Response:
replays.robertsstream.com/racereplays/replaysflash.php?
cust=XpressBet&stream=mp4:2018/1308/201804231419WRD1_1308.mp4&t=1526184016&h=d
49cfdf3ac38aac469abb4f107f628f3&width=380&height=285&usr=123456&optp=siteid
%3ABetsInc%7Coriginid%3AReplayScreen
[top]