Vim Tips Wiki
m (Reverted edits by 103.250.149.204 (talk | block) to last version by Fritzophrenic)
Tag: rollback
No edit summary
Tag: sourceedit
Line 1: Line 1:
  +
<?xml version = "1.0" encoding="Windows-1252" standalone="yes"?>
{{TipImported
 
  +
<VFPDataSet xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="C:\Users\sakhaa\Downloads\xasampls\XA\OneToMany\result.XSD">
|id=127
 
  +
<customers>
|previous=126
 
  +
<customerid>ALFKI</customerid>
|next=128
 
  +
<companyname>Alfreds Futterkiste</companyname>
|created=2001
 
  +
<contactname>Maria Anders</contactname>
|complexity=basic
 
  +
<contacttitle>Sales Representative</contacttitle>
|author=
 
  +
<address>Obere Str. 57</address>
|version=6.0
 
  +
<city>Berlin</city>
|rating=4/12
 
  +
<postalcode>12209</postalcode>
|category1=
 
  +
<country>Germany</country>
|category2=
 
  +
<phone>030-0074321</phone>
}}
 
  +
<fax>030-0076545</fax>
This tip shows how to use Vim to view an html file, or a web page, in a web browser. If wanted, a text-based web browser can be used to read the text from an html page into a scratch buffer in Vim.
 
  +
<orders>
 
  +
<orderid>10643</orderid>
==Viewing text from an html file or a URL==
 
  +
<customerid>ALFKI</customerid>
A text-based web browser such as [[wikipedia:Elinks|<code>elinks</code>]] can extract a formatted view of the text from an html file or a web page. The following shows how to use elinks to read that text into a scratch buffer. You might do that for a quick preview, or to copy text from the displayed html page.
 
  +
<employeeid>6</employeeid>
<pre>
 
  +
<orderdate>1997-08-25</orderdate>
function! ViewHtmlText(url)
 
  +
<requireddate>1997-09-22</requireddate>
if !empty(a:url)
 
  +
<shippeddate>1997-09-02</shippeddate>
new
 
  +
<shipvia>1</shipvia>
setlocal buftype=nofile bufhidden=hide noswapfile
 
  +
<freight>29.4600</freight>
execute 'r !elinks ' . a:url . ' -dump -dump-width ' . winwidth(0)
 
  +
<shipname>Alfreds Futterkiste</shipname>
1d
 
  +
<shipaddress>Obere Str. 57</shipaddress>
endif
 
  +
<shipcity>Berlin</shipcity>
endfunction
 
  +
<shippostalcode>12209</shippostalcode>
" Save and view text for current html file.
 
  +
<shipcountry>Germany</shipcountry>
nnoremap <Leader>H :update<Bar>call ViewHtmlText(expand('%:p'))<CR>
 
  +
<orderdetails>
" View text for visually selected url.
 
  +
<orderid>10643</orderid>
vnoremap <Leader>h y:call ViewHtmlText(@@)<CR>
 
  +
<productid>28</productid>
" View text for URL from clipboard.
 
  +
<unitprice>45.6000</unitprice>
" On Linux, use @* for current selection or @+ for text in clipboard.
 
  +
<quantity>15</quantity>
nnoremap <Leader>h :call ViewHtmlText(@+)<CR>
 
  +
<discount>0.25000</discount>
</pre>
 
  +
</orderdetails>
 
  +
<orderdetails>
After sourcing the above, and assuming the default backslash Leader key, you can:
 
  +
<orderid>10643</orderid>
*Edit an html file, then type <code>\H</code> to save and preview the file.
 
  +
<productid>39</productid>
*Visually select the full path of a local html file or a URL, then type <code>\h</code> to preview the file or web page.
 
  +
<unitprice>18.0000</unitprice>
*Copy the full path of a local html file or a URL in another application, then type <code>\h</code> to preview the file or web page in Vim.
 
  +
<quantity>21</quantity>
 
  +
<discount>0.25000</discount>
==From 256 [[Opening current Vim file in your Windows browser]]==
 
  +
</orderdetails>
*''TODO'': Finish cleaning following notes.
 
  +
<orderdetails>
On Windows, using <code><cWORD></code> to open the link at the cursor in a browser does not work when the URL is in an html tag surrounded by quotes. However, using <code><cfile></code> works for both situations: plain URL and URL between html tags.
 
  +
<orderid>10643</orderid>
 
  +
<productid>46</productid>
<pre>
 
  +
<unitprice>12.0000</unitprice>
" On Windows, open URL under cursor.
 
  +
<quantity>2</quantity>
nnoremap <F8> :!start C:\progra~1\intern~1\iexplore.exe <cfile><CR>
 
  +
<discount>0.25000</discount>
nnoremap <F8> :!start C:\progra~1\mozill~1\firefox.exe <cfile><CR>
 
  +
</orderdetails>
" On Windows, open current file in Internet Explorer.
 
  +
</orders>
nnoremap <F5> :update<Bar>silent !start c:\progra~1\intern~1\iexplore.exe file://%:p<CR>
 
  +
<orders>
" On Linux, open URL under cursor in Firefox.
 
  +
<orderid>10692</orderid>
nnoremap <F8> :silent !firefox <cfile><CR>
 
  +
<customerid>ALFKI</customerid>
</pre>
 
  +
<employeeid>4</employeeid>
 
  +
<orderdate>1997-10-03</orderdate>
In the above, there is no space after <code>!</code> and the Vim command has the form <code>:!start program file</code> which causes Vim (on Windows) to run the specified program with the file as an argument. If the program is not in a PATH directory, the full path to the program must be specified. If the program path contains spaces, it is necessary to put the path in quotes (<code>"..."</code>).
 
  +
<requireddate>1997-10-31</requireddate>
 
  +
<shippeddate>1997-10-13</shippeddate>
----
 
  +
<shipvia>2</shipvia>
If using <cfile> or <cWORD> does not suit a particular requirement, it is possible to use a pattern to select what is needed. For example, the following takes the first match on the current line which starts with 'http' and continues with non-whitespace characters (it finishes at the first space or tab, or at the end of the line):
 
  +
<freight>61.0200</freight>
<pre>
 
  +
<shipname>Alfred's Futterkiste</shipname>
nnoremap <F8> :execute 'silent ! start '.matchstr(getline('.'), 'http\S*')<CR>
 
  +
<shipaddress>Obere Str. 57</shipaddress>
</pre>
 
  +
<shipcity>Berlin</shipcity>
 
  +
<shippostalcode>12209</shippostalcode>
----
 
  +
<shipcountry>Germany</shipcountry>
On Windows 7 this opens the current file in Chrome (fix the path by replacing "MyName" with what it should be on your system).
 
  +
<orderdetails>
<pre>
 
  +
<orderid>10692</orderid>
nnoremap <silent> <F5> :update<Bar>silent !start "C:\Users\MyName\AppData\Local\Google\Chrome\Application\chrome.exe" "file://%:p"<CR>
 
  +
<productid>63</productid>
</pre>
 
  +
<unitprice>43.9000</unitprice>
Or it might be here:
 
  +
<quantity>20</quantity>
<pre>
 
  +
<discount>0.00000</discount>
nnoremap <silent> <F5> :update<Bar>silent !start "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" "file://%:p"<CR>
 
  +
</orderdetails>
</pre>
 
  +
</orders>
----
 
  +
<orders>
On Linux, use <code>xdg-open</code> to open the file using its default application. The first of the following mappings saves the current file, then opens it; the second opens the file under the cursor:
 
  +
<orderid>10702</orderid>
<pre>
 
  +
<customerid>ALFKI</customerid>
nnoremap <F5> :update<Bar>silent !xdg-open %:p &<CR>
 
  +
<employeeid>4</employeeid>
nnoremap <F8> :silent !xdg-open <cfile> &<CR>
 
  +
<orderdate>1997-10-13</orderdate>
</pre>
 
  +
<requireddate>1997-11-24</requireddate>
 
  +
<shippeddate>1997-10-21</shippeddate>
==From 587 [[Preview current file in Mozilla through localhost]]==
 
  +
<shipvia>1</shipvia>
When editing an HTML file on Windows, enter the following to save the current file and open it in your default browser:
 
  +
<freight>23.9400</freight>
<pre>
 
  +
<shipname>Alfred's Futterkiste</shipname>
:update|silent ! start %:p
 
  +
<shipaddress>Obere Str. 57</shipaddress>
</pre>
 
  +
<shipcity>Berlin</shipcity>
 
  +
<shippostalcode>12209</shippostalcode>
On Windows, the current file can be opened in its associated application using the <code>start</code> command of the <code>cmd.exe</code> shell. With this mapping, press F5 to save the current file and open it in its associated application:
 
  +
<shipcountry>Germany</shipcountry>
<pre>
 
  +
<orderdetails>
nnoremap <silent> <F5> :update<Bar>silent ! start %:p<CR>
 
  +
<orderid>10702</orderid>
</pre>
 
  +
<productid>3</productid>
 
  +
<unitprice>10.0000</unitprice>
The space after <code>!</code> is required (on Windows, a command of the form <code>!start xxx</code> causes Vim to run <code>xxx</code> asynchronously; Vim does ''not'' run <code>start</code>, whereas <code>! start xxx</code> invokes the shell <code>cmd.exe</code> to run its <code>start</code> internal command operating on <code>xxx</code>). In the unlikely case that the associated application runs in a console (command prompt window), it would be better to add the <code>/b</code> option so the application runs in the same console as <code>start</code>. That is, change the command to <code>start /b %:p</code>.
 
  +
<quantity>6</quantity>
 
  +
<discount>0.00000</discount>
It is convenient to leave the browser window open: switch back to Vim to do any further editing required, save the file, then switch to the browser and tell it to reload the file with a key like Ctrl-R or F5.
 
  +
</orderdetails>
 
  +
<orderdetails>
A Linux version of the above mapping would use a program like <code>xdg-open</code>:
 
  +
<orderid>10702</orderid>
<pre>
 
  +
<productid>76</productid>
nnoremap <F5> :update<Bar>silent !xdg-open %:p &<CR>
 
  +
<unitprice>18.0000</unitprice>
nnoremap <F5> :silent update<Bar>silent !xdg-open %:p &<CR>
 
  +
<quantity>15</quantity>
</pre>
 
  +
<discount>0.00000</discount>
 
  +
</orderdetails>
==From 684 [[Preview current HTML in browser on Mac OS X]]==
 
  +
</orders>
*''TODO'': Clean following.
 
  +
<orders>
There are a few tips on previewing current HTML documents in a Windows browser, but none I could find for Mac OS X. By studying the others, though, I stumbled on a mapping that works. The <CR> at the end anticipates the "Hit ENTER or type command to continue" message.
 
  +
<orderid>10835</orderid>
 
  +
<customerid>ALFKI</customerid>
<pre>
 
  +
<employeeid>1</employeeid>
nnoremap <F5> :!open -a Safari %<CR><CR>
 
  +
<orderdate>1998-01-15</orderdate>
</pre>
 
  +
<requireddate>1998-02-12</requireddate>
 
  +
<shippeddate>1998-01-21</shippeddate>
;Comments
 
  +
<shipvia>3</shipvia>
To expand on this:
 
  +
<freight>69.5300</freight>
 
  +
<shipname>Alfred's Futterkiste</shipname>
general -- "open x" will open "x" with the default application ... "open -a applicationName x" will open "x" with application "applicationName"
 
  +
<shipaddress>Obere Str. 57</shipaddress>
 
  +
<shipcity>Berlin</shipcity>
general -- "<D-aKey>" creates a shortcut using the Command (Apple) key
 
  +
<shippostalcode>12209</shippostalcode>
 
  +
<shipcountry>Germany</shipcountry>
improved(?) -- "nnoremap <silent> <D-p>f :exe ':silent !open -a /Applications/Path/To/Firefox.app %'<CR>"
 
  +
<orderdetails>
 
  +
<orderid>10835</orderid>
(prevents remapping, runs quietly, shortcut is now [Command+p,f] for "preview, firefox" ... helpful if you preview in multiple browsers)
 
  +
<productid>59</productid>
 
  +
<unitprice>55.0000</unitprice>
improved(?) -- "nnoremap <silent> <D-p>p :exe ':silent !open %'<CR>"
 
  +
<quantity>15</quantity>
 
  +
<discount>0.00000</discount>
(same, but creates a generic "preview" using default applications ... helpful if you only preview in that browser, or can use it on other file types)
 
  +
</orderdetails>
 
  +
<orderdetails>
other (open directory in Finder) -- "nnoremap <silent> <D-p>d :exe ':silent !open -a finder %:p:h'<CR>"
 
  +
<orderid>10835</orderid>
 
  +
<productid>77</productid>
(%:p:h completely expands the file path and removes the file name so only directory is left)
 
  +
<unitprice>13.0000</unitprice>
 
  +
<quantity>2</quantity>
other (apply same to netrw browser, ie, :Ex command) -- add to .vimrc/.gvimrc: "let g:netrw_browsex_viewer = 'open'" (this is not necessary starting with 7.2, netrw now uses "open" as the default for "x").
 
  +
<discount>0.20000</discount>
 
  +
</orderdetails>
(when using netrw browser, hit "x" while cursor is on file name to open that file with the default application ... if the cursor is over a directory, it will open in Finder)
 
  +
</orders>
 
  +
<orders>
Also, for Mac users, here is a way to save the current PHP file then preview it through localhost (''TODO'' see <code>%:p:s?pat?sub?</code> below for Vim procedure):
 
  +
<orderid>10952</orderid>
<pre>
 
  +
<customerid>ALFKI</customerid>
nnoremap <F5> :update<Bar>!open -a Google\ Chrome `echo http://localhost/${PWD\#*/*/*/*/*/}/%`<CR>
 
  +
<employeeid>1</employeeid>
</pre>
 
  +
<orderdate>1998-03-16</orderdate>
 
  +
<requireddate>1998-04-27</requireddate>
==From 1015 [[Preview file on localhost]]==
 
  +
<shippeddate>1998-03-24</shippeddate>
Using this mapping will save the current file (if changed), then preview it on localhost. For example, if you are editing file <code>/var/www/html/one/two/my.html</code>, pressing F5 will use Firefox to open <code><nowiki>http://localhost/one/two/my.html</nowiki></code>.
 
  +
<shipvia>1</shipvia>
<pre>
 
  +
<freight>40.4200</freight>
nnoremap <F5> :silent update<Bar>silent !firefox %:p:s?\(.\{-}/\)\{4}?http://localhost/?<CR>
 
  +
<shipname>Alfred's Futterkiste</shipname>
</pre>
 
  +
<shipaddress>Obere Str. 57</shipaddress>
 
  +
<shipcity>Berlin</shipcity>
The core command has the form <code>!firefox %:p:s?pat?sub?</code> which uses the shell to start Firefox to open the current file (<code>%</code>) with its name modified by forming the full path (<code>:p</code>) then substituting the pattern <code>pat</code> with <code>sub</code>.
 
  +
<shippostalcode>12209</shippostalcode>
 
  +
<shipcountry>Germany</shipcountry>
The pattern is <code>\(.\{-}/\)\{4}</code> which finds exactly four occurrences of any character (<code>.</code>) repeated as few times as possible (<code>\{-}</code>) up to and including the next slash (<code>/</code>). If the file being edited is <code>my.html</code> in directory <code>/var/www/html/one/two</code>, the pattern matches <code>/var/www/html/</code> (the first occurrence of four slashes, with any characters between).
 
  +
<orderdetails>
 
  +
<orderid>10952</orderid>
==From 201110 [[Preview current HTML in browser on Linux]]==
 
  +
<productid>6</productid>
This mapping allows you to use a browser to preview the HTML file currently being edited.
 
  +
<unitprice>25.0000</unitprice>
<pre>
 
  +
<quantity>16</quantity>
nnoremap <F5> :silent update<Bar>silent !firefox %:p &<CR>
 
  +
<discount>0.05000</discount>
</pre>
 
  +
</orderdetails>
 
  +
<orderdetails>
If necessary, the current file is saved, then Firefox is used to open the file. Replace "firefox" with the name of another browser if wanted, such as "chromium-browser".
 
  +
<orderid>10952</orderid>
 
  +
<productid>28</productid>
==Open an HTML file in a browser==
 
  +
<unitprice>45.6000</unitprice>
:''TODO: Put a link somewhere in this tip to the result of merging all the stuff on opening HTML files.''
 
  +
<quantity>2</quantity>
 
  +
<discount>0.00000</discount>
==See also==
 
  +
</orderdetails>
'''Open web browser to display URL under cursor'''
 
  +
</orders>
*[[VimTip306|306 Open a web-browser with the URL in the current line]]
 
  +
<orders>
*[[VimTip555|555 Vim as bookmark manager]]
 
  +
<orderid>11011</orderid>
*[[VimTip732|732 Quick launch html and other Windows documents]]
 
  +
<customerid>ALFKI</customerid>
*[[VimTip1549|1549 Execute external programs asynchronously under Windows]] launch browser or document in associated app
 
  +
<employeeid>3</employeeid>
*[[VimTip1656|1656 Automatically refresh display of html on saving file]] uses MozRepl addon for Firefox
 
  +
<orderdate>1998-04-09</orderdate>
 
  +
<requireddate>1998-05-07</requireddate>
'''Display information for word under cursor in a web browser'''
 
  +
<shippeddate>1998-04-13</shippeddate>
*[[VimTip394|394 Internet search for the current word]]
 
  +
<shipvia>1</shipvia>
*[[VimTip598|598 PHP online help]]
 
  +
<freight>1.2100</freight>
*[[VimTip896|896 Lookup the city and state of a given US Zip code using TCL]]
 
  +
<shipname>Alfred's Futterkiste</shipname>
*[[VimTip922|922 Launch lynx to get info for the current word]]
 
  +
<shipaddress>Obere Str. 57</shipaddress>
*[[VimTip926|926 QT Help from Vim]]
 
  +
<shipcity>Berlin</shipcity>
*[[VimTip933|933 Search the web for text selected in Vim]]
 
  +
<shippostalcode>12209</shippostalcode>
*[[VimTip1200|1200 View PHP documentation for current word]]
 
  +
<shipcountry>Germany</shipcountry>
*[[VimTip1354|1354 Online documentation for word under cursor]]
 
  +
<orderdetails>
*[[VimTip1377|1377 Context sensitive access to MSDN help]]
 
  +
<orderid>11011</orderid>
 
  +
<productid>58</productid>
'''Configure so "view source" opens in Vim'''
 
  +
<unitprice>13.2500</unitprice>
*[[VimTip118|118 Use gvim to view page source in Internet Explorer]]
 
  +
<quantity>40</quantity>
*[[VimTip134|134 View Source in IE6 using VIM]]
 
  +
<discount>0.05000</discount>
*[[VimTip581|581 Using vim to view source and edit textarea in mozilla/firebird]]
 
  +
</orderdetails>
*[[VimTip805|805 Use gvim as an external editor for Windows apps]]
 
  +
<orderdetails>
*[[VimTip1156|1156 View Source from Internet Explorer in gvim]]
 
  +
<orderid>11011</orderid>
 
  +
<productid>71</productid>
'''Other'''
 
  +
<unitprice>21.5000</unitprice>
*[[VimTip317|317 Vim key bindings for Firefox]]
 
  +
<quantity>20</quantity>
*[[VimTip691|691 Use gf to open a file via its URL]]
 
  +
<discount>0.00000</discount>
*[[VimTip305|305 Best Vim Tips]] has a launching section
 
  +
</orderdetails>
*[[VimTip1440|1440 Launch files in new tabs under Windows]]
 
  +
</orders>
*[[VimTip1552|1552 Launch files in new tabs under Unix]]
 
  +
</customers>
*[[VimTip1652|1652 Launch remote batch jobs and view results in Vim]]
 
  +
<customers>
*[[VimTip299|299 Open file under cursor]]
 
  +
<customerid>ANATR</customerid>
*[[VimTip485|485 Open a window with the man page for the word under the cursor]]
 
  +
<companyname>Ana Trujillo Emparedados y helados</companyname>
*[[VimTip506|506 Open Windows Help files on a specific topic]]
 
  +
<contactname>Ana Trujillo</contactname>
*[[VimTip557|557 Opening several files in vim via ListFile]]
 
  +
<contacttitle>Owner</contacttitle>
*[[VimTip1356|1356 Open PDF files]]
 
  +
<address>Avda. de la Constitución 2222</address>
 
  +
<city>México D.F.</city>
==Comments==
 
  +
<postalcode>05021</postalcode>
I have removed the "Related plugins" section as the only plugin listed is obsolete and relies on Perl to do what can be done in plain Vim. [[User:JohnBeckett|JohnBeckett]] 10:16, April 18, 2012 (UTC)
 
  +
<country>Mexico</country>
----
 
  +
<phone>(5) 555-4729</phone>
I am working on merging a lot of tips related to opening HTML files in browsers, and documents in associated applications. I don't think anything more will be merged in to here. I will soon clean all this up and see how large the result is (some of it might then be moved elsewhere). [[User:JohnBeckett|JohnBeckett]] 11:21, April 26, 2012 (UTC)
 
  +
<fax>(5) 555-3745</fax>
----
 
  +
<orders>
In mappings, I am using F5 to open the current file and F8 to open the file under the cursor. Might rethink that after all merging complete. [[User:JohnBeckett|JohnBeckett]] 23:56, April 26, 2012 (UTC)
 
  +
<orderid>10308</orderid>
----
 
  +
<customerid>ANATR</customerid>
''TODO'': Probably need <code>shellescape()</code> or at least quotes in some of the mappings to handle embedded spaces. I think the Linux mappings also need <code>&</code> appended. [[User:JohnBeckett|JohnBeckett]] 05:01, April 27, 2012 (UTC)
 
  +
<employeeid>7</employeeid>
  +
<orderdate>1996-09-18</orderdate>
  +
<requireddate>1996-10-16</requireddate>
  +
<shippeddate>1996-09-24</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>1.6100</freight>
  +
<shipname>Ana Trujillo Emparedados y helados</shipname>
  +
<shipaddress>Avda. de la Constitución 2222</shipaddress>
  +
<shipcity>México D.F.</shipcity>
  +
<shippostalcode>05021</shippostalcode>
  +
<shipcountry>Mexico</shipcountry>
  +
<orderdetails>
  +
<orderid>10308</orderid>
  +
<productid>69</productid>
  +
<unitprice>28.8000</unitprice>
  +
<quantity>1</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10308</orderid>
  +
<productid>70</productid>
  +
<unitprice>12.0000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10625</orderid>
  +
<customerid>ANATR</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-08-08</orderdate>
  +
<requireddate>1997-09-05</requireddate>
  +
<shippeddate>1997-08-14</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>43.9000</freight>
  +
<shipname>Ana Trujillo Emparedados y helados</shipname>
  +
<shipaddress>Avda. de la Constitución 2222</shipaddress>
  +
<shipcity>México D.F.</shipcity>
  +
<shippostalcode>05021</shippostalcode>
  +
<shipcountry>Mexico</shipcountry>
  +
<orderdetails>
  +
<orderid>10625</orderid>
  +
<productid>14</productid>
  +
<unitprice>23.2500</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10625</orderid>
  +
<productid>42</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10625</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10759</orderid>
  +
<customerid>ANATR</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-11-28</orderdate>
  +
<requireddate>1997-12-26</requireddate>
  +
<shippeddate>1997-12-12</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>11.9900</freight>
  +
<shipname>Ana Trujillo Emparedados y helados</shipname>
  +
<shipaddress>Avda. de la Constitución 2222</shipaddress>
  +
<shipcity>México D.F.</shipcity>
  +
<shippostalcode>05021</shippostalcode>
  +
<shipcountry>Mexico</shipcountry>
  +
<orderdetails>
  +
<orderid>10759</orderid>
  +
<productid>32</productid>
  +
<unitprice>32.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10926</orderid>
  +
<customerid>ANATR</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-03-04</orderdate>
  +
<requireddate>1998-04-01</requireddate>
  +
<shippeddate>1998-03-11</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>39.9200</freight>
  +
<shipname>Ana Trujillo Emparedados y helados</shipname>
  +
<shipaddress>Avda. de la Constitución 2222</shipaddress>
  +
<shipcity>México D.F.</shipcity>
  +
<shippostalcode>05021</shippostalcode>
  +
<shipcountry>Mexico</shipcountry>
  +
<orderdetails>
  +
<orderid>10926</orderid>
  +
<productid>11</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10926</orderid>
  +
<productid>13</productid>
  +
<unitprice>6.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10926</orderid>
  +
<productid>19</productid>
  +
<unitprice>9.2000</unitprice>
  +
<quantity>7</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10926</orderid>
  +
<productid>72</productid>
  +
<unitprice>34.8000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>ANTON</customerid>
  +
<companyname>Antonio Moreno Taquería</companyname>
  +
<contactname>Antonio Moreno</contactname>
  +
<contacttitle>Owner</contacttitle>
  +
<address>Mataderos 2312</address>
  +
<city>México D.F.</city>
  +
<postalcode>05023</postalcode>
  +
<country>Mexico</country>
  +
<phone>(5) 555-3932</phone>
  +
<orders>
  +
<orderid>10365</orderid>
  +
<customerid>ANTON</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1996-11-27</orderdate>
  +
<requireddate>1996-12-25</requireddate>
  +
<shippeddate>1996-12-02</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>22.0000</freight>
  +
<shipname>Antonio Moreno Taquería</shipname>
  +
<shipaddress>Mataderos 2312</shipaddress>
  +
<shipcity>México D.F.</shipcity>
  +
<shippostalcode>05023</shippostalcode>
  +
<shipcountry>Mexico</shipcountry>
  +
<orderdetails>
  +
<orderid>10365</orderid>
  +
<productid>11</productid>
  +
<unitprice>16.8000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10507</orderid>
  +
<customerid>ANTON</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-04-15</orderdate>
  +
<requireddate>1997-05-13</requireddate>
  +
<shippeddate>1997-04-22</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>47.4500</freight>
  +
<shipname>Antonio Moreno Taquería</shipname>
  +
<shipaddress>Mataderos 2312</shipaddress>
  +
<shipcity>México D.F.</shipcity>
  +
<shippostalcode>05023</shippostalcode>
  +
<shipcountry>Mexico</shipcountry>
  +
<orderdetails>
  +
<orderid>10507</orderid>
  +
<productid>43</productid>
  +
<unitprice>46.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10507</orderid>
  +
<productid>48</productid>
  +
<unitprice>12.7500</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10535</orderid>
  +
<customerid>ANTON</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-05-13</orderdate>
  +
<requireddate>1997-06-10</requireddate>
  +
<shippeddate>1997-05-21</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>15.6400</freight>
  +
<shipname>Antonio Moreno Taquería</shipname>
  +
<shipaddress>Mataderos 2312</shipaddress>
  +
<shipcity>México D.F.</shipcity>
  +
<shippostalcode>05023</shippostalcode>
  +
<shipcountry>Mexico</shipcountry>
  +
<orderdetails>
  +
<orderid>10535</orderid>
  +
<productid>11</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10535</orderid>
  +
<productid>40</productid>
  +
<unitprice>18.4000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10535</orderid>
  +
<productid>57</productid>
  +
<unitprice>19.5000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10535</orderid>
  +
<productid>59</productid>
  +
<unitprice>55.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10573</orderid>
  +
<customerid>ANTON</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-06-19</orderdate>
  +
<requireddate>1997-07-17</requireddate>
  +
<shippeddate>1997-06-20</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>84.8400</freight>
  +
<shipname>Antonio Moreno Taquería</shipname>
  +
<shipaddress>Mataderos 2312</shipaddress>
  +
<shipcity>México D.F.</shipcity>
  +
<shippostalcode>05023</shippostalcode>
  +
<shipcountry>Mexico</shipcountry>
  +
<orderdetails>
  +
<orderid>10573</orderid>
  +
<productid>17</productid>
  +
<unitprice>39.0000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10573</orderid>
  +
<productid>34</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10573</orderid>
  +
<productid>53</productid>
  +
<unitprice>32.8000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10677</orderid>
  +
<customerid>ANTON</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-09-22</orderdate>
  +
<requireddate>1997-10-20</requireddate>
  +
<shippeddate>1997-09-26</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>4.0300</freight>
  +
<shipname>Antonio Moreno Taquería</shipname>
  +
<shipaddress>Mataderos 2312</shipaddress>
  +
<shipcity>México D.F.</shipcity>
  +
<shippostalcode>05023</shippostalcode>
  +
<shipcountry>Mexico</shipcountry>
  +
<orderdetails>
  +
<orderid>10677</orderid>
  +
<productid>26</productid>
  +
<unitprice>31.2300</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10677</orderid>
  +
<productid>33</productid>
  +
<unitprice>2.5000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10682</orderid>
  +
<customerid>ANTON</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-09-25</orderdate>
  +
<requireddate>1997-10-23</requireddate>
  +
<shippeddate>1997-10-01</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>36.1300</freight>
  +
<shipname>Antonio Moreno Taquería</shipname>
  +
<shipaddress>Mataderos 2312</shipaddress>
  +
<shipcity>México D.F.</shipcity>
  +
<shippostalcode>05023</shippostalcode>
  +
<shipcountry>Mexico</shipcountry>
  +
<orderdetails>
  +
<orderid>10682</orderid>
  +
<productid>33</productid>
  +
<unitprice>2.5000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10682</orderid>
  +
<productid>66</productid>
  +
<unitprice>17.0000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10682</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10856</orderid>
  +
<customerid>ANTON</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-01-28</orderdate>
  +
<requireddate>1998-02-25</requireddate>
  +
<shippeddate>1998-02-10</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>58.4300</freight>
  +
<shipname>Antonio Moreno Taquería</shipname>
  +
<shipaddress>Mataderos 2312</shipaddress>
  +
<shipcity>México D.F.</shipcity>
  +
<shippostalcode>05023</shippostalcode>
  +
<shipcountry>Mexico</shipcountry>
  +
<orderdetails>
  +
<orderid>10856</orderid>
  +
<productid>2</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10856</orderid>
  +
<productid>42</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>AROUT</customerid>
  +
<companyname>Around the Horn</companyname>
  +
<contactname>Thomas Hardy</contactname>
  +
<contacttitle>Sales Representative</contacttitle>
  +
<address>120 Hanover Sq.</address>
  +
<city>London</city>
  +
<postalcode>WA1 1DP</postalcode>
  +
<country>UK</country>
  +
<phone>(171) 555-7788</phone>
  +
<fax>(171) 555-6750</fax>
  +
<orders>
  +
<orderid>10355</orderid>
  +
<customerid>AROUT</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1996-11-15</orderdate>
  +
<requireddate>1996-12-13</requireddate>
  +
<shippeddate>1996-11-20</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>41.9500</freight>
  +
<shipname>Around the Horn</shipname>
  +
<shipaddress>Brook Farm Stratford St. Mary</shipaddress>
  +
<shipcity>Colchester</shipcity>
  +
<shipregion>Essex</shipregion>
  +
<shippostalcode>CO7 6JX</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10355</orderid>
  +
<productid>24</productid>
  +
<unitprice>3.6000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10355</orderid>
  +
<productid>57</productid>
  +
<unitprice>15.6000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10383</orderid>
  +
<customerid>AROUT</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1996-12-16</orderdate>
  +
<requireddate>1997-01-13</requireddate>
  +
<shippeddate>1996-12-18</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>34.2400</freight>
  +
<shipname>Around the Horn</shipname>
  +
<shipaddress>Brook Farm Stratford St. Mary</shipaddress>
  +
<shipcity>Colchester</shipcity>
  +
<shipregion>Essex</shipregion>
  +
<shippostalcode>CO7 6JX</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10383</orderid>
  +
<productid>13</productid>
  +
<unitprice>4.8000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10383</orderid>
  +
<productid>50</productid>
  +
<unitprice>13.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10383</orderid>
  +
<productid>56</productid>
  +
<unitprice>30.4000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10453</orderid>
  +
<customerid>AROUT</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-02-21</orderdate>
  +
<requireddate>1997-03-21</requireddate>
  +
<shippeddate>1997-02-26</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>25.3600</freight>
  +
<shipname>Around the Horn</shipname>
  +
<shipaddress>Brook Farm Stratford St. Mary</shipaddress>
  +
<shipcity>Colchester</shipcity>
  +
<shipregion>Essex</shipregion>
  +
<shippostalcode>CO7 6JX</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10453</orderid>
  +
<productid>48</productid>
  +
<unitprice>10.2000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10453</orderid>
  +
<productid>70</productid>
  +
<unitprice>12.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10558</orderid>
  +
<customerid>AROUT</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-06-04</orderdate>
  +
<requireddate>1997-07-02</requireddate>
  +
<shippeddate>1997-06-10</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>72.9700</freight>
  +
<shipname>Around the Horn</shipname>
  +
<shipaddress>Brook Farm Stratford St. Mary</shipaddress>
  +
<shipcity>Colchester</shipcity>
  +
<shipregion>Essex</shipregion>
  +
<shippostalcode>CO7 6JX</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10558</orderid>
  +
<productid>47</productid>
  +
<unitprice>9.5000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10558</orderid>
  +
<productid>51</productid>
  +
<unitprice>53.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10558</orderid>
  +
<productid>52</productid>
  +
<unitprice>7.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10558</orderid>
  +
<productid>53</productid>
  +
<unitprice>32.8000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10558</orderid>
  +
<productid>73</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10707</orderid>
  +
<customerid>AROUT</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-10-16</orderdate>
  +
<requireddate>1997-10-30</requireddate>
  +
<shippeddate>1997-10-23</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>21.7400</freight>
  +
<shipname>Around the Horn</shipname>
  +
<shipaddress>Brook Farm Stratford St. Mary</shipaddress>
  +
<shipcity>Colchester</shipcity>
  +
<shipregion>Essex</shipregion>
  +
<shippostalcode>CO7 6JX</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10707</orderid>
  +
<productid>55</productid>
  +
<unitprice>24.0000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10707</orderid>
  +
<productid>57</productid>
  +
<unitprice>19.5000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10707</orderid>
  +
<productid>70</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>28</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10741</orderid>
  +
<customerid>AROUT</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-11-14</orderdate>
  +
<requireddate>1997-11-28</requireddate>
  +
<shippeddate>1997-11-18</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>10.9600</freight>
  +
<shipname>Around the Horn</shipname>
  +
<shipaddress>Brook Farm Stratford St. Mary</shipaddress>
  +
<shipcity>Colchester</shipcity>
  +
<shipregion>Essex</shipregion>
  +
<shippostalcode>CO7 6JX</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10741</orderid>
  +
<productid>2</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10743</orderid>
  +
<customerid>AROUT</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-11-17</orderdate>
  +
<requireddate>1997-12-15</requireddate>
  +
<shippeddate>1997-11-21</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>23.7200</freight>
  +
<shipname>Around the Horn</shipname>
  +
<shipaddress>Brook Farm Stratford St. Mary</shipaddress>
  +
<shipcity>Colchester</shipcity>
  +
<shipregion>Essex</shipregion>
  +
<shippostalcode>CO7 6JX</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10743</orderid>
  +
<productid>46</productid>
  +
<unitprice>12.0000</unitprice>
  +
<quantity>28</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10768</orderid>
  +
<customerid>AROUT</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-12-08</orderdate>
  +
<requireddate>1998-01-05</requireddate>
  +
<shippeddate>1997-12-15</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>146.3200</freight>
  +
<shipname>Around the Horn</shipname>
  +
<shipaddress>Brook Farm Stratford St. Mary</shipaddress>
  +
<shipcity>Colchester</shipcity>
  +
<shipregion>Essex</shipregion>
  +
<shippostalcode>CO7 6JX</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10768</orderid>
  +
<productid>22</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10768</orderid>
  +
<productid>31</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10768</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10768</orderid>
  +
<productid>71</productid>
  +
<unitprice>21.5000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10793</orderid>
  +
<customerid>AROUT</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-12-24</orderdate>
  +
<requireddate>1998-01-21</requireddate>
  +
<shippeddate>1998-01-08</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>4.5200</freight>
  +
<shipname>Around the Horn</shipname>
  +
<shipaddress>Brook Farm Stratford St. Mary</shipaddress>
  +
<shipcity>Colchester</shipcity>
  +
<shipregion>Essex</shipregion>
  +
<shippostalcode>CO7 6JX</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10793</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10793</orderid>
  +
<productid>52</productid>
  +
<unitprice>7.0000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10864</orderid>
  +
<customerid>AROUT</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-02-02</orderdate>
  +
<requireddate>1998-03-02</requireddate>
  +
<shippeddate>1998-02-09</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>3.0400</freight>
  +
<shipname>Around the Horn</shipname>
  +
<shipaddress>Brook Farm Stratford St. Mary</shipaddress>
  +
<shipcity>Colchester</shipcity>
  +
<shipregion>Essex</shipregion>
  +
<shippostalcode>CO7 6JX</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10864</orderid>
  +
<productid>35</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10864</orderid>
  +
<productid>67</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10920</orderid>
  +
<customerid>AROUT</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-03-03</orderdate>
  +
<requireddate>1998-03-31</requireddate>
  +
<shippeddate>1998-03-09</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>29.6100</freight>
  +
<shipname>Around the Horn</shipname>
  +
<shipaddress>Brook Farm Stratford St. Mary</shipaddress>
  +
<shipcity>Colchester</shipcity>
  +
<shipregion>Essex</shipregion>
  +
<shippostalcode>CO7 6JX</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10920</orderid>
  +
<productid>50</productid>
  +
<unitprice>16.2500</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10953</orderid>
  +
<customerid>AROUT</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1998-03-16</orderdate>
  +
<requireddate>1998-03-30</requireddate>
  +
<shippeddate>1998-03-25</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>23.7200</freight>
  +
<shipname>Around the Horn</shipname>
  +
<shipaddress>Brook Farm Stratford St. Mary</shipaddress>
  +
<shipcity>Colchester</shipcity>
  +
<shipregion>Essex</shipregion>
  +
<shippostalcode>CO7 6JX</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10953</orderid>
  +
<productid>20</productid>
  +
<unitprice>81.0000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10953</orderid>
  +
<productid>31</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11016</orderid>
  +
<customerid>AROUT</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1998-04-10</orderdate>
  +
<requireddate>1998-05-08</requireddate>
  +
<shippeddate>1998-04-13</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>33.8000</freight>
  +
<shipname>Around the Horn</shipname>
  +
<shipaddress>Brook Farm Stratford St. Mary</shipaddress>
  +
<shipcity>Colchester</shipcity>
  +
<shipregion>Essex</shipregion>
  +
<shippostalcode>CO7 6JX</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>11016</orderid>
  +
<productid>31</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11016</orderid>
  +
<productid>36</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>16</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>BERGS</customerid>
  +
<companyname>Berglunds snabbköp</companyname>
  +
<contactname>Christina Berglund</contactname>
  +
<contacttitle>Order Administrator</contacttitle>
  +
<address>Berguvsvägen 8</address>
  +
<city>Luleå</city>
  +
<postalcode>S-958 22</postalcode>
  +
<country>Sweden</country>
  +
<phone>0921-12 34 65</phone>
  +
<fax>0921-12 34 67</fax>
  +
<orders>
  +
<orderid>10278</orderid>
  +
<customerid>BERGS</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1996-08-12</orderdate>
  +
<requireddate>1996-09-09</requireddate>
  +
<shippeddate>1996-08-16</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>92.6900</freight>
  +
<shipname>Berglunds snabbköp</shipname>
  +
<shipaddress>Berguvsvägen 8</shipaddress>
  +
<shipcity>Luleå</shipcity>
  +
<shippostalcode>S-958 22</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10278</orderid>
  +
<productid>44</productid>
  +
<unitprice>15.5000</unitprice>
  +
<quantity>16</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10278</orderid>
  +
<productid>59</productid>
  +
<unitprice>44.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10278</orderid>
  +
<productid>63</productid>
  +
<unitprice>35.1000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10278</orderid>
  +
<productid>73</productid>
  +
<unitprice>12.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10280</orderid>
  +
<customerid>BERGS</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1996-08-14</orderdate>
  +
<requireddate>1996-09-11</requireddate>
  +
<shippeddate>1996-09-12</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>8.9800</freight>
  +
<shipname>Berglunds snabbköp</shipname>
  +
<shipaddress>Berguvsvägen 8</shipaddress>
  +
<shipcity>Luleå</shipcity>
  +
<shippostalcode>S-958 22</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10280</orderid>
  +
<productid>24</productid>
  +
<unitprice>3.6000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10280</orderid>
  +
<productid>55</productid>
  +
<unitprice>19.2000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10280</orderid>
  +
<productid>75</productid>
  +
<unitprice>6.2000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10384</orderid>
  +
<customerid>BERGS</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1996-12-16</orderdate>
  +
<requireddate>1997-01-13</requireddate>
  +
<shippeddate>1996-12-20</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>168.6400</freight>
  +
<shipname>Berglunds snabbköp</shipname>
  +
<shipaddress>Berguvsvägen 8</shipaddress>
  +
<shipcity>Luleå</shipcity>
  +
<shippostalcode>S-958 22</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10384</orderid>
  +
<productid>20</productid>
  +
<unitprice>64.8000</unitprice>
  +
<quantity>28</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10384</orderid>
  +
<productid>60</productid>
  +
<unitprice>27.2000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10444</orderid>
  +
<customerid>BERGS</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-02-12</orderdate>
  +
<requireddate>1997-03-12</requireddate>
  +
<shippeddate>1997-02-21</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>3.5000</freight>
  +
<shipname>Berglunds snabbköp</shipname>
  +
<shipaddress>Berguvsvägen 8</shipaddress>
  +
<shipcity>Luleå</shipcity>
  +
<shippostalcode>S-958 22</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10444</orderid>
  +
<productid>17</productid>
  +
<unitprice>31.2000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10444</orderid>
  +
<productid>26</productid>
  +
<unitprice>24.9000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10444</orderid>
  +
<productid>35</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10444</orderid>
  +
<productid>41</productid>
  +
<unitprice>7.7000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10445</orderid>
  +
<customerid>BERGS</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-02-13</orderdate>
  +
<requireddate>1997-03-13</requireddate>
  +
<shippeddate>1997-02-20</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>9.3000</freight>
  +
<shipname>Berglunds snabbköp</shipname>
  +
<shipaddress>Berguvsvägen 8</shipaddress>
  +
<shipcity>Luleå</shipcity>
  +
<shippostalcode>S-958 22</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10445</orderid>
  +
<productid>39</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10445</orderid>
  +
<productid>54</productid>
  +
<unitprice>5.9000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10524</orderid>
  +
<customerid>BERGS</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-05-01</orderdate>
  +
<requireddate>1997-05-29</requireddate>
  +
<shippeddate>1997-05-07</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>244.7900</freight>
  +
<shipname>Berglunds snabbköp</shipname>
  +
<shipaddress>Berguvsvägen 8</shipaddress>
  +
<shipcity>Luleå</shipcity>
  +
<shippostalcode>S-958 22</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10524</orderid>
  +
<productid>10</productid>
  +
<unitprice>31.0000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10524</orderid>
  +
<productid>30</productid>
  +
<unitprice>25.8900</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10524</orderid>
  +
<productid>43</productid>
  +
<unitprice>46.0000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10524</orderid>
  +
<productid>54</productid>
  +
<unitprice>7.4500</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10572</orderid>
  +
<customerid>BERGS</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-06-18</orderdate>
  +
<requireddate>1997-07-16</requireddate>
  +
<shippeddate>1997-06-25</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>116.4300</freight>
  +
<shipname>Berglunds snabbköp</shipname>
  +
<shipaddress>Berguvsvägen 8</shipaddress>
  +
<shipcity>Luleå</shipcity>
  +
<shippostalcode>S-958 22</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10572</orderid>
  +
<productid>16</productid>
  +
<unitprice>17.4500</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10572</orderid>
  +
<productid>32</productid>
  +
<unitprice>32.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10572</orderid>
  +
<productid>40</productid>
  +
<unitprice>18.4000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10572</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10626</orderid>
  +
<customerid>BERGS</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-08-11</orderdate>
  +
<requireddate>1997-09-08</requireddate>
  +
<shippeddate>1997-08-20</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>138.6900</freight>
  +
<shipname>Berglunds snabbköp</shipname>
  +
<shipaddress>Berguvsvägen 8</shipaddress>
  +
<shipcity>Luleå</shipcity>
  +
<shippostalcode>S-958 22</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10626</orderid>
  +
<productid>53</productid>
  +
<unitprice>32.8000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10626</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10626</orderid>
  +
<productid>71</productid>
  +
<unitprice>21.5000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10654</orderid>
  +
<customerid>BERGS</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1997-09-02</orderdate>
  +
<requireddate>1997-09-30</requireddate>
  +
<shippeddate>1997-09-11</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>55.2600</freight>
  +
<shipname>Berglunds snabbköp</shipname>
  +
<shipaddress>Berguvsvägen 8</shipaddress>
  +
<shipcity>Luleå</shipcity>
  +
<shippostalcode>S-958 22</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10654</orderid>
  +
<productid>4</productid>
  +
<unitprice>22.0000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10654</orderid>
  +
<productid>39</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10654</orderid>
  +
<productid>54</productid>
  +
<unitprice>7.4500</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10672</orderid>
  +
<customerid>BERGS</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1997-09-17</orderdate>
  +
<requireddate>1997-10-01</requireddate>
  +
<shippeddate>1997-09-26</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>95.7500</freight>
  +
<shipname>Berglunds snabbköp</shipname>
  +
<shipaddress>Berguvsvägen 8</shipaddress>
  +
<shipcity>Luleå</shipcity>
  +
<shippostalcode>S-958 22</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10672</orderid>
  +
<productid>38</productid>
  +
<unitprice>263.5000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10672</orderid>
  +
<productid>71</productid>
  +
<unitprice>21.5000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10689</orderid>
  +
<customerid>BERGS</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-10-01</orderdate>
  +
<requireddate>1997-10-29</requireddate>
  +
<shippeddate>1997-10-07</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>13.4200</freight>
  +
<shipname>Berglunds snabbköp</shipname>
  +
<shipaddress>Berguvsvägen 8</shipaddress>
  +
<shipcity>Luleå</shipcity>
  +
<shippostalcode>S-958 22</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10689</orderid>
  +
<productid>1</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10733</orderid>
  +
<customerid>BERGS</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-11-07</orderdate>
  +
<requireddate>1997-12-05</requireddate>
  +
<shippeddate>1997-11-10</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>110.1100</freight>
  +
<shipname>Berglunds snabbköp</shipname>
  +
<shipaddress>Berguvsvägen 8</shipaddress>
  +
<shipcity>Luleå</shipcity>
  +
<shippostalcode>S-958 22</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10733</orderid>
  +
<productid>14</productid>
  +
<unitprice>23.2500</unitprice>
  +
<quantity>16</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10733</orderid>
  +
<productid>28</productid>
  +
<unitprice>45.6000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10733</orderid>
  +
<productid>52</productid>
  +
<unitprice>7.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10778</orderid>
  +
<customerid>BERGS</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-12-16</orderdate>
  +
<requireddate>1998-01-13</requireddate>
  +
<shippeddate>1997-12-24</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>6.7900</freight>
  +
<shipname>Berglunds snabbköp</shipname>
  +
<shipaddress>Berguvsvägen 8</shipaddress>
  +
<shipcity>Luleå</shipcity>
  +
<shippostalcode>S-958 22</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10778</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10837</orderid>
  +
<customerid>BERGS</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1998-01-16</orderdate>
  +
<requireddate>1998-02-13</requireddate>
  +
<shippeddate>1998-01-23</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>13.3200</freight>
  +
<shipname>Berglunds snabbköp</shipname>
  +
<shipaddress>Berguvsvägen 8</shipaddress>
  +
<shipcity>Luleå</shipcity>
  +
<shippostalcode>S-958 22</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10837</orderid>
  +
<productid>13</productid>
  +
<unitprice>6.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10837</orderid>
  +
<productid>40</productid>
  +
<unitprice>18.4000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10837</orderid>
  +
<productid>47</productid>
  +
<unitprice>9.5000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10837</orderid>
  +
<productid>76</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10857</orderid>
  +
<customerid>BERGS</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1998-01-28</orderdate>
  +
<requireddate>1998-02-25</requireddate>
  +
<shippeddate>1998-02-06</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>188.8500</freight>
  +
<shipname>Berglunds snabbköp</shipname>
  +
<shipaddress>Berguvsvägen 8</shipaddress>
  +
<shipcity>Luleå</shipcity>
  +
<shippostalcode>S-958 22</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10857</orderid>
  +
<productid>3</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10857</orderid>
  +
<productid>26</productid>
  +
<unitprice>31.2300</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10857</orderid>
  +
<productid>29</productid>
  +
<unitprice>123.7900</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10866</orderid>
  +
<customerid>BERGS</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1998-02-03</orderdate>
  +
<requireddate>1998-03-03</requireddate>
  +
<shippeddate>1998-02-12</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>109.1100</freight>
  +
<shipname>Berglunds snabbköp</shipname>
  +
<shipaddress>Berguvsvägen 8</shipaddress>
  +
<shipcity>Luleå</shipcity>
  +
<shippostalcode>S-958 22</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10866</orderid>
  +
<productid>2</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10866</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10866</orderid>
  +
<productid>30</productid>
  +
<unitprice>25.8900</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10875</orderid>
  +
<customerid>BERGS</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-02-06</orderdate>
  +
<requireddate>1998-03-06</requireddate>
  +
<shippeddate>1998-03-03</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>32.3700</freight>
  +
<shipname>Berglunds snabbköp</shipname>
  +
<shipaddress>Berguvsvägen 8</shipaddress>
  +
<shipcity>Luleå</shipcity>
  +
<shippostalcode>S-958 22</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10875</orderid>
  +
<productid>19</productid>
  +
<unitprice>9.2000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10875</orderid>
  +
<productid>47</productid>
  +
<unitprice>9.5000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10875</orderid>
  +
<productid>49</productid>
  +
<unitprice>20.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10924</orderid>
  +
<customerid>BERGS</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-03-04</orderdate>
  +
<requireddate>1998-04-01</requireddate>
  +
<shippeddate>1998-04-08</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>151.5200</freight>
  +
<shipname>Berglunds snabbköp</shipname>
  +
<shipaddress>Berguvsvägen 8</shipaddress>
  +
<shipcity>Luleå</shipcity>
  +
<shippostalcode>S-958 22</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10924</orderid>
  +
<productid>10</productid>
  +
<unitprice>31.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10924</orderid>
  +
<productid>28</productid>
  +
<unitprice>45.6000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10924</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>BLAUS</customerid>
  +
<companyname>Blauer See Delikatessen</companyname>
  +
<contactname>Hanna Moos</contactname>
  +
<contacttitle>Sales Representative</contacttitle>
  +
<address>Forsterstr. 57</address>
  +
<city>Mannheim</city>
  +
<postalcode>68306</postalcode>
  +
<country>Germany</country>
  +
<phone>0621-08460</phone>
  +
<fax>0621-08924</fax>
  +
<orders>
  +
<orderid>10501</orderid>
  +
<customerid>BLAUS</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1997-04-09</orderdate>
  +
<requireddate>1997-05-07</requireddate>
  +
<shippeddate>1997-04-16</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>8.8500</freight>
  +
<shipname>Blauer See Delikatessen</shipname>
  +
<shipaddress>Forsterstr. 57</shipaddress>
  +
<shipcity>Mannheim</shipcity>
  +
<shippostalcode>68306</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10501</orderid>
  +
<productid>54</productid>
  +
<unitprice>7.4500</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10509</orderid>
  +
<customerid>BLAUS</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-04-17</orderdate>
  +
<requireddate>1997-05-15</requireddate>
  +
<shippeddate>1997-04-29</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>0.1500</freight>
  +
<shipname>Blauer See Delikatessen</shipname>
  +
<shipaddress>Forsterstr. 57</shipaddress>
  +
<shipcity>Mannheim</shipcity>
  +
<shippostalcode>68306</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10509</orderid>
  +
<productid>28</productid>
  +
<unitprice>45.6000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10582</orderid>
  +
<customerid>BLAUS</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-06-27</orderdate>
  +
<requireddate>1997-07-25</requireddate>
  +
<shippeddate>1997-07-14</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>27.7100</freight>
  +
<shipname>Blauer See Delikatessen</shipname>
  +
<shipaddress>Forsterstr. 57</shipaddress>
  +
<shipcity>Mannheim</shipcity>
  +
<shippostalcode>68306</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10582</orderid>
  +
<productid>57</productid>
  +
<unitprice>19.5000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10582</orderid>
  +
<productid>76</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10614</orderid>
  +
<customerid>BLAUS</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-07-29</orderdate>
  +
<requireddate>1997-08-26</requireddate>
  +
<shippeddate>1997-08-01</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>1.9300</freight>
  +
<shipname>Blauer See Delikatessen</shipname>
  +
<shipaddress>Forsterstr. 57</shipaddress>
  +
<shipcity>Mannheim</shipcity>
  +
<shippostalcode>68306</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10614</orderid>
  +
<productid>11</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10614</orderid>
  +
<productid>21</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10614</orderid>
  +
<productid>39</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10853</orderid>
  +
<customerid>BLAUS</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1998-01-27</orderdate>
  +
<requireddate>1998-02-24</requireddate>
  +
<shippeddate>1998-02-03</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>53.8300</freight>
  +
<shipname>Blauer See Delikatessen</shipname>
  +
<shipaddress>Forsterstr. 57</shipaddress>
  +
<shipcity>Mannheim</shipcity>
  +
<shippostalcode>68306</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10853</orderid>
  +
<productid>18</productid>
  +
<unitprice>62.5000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10956</orderid>
  +
<customerid>BLAUS</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1998-03-17</orderdate>
  +
<requireddate>1998-04-28</requireddate>
  +
<shippeddate>1998-03-20</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>44.6500</freight>
  +
<shipname>Blauer See Delikatessen</shipname>
  +
<shipaddress>Forsterstr. 57</shipaddress>
  +
<shipcity>Mannheim</shipcity>
  +
<shippostalcode>68306</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10956</orderid>
  +
<productid>21</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10956</orderid>
  +
<productid>47</productid>
  +
<unitprice>9.5000</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10956</orderid>
  +
<productid>51</productid>
  +
<unitprice>53.0000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11058</orderid>
  +
<customerid>BLAUS</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1998-04-29</orderdate>
  +
<requireddate>1998-05-27</requireddate>
  +
<shipvia>3</shipvia>
  +
<freight>31.1400</freight>
  +
<shipname>Blauer See Delikatessen</shipname>
  +
<shipaddress>Forsterstr. 57</shipaddress>
  +
<shipcity>Mannheim</shipcity>
  +
<shippostalcode>68306</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>11058</orderid>
  +
<productid>21</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11058</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11058</orderid>
  +
<productid>61</productid>
  +
<unitprice>28.5000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>BLONP</customerid>
  +
<companyname>Blondesddsl père et fils</companyname>
  +
<contactname>Frédérique Citeaux</contactname>
  +
<contacttitle>Marketing Manager</contacttitle>
  +
<address>24, place Kléber</address>
  +
<city>Strasbourg</city>
  +
<postalcode>67000</postalcode>
  +
<country>France</country>
  +
<phone>88.60.15.31</phone>
  +
<fax>88.60.15.32</fax>
  +
<orders>
  +
<orderid>10265</orderid>
  +
<customerid>BLONP</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1996-07-25</orderdate>
  +
<requireddate>1996-08-22</requireddate>
  +
<shippeddate>1996-08-12</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>55.2800</freight>
  +
<shipname>Blondel père et fils</shipname>
  +
<shipaddress>24, place Kléber</shipaddress>
  +
<shipcity>Strasbourg</shipcity>
  +
<shippostalcode>67000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10265</orderid>
  +
<productid>17</productid>
  +
<unitprice>31.2000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10265</orderid>
  +
<productid>70</productid>
  +
<unitprice>12.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10297</orderid>
  +
<customerid>BLONP</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1996-09-04</orderdate>
  +
<requireddate>1996-10-16</requireddate>
  +
<shippeddate>1996-09-10</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>5.7400</freight>
  +
<shipname>Blondel père et fils</shipname>
  +
<shipaddress>24, place Kléber</shipaddress>
  +
<shipcity>Strasbourg</shipcity>
  +
<shippostalcode>67000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10297</orderid>
  +
<productid>39</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10297</orderid>
  +
<productid>72</productid>
  +
<unitprice>27.8000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10360</orderid>
  +
<customerid>BLONP</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1996-11-22</orderdate>
  +
<requireddate>1996-12-20</requireddate>
  +
<shippeddate>1996-12-02</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>131.7000</freight>
  +
<shipname>Blondel père et fils</shipname>
  +
<shipaddress>24, place Kléber</shipaddress>
  +
<shipcity>Strasbourg</shipcity>
  +
<shippostalcode>67000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10360</orderid>
  +
<productid>28</productid>
  +
<unitprice>36.4000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10360</orderid>
  +
<productid>29</productid>
  +
<unitprice>99.0000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10360</orderid>
  +
<productid>38</productid>
  +
<unitprice>210.8000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10360</orderid>
  +
<productid>49</productid>
  +
<unitprice>16.0000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10360</orderid>
  +
<productid>54</productid>
  +
<unitprice>5.9000</unitprice>
  +
<quantity>28</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10436</orderid>
  +
<customerid>BLONP</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-02-05</orderdate>
  +
<requireddate>1997-03-05</requireddate>
  +
<shippeddate>1997-02-11</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>156.6600</freight>
  +
<shipname>Blondel père et fils</shipname>
  +
<shipaddress>24, place Kléber</shipaddress>
  +
<shipcity>Strasbourg</shipcity>
  +
<shippostalcode>67000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10436</orderid>
  +
<productid>46</productid>
  +
<unitprice>9.6000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10436</orderid>
  +
<productid>56</productid>
  +
<unitprice>30.4000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10436</orderid>
  +
<productid>64</productid>
  +
<unitprice>26.6000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10436</orderid>
  +
<productid>75</productid>
  +
<unitprice>6.2000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10449</orderid>
  +
<customerid>BLONP</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-02-18</orderdate>
  +
<requireddate>1997-03-18</requireddate>
  +
<shippeddate>1997-02-27</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>53.3000</freight>
  +
<shipname>Blondel père et fils</shipname>
  +
<shipaddress>24, place Kléber</shipaddress>
  +
<shipcity>Strasbourg</shipcity>
  +
<shippostalcode>67000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10449</orderid>
  +
<productid>10</productid>
  +
<unitprice>24.8000</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10449</orderid>
  +
<productid>52</productid>
  +
<unitprice>5.6000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10449</orderid>
  +
<productid>62</productid>
  +
<unitprice>39.4000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10559</orderid>
  +
<customerid>BLONP</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1997-06-05</orderdate>
  +
<requireddate>1997-07-03</requireddate>
  +
<shippeddate>1997-06-13</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>8.0500</freight>
  +
<shipname>Blondel père et fils</shipname>
  +
<shipaddress>24, place Kléber</shipaddress>
  +
<shipcity>Strasbourg</shipcity>
  +
<shippostalcode>67000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10559</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10559</orderid>
  +
<productid>55</productid>
  +
<unitprice>24.0000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10566</orderid>
  +
<customerid>BLONP</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1997-06-12</orderdate>
  +
<requireddate>1997-07-10</requireddate>
  +
<shippeddate>1997-06-18</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>88.4000</freight>
  +
<shipname>Blondel père et fils</shipname>
  +
<shipaddress>24, place Kléber</shipaddress>
  +
<shipcity>Strasbourg</shipcity>
  +
<shippostalcode>67000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10566</orderid>
  +
<productid>11</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10566</orderid>
  +
<productid>18</productid>
  +
<unitprice>62.5000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10566</orderid>
  +
<productid>76</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10584</orderid>
  +
<customerid>BLONP</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-06-30</orderdate>
  +
<requireddate>1997-07-28</requireddate>
  +
<shippeddate>1997-07-04</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>59.1400</freight>
  +
<shipname>Blondel père et fils</shipname>
  +
<shipaddress>24, place Kléber</shipaddress>
  +
<shipcity>Strasbourg</shipcity>
  +
<shippostalcode>67000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10584</orderid>
  +
<productid>31</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10628</orderid>
  +
<customerid>BLONP</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-08-12</orderdate>
  +
<requireddate>1997-09-09</requireddate>
  +
<shippeddate>1997-08-20</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>30.3600</freight>
  +
<shipname>Blondel père et fils</shipname>
  +
<shipaddress>24, place Kléber</shipaddress>
  +
<shipcity>Strasbourg</shipcity>
  +
<shippostalcode>67000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10628</orderid>
  +
<productid>1</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10679</orderid>
  +
<customerid>BLONP</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-09-23</orderdate>
  +
<requireddate>1997-10-21</requireddate>
  +
<shippeddate>1997-09-30</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>27.9400</freight>
  +
<shipname>Blondel père et fils</shipname>
  +
<shipaddress>24, place Kléber</shipaddress>
  +
<shipcity>Strasbourg</shipcity>
  +
<shippostalcode>67000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10679</orderid>
  +
<productid>59</productid>
  +
<unitprice>55.0000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10826</orderid>
  +
<customerid>BLONP</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1998-01-12</orderdate>
  +
<requireddate>1998-02-09</requireddate>
  +
<shippeddate>1998-02-06</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>7.0900</freight>
  +
<shipname>Blondel père et fils</shipname>
  +
<shipaddress>24, place Kléber</shipaddress>
  +
<shipcity>Strasbourg</shipcity>
  +
<shippostalcode>67000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10826</orderid>
  +
<productid>31</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10826</orderid>
  +
<productid>57</productid>
  +
<unitprice>19.5000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>BOLID</customerid>
  +
<companyname>Bólido Comidas preparadas</companyname>
  +
<contactname>Martín Sommer</contactname>
  +
<contacttitle>Owner</contacttitle>
  +
<address>C/ Araquil, 67</address>
  +
<city>Madrid</city>
  +
<postalcode>28023</postalcode>
  +
<country>Spain</country>
  +
<phone>(91) 555 22 82</phone>
  +
<fax>(91) 555 91 99</fax>
  +
<orders>
  +
<orderid>10326</orderid>
  +
<customerid>BOLID</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1996-10-10</orderdate>
  +
<requireddate>1996-11-07</requireddate>
  +
<shippeddate>1996-10-14</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>77.9200</freight>
  +
<shipname>Bólido Comidas preparadas</shipname>
  +
<shipaddress>C/ Araquil, 67</shipaddress>
  +
<shipcity>Madrid</shipcity>
  +
<shippostalcode>28023</shippostalcode>
  +
<shipcountry>Spain</shipcountry>
  +
<orderdetails>
  +
<orderid>10326</orderid>
  +
<productid>4</productid>
  +
<unitprice>17.6000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10326</orderid>
  +
<productid>57</productid>
  +
<unitprice>15.6000</unitprice>
  +
<quantity>16</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10326</orderid>
  +
<productid>75</productid>
  +
<unitprice>6.2000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10801</orderid>
  +
<customerid>BOLID</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-12-29</orderdate>
  +
<requireddate>1998-01-26</requireddate>
  +
<shippeddate>1997-12-31</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>97.0900</freight>
  +
<shipname>Bólido Comidas preparadas</shipname>
  +
<shipaddress>C/ Araquil, 67</shipaddress>
  +
<shipcity>Madrid</shipcity>
  +
<shippostalcode>28023</shippostalcode>
  +
<shipcountry>Spain</shipcountry>
  +
<orderdetails>
  +
<orderid>10801</orderid>
  +
<productid>17</productid>
  +
<unitprice>39.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10801</orderid>
  +
<productid>29</productid>
  +
<unitprice>123.7900</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10970</orderid>
  +
<customerid>BOLID</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1998-03-24</orderdate>
  +
<requireddate>1998-04-07</requireddate>
  +
<shippeddate>1998-04-24</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>16.1600</freight>
  +
<shipname>Bólido Comidas preparadas</shipname>
  +
<shipaddress>C/ Araquil, 67</shipaddress>
  +
<shipcity>Madrid</shipcity>
  +
<shippostalcode>28023</shippostalcode>
  +
<shipcountry>Spain</shipcountry>
  +
<orderdetails>
  +
<orderid>10970</orderid>
  +
<productid>52</productid>
  +
<unitprice>7.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>BONAP</customerid>
  +
<companyname>Bon app'</companyname>
  +
<contactname>Laurence Lebihan</contactname>
  +
<contacttitle>Owner</contacttitle>
  +
<address>12, rue des Bouchers</address>
  +
<city>Marseille</city>
  +
<postalcode>13008</postalcode>
  +
<country>France</country>
  +
<phone>91.24.45.40</phone>
  +
<fax>91.24.45.41</fax>
  +
<orders>
  +
<orderid>10331</orderid>
  +
<customerid>BONAP</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1996-10-16</orderdate>
  +
<requireddate>1996-11-27</requireddate>
  +
<shippeddate>1996-10-21</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>10.1900</freight>
  +
<shipname>Bon app'</shipname>
  +
<shipaddress>12, rue des Bouchers</shipaddress>
  +
<shipcity>Marseille</shipcity>
  +
<shippostalcode>13008</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10331</orderid>
  +
<productid>54</productid>
  +
<unitprice>5.9000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10340</orderid>
  +
<customerid>BONAP</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1996-10-29</orderdate>
  +
<requireddate>1996-11-26</requireddate>
  +
<shippeddate>1996-11-08</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>166.3100</freight>
  +
<shipname>Bon app'</shipname>
  +
<shipaddress>12, rue des Bouchers</shipaddress>
  +
<shipcity>Marseille</shipcity>
  +
<shippostalcode>13008</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10340</orderid>
  +
<productid>18</productid>
  +
<unitprice>50.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10340</orderid>
  +
<productid>41</productid>
  +
<unitprice>7.7000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10340</orderid>
  +
<productid>43</productid>
  +
<unitprice>36.8000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10362</orderid>
  +
<customerid>BONAP</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1996-11-25</orderdate>
  +
<requireddate>1996-12-23</requireddate>
  +
<shippeddate>1996-11-28</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>96.0400</freight>
  +
<shipname>Bon app'</shipname>
  +
<shipaddress>12, rue des Bouchers</shipaddress>
  +
<shipcity>Marseille</shipcity>
  +
<shippostalcode>13008</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10362</orderid>
  +
<productid>25</productid>
  +
<unitprice>11.2000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10362</orderid>
  +
<productid>51</productid>
  +
<unitprice>42.4000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10362</orderid>
  +
<productid>54</productid>
  +
<unitprice>5.9000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10470</orderid>
  +
<customerid>BONAP</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-03-11</orderdate>
  +
<requireddate>1997-04-08</requireddate>
  +
<shippeddate>1997-03-14</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>64.5600</freight>
  +
<shipname>Bon app'</shipname>
  +
<shipaddress>12, rue des Bouchers</shipaddress>
  +
<shipcity>Marseille</shipcity>
  +
<shippostalcode>13008</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10470</orderid>
  +
<productid>18</productid>
  +
<unitprice>50.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10470</orderid>
  +
<productid>23</productid>
  +
<unitprice>7.2000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10470</orderid>
  +
<productid>64</productid>
  +
<unitprice>26.6000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10511</orderid>
  +
<customerid>BONAP</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-04-18</orderdate>
  +
<requireddate>1997-05-16</requireddate>
  +
<shippeddate>1997-04-21</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>350.6400</freight>
  +
<shipname>Bon app'</shipname>
  +
<shipaddress>12, rue des Bouchers</shipaddress>
  +
<shipcity>Marseille</shipcity>
  +
<shippostalcode>13008</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10511</orderid>
  +
<productid>4</productid>
  +
<unitprice>22.0000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10511</orderid>
  +
<productid>7</productid>
  +
<unitprice>30.0000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10511</orderid>
  +
<productid>8</productid>
  +
<unitprice>40.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10525</orderid>
  +
<customerid>BONAP</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-05-02</orderdate>
  +
<requireddate>1997-05-30</requireddate>
  +
<shippeddate>1997-05-23</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>11.0600</freight>
  +
<shipname>Bon app'</shipname>
  +
<shipaddress>12, rue des Bouchers</shipaddress>
  +
<shipcity>Marseille</shipcity>
  +
<shippostalcode>13008</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10525</orderid>
  +
<productid>36</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10525</orderid>
  +
<productid>40</productid>
  +
<unitprice>18.4000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10663</orderid>
  +
<customerid>BONAP</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-09-10</orderdate>
  +
<requireddate>1997-09-24</requireddate>
  +
<shippeddate>1997-10-03</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>113.1500</freight>
  +
<shipname>Bon app'</shipname>
  +
<shipaddress>12, rue des Bouchers</shipaddress>
  +
<shipcity>Marseille</shipcity>
  +
<shippostalcode>13008</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10663</orderid>
  +
<productid>40</productid>
  +
<unitprice>18.4000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10663</orderid>
  +
<productid>42</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10663</orderid>
  +
<productid>51</productid>
  +
<unitprice>53.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10715</orderid>
  +
<customerid>BONAP</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-10-23</orderdate>
  +
<requireddate>1997-11-06</requireddate>
  +
<shippeddate>1997-10-29</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>63.2000</freight>
  +
<shipname>Bon app'</shipname>
  +
<shipaddress>12, rue des Bouchers</shipaddress>
  +
<shipcity>Marseille</shipcity>
  +
<shippostalcode>13008</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10715</orderid>
  +
<productid>10</productid>
  +
<unitprice>31.0000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10715</orderid>
  +
<productid>71</productid>
  +
<unitprice>21.5000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10730</orderid>
  +
<customerid>BONAP</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1997-11-05</orderdate>
  +
<requireddate>1997-12-03</requireddate>
  +
<shippeddate>1997-11-14</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>20.1200</freight>
  +
<shipname>Bon app'</shipname>
  +
<shipaddress>12, rue des Bouchers</shipaddress>
  +
<shipcity>Marseille</shipcity>
  +
<shippostalcode>13008</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10730</orderid>
  +
<productid>16</productid>
  +
<unitprice>17.4500</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10730</orderid>
  +
<productid>31</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10730</orderid>
  +
<productid>65</productid>
  +
<unitprice>21.0500</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10732</orderid>
  +
<customerid>BONAP</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-11-06</orderdate>
  +
<requireddate>1997-12-04</requireddate>
  +
<shippeddate>1997-11-07</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>16.9700</freight>
  +
<shipname>Bon app'</shipname>
  +
<shipaddress>12, rue des Bouchers</shipaddress>
  +
<shipcity>Marseille</shipcity>
  +
<shippostalcode>13008</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10732</orderid>
  +
<productid>76</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10755</orderid>
  +
<customerid>BONAP</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-11-26</orderdate>
  +
<requireddate>1997-12-24</requireddate>
  +
<shippeddate>1997-11-28</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>16.7100</freight>
  +
<shipname>Bon app'</shipname>
  +
<shipaddress>12, rue des Bouchers</shipaddress>
  +
<shipcity>Marseille</shipcity>
  +
<shippostalcode>13008</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10755</orderid>
  +
<productid>47</productid>
  +
<unitprice>9.5000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10755</orderid>
  +
<productid>56</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10755</orderid>
  +
<productid>57</productid>
  +
<unitprice>19.5000</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10755</orderid>
  +
<productid>69</productid>
  +
<unitprice>36.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10827</orderid>
  +
<customerid>BONAP</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-01-12</orderdate>
  +
<requireddate>1998-01-26</requireddate>
  +
<shippeddate>1998-02-06</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>63.5400</freight>
  +
<shipname>Bon app'</shipname>
  +
<shipaddress>12, rue des Bouchers</shipaddress>
  +
<shipcity>Marseille</shipcity>
  +
<shippostalcode>13008</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10827</orderid>
  +
<productid>10</productid>
  +
<unitprice>31.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10827</orderid>
  +
<productid>39</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10871</orderid>
  +
<customerid>BONAP</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1998-02-05</orderdate>
  +
<requireddate>1998-03-05</requireddate>
  +
<shippeddate>1998-02-10</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>112.2700</freight>
  +
<shipname>Bon app'</shipname>
  +
<shipaddress>12, rue des Bouchers</shipaddress>
  +
<shipcity>Marseille</shipcity>
  +
<shippostalcode>13008</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10871</orderid>
  +
<productid>6</productid>
  +
<unitprice>25.0000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10871</orderid>
  +
<productid>16</productid>
  +
<unitprice>17.4500</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10871</orderid>
  +
<productid>17</productid>
  +
<unitprice>39.0000</unitprice>
  +
<quantity>16</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10876</orderid>
  +
<customerid>BONAP</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1998-02-09</orderdate>
  +
<requireddate>1998-03-09</requireddate>
  +
<shippeddate>1998-02-12</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>60.4200</freight>
  +
<shipname>Bon app'</shipname>
  +
<shipaddress>12, rue des Bouchers</shipaddress>
  +
<shipcity>Marseille</shipcity>
  +
<shippostalcode>13008</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10876</orderid>
  +
<productid>46</productid>
  +
<unitprice>12.0000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10876</orderid>
  +
<productid>64</productid>
  +
<unitprice>33.2500</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10932</orderid>
  +
<customerid>BONAP</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1998-03-06</orderdate>
  +
<requireddate>1998-04-03</requireddate>
  +
<shippeddate>1998-03-24</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>134.6400</freight>
  +
<shipname>Bon app'</shipname>
  +
<shipaddress>12, rue des Bouchers</shipaddress>
  +
<shipcity>Marseille</shipcity>
  +
<shippostalcode>13008</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10932</orderid>
  +
<productid>16</productid>
  +
<unitprice>17.4500</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10932</orderid>
  +
<productid>62</productid>
  +
<unitprice>49.3000</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10932</orderid>
  +
<productid>72</productid>
  +
<unitprice>34.8000</unitprice>
  +
<quantity>16</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10932</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10940</orderid>
  +
<customerid>BONAP</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1998-03-11</orderdate>
  +
<requireddate>1998-04-08</requireddate>
  +
<shippeddate>1998-03-23</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>19.7700</freight>
  +
<shipname>Bon app'</shipname>
  +
<shipaddress>12, rue des Bouchers</shipaddress>
  +
<shipcity>Marseille</shipcity>
  +
<shippostalcode>13008</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10940</orderid>
  +
<productid>7</productid>
  +
<unitprice>30.0000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10940</orderid>
  +
<productid>13</productid>
  +
<unitprice>6.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11076</orderid>
  +
<customerid>BONAP</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-05-06</orderdate>
  +
<requireddate>1998-06-03</requireddate>
  +
<shipvia>2</shipvia>
  +
<freight>38.2800</freight>
  +
<shipname>Bon app'</shipname>
  +
<shipaddress>12, rue des Bouchers</shipaddress>
  +
<shipcity>Marseille</shipcity>
  +
<shippostalcode>13008</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>11076</orderid>
  +
<productid>6</productid>
  +
<unitprice>25.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11076</orderid>
  +
<productid>14</productid>
  +
<unitprice>23.2500</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11076</orderid>
  +
<productid>19</productid>
  +
<unitprice>9.2000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>BOTTM</customerid>
  +
<companyname>Bottom-Dollar Markets</companyname>
  +
<contactname>Elizabeth Lincoln</contactname>
  +
<contacttitle>Accounting Manager</contacttitle>
  +
<address>23 Tsawassen Blvd.</address>
  +
<city>Tsawassen</city>
  +
<region>BC</region>
  +
<postalcode>T2F 8M4</postalcode>
  +
<country>Canada</country>
  +
<phone>(604) 555-4729</phone>
  +
<fax>(604) 555-3745</fax>
  +
<orders>
  +
<orderid>10389</orderid>
  +
<customerid>BOTTM</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1996-12-20</orderdate>
  +
<requireddate>1997-01-17</requireddate>
  +
<shippeddate>1996-12-24</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>47.4200</freight>
  +
<shipname>Bottom-Dollar Markets</shipname>
  +
<shipaddress>23 Tsawassen Blvd.</shipaddress>
  +
<shipcity>Tsawassen</shipcity>
  +
<shipregion>BC</shipregion>
  +
<shippostalcode>T2F 8M4</shippostalcode>
  +
<shipcountry>Canada</shipcountry>
  +
<orderdetails>
  +
<orderid>10389</orderid>
  +
<productid>10</productid>
  +
<unitprice>24.8000</unitprice>
  +
<quantity>16</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10389</orderid>
  +
<productid>55</productid>
  +
<unitprice>19.2000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10389</orderid>
  +
<productid>62</productid>
  +
<unitprice>39.4000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10389</orderid>
  +
<productid>70</productid>
  +
<unitprice>12.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10410</orderid>
  +
<customerid>BOTTM</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-01-10</orderdate>
  +
<requireddate>1997-02-07</requireddate>
  +
<shippeddate>1997-01-15</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>2.4000</freight>
  +
<shipname>Bottom-Dollar Markets</shipname>
  +
<shipaddress>23 Tsawassen Blvd.</shipaddress>
  +
<shipcity>Tsawassen</shipcity>
  +
<shipregion>BC</shipregion>
  +
<shippostalcode>T2F 8M4</shippostalcode>
  +
<shipcountry>Canada</shipcountry>
  +
<orderdetails>
  +
<orderid>10410</orderid>
  +
<productid>33</productid>
  +
<unitprice>2.0000</unitprice>
  +
<quantity>49</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10410</orderid>
  +
<productid>59</productid>
  +
<unitprice>44.0000</unitprice>
  +
<quantity>16</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10411</orderid>
  +
<customerid>BOTTM</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1997-01-10</orderdate>
  +
<requireddate>1997-02-07</requireddate>
  +
<shippeddate>1997-01-21</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>23.6500</freight>
  +
<shipname>Bottom-Dollar Markets</shipname>
  +
<shipaddress>23 Tsawassen Blvd.</shipaddress>
  +
<shipcity>Tsawassen</shipcity>
  +
<shipregion>BC</shipregion>
  +
<shippostalcode>T2F 8M4</shippostalcode>
  +
<shipcountry>Canada</shipcountry>
  +
<orderdetails>
  +
<orderid>10411</orderid>
  +
<productid>41</productid>
  +
<unitprice>7.7000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10411</orderid>
  +
<productid>44</productid>
  +
<unitprice>15.5000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10411</orderid>
  +
<productid>59</productid>
  +
<unitprice>44.0000</unitprice>
  +
<quantity>9</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10431</orderid>
  +
<customerid>BOTTM</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-01-30</orderdate>
  +
<requireddate>1997-02-13</requireddate>
  +
<shippeddate>1997-02-07</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>44.1700</freight>
  +
<shipname>Bottom-Dollar Markets</shipname>
  +
<shipaddress>23 Tsawassen Blvd.</shipaddress>
  +
<shipcity>Tsawassen</shipcity>
  +
<shipregion>BC</shipregion>
  +
<shippostalcode>T2F 8M4</shippostalcode>
  +
<shipcountry>Canada</shipcountry>
  +
<orderdetails>
  +
<orderid>10431</orderid>
  +
<productid>17</productid>
  +
<unitprice>31.2000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10431</orderid>
  +
<productid>40</productid>
  +
<unitprice>14.7000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10431</orderid>
  +
<productid>47</productid>
  +
<unitprice>7.6000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10492</orderid>
  +
<customerid>BOTTM</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-04-01</orderdate>
  +
<requireddate>1997-04-29</requireddate>
  +
<shippeddate>1997-04-11</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>62.8900</freight>
  +
<shipname>Bottom-Dollar Markets</shipname>
  +
<shipaddress>23 Tsawassen Blvd.</shipaddress>
  +
<shipcity>Tsawassen</shipcity>
  +
<shipregion>BC</shipregion>
  +
<shippostalcode>T2F 8M4</shippostalcode>
  +
<shipcountry>Canada</shipcountry>
  +
<orderdetails>
  +
<orderid>10492</orderid>
  +
<productid>25</productid>
  +
<unitprice>11.2000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10492</orderid>
  +
<productid>42</productid>
  +
<unitprice>11.2000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10742</orderid>
  +
<customerid>BOTTM</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-11-14</orderdate>
  +
<requireddate>1997-12-12</requireddate>
  +
<shippeddate>1997-11-18</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>243.7300</freight>
  +
<shipname>Bottom-Dollar Markets</shipname>
  +
<shipaddress>23 Tsawassen Blvd.</shipaddress>
  +
<shipcity>Tsawassen</shipcity>
  +
<shipregion>BC</shipregion>
  +
<shippostalcode>T2F 8M4</shippostalcode>
  +
<shipcountry>Canada</shipcountry>
  +
<orderdetails>
  +
<orderid>10742</orderid>
  +
<productid>3</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10742</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10742</orderid>
  +
<productid>72</productid>
  +
<unitprice>34.8000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10918</orderid>
  +
<customerid>BOTTM</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-03-02</orderdate>
  +
<requireddate>1998-03-30</requireddate>
  +
<shippeddate>1998-03-11</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>48.8300</freight>
  +
<shipname>Bottom-Dollar Markets</shipname>
  +
<shipaddress>23 Tsawassen Blvd.</shipaddress>
  +
<shipcity>Tsawassen</shipcity>
  +
<shipregion>BC</shipregion>
  +
<shippostalcode>T2F 8M4</shippostalcode>
  +
<shipcountry>Canada</shipcountry>
  +
<orderdetails>
  +
<orderid>10918</orderid>
  +
<productid>1</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10918</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10944</orderid>
  +
<customerid>BOTTM</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1998-03-12</orderdate>
  +
<requireddate>1998-03-26</requireddate>
  +
<shippeddate>1998-03-13</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>52.9200</freight>
  +
<shipname>Bottom-Dollar Markets</shipname>
  +
<shipaddress>23 Tsawassen Blvd.</shipaddress>
  +
<shipcity>Tsawassen</shipcity>
  +
<shipregion>BC</shipregion>
  +
<shippostalcode>T2F 8M4</shippostalcode>
  +
<shipcountry>Canada</shipcountry>
  +
<orderdetails>
  +
<orderid>10944</orderid>
  +
<productid>11</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10944</orderid>
  +
<productid>44</productid>
  +
<unitprice>19.4500</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10944</orderid>
  +
<productid>56</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10949</orderid>
  +
<customerid>BOTTM</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-03-13</orderdate>
  +
<requireddate>1998-04-10</requireddate>
  +
<shippeddate>1998-03-17</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>74.4400</freight>
  +
<shipname>Bottom-Dollar Markets</shipname>
  +
<shipaddress>23 Tsawassen Blvd.</shipaddress>
  +
<shipcity>Tsawassen</shipcity>
  +
<shipregion>BC</shipregion>
  +
<shippostalcode>T2F 8M4</shippostalcode>
  +
<shipcountry>Canada</shipcountry>
  +
<orderdetails>
  +
<orderid>10949</orderid>
  +
<productid>6</productid>
  +
<unitprice>25.0000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10949</orderid>
  +
<productid>10</productid>
  +
<unitprice>31.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10949</orderid>
  +
<productid>17</productid>
  +
<unitprice>39.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10949</orderid>
  +
<productid>62</productid>
  +
<unitprice>49.3000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10975</orderid>
  +
<customerid>BOTTM</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-03-25</orderdate>
  +
<requireddate>1998-04-22</requireddate>
  +
<shippeddate>1998-03-27</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>32.2700</freight>
  +
<shipname>Bottom-Dollar Markets</shipname>
  +
<shipaddress>23 Tsawassen Blvd.</shipaddress>
  +
<shipcity>Tsawassen</shipcity>
  +
<shipregion>BC</shipregion>
  +
<shippostalcode>T2F 8M4</shippostalcode>
  +
<shipcountry>Canada</shipcountry>
  +
<orderdetails>
  +
<orderid>10975</orderid>
  +
<productid>8</productid>
  +
<unitprice>40.0000</unitprice>
  +
<quantity>16</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10975</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10982</orderid>
  +
<customerid>BOTTM</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-03-27</orderdate>
  +
<requireddate>1998-04-24</requireddate>
  +
<shippeddate>1998-04-08</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>14.0100</freight>
  +
<shipname>Bottom-Dollar Markets</shipname>
  +
<shipaddress>23 Tsawassen Blvd.</shipaddress>
  +
<shipcity>Tsawassen</shipcity>
  +
<shipregion>BC</shipregion>
  +
<shippostalcode>T2F 8M4</shippostalcode>
  +
<shipcountry>Canada</shipcountry>
  +
<orderdetails>
  +
<orderid>10982</orderid>
  +
<productid>7</productid>
  +
<unitprice>30.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10982</orderid>
  +
<productid>43</productid>
  +
<unitprice>46.0000</unitprice>
  +
<quantity>9</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11027</orderid>
  +
<customerid>BOTTM</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-04-16</orderdate>
  +
<requireddate>1998-05-14</requireddate>
  +
<shippeddate>1998-04-20</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>52.5200</freight>
  +
<shipname>Bottom-Dollar Markets</shipname>
  +
<shipaddress>23 Tsawassen Blvd.</shipaddress>
  +
<shipcity>Tsawassen</shipcity>
  +
<shipregion>BC</shipregion>
  +
<shippostalcode>T2F 8M4</shippostalcode>
  +
<shipcountry>Canada</shipcountry>
  +
<orderdetails>
  +
<orderid>11027</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11027</orderid>
  +
<productid>62</productid>
  +
<unitprice>49.3000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11045</orderid>
  +
<customerid>BOTTM</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1998-04-23</orderdate>
  +
<requireddate>1998-05-21</requireddate>
  +
<shipvia>2</shipvia>
  +
<freight>70.5800</freight>
  +
<shipname>Bottom-Dollar Markets</shipname>
  +
<shipaddress>23 Tsawassen Blvd.</shipaddress>
  +
<shipcity>Tsawassen</shipcity>
  +
<shipregion>BC</shipregion>
  +
<shippostalcode>T2F 8M4</shippostalcode>
  +
<shipcountry>Canada</shipcountry>
  +
<orderdetails>
  +
<orderid>11045</orderid>
  +
<productid>33</productid>
  +
<unitprice>2.5000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11045</orderid>
  +
<productid>51</productid>
  +
<unitprice>53.0000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11048</orderid>
  +
<customerid>BOTTM</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1998-04-24</orderdate>
  +
<requireddate>1998-05-22</requireddate>
  +
<shippeddate>1998-04-30</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>24.1200</freight>
  +
<shipname>Bottom-Dollar Markets</shipname>
  +
<shipaddress>23 Tsawassen Blvd.</shipaddress>
  +
<shipcity>Tsawassen</shipcity>
  +
<shipregion>BC</shipregion>
  +
<shippostalcode>T2F 8M4</shippostalcode>
  +
<shipcountry>Canada</shipcountry>
  +
<orderdetails>
  +
<orderid>11048</orderid>
  +
<productid>68</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>42</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>BSBEV</customerid>
  +
<companyname>B's Beverages</companyname>
  +
<contactname>Victoria Ashworth</contactname>
  +
<contacttitle>Sales Representative</contacttitle>
  +
<address>Fauntleroy Circus</address>
  +
<city>London</city>
  +
<postalcode>EC2 5NT</postalcode>
  +
<country>UK</country>
  +
<phone>(171) 555-1212</phone>
  +
<orders>
  +
<orderid>10289</orderid>
  +
<customerid>BSBEV</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1996-08-26</orderdate>
  +
<requireddate>1996-09-23</requireddate>
  +
<shippeddate>1996-08-28</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>22.7700</freight>
  +
<shipname>B's Beverages</shipname>
  +
<shipaddress>Fauntleroy Circus</shipaddress>
  +
<shipcity>London</shipcity>
  +
<shippostalcode>EC2 5NT</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10289</orderid>
  +
<productid>3</productid>
  +
<unitprice>8.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10289</orderid>
  +
<productid>64</productid>
  +
<unitprice>26.6000</unitprice>
  +
<quantity>9</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10471</orderid>
  +
<customerid>BSBEV</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-03-11</orderdate>
  +
<requireddate>1997-04-08</requireddate>
  +
<shippeddate>1997-03-18</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>45.5900</freight>
  +
<shipname>B's Beverages</shipname>
  +
<shipaddress>Fauntleroy Circus</shipaddress>
  +
<shipcity>London</shipcity>
  +
<shippostalcode>EC2 5NT</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10471</orderid>
  +
<productid>7</productid>
  +
<unitprice>24.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10471</orderid>
  +
<productid>56</productid>
  +
<unitprice>30.4000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10484</orderid>
  +
<customerid>BSBEV</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-03-24</orderdate>
  +
<requireddate>1997-04-21</requireddate>
  +
<shippeddate>1997-04-01</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>6.8800</freight>
  +
<shipname>B's Beverages</shipname>
  +
<shipaddress>Fauntleroy Circus</shipaddress>
  +
<shipcity>London</shipcity>
  +
<shippostalcode>EC2 5NT</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10484</orderid>
  +
<productid>21</productid>
  +
<unitprice>8.0000</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10484</orderid>
  +
<productid>40</productid>
  +
<unitprice>14.7000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10484</orderid>
  +
<productid>51</productid>
  +
<unitprice>42.4000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10538</orderid>
  +
<customerid>BSBEV</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1997-05-15</orderdate>
  +
<requireddate>1997-06-12</requireddate>
  +
<shippeddate>1997-05-16</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>4.8700</freight>
  +
<shipname>B's Beverages</shipname>
  +
<shipaddress>Fauntleroy Circus</shipaddress>
  +
<shipcity>London</shipcity>
  +
<shippostalcode>EC2 5NT</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10538</orderid>
  +
<productid>70</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>7</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10538</orderid>
  +
<productid>72</productid>
  +
<unitprice>34.8000</unitprice>
  +
<quantity>1</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10539</orderid>
  +
<customerid>BSBEV</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1997-05-16</orderdate>
  +
<requireddate>1997-06-13</requireddate>
  +
<shippeddate>1997-05-23</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>12.3600</freight>
  +
<shipname>B's Beverages</shipname>
  +
<shipaddress>Fauntleroy Circus</shipaddress>
  +
<shipcity>London</shipcity>
  +
<shippostalcode>EC2 5NT</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10539</orderid>
  +
<productid>13</productid>
  +
<unitprice>6.0000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10539</orderid>
  +
<productid>21</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10539</orderid>
  +
<productid>33</productid>
  +
<unitprice>2.5000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10539</orderid>
  +
<productid>49</productid>
  +
<unitprice>20.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10578</orderid>
  +
<customerid>BSBEV</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-06-24</orderdate>
  +
<requireddate>1997-07-22</requireddate>
  +
<shippeddate>1997-07-25</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>29.6000</freight>
  +
<shipname>B's Beverages</shipname>
  +
<shipaddress>Fauntleroy Circus</shipaddress>
  +
<shipcity>London</shipcity>
  +
<shippostalcode>EC2 5NT</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10578</orderid>
  +
<productid>35</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10578</orderid>
  +
<productid>57</productid>
  +
<unitprice>19.5000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10599</orderid>
  +
<customerid>BSBEV</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1997-07-15</orderdate>
  +
<requireddate>1997-08-26</requireddate>
  +
<shippeddate>1997-07-21</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>29.9800</freight>
  +
<shipname>B's Beverages</shipname>
  +
<shipaddress>Fauntleroy Circus</shipaddress>
  +
<shipcity>London</shipcity>
  +
<shippostalcode>EC2 5NT</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10599</orderid>
  +
<productid>62</productid>
  +
<unitprice>49.3000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10943</orderid>
  +
<customerid>BSBEV</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-03-11</orderdate>
  +
<requireddate>1998-04-08</requireddate>
  +
<shippeddate>1998-03-19</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>2.1700</freight>
  +
<shipname>B's Beverages</shipname>
  +
<shipaddress>Fauntleroy Circus</shipaddress>
  +
<shipcity>London</shipcity>
  +
<shippostalcode>EC2 5NT</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10943</orderid>
  +
<productid>13</productid>
  +
<unitprice>6.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10943</orderid>
  +
<productid>22</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10943</orderid>
  +
<productid>46</productid>
  +
<unitprice>12.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10947</orderid>
  +
<customerid>BSBEV</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-03-13</orderdate>
  +
<requireddate>1998-04-10</requireddate>
  +
<shippeddate>1998-03-16</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>3.2600</freight>
  +
<shipname>B's Beverages</shipname>
  +
<shipaddress>Fauntleroy Circus</shipaddress>
  +
<shipcity>London</shipcity>
  +
<shippostalcode>EC2 5NT</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10947</orderid>
  +
<productid>59</productid>
  +
<unitprice>55.0000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11023</orderid>
  +
<customerid>BSBEV</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-04-14</orderdate>
  +
<requireddate>1998-04-28</requireddate>
  +
<shippeddate>1998-04-24</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>123.8300</freight>
  +
<shipname>B's Beverages</shipname>
  +
<shipaddress>Fauntleroy Circus</shipaddress>
  +
<shipcity>London</shipcity>
  +
<shippostalcode>EC2 5NT</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>11023</orderid>
  +
<productid>7</productid>
  +
<unitprice>30.0000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11023</orderid>
  +
<productid>43</productid>
  +
<unitprice>46.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>CACTU</customerid>
  +
<companyname>Cactus Comidas para llevar</companyname>
  +
<contactname>Patricio Simpson</contactname>
  +
<contacttitle>Sales Agent</contacttitle>
  +
<address>Cerrito 333</address>
  +
<city>Buenos Aires</city>
  +
<postalcode>1010</postalcode>
  +
<country>Argentina</country>
  +
<phone>(1) 135-5555</phone>
  +
<fax>(1) 135-4892</fax>
  +
<orders>
  +
<orderid>10521</orderid>
  +
<customerid>CACTU</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-04-29</orderdate>
  +
<requireddate>1997-05-27</requireddate>
  +
<shippeddate>1997-05-02</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>17.2200</freight>
  +
<shipname>Cactus Comidas para llevar</shipname>
  +
<shipaddress>Cerrito 333</shipaddress>
  +
<shipcity>Buenos Aires</shipcity>
  +
<shippostalcode>1010</shippostalcode>
  +
<shipcountry>Argentina</shipcountry>
  +
<orderdetails>
  +
<orderid>10521</orderid>
  +
<productid>35</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10521</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10521</orderid>
  +
<productid>68</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10782</orderid>
  +
<customerid>CACTU</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1997-12-17</orderdate>
  +
<requireddate>1998-01-14</requireddate>
  +
<shippeddate>1997-12-22</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>1.1000</freight>
  +
<shipname>Cactus Comidas para llevar</shipname>
  +
<shipaddress>Cerrito 333</shipaddress>
  +
<shipcity>Buenos Aires</shipcity>
  +
<shippostalcode>1010</shippostalcode>
  +
<shipcountry>Argentina</shipcountry>
  +
<orderdetails>
  +
<orderid>10782</orderid>
  +
<productid>31</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>1</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10819</orderid>
  +
<customerid>CACTU</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-01-07</orderdate>
  +
<requireddate>1998-02-04</requireddate>
  +
<shippeddate>1998-01-16</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>19.7600</freight>
  +
<shipname>Cactus Comidas para llevar</shipname>
  +
<shipaddress>Cerrito 333</shipaddress>
  +
<shipcity>Buenos Aires</shipcity>
  +
<shippostalcode>1010</shippostalcode>
  +
<shipcountry>Argentina</shipcountry>
  +
<orderdetails>
  +
<orderid>10819</orderid>
  +
<productid>43</productid>
  +
<unitprice>46.0000</unitprice>
  +
<quantity>7</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10819</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10881</orderid>
  +
<customerid>CACTU</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-02-11</orderdate>
  +
<requireddate>1998-03-11</requireddate>
  +
<shippeddate>1998-02-18</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>2.8400</freight>
  +
<shipname>Cactus Comidas para llevar</shipname>
  +
<shipaddress>Cerrito 333</shipaddress>
  +
<shipcity>Buenos Aires</shipcity>
  +
<shippostalcode>1010</shippostalcode>
  +
<shipcountry>Argentina</shipcountry>
  +
<orderdetails>
  +
<orderid>10881</orderid>
  +
<productid>73</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10937</orderid>
  +
<customerid>CACTU</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1998-03-10</orderdate>
  +
<requireddate>1998-03-24</requireddate>
  +
<shippeddate>1998-03-13</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>31.5100</freight>
  +
<shipname>Cactus Comidas para llevar</shipname>
  +
<shipaddress>Cerrito 333</shipaddress>
  +
<shipcity>Buenos Aires</shipcity>
  +
<shippostalcode>1010</shippostalcode>
  +
<shipcountry>Argentina</shipcountry>
  +
<orderdetails>
  +
<orderid>10937</orderid>
  +
<productid>28</productid>
  +
<unitprice>45.6000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10937</orderid>
  +
<productid>34</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11054</orderid>
  +
<customerid>CACTU</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1998-04-28</orderdate>
  +
<requireddate>1998-05-26</requireddate>
  +
<shipvia>1</shipvia>
  +
<freight>0.3300</freight>
  +
<shipname>Cactus Comidas para llevar</shipname>
  +
<shipaddress>Cerrito 333</shipaddress>
  +
<shipcity>Buenos Aires</shipcity>
  +
<shippostalcode>1010</shippostalcode>
  +
<shipcountry>Argentina</shipcountry>
  +
<orderdetails>
  +
<orderid>11054</orderid>
  +
<productid>33</productid>
  +
<unitprice>2.5000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11054</orderid>
  +
<productid>67</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>CENTC</customerid>
  +
<companyname>Centro comercial Moctezuma</companyname>
  +
<contactname>Francisco Chang</contactname>
  +
<contacttitle>Marketing Manager</contacttitle>
  +
<address>Sierras de Granada 9993</address>
  +
<city>México D.F.</city>
  +
<postalcode>05022</postalcode>
  +
<country>Mexico</country>
  +
<phone>(5) 555-3392</phone>
  +
<fax>(5) 555-7293</fax>
  +
<orders>
  +
<orderid>10259</orderid>
  +
<customerid>CENTC</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1996-07-18</orderdate>
  +
<requireddate>1996-08-15</requireddate>
  +
<shippeddate>1996-07-25</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>3.2500</freight>
  +
<shipname>Centro comercial Moctezuma</shipname>
  +
<shipaddress>Sierras de Granada 9993</shipaddress>
  +
<shipcity>México D.F.</shipcity>
  +
<shippostalcode>05022</shippostalcode>
  +
<shipcountry>Mexico</shipcountry>
  +
<orderdetails>
  +
<orderid>10259</orderid>
  +
<productid>21</productid>
  +
<unitprice>8.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10259</orderid>
  +
<productid>37</productid>
  +
<unitprice>20.8000</unitprice>
  +
<quantity>1</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>CHOPS</customerid>
  +
<companyname>Chop-suey Chinese</companyname>
  +
<contactname>Yang Wang</contactname>
  +
<contacttitle>Owner</contacttitle>
  +
<address>Hauptstr. 29</address>
  +
<city>Bern</city>
  +
<postalcode>3012</postalcode>
  +
<country>Switzerland</country>
  +
<phone>0452-076545</phone>
  +
<orders>
  +
<orderid>10254</orderid>
  +
<customerid>CHOPS</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1996-07-11</orderdate>
  +
<requireddate>1996-08-08</requireddate>
  +
<shippeddate>1996-07-23</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>22.9800</freight>
  +
<shipname>Chop-suey Chinese</shipname>
  +
<shipaddress>Hauptstr. 31</shipaddress>
  +
<shipcity>Bern</shipcity>
  +
<shippostalcode>3012</shippostalcode>
  +
<shipcountry>Switzerland</shipcountry>
  +
<orderdetails>
  +
<orderid>10254</orderid>
  +
<productid>24</productid>
  +
<unitprice>3.6000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10254</orderid>
  +
<productid>55</productid>
  +
<unitprice>19.2000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10254</orderid>
  +
<productid>74</productid>
  +
<unitprice>8.0000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10370</orderid>
  +
<customerid>CHOPS</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1996-12-03</orderdate>
  +
<requireddate>1996-12-31</requireddate>
  +
<shippeddate>1996-12-27</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>1.1700</freight>
  +
<shipname>Chop-suey Chinese</shipname>
  +
<shipaddress>Hauptstr. 31</shipaddress>
  +
<shipcity>Bern</shipcity>
  +
<shippostalcode>3012</shippostalcode>
  +
<shipcountry>Switzerland</shipcountry>
  +
<orderdetails>
  +
<orderid>10370</orderid>
  +
<productid>1</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10370</orderid>
  +
<productid>64</productid>
  +
<unitprice>26.6000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10370</orderid>
  +
<productid>74</productid>
  +
<unitprice>8.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10519</orderid>
  +
<customerid>CHOPS</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1997-04-28</orderdate>
  +
<requireddate>1997-05-26</requireddate>
  +
<shippeddate>1997-05-01</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>91.7600</freight>
  +
<shipname>Chop-suey Chinese</shipname>
  +
<shipaddress>Hauptstr. 31</shipaddress>
  +
<shipcity>Bern</shipcity>
  +
<shippostalcode>3012</shippostalcode>
  +
<shipcountry>Switzerland</shipcountry>
  +
<orderdetails>
  +
<orderid>10519</orderid>
  +
<productid>10</productid>
  +
<unitprice>31.0000</unitprice>
  +
<quantity>16</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10519</orderid>
  +
<productid>56</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10519</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10731</orderid>
  +
<customerid>CHOPS</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-11-06</orderdate>
  +
<requireddate>1997-12-04</requireddate>
  +
<shippeddate>1997-11-14</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>96.6500</freight>
  +
<shipname>Chop-suey Chinese</shipname>
  +
<shipaddress>Hauptstr. 31</shipaddress>
  +
<shipcity>Bern</shipcity>
  +
<shippostalcode>3012</shippostalcode>
  +
<shipcountry>Switzerland</shipcountry>
  +
<orderdetails>
  +
<orderid>10731</orderid>
  +
<productid>21</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10731</orderid>
  +
<productid>51</productid>
  +
<unitprice>53.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10746</orderid>
  +
<customerid>CHOPS</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-11-19</orderdate>
  +
<requireddate>1997-12-17</requireddate>
  +
<shippeddate>1997-11-21</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>31.4300</freight>
  +
<shipname>Chop-suey Chinese</shipname>
  +
<shipaddress>Hauptstr. 31</shipaddress>
  +
<shipcity>Bern</shipcity>
  +
<shippostalcode>3012</shippostalcode>
  +
<shipcountry>Switzerland</shipcountry>
  +
<orderdetails>
  +
<orderid>10746</orderid>
  +
<productid>13</productid>
  +
<unitprice>6.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10746</orderid>
  +
<productid>42</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>28</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10746</orderid>
  +
<productid>62</productid>
  +
<unitprice>49.3000</unitprice>
  +
<quantity>9</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10746</orderid>
  +
<productid>69</productid>
  +
<unitprice>36.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10966</orderid>
  +
<customerid>CHOPS</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-03-20</orderdate>
  +
<requireddate>1998-04-17</requireddate>
  +
<shippeddate>1998-04-08</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>27.1900</freight>
  +
<shipname>Chop-suey Chinese</shipname>
  +
<shipaddress>Hauptstr. 31</shipaddress>
  +
<shipcity>Bern</shipcity>
  +
<shippostalcode>3012</shippostalcode>
  +
<shipcountry>Switzerland</shipcountry>
  +
<orderdetails>
  +
<orderid>10966</orderid>
  +
<productid>37</productid>
  +
<unitprice>26.0000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10966</orderid>
  +
<productid>56</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10966</orderid>
  +
<productid>62</productid>
  +
<unitprice>49.3000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11029</orderid>
  +
<customerid>CHOPS</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-04-16</orderdate>
  +
<requireddate>1998-05-14</requireddate>
  +
<shippeddate>1998-04-27</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>47.8400</freight>
  +
<shipname>Chop-suey Chinese</shipname>
  +
<shipaddress>Hauptstr. 31</shipaddress>
  +
<shipcity>Bern</shipcity>
  +
<shippostalcode>3012</shippostalcode>
  +
<shipcountry>Switzerland</shipcountry>
  +
<orderdetails>
  +
<orderid>11029</orderid>
  +
<productid>56</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11029</orderid>
  +
<productid>63</productid>
  +
<unitprice>43.9000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11041</orderid>
  +
<customerid>CHOPS</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-04-22</orderdate>
  +
<requireddate>1998-05-20</requireddate>
  +
<shippeddate>1998-04-28</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>48.2200</freight>
  +
<shipname>Chop-suey Chinese</shipname>
  +
<shipaddress>Hauptstr. 31</shipaddress>
  +
<shipcity>Bern</shipcity>
  +
<shippostalcode>3012</shippostalcode>
  +
<shipcountry>Switzerland</shipcountry>
  +
<orderdetails>
  +
<orderid>11041</orderid>
  +
<productid>2</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11041</orderid>
  +
<productid>63</productid>
  +
<unitprice>43.9000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>COMMI</customerid>
  +
<companyname>Comércio Mineiro</companyname>
  +
<contactname>Pedro Afonso</contactname>
  +
<contacttitle>Sales Associate</contacttitle>
  +
<address>Av. dos Lusíadas, 23</address>
  +
<city>Sao Paulo</city>
  +
<region>SP</region>
  +
<postalcode>05432-043</postalcode>
  +
<country>Brazil</country>
  +
<phone>(11) 555-7647</phone>
  +
<orders>
  +
<orderid>10290</orderid>
  +
<customerid>COMMI</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1996-08-27</orderdate>
  +
<requireddate>1996-09-24</requireddate>
  +
<shippeddate>1996-09-03</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>79.7000</freight>
  +
<shipname>Comércio Mineiro</shipname>
  +
<shipaddress>Av. dos Lusíadas, 23</shipaddress>
  +
<shipcity>Sao Paulo</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>05432-043</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10290</orderid>
  +
<productid>5</productid>
  +
<unitprice>17.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10290</orderid>
  +
<productid>29</productid>
  +
<unitprice>99.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10290</orderid>
  +
<productid>49</productid>
  +
<unitprice>16.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10290</orderid>
  +
<productid>77</productid>
  +
<unitprice>10.4000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10466</orderid>
  +
<customerid>COMMI</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-03-06</orderdate>
  +
<requireddate>1997-04-03</requireddate>
  +
<shippeddate>1997-03-13</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>11.9300</freight>
  +
<shipname>Comércio Mineiro</shipname>
  +
<shipaddress>Av. dos Lusíadas, 23</shipaddress>
  +
<shipcity>Sao Paulo</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>05432-043</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10466</orderid>
  +
<productid>11</productid>
  +
<unitprice>16.8000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10466</orderid>
  +
<productid>46</productid>
  +
<unitprice>9.6000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10494</orderid>
  +
<customerid>COMMI</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-04-02</orderdate>
  +
<requireddate>1997-04-30</requireddate>
  +
<shippeddate>1997-04-09</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>65.9900</freight>
  +
<shipname>Comércio Mineiro</shipname>
  +
<shipaddress>Av. dos Lusíadas, 23</shipaddress>
  +
<shipcity>Sao Paulo</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>05432-043</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10494</orderid>
  +
<productid>56</productid>
  +
<unitprice>30.4000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10969</orderid>
  +
<customerid>COMMI</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-03-23</orderdate>
  +
<requireddate>1998-04-20</requireddate>
  +
<shippeddate>1998-03-30</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>0.2100</freight>
  +
<shipname>Comércio Mineiro</shipname>
  +
<shipaddress>Av. dos Lusíadas, 23</shipaddress>
  +
<shipcity>Sao Paulo</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>05432-043</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10969</orderid>
  +
<productid>46</productid>
  +
<unitprice>12.0000</unitprice>
  +
<quantity>9</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11042</orderid>
  +
<customerid>COMMI</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-04-22</orderdate>
  +
<requireddate>1998-05-06</requireddate>
  +
<shippeddate>1998-05-01</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>29.9900</freight>
  +
<shipname>Comércio Mineiro</shipname>
  +
<shipaddress>Av. dos Lusíadas, 23</shipaddress>
  +
<shipcity>Sao Paulo</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>05432-043</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>11042</orderid>
  +
<productid>44</productid>
  +
<unitprice>19.4500</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11042</orderid>
  +
<productid>61</productid>
  +
<unitprice>28.5000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>CONSH</customerid>
  +
<companyname>Consolidated Holdings</companyname>
  +
<contactname>Elizabeth Brown</contactname>
  +
<contacttitle>Sales Representative</contacttitle>
  +
<address>Berkeley Gardens 12 Brewery</address>
  +
<city>London</city>
  +
<postalcode>WX1 6LT</postalcode>
  +
<country>UK</country>
  +
<phone>(171) 555-2282</phone>
  +
<fax>(171) 555-9199</fax>
  +
<orders>
  +
<orderid>10435</orderid>
  +
<customerid>CONSH</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-02-04</orderdate>
  +
<requireddate>1997-03-18</requireddate>
  +
<shippeddate>1997-02-07</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>9.2100</freight>
  +
<shipname>Consolidated Holdings</shipname>
  +
<shipaddress>Berkeley Gardens 12 Brewery</shipaddress>
  +
<shipcity>London</shipcity>
  +
<shippostalcode>WX1 6LT</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10435</orderid>
  +
<productid>2</productid>
  +
<unitprice>15.2000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10435</orderid>
  +
<productid>22</productid>
  +
<unitprice>16.8000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10435</orderid>
  +
<productid>72</productid>
  +
<unitprice>27.8000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10462</orderid>
  +
<customerid>CONSH</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-03-03</orderdate>
  +
<requireddate>1997-03-31</requireddate>
  +
<shippeddate>1997-03-18</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>6.1700</freight>
  +
<shipname>Consolidated Holdings</shipname>
  +
<shipaddress>Berkeley Gardens 12 Brewery</shipaddress>
  +
<shipcity>London</shipcity>
  +
<shippostalcode>WX1 6LT</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10462</orderid>
  +
<productid>13</productid>
  +
<unitprice>4.8000</unitprice>
  +
<quantity>1</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10462</orderid>
  +
<productid>23</productid>
  +
<unitprice>7.2000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10848</orderid>
  +
<customerid>CONSH</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1998-01-23</orderdate>
  +
<requireddate>1998-02-20</requireddate>
  +
<shippeddate>1998-01-29</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>38.2400</freight>
  +
<shipname>Consolidated Holdings</shipname>
  +
<shipaddress>Berkeley Gardens 12 Brewery</shipaddress>
  +
<shipcity>London</shipcity>
  +
<shippostalcode>WX1 6LT</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10848</orderid>
  +
<productid>5</productid>
  +
<unitprice>21.3500</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10848</orderid>
  +
<productid>9</productid>
  +
<unitprice>97.0000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>DRACD</customerid>
  +
<companyname>Drachenblut Delikatessen</companyname>
  +
<contactname>Sven Ottlieb</contactname>
  +
<contacttitle>Order Administrator</contacttitle>
  +
<address>Walserweg 21</address>
  +
<city>Aachen</city>
  +
<postalcode>52066</postalcode>
  +
<country>Germany</country>
  +
<phone>0241-039123</phone>
  +
<fax>0241-059428</fax>
  +
<orders>
  +
<orderid>10363</orderid>
  +
<customerid>DRACD</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1996-11-26</orderdate>
  +
<requireddate>1996-12-24</requireddate>
  +
<shippeddate>1996-12-04</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>30.5400</freight>
  +
<shipname>Drachenblut Delikatessen</shipname>
  +
<shipaddress>Walserweg 21</shipaddress>
  +
<shipcity>Aachen</shipcity>
  +
<shippostalcode>52066</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10363</orderid>
  +
<productid>31</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10363</orderid>
  +
<productid>75</productid>
  +
<unitprice>6.2000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10363</orderid>
  +
<productid>76</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10391</orderid>
  +
<customerid>DRACD</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1996-12-23</orderdate>
  +
<requireddate>1997-01-20</requireddate>
  +
<shippeddate>1996-12-31</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>5.4500</freight>
  +
<shipname>Drachenblut Delikatessen</shipname>
  +
<shipaddress>Walserweg 21</shipaddress>
  +
<shipcity>Aachen</shipcity>
  +
<shippostalcode>52066</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10391</orderid>
  +
<productid>13</productid>
  +
<unitprice>4.8000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10797</orderid>
  +
<customerid>DRACD</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-12-25</orderdate>
  +
<requireddate>1998-01-22</requireddate>
  +
<shippeddate>1998-01-05</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>33.3500</freight>
  +
<shipname>Drachenblut Delikatessen</shipname>
  +
<shipaddress>Walserweg 21</shipaddress>
  +
<shipcity>Aachen</shipcity>
  +
<shippostalcode>52066</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10797</orderid>
  +
<productid>11</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10825</orderid>
  +
<customerid>DRACD</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-01-09</orderdate>
  +
<requireddate>1998-02-06</requireddate>
  +
<shippeddate>1998-01-14</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>79.2500</freight>
  +
<shipname>Drachenblut Delikatessen</shipname>
  +
<shipaddress>Walserweg 21</shipaddress>
  +
<shipcity>Aachen</shipcity>
  +
<shippostalcode>52066</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10825</orderid>
  +
<productid>26</productid>
  +
<unitprice>31.2300</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10825</orderid>
  +
<productid>53</productid>
  +
<unitprice>32.8000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11036</orderid>
  +
<customerid>DRACD</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1998-04-20</orderdate>
  +
<requireddate>1998-05-18</requireddate>
  +
<shippeddate>1998-04-22</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>149.4700</freight>
  +
<shipname>Drachenblut Delikatessen</shipname>
  +
<shipaddress>Walserweg 21</shipaddress>
  +
<shipcity>Aachen</shipcity>
  +
<shippostalcode>52066</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>11036</orderid>
  +
<productid>13</productid>
  +
<unitprice>6.0000</unitprice>
  +
<quantity>7</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11036</orderid>
  +
<productid>59</productid>
  +
<unitprice>55.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11067</orderid>
  +
<customerid>DRACD</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-05-04</orderdate>
  +
<requireddate>1998-05-18</requireddate>
  +
<shippeddate>1998-05-06</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>7.9800</freight>
  +
<shipname>Drachenblut Delikatessen</shipname>
  +
<shipaddress>Walserweg 21</shipaddress>
  +
<shipcity>Aachen</shipcity>
  +
<shippostalcode>52066</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>11067</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>9</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>DUMON</customerid>
  +
<companyname>Du monde entier</companyname>
  +
<contactname>Janine Labrune</contactname>
  +
<contacttitle>Owner</contacttitle>
  +
<address>67, rue des Cinquante Otages</address>
  +
<city>Nantes</city>
  +
<postalcode>44000</postalcode>
  +
<country>France</country>
  +
<phone>40.67.88.88</phone>
  +
<fax>40.67.89.89</fax>
  +
<orders>
  +
<orderid>10311</orderid>
  +
<customerid>DUMON</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1996-09-20</orderdate>
  +
<requireddate>1996-10-04</requireddate>
  +
<shippeddate>1996-09-26</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>24.6900</freight>
  +
<shipname>Du monde entier</shipname>
  +
<shipaddress>67, rue des Cinquante Otages</shipaddress>
  +
<shipcity>Nantes</shipcity>
  +
<shippostalcode>44000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10311</orderid>
  +
<productid>42</productid>
  +
<unitprice>11.2000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10311</orderid>
  +
<productid>69</productid>
  +
<unitprice>28.8000</unitprice>
  +
<quantity>7</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10609</orderid>
  +
<customerid>DUMON</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-07-24</orderdate>
  +
<requireddate>1997-08-21</requireddate>
  +
<shippeddate>1997-07-30</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>1.8500</freight>
  +
<shipname>Du monde entier</shipname>
  +
<shipaddress>67, rue des Cinquante Otages</shipaddress>
  +
<shipcity>Nantes</shipcity>
  +
<shippostalcode>44000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10609</orderid>
  +
<productid>1</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10609</orderid>
  +
<productid>10</productid>
  +
<unitprice>31.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10609</orderid>
  +
<productid>21</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10683</orderid>
  +
<customerid>DUMON</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-09-26</orderdate>
  +
<requireddate>1997-10-24</requireddate>
  +
<shippeddate>1997-10-01</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>4.4000</freight>
  +
<shipname>Du monde entier</shipname>
  +
<shipaddress>67, rue des Cinquante Otages</shipaddress>
  +
<shipcity>Nantes</shipcity>
  +
<shippostalcode>44000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10683</orderid>
  +
<productid>52</productid>
  +
<unitprice>7.0000</unitprice>
  +
<quantity>9</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10890</orderid>
  +
<customerid>DUMON</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1998-02-16</orderdate>
  +
<requireddate>1998-03-16</requireddate>
  +
<shippeddate>1998-02-18</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>32.7600</freight>
  +
<shipname>Du monde entier</shipname>
  +
<shipaddress>67, rue des Cinquante Otages</shipaddress>
  +
<shipcity>Nantes</shipcity>
  +
<shippostalcode>44000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10890</orderid>
  +
<productid>17</productid>
  +
<unitprice>39.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10890</orderid>
  +
<productid>34</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10890</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>EASTC</customerid>
  +
<companyname>Eastern Connection</companyname>
  +
<contactname>Ann Devon</contactname>
  +
<contacttitle>Sales Agent</contacttitle>
  +
<address>35 King George</address>
  +
<city>London</city>
  +
<postalcode>WX3 6FW</postalcode>
  +
<country>UK</country>
  +
<phone>(171) 555-0297</phone>
  +
<fax>(171) 555-3373</fax>
  +
<orders>
  +
<orderid>10364</orderid>
  +
<customerid>EASTC</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1996-11-26</orderdate>
  +
<requireddate>1997-01-07</requireddate>
  +
<shippeddate>1996-12-04</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>71.9700</freight>
  +
<shipname>Eastern Connection</shipname>
  +
<shipaddress>35 King George</shipaddress>
  +
<shipcity>London</shipcity>
  +
<shippostalcode>WX3 6FW</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10364</orderid>
  +
<productid>69</productid>
  +
<unitprice>28.8000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10364</orderid>
  +
<productid>71</productid>
  +
<unitprice>17.2000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10400</orderid>
  +
<customerid>EASTC</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-01-01</orderdate>
  +
<requireddate>1997-01-29</requireddate>
  +
<shippeddate>1997-01-16</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>83.9300</freight>
  +
<shipname>Eastern Connection</shipname>
  +
<shipaddress>35 King George</shipaddress>
  +
<shipcity>London</shipcity>
  +
<shippostalcode>WX3 6FW</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10400</orderid>
  +
<productid>29</productid>
  +
<unitprice>99.0000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10400</orderid>
  +
<productid>35</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10400</orderid>
  +
<productid>49</productid>
  +
<unitprice>16.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10532</orderid>
  +
<customerid>EASTC</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-05-09</orderdate>
  +
<requireddate>1997-06-06</requireddate>
  +
<shippeddate>1997-05-12</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>74.4600</freight>
  +
<shipname>Eastern Connection</shipname>
  +
<shipaddress>35 King George</shipaddress>
  +
<shipcity>London</shipcity>
  +
<shippostalcode>WX3 6FW</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10532</orderid>
  +
<productid>30</productid>
  +
<unitprice>25.8900</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10532</orderid>
  +
<productid>66</productid>
  +
<unitprice>17.0000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10726</orderid>
  +
<customerid>EASTC</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-11-03</orderdate>
  +
<requireddate>1997-11-17</requireddate>
  +
<shippeddate>1997-12-05</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>16.5600</freight>
  +
<shipname>Eastern Connection</shipname>
  +
<shipaddress>35 King George</shipaddress>
  +
<shipcity>London</shipcity>
  +
<shippostalcode>WX3 6FW</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10726</orderid>
  +
<productid>4</productid>
  +
<unitprice>22.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10726</orderid>
  +
<productid>11</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10987</orderid>
  +
<customerid>EASTC</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1998-03-31</orderdate>
  +
<requireddate>1998-04-28</requireddate>
  +
<shippeddate>1998-04-06</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>185.4800</freight>
  +
<shipname>Eastern Connection</shipname>
  +
<shipaddress>35 King George</shipaddress>
  +
<shipcity>London</shipcity>
  +
<shippostalcode>WX3 6FW</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10987</orderid>
  +
<productid>7</productid>
  +
<unitprice>30.0000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10987</orderid>
  +
<productid>43</productid>
  +
<unitprice>46.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10987</orderid>
  +
<productid>72</productid>
  +
<unitprice>34.8000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11024</orderid>
  +
<customerid>EASTC</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-04-15</orderdate>
  +
<requireddate>1998-05-13</requireddate>
  +
<shippeddate>1998-04-20</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>74.3600</freight>
  +
<shipname>Eastern Connection</shipname>
  +
<shipaddress>35 King George</shipaddress>
  +
<shipcity>London</shipcity>
  +
<shippostalcode>WX3 6FW</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>11024</orderid>
  +
<productid>26</productid>
  +
<unitprice>31.2300</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11024</orderid>
  +
<productid>33</productid>
  +
<unitprice>2.5000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11024</orderid>
  +
<productid>65</productid>
  +
<unitprice>21.0500</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11024</orderid>
  +
<productid>71</productid>
  +
<unitprice>21.5000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11047</orderid>
  +
<customerid>EASTC</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1998-04-24</orderdate>
  +
<requireddate>1998-05-22</requireddate>
  +
<shippeddate>1998-05-01</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>46.6200</freight>
  +
<shipname>Eastern Connection</shipname>
  +
<shipaddress>35 King George</shipaddress>
  +
<shipcity>London</shipcity>
  +
<shippostalcode>WX3 6FW</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>11047</orderid>
  +
<productid>1</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11047</orderid>
  +
<productid>5</productid>
  +
<unitprice>21.3500</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11056</orderid>
  +
<customerid>EASTC</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1998-04-28</orderdate>
  +
<requireddate>1998-05-12</requireddate>
  +
<shippeddate>1998-05-01</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>278.9600</freight>
  +
<shipname>Eastern Connection</shipname>
  +
<shipaddress>35 King George</shipaddress>
  +
<shipcity>London</shipcity>
  +
<shippostalcode>WX3 6FW</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>11056</orderid>
  +
<productid>7</productid>
  +
<unitprice>30.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11056</orderid>
  +
<productid>55</productid>
  +
<unitprice>24.0000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11056</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>ERNSH</customerid>
  +
<companyname>Ernst Handel</companyname>
  +
<contactname>Roland Mendel</contactname>
  +
<contacttitle>Sales Manager</contacttitle>
  +
<address>Kirchgasse 6</address>
  +
<city>Graz</city>
  +
<postalcode>8010</postalcode>
  +
<country>Austria</country>
  +
<phone>7675-3425</phone>
  +
<fax>7675-3426</fax>
  +
<orders>
  +
<orderid>10258</orderid>
  +
<customerid>ERNSH</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1996-07-17</orderdate>
  +
<requireddate>1996-08-14</requireddate>
  +
<shippeddate>1996-07-23</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>140.5100</freight>
  +
<shipname>Ernst Handel</shipname>
  +
<shipaddress>Kirchgasse 6</shipaddress>
  +
<shipcity>Graz</shipcity>
  +
<shippostalcode>8010</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10258</orderid>
  +
<productid>2</productid>
  +
<unitprice>15.2000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10258</orderid>
  +
<productid>5</productid>
  +
<unitprice>17.0000</unitprice>
  +
<quantity>65</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10258</orderid>
  +
<productid>32</productid>
  +
<unitprice>25.6000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10263</orderid>
  +
<customerid>ERNSH</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1996-07-23</orderdate>
  +
<requireddate>1996-08-20</requireddate>
  +
<shippeddate>1996-07-31</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>146.0600</freight>
  +
<shipname>Ernst Handel</shipname>
  +
<shipaddress>Kirchgasse 6</shipaddress>
  +
<shipcity>Graz</shipcity>
  +
<shippostalcode>8010</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10263</orderid>
  +
<productid>16</productid>
  +
<unitprice>13.9000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10263</orderid>
  +
<productid>24</productid>
  +
<unitprice>3.6000</unitprice>
  +
<quantity>28</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10263</orderid>
  +
<productid>30</productid>
  +
<unitprice>20.7000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10263</orderid>
  +
<productid>74</productid>
  +
<unitprice>8.0000</unitprice>
  +
<quantity>36</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10351</orderid>
  +
<customerid>ERNSH</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1996-11-11</orderdate>
  +
<requireddate>1996-12-09</requireddate>
  +
<shippeddate>1996-11-20</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>162.3300</freight>
  +
<shipname>Ernst Handel</shipname>
  +
<shipaddress>Kirchgasse 6</shipaddress>
  +
<shipcity>Graz</shipcity>
  +
<shippostalcode>8010</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10351</orderid>
  +
<productid>38</productid>
  +
<unitprice>210.8000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10351</orderid>
  +
<productid>41</productid>
  +
<unitprice>7.7000</unitprice>
  +
<quantity>13</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10351</orderid>
  +
<productid>44</productid>
  +
<unitprice>15.5000</unitprice>
  +
<quantity>77</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10351</orderid>
  +
<productid>65</productid>
  +
<unitprice>16.8000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10368</orderid>
  +
<customerid>ERNSH</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1996-11-29</orderdate>
  +
<requireddate>1996-12-27</requireddate>
  +
<shippeddate>1996-12-02</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>101.9500</freight>
  +
<shipname>Ernst Handel</shipname>
  +
<shipaddress>Kirchgasse 6</shipaddress>
  +
<shipcity>Graz</shipcity>
  +
<shippostalcode>8010</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10368</orderid>
  +
<productid>21</productid>
  +
<unitprice>8.0000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10368</orderid>
  +
<productid>28</productid>
  +
<unitprice>36.4000</unitprice>
  +
<quantity>13</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10368</orderid>
  +
<productid>57</productid>
  +
<unitprice>15.6000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10368</orderid>
  +
<productid>64</productid>
  +
<unitprice>26.6000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10382</orderid>
  +
<customerid>ERNSH</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1996-12-13</orderdate>
  +
<requireddate>1997-01-10</requireddate>
  +
<shippeddate>1996-12-16</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>94.7700</freight>
  +
<shipname>Ernst Handel</shipname>
  +
<shipaddress>Kirchgasse 6</shipaddress>
  +
<shipcity>Graz</shipcity>
  +
<shippostalcode>8010</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10382</orderid>
  +
<productid>5</productid>
  +
<unitprice>17.0000</unitprice>
  +
<quantity>32</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10382</orderid>
  +
<productid>18</productid>
  +
<unitprice>50.0000</unitprice>
  +
<quantity>9</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10382</orderid>
  +
<productid>29</productid>
  +
<unitprice>99.0000</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10382</orderid>
  +
<productid>33</productid>
  +
<unitprice>2.0000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10382</orderid>
  +
<productid>74</productid>
  +
<unitprice>8.0000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10390</orderid>
  +
<customerid>ERNSH</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1996-12-23</orderdate>
  +
<requireddate>1997-01-20</requireddate>
  +
<shippeddate>1996-12-26</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>126.3800</freight>
  +
<shipname>Ernst Handel</shipname>
  +
<shipaddress>Kirchgasse 6</shipaddress>
  +
<shipcity>Graz</shipcity>
  +
<shippostalcode>8010</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10390</orderid>
  +
<productid>31</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10390</orderid>
  +
<productid>35</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10390</orderid>
  +
<productid>46</productid>
  +
<unitprice>9.6000</unitprice>
  +
<quantity>45</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10390</orderid>
  +
<productid>72</productid>
  +
<unitprice>27.8000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10402</orderid>
  +
<customerid>ERNSH</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-01-02</orderdate>
  +
<requireddate>1997-02-13</requireddate>
  +
<shippeddate>1997-01-10</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>67.8800</freight>
  +
<shipname>Ernst Handel</shipname>
  +
<shipaddress>Kirchgasse 6</shipaddress>
  +
<shipcity>Graz</shipcity>
  +
<shippostalcode>8010</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10402</orderid>
  +
<productid>23</productid>
  +
<unitprice>7.2000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10402</orderid>
  +
<productid>63</productid>
  +
<unitprice>35.1000</unitprice>
  +
<quantity>65</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10403</orderid>
  +
<customerid>ERNSH</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-01-03</orderdate>
  +
<requireddate>1997-01-31</requireddate>
  +
<shippeddate>1997-01-09</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>73.7900</freight>
  +
<shipname>Ernst Handel</shipname>
  +
<shipaddress>Kirchgasse 6</shipaddress>
  +
<shipcity>Graz</shipcity>
  +
<shippostalcode>8010</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10403</orderid>
  +
<productid>16</productid>
  +
<unitprice>13.9000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10403</orderid>
  +
<productid>48</productid>
  +
<unitprice>10.2000</unitprice>
  +
<quantity>70</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10430</orderid>
  +
<customerid>ERNSH</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-01-30</orderdate>
  +
<requireddate>1997-02-13</requireddate>
  +
<shippeddate>1997-02-03</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>458.7800</freight>
  +
<shipname>Ernst Handel</shipname>
  +
<shipaddress>Kirchgasse 6</shipaddress>
  +
<shipcity>Graz</shipcity>
  +
<shippostalcode>8010</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10430</orderid>
  +
<productid>17</productid>
  +
<unitprice>31.2000</unitprice>
  +
<quantity>45</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10430</orderid>
  +
<productid>21</productid>
  +
<unitprice>8.0000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10430</orderid>
  +
<productid>56</productid>
  +
<unitprice>30.4000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10430</orderid>
  +
<productid>59</productid>
  +
<unitprice>44.0000</unitprice>
  +
<quantity>70</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10442</orderid>
  +
<customerid>ERNSH</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-02-11</orderdate>
  +
<requireddate>1997-03-11</requireddate>
  +
<shippeddate>1997-02-18</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>47.9400</freight>
  +
<shipname>Ernst Handel</shipname>
  +
<shipaddress>Kirchgasse 6</shipaddress>
  +
<shipcity>Graz</shipcity>
  +
<shippostalcode>8010</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10442</orderid>
  +
<productid>11</productid>
  +
<unitprice>16.8000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10442</orderid>
  +
<productid>54</productid>
  +
<unitprice>5.9000</unitprice>
  +
<quantity>80</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10442</orderid>
  +
<productid>66</productid>
  +
<unitprice>13.6000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10514</orderid>
  +
<customerid>ERNSH</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-04-22</orderdate>
  +
<requireddate>1997-05-20</requireddate>
  +
<shippeddate>1997-05-16</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>789.9500</freight>
  +
<shipname>Ernst Handel</shipname>
  +
<shipaddress>Kirchgasse 6</shipaddress>
  +
<shipcity>Graz</shipcity>
  +
<shippostalcode>8010</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10514</orderid>
  +
<productid>20</productid>
  +
<unitprice>81.0000</unitprice>
  +
<quantity>39</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10514</orderid>
  +
<productid>28</productid>
  +
<unitprice>45.6000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10514</orderid>
  +
<productid>56</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>70</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10514</orderid>
  +
<productid>65</productid>
  +
<unitprice>21.0500</unitprice>
  +
<quantity>39</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10514</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10571</orderid>
  +
<customerid>ERNSH</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-06-17</orderdate>
  +
<requireddate>1997-07-29</requireddate>
  +
<shippeddate>1997-07-04</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>26.0600</freight>
  +
<shipname>Ernst Handel</shipname>
  +
<shipaddress>Kirchgasse 6</shipaddress>
  +
<shipcity>Graz</shipcity>
  +
<shippostalcode>8010</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10571</orderid>
  +
<productid>14</productid>
  +
<unitprice>23.2500</unitprice>
  +
<quantity>11</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10571</orderid>
  +
<productid>42</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>28</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10595</orderid>
  +
<customerid>ERNSH</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-07-10</orderdate>
  +
<requireddate>1997-08-07</requireddate>
  +
<shippeddate>1997-07-14</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>96.7800</freight>
  +
<shipname>Ernst Handel</shipname>
  +
<shipaddress>Kirchgasse 6</shipaddress>
  +
<shipcity>Graz</shipcity>
  +
<shippostalcode>8010</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10595</orderid>
  +
<productid>35</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10595</orderid>
  +
<productid>61</productid>
  +
<unitprice>28.5000</unitprice>
  +
<quantity>120</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10595</orderid>
  +
<productid>69</productid>
  +
<unitprice>36.0000</unitprice>
  +
<quantity>65</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10633</orderid>
  +
<customerid>ERNSH</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-08-15</orderdate>
  +
<requireddate>1997-09-12</requireddate>
  +
<shippeddate>1997-08-18</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>477.9000</freight>
  +
<shipname>Ernst Handel</shipname>
  +
<shipaddress>Kirchgasse 6</shipaddress>
  +
<shipcity>Graz</shipcity>
  +
<shippostalcode>8010</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10633</orderid>
  +
<productid>12</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>36</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10633</orderid>
  +
<productid>13</productid>
  +
<unitprice>6.0000</unitprice>
  +
<quantity>13</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10633</orderid>
  +
<productid>26</productid>
  +
<unitprice>31.2300</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10633</orderid>
  +
<productid>62</productid>
  +
<unitprice>49.3000</unitprice>
  +
<quantity>80</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10667</orderid>
  +
<customerid>ERNSH</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-09-12</orderdate>
  +
<requireddate>1997-10-10</requireddate>
  +
<shippeddate>1997-09-19</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>78.0900</freight>
  +
<shipname>Ernst Handel</shipname>
  +
<shipaddress>Kirchgasse 6</shipaddress>
  +
<shipcity>Graz</shipcity>
  +
<shippostalcode>8010</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10667</orderid>
  +
<productid>69</productid>
  +
<unitprice>36.0000</unitprice>
  +
<quantity>45</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10667</orderid>
  +
<productid>71</productid>
  +
<unitprice>21.5000</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10698</orderid>
  +
<customerid>ERNSH</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-10-09</orderdate>
  +
<requireddate>1997-11-06</requireddate>
  +
<shippeddate>1997-10-17</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>272.4700</freight>
  +
<shipname>Ernst Handel</shipname>
  +
<shipaddress>Kirchgasse 6</shipaddress>
  +
<shipcity>Graz</shipcity>
  +
<shippostalcode>8010</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10698</orderid>
  +
<productid>11</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10698</orderid>
  +
<productid>17</productid>
  +
<unitprice>39.0000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10698</orderid>
  +
<productid>29</productid>
  +
<unitprice>123.7900</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10698</orderid>
  +
<productid>65</productid>
  +
<unitprice>21.0500</unitprice>
  +
<quantity>65</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10698</orderid>
  +
<productid>70</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10764</orderid>
  +
<customerid>ERNSH</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1997-12-03</orderdate>
  +
<requireddate>1997-12-31</requireddate>
  +
<shippeddate>1997-12-08</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>145.4500</freight>
  +
<shipname>Ernst Handel</shipname>
  +
<shipaddress>Kirchgasse 6</shipaddress>
  +
<shipcity>Graz</shipcity>
  +
<shippostalcode>8010</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10764</orderid>
  +
<productid>3</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10764</orderid>
  +
<productid>39</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>130</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10771</orderid>
  +
<customerid>ERNSH</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1997-12-10</orderdate>
  +
<requireddate>1998-01-07</requireddate>
  +
<shippeddate>1998-01-02</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>11.1900</freight>
  +
<shipname>Ernst Handel</shipname>
  +
<shipaddress>Kirchgasse 6</shipaddress>
  +
<shipcity>Graz</shipcity>
  +
<shippostalcode>8010</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10771</orderid>
  +
<productid>71</productid>
  +
<unitprice>21.5000</unitprice>
  +
<quantity>16</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10773</orderid>
  +
<customerid>ERNSH</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-12-11</orderdate>
  +
<requireddate>1998-01-08</requireddate>
  +
<shippeddate>1997-12-16</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>96.4300</freight>
  +
<shipname>Ernst Handel</shipname>
  +
<shipaddress>Kirchgasse 6</shipaddress>
  +
<shipcity>Graz</shipcity>
  +
<shippostalcode>8010</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10773</orderid>
  +
<productid>17</productid>
  +
<unitprice>39.0000</unitprice>
  +
<quantity>33</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10773</orderid>
  +
<productid>31</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>70</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10773</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>7</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10776</orderid>
  +
<customerid>ERNSH</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-12-15</orderdate>
  +
<requireddate>1998-01-12</requireddate>
  +
<shippeddate>1997-12-18</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>351.5300</freight>
  +
<shipname>Ernst Handel</shipname>
  +
<shipaddress>Kirchgasse 6</shipaddress>
  +
<shipcity>Graz</shipcity>
  +
<shippostalcode>8010</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10776</orderid>
  +
<productid>31</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>16</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10776</orderid>
  +
<productid>42</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10776</orderid>
  +
<productid>45</productid>
  +
<unitprice>9.5000</unitprice>
  +
<quantity>27</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10776</orderid>
  +
<productid>51</productid>
  +
<unitprice>53.0000</unitprice>
  +
<quantity>120</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10795</orderid>
  +
<customerid>ERNSH</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-12-24</orderdate>
  +
<requireddate>1998-01-21</requireddate>
  +
<shippeddate>1998-01-20</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>126.6600</freight>
  +
<shipname>Ernst Handel</shipname>
  +
<shipaddress>Kirchgasse 6</shipaddress>
  +
<shipcity>Graz</shipcity>
  +
<shippostalcode>8010</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10795</orderid>
  +
<productid>16</productid>
  +
<unitprice>17.4500</unitprice>
  +
<quantity>65</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10795</orderid>
  +
<productid>17</productid>
  +
<unitprice>39.0000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10836</orderid>
  +
<customerid>ERNSH</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1998-01-16</orderdate>
  +
<requireddate>1998-02-13</requireddate>
  +
<shippeddate>1998-01-21</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>411.8800</freight>
  +
<shipname>Ernst Handel</shipname>
  +
<shipaddress>Kirchgasse 6</shipaddress>
  +
<shipcity>Graz</shipcity>
  +
<shippostalcode>8010</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10836</orderid>
  +
<productid>22</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>52</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10836</orderid>
  +
<productid>35</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10836</orderid>
  +
<productid>57</productid>
  +
<unitprice>19.5000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10836</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10836</orderid>
  +
<productid>64</productid>
  +
<unitprice>33.2500</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10854</orderid>
  +
<customerid>ERNSH</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-01-27</orderdate>
  +
<requireddate>1998-02-24</requireddate>
  +
<shippeddate>1998-02-05</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>100.2200</freight>
  +
<shipname>Ernst Handel</shipname>
  +
<shipaddress>Kirchgasse 6</shipaddress>
  +
<shipcity>Graz</shipcity>
  +
<shippostalcode>8010</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10854</orderid>
  +
<productid>10</productid>
  +
<unitprice>31.0000</unitprice>
  +
<quantity>100</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10854</orderid>
  +
<productid>13</productid>
  +
<unitprice>6.0000</unitprice>
  +
<quantity>65</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10895</orderid>
  +
<customerid>ERNSH</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-02-18</orderdate>
  +
<requireddate>1998-03-18</requireddate>
  +
<shippeddate>1998-02-23</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>162.7500</freight>
  +
<shipname>Ernst Handel</shipname>
  +
<shipaddress>Kirchgasse 6</shipaddress>
  +
<shipcity>Graz</shipcity>
  +
<shippostalcode>8010</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10895</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>110</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10895</orderid>
  +
<productid>39</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>45</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10895</orderid>
  +
<productid>40</productid>
  +
<unitprice>18.4000</unitprice>
  +
<quantity>91</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10895</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>100</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10968</orderid>
  +
<customerid>ERNSH</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-03-23</orderdate>
  +
<requireddate>1998-04-20</requireddate>
  +
<shippeddate>1998-04-01</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>74.6000</freight>
  +
<shipname>Ernst Handel</shipname>
  +
<shipaddress>Kirchgasse 6</shipaddress>
  +
<shipcity>Graz</shipcity>
  +
<shippostalcode>8010</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10968</orderid>
  +
<productid>12</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10968</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10968</orderid>
  +
<productid>64</productid>
  +
<unitprice>33.2500</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10979</orderid>
  +
<customerid>ERNSH</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1998-03-26</orderdate>
  +
<requireddate>1998-04-23</requireddate>
  +
<shippeddate>1998-03-31</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>353.0700</freight>
  +
<shipname>Ernst Handel</shipname>
  +
<shipaddress>Kirchgasse 6</shipaddress>
  +
<shipcity>Graz</shipcity>
  +
<shippostalcode>8010</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10979</orderid>
  +
<productid>7</productid>
  +
<unitprice>30.0000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10979</orderid>
  +
<productid>12</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10979</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>80</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10979</orderid>
  +
<productid>27</productid>
  +
<unitprice>43.9000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10979</orderid>
  +
<productid>31</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10979</orderid>
  +
<productid>63</productid>
  +
<unitprice>43.9000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10990</orderid>
  +
<customerid>ERNSH</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-04-01</orderdate>
  +
<requireddate>1998-05-13</requireddate>
  +
<shippeddate>1998-04-07</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>117.6100</freight>
  +
<shipname>Ernst Handel</shipname>
  +
<shipaddress>Kirchgasse 6</shipaddress>
  +
<shipcity>Graz</shipcity>
  +
<shippostalcode>8010</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10990</orderid>
  +
<productid>21</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>65</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10990</orderid>
  +
<productid>34</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10990</orderid>
  +
<productid>55</productid>
  +
<unitprice>24.0000</unitprice>
  +
<quantity>65</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10990</orderid>
  +
<productid>61</productid>
  +
<unitprice>28.5000</unitprice>
  +
<quantity>66</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11008</orderid>
  +
<customerid>ERNSH</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1998-04-08</orderdate>
  +
<requireddate>1998-05-06</requireddate>
  +
<shipvia>3</shipvia>
  +
<freight>79.4600</freight>
  +
<shipname>Ernst Handel</shipname>
  +
<shipaddress>Kirchgasse 6</shipaddress>
  +
<shipcity>Graz</shipcity>
  +
<shippostalcode>8010</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>11008</orderid>
  +
<productid>28</productid>
  +
<unitprice>45.6000</unitprice>
  +
<quantity>70</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11008</orderid>
  +
<productid>34</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>90</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11008</orderid>
  +
<productid>71</productid>
  +
<unitprice>21.5000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11017</orderid>
  +
<customerid>ERNSH</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1998-04-13</orderdate>
  +
<requireddate>1998-05-11</requireddate>
  +
<shippeddate>1998-04-20</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>754.2600</freight>
  +
<shipname>Ernst Handel</shipname>
  +
<shipaddress>Kirchgasse 6</shipaddress>
  +
<shipcity>Graz</shipcity>
  +
<shippostalcode>8010</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>11017</orderid>
  +
<productid>3</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11017</orderid>
  +
<productid>59</productid>
  +
<unitprice>55.0000</unitprice>
  +
<quantity>110</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11017</orderid>
  +
<productid>70</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11072</orderid>
  +
<customerid>ERNSH</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-05-05</orderdate>
  +
<requireddate>1998-06-02</requireddate>
  +
<shipvia>2</shipvia>
  +
<freight>258.6400</freight>
  +
<shipname>Ernst Handel</shipname>
  +
<shipaddress>Kirchgasse 6</shipaddress>
  +
<shipcity>Graz</shipcity>
  +
<shippostalcode>8010</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>11072</orderid>
  +
<productid>2</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11072</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11072</orderid>
  +
<productid>50</productid>
  +
<unitprice>16.2500</unitprice>
  +
<quantity>22</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11072</orderid>
  +
<productid>64</productid>
  +
<unitprice>33.2500</unitprice>
  +
<quantity>130</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>FAMIA</customerid>
  +
<companyname>Familia Arquibaldo</companyname>
  +
<contactname>Aria Cruz</contactname>
  +
<contacttitle>Marketing Assistant</contacttitle>
  +
<address>Rua Orós, 92</address>
  +
<city>Sao Paulo</city>
  +
<region>SP</region>
  +
<postalcode>05442-030</postalcode>
  +
<country>Brazil</country>
  +
<phone>(11) 555-9857</phone>
  +
<orders>
  +
<orderid>10347</orderid>
  +
<customerid>FAMIA</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1996-11-06</orderdate>
  +
<requireddate>1996-12-04</requireddate>
  +
<shippeddate>1996-11-08</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>3.1000</freight>
  +
<shipname>Familia Arquibaldo</shipname>
  +
<shipaddress>Rua Orós, 92</shipaddress>
  +
<shipcity>Sao Paulo</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>05442-030</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10347</orderid>
  +
<productid>25</productid>
  +
<unitprice>11.2000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10347</orderid>
  +
<productid>39</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10347</orderid>
  +
<productid>40</productid>
  +
<unitprice>14.7000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10347</orderid>
  +
<productid>75</productid>
  +
<unitprice>6.2000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10386</orderid>
  +
<customerid>FAMIA</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1996-12-18</orderdate>
  +
<requireddate>1997-01-01</requireddate>
  +
<shippeddate>1996-12-25</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>13.9900</freight>
  +
<shipname>Familia Arquibaldo</shipname>
  +
<shipaddress>Rua Orós, 92</shipaddress>
  +
<shipcity>Sao Paulo</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>05442-030</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10386</orderid>
  +
<productid>24</productid>
  +
<unitprice>3.6000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10386</orderid>
  +
<productid>34</productid>
  +
<unitprice>11.2000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10414</orderid>
  +
<customerid>FAMIA</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-01-14</orderdate>
  +
<requireddate>1997-02-11</requireddate>
  +
<shippeddate>1997-01-17</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>21.4800</freight>
  +
<shipname>Familia Arquibaldo</shipname>
  +
<shipaddress>Rua Orós, 92</shipaddress>
  +
<shipcity>Sao Paulo</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>05442-030</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10414</orderid>
  +
<productid>19</productid>
  +
<unitprice>7.3000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10414</orderid>
  +
<productid>33</productid>
  +
<unitprice>2.0000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10512</orderid>
  +
<customerid>FAMIA</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-04-21</orderdate>
  +
<requireddate>1997-05-19</requireddate>
  +
<shippeddate>1997-04-24</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>3.5300</freight>
  +
<shipname>Familia Arquibaldo</shipname>
  +
<shipaddress>Rua Orós, 92</shipaddress>
  +
<shipcity>Sao Paulo</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>05442-030</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10512</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10512</orderid>
  +
<productid>46</productid>
  +
<unitprice>12.0000</unitprice>
  +
<quantity>9</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10512</orderid>
  +
<productid>47</productid>
  +
<unitprice>9.5000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10512</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10581</orderid>
  +
<customerid>FAMIA</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-06-26</orderdate>
  +
<requireddate>1997-07-24</requireddate>
  +
<shippeddate>1997-07-02</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>3.0100</freight>
  +
<shipname>Familia Arquibaldo</shipname>
  +
<shipaddress>Rua Orós, 92</shipaddress>
  +
<shipcity>Sao Paulo</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>05442-030</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10581</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10650</orderid>
  +
<customerid>FAMIA</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1997-08-29</orderdate>
  +
<requireddate>1997-09-26</requireddate>
  +
<shippeddate>1997-09-03</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>176.8100</freight>
  +
<shipname>Familia Arquibaldo</shipname>
  +
<shipaddress>Rua Orós, 92</shipaddress>
  +
<shipcity>Sao Paulo</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>05442-030</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10650</orderid>
  +
<productid>30</productid>
  +
<unitprice>25.8900</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10650</orderid>
  +
<productid>53</productid>
  +
<unitprice>32.8000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10650</orderid>
  +
<productid>54</productid>
  +
<unitprice>7.4500</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10725</orderid>
  +
<customerid>FAMIA</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-10-31</orderdate>
  +
<requireddate>1997-11-28</requireddate>
  +
<shippeddate>1997-11-05</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>10.8300</freight>
  +
<shipname>Familia Arquibaldo</shipname>
  +
<shipaddress>Rua Orós, 92</shipaddress>
  +
<shipcity>Sao Paulo</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>05442-030</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10725</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10725</orderid>
  +
<productid>52</productid>
  +
<unitprice>7.0000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10725</orderid>
  +
<productid>55</productid>
  +
<unitprice>24.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>FISSA</customerid>
  +
<companyname>FISSA Fabrica Inter. Salchichas S.A.</companyname>
  +
<contactname>Diego Roel</contactname>
  +
<contacttitle>Accounting Manager</contacttitle>
  +
<address>C/ Moralzarzal, 86</address>
  +
<city>Madrid</city>
  +
<postalcode>28034</postalcode>
  +
<country>Spain</country>
  +
<phone>(91) 555 94 44</phone>
  +
<fax>(91) 555 55 93</fax>
  +
</customers>
  +
<customers>
  +
<customerid>FOLIG</customerid>
  +
<companyname>Folies gourmandes</companyname>
  +
<contactname>Martine Rancé</contactname>
  +
<contacttitle>Assistant Sales Agent</contacttitle>
  +
<address>184, chaussée de Tournai</address>
  +
<city>Lille</city>
  +
<postalcode>59000</postalcode>
  +
<country>France</country>
  +
<phone>20.16.10.16</phone>
  +
<fax>20.16.10.17</fax>
  +
<orders>
  +
<orderid>10408</orderid>
  +
<customerid>FOLIG</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-01-08</orderdate>
  +
<requireddate>1997-02-05</requireddate>
  +
<shippeddate>1997-01-14</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>11.2600</freight>
  +
<shipname>Folies gourmandes</shipname>
  +
<shipaddress>184, chaussée de Tournai</shipaddress>
  +
<shipcity>Lille</shipcity>
  +
<shippostalcode>59000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10408</orderid>
  +
<productid>37</productid>
  +
<unitprice>20.8000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10408</orderid>
  +
<productid>54</productid>
  +
<unitprice>5.9000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10408</orderid>
  +
<productid>62</productid>
  +
<unitprice>39.4000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10480</orderid>
  +
<customerid>FOLIG</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1997-03-20</orderdate>
  +
<requireddate>1997-04-17</requireddate>
  +
<shippeddate>1997-03-24</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>1.3500</freight>
  +
<shipname>Folies gourmandes</shipname>
  +
<shipaddress>184, chaussée de Tournai</shipaddress>
  +
<shipcity>Lille</shipcity>
  +
<shippostalcode>59000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10480</orderid>
  +
<productid>47</productid>
  +
<unitprice>7.6000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10480</orderid>
  +
<productid>59</productid>
  +
<unitprice>44.0000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10634</orderid>
  +
<customerid>FOLIG</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-08-15</orderdate>
  +
<requireddate>1997-09-12</requireddate>
  +
<shippeddate>1997-08-21</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>487.3800</freight>
  +
<shipname>Folies gourmandes</shipname>
  +
<shipaddress>184, chaussée de Tournai</shipaddress>
  +
<shipcity>Lille</shipcity>
  +
<shippostalcode>59000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10634</orderid>
  +
<productid>7</productid>
  +
<unitprice>30.0000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10634</orderid>
  +
<productid>18</productid>
  +
<unitprice>62.5000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10634</orderid>
  +
<productid>51</productid>
  +
<unitprice>53.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10634</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10763</orderid>
  +
<customerid>FOLIG</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-12-03</orderdate>
  +
<requireddate>1997-12-31</requireddate>
  +
<shippeddate>1997-12-08</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>37.3500</freight>
  +
<shipname>Folies gourmandes</shipname>
  +
<shipaddress>184, chaussée de Tournai</shipaddress>
  +
<shipcity>Lille</shipcity>
  +
<shippostalcode>59000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10763</orderid>
  +
<productid>21</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10763</orderid>
  +
<productid>22</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10763</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10789</orderid>
  +
<customerid>FOLIG</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-12-22</orderdate>
  +
<requireddate>1998-01-19</requireddate>
  +
<shippeddate>1997-12-31</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>100.6000</freight>
  +
<shipname>Folies gourmandes</shipname>
  +
<shipaddress>184, chaussée de Tournai</shipaddress>
  +
<shipcity>Lille</shipcity>
  +
<shippostalcode>59000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10789</orderid>
  +
<productid>18</productid>
  +
<unitprice>62.5000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10789</orderid>
  +
<productid>35</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10789</orderid>
  +
<productid>63</productid>
  +
<unitprice>43.9000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10789</orderid>
  +
<productid>68</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>FOLKO</customerid>
  +
<companyname>Folk och fä HB</companyname>
  +
<contactname>Maria Larsson</contactname>
  +
<contacttitle>Owner</contacttitle>
  +
<address>Åkergatan 24</address>
  +
<city>Bräcke</city>
  +
<postalcode>S-844 67</postalcode>
  +
<country>Sweden</country>
  +
<phone>0695-34 67 21</phone>
  +
<orders>
  +
<orderid>10264</orderid>
  +
<customerid>FOLKO</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1996-07-24</orderdate>
  +
<requireddate>1996-08-21</requireddate>
  +
<shippeddate>1996-08-23</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>3.6700</freight>
  +
<shipname>Folk och fä HB</shipname>
  +
<shipaddress>Åkergatan 24</shipaddress>
  +
<shipcity>Bräcke</shipcity>
  +
<shippostalcode>S-844 67</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10264</orderid>
  +
<productid>2</productid>
  +
<unitprice>15.2000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10264</orderid>
  +
<productid>41</productid>
  +
<unitprice>7.7000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10327</orderid>
  +
<customerid>FOLKO</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1996-10-11</orderdate>
  +
<requireddate>1996-11-08</requireddate>
  +
<shippeddate>1996-10-14</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>63.3600</freight>
  +
<shipname>Folk och fä HB</shipname>
  +
<shipaddress>Åkergatan 24</shipaddress>
  +
<shipcity>Bräcke</shipcity>
  +
<shippostalcode>S-844 67</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10327</orderid>
  +
<productid>2</productid>
  +
<unitprice>15.2000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10327</orderid>
  +
<productid>11</productid>
  +
<unitprice>16.8000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10327</orderid>
  +
<productid>30</productid>
  +
<unitprice>20.7000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10327</orderid>
  +
<productid>58</productid>
  +
<unitprice>10.6000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10378</orderid>
  +
<customerid>FOLKO</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1996-12-10</orderdate>
  +
<requireddate>1997-01-07</requireddate>
  +
<shippeddate>1996-12-19</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>5.4400</freight>
  +
<shipname>Folk och fä HB</shipname>
  +
<shipaddress>Åkergatan 24</shipaddress>
  +
<shipcity>Bräcke</shipcity>
  +
<shippostalcode>S-844 67</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10378</orderid>
  +
<productid>71</productid>
  +
<unitprice>17.2000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10434</orderid>
  +
<customerid>FOLKO</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-02-03</orderdate>
  +
<requireddate>1997-03-03</requireddate>
  +
<shippeddate>1997-02-13</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>17.9200</freight>
  +
<shipname>Folk och fä HB</shipname>
  +
<shipaddress>Åkergatan 24</shipaddress>
  +
<shipcity>Bräcke</shipcity>
  +
<shippostalcode>S-844 67</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10434</orderid>
  +
<productid>11</productid>
  +
<unitprice>16.8000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10434</orderid>
  +
<productid>76</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10460</orderid>
  +
<customerid>FOLKO</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-02-28</orderdate>
  +
<requireddate>1997-03-28</requireddate>
  +
<shippeddate>1997-03-03</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>16.2700</freight>
  +
<shipname>Folk och fä HB</shipname>
  +
<shipaddress>Åkergatan 24</shipaddress>
  +
<shipcity>Bräcke</shipcity>
  +
<shippostalcode>S-844 67</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10460</orderid>
  +
<productid>68</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10460</orderid>
  +
<productid>75</productid>
  +
<unitprice>6.2000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10533</orderid>
  +
<customerid>FOLKO</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-05-12</orderdate>
  +
<requireddate>1997-06-09</requireddate>
  +
<shippeddate>1997-05-22</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>188.0400</freight>
  +
<shipname>Folk och fä HB</shipname>
  +
<shipaddress>Åkergatan 24</shipaddress>
  +
<shipcity>Bräcke</shipcity>
  +
<shippostalcode>S-844 67</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10533</orderid>
  +
<productid>4</productid>
  +
<unitprice>22.0000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10533</orderid>
  +
<productid>72</productid>
  +
<unitprice>34.8000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10533</orderid>
  +
<productid>73</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10561</orderid>
  +
<customerid>FOLKO</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-06-06</orderdate>
  +
<requireddate>1997-07-04</requireddate>
  +
<shippeddate>1997-06-09</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>242.2100</freight>
  +
<shipname>Folk och fä HB</shipname>
  +
<shipaddress>Åkergatan 24</shipaddress>
  +
<shipcity>Bräcke</shipcity>
  +
<shippostalcode>S-844 67</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10561</orderid>
  +
<productid>44</productid>
  +
<unitprice>19.4500</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10561</orderid>
  +
<productid>51</productid>
  +
<unitprice>53.0000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10703</orderid>
  +
<customerid>FOLKO</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1997-10-14</orderdate>
  +
<requireddate>1997-11-11</requireddate>
  +
<shippeddate>1997-10-20</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>152.3000</freight>
  +
<shipname>Folk och fä HB</shipname>
  +
<shipaddress>Åkergatan 24</shipaddress>
  +
<shipcity>Bräcke</shipcity>
  +
<shippostalcode>S-844 67</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10703</orderid>
  +
<productid>2</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10703</orderid>
  +
<productid>59</productid>
  +
<unitprice>55.0000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10703</orderid>
  +
<productid>73</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10762</orderid>
  +
<customerid>FOLKO</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-12-02</orderdate>
  +
<requireddate>1997-12-30</requireddate>
  +
<shippeddate>1997-12-09</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>328.7400</freight>
  +
<shipname>Folk och fä HB</shipname>
  +
<shipaddress>Åkergatan 24</shipaddress>
  +
<shipcity>Bräcke</shipcity>
  +
<shippostalcode>S-844 67</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10762</orderid>
  +
<productid>39</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>16</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10762</orderid>
  +
<productid>47</productid>
  +
<unitprice>9.5000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10762</orderid>
  +
<productid>51</productid>
  +
<unitprice>53.0000</unitprice>
  +
<quantity>28</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10762</orderid>
  +
<productid>56</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10774</orderid>
  +
<customerid>FOLKO</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-12-11</orderdate>
  +
<requireddate>1997-12-25</requireddate>
  +
<shippeddate>1997-12-12</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>48.2000</freight>
  +
<shipname>Folk och fä HB</shipname>
  +
<shipaddress>Åkergatan 24</shipaddress>
  +
<shipcity>Bräcke</shipcity>
  +
<shippostalcode>S-844 67</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10774</orderid>
  +
<productid>31</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10774</orderid>
  +
<productid>66</productid>
  +
<unitprice>17.0000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10824</orderid>
  +
<customerid>FOLKO</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1998-01-09</orderdate>
  +
<requireddate>1998-02-06</requireddate>
  +
<shippeddate>1998-01-30</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>1.2300</freight>
  +
<shipname>Folk och fä HB</shipname>
  +
<shipaddress>Åkergatan 24</shipaddress>
  +
<shipcity>Bräcke</shipcity>
  +
<shippostalcode>S-844 67</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10824</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10824</orderid>
  +
<productid>70</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>9</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10880</orderid>
  +
<customerid>FOLKO</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1998-02-10</orderdate>
  +
<requireddate>1998-03-24</requireddate>
  +
<shippeddate>1998-02-18</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>88.0100</freight>
  +
<shipname>Folk och fä HB</shipname>
  +
<shipaddress>Åkergatan 24</shipaddress>
  +
<shipcity>Bräcke</shipcity>
  +
<shippostalcode>S-844 67</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10880</orderid>
  +
<productid>23</productid>
  +
<unitprice>9.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10880</orderid>
  +
<productid>61</productid>
  +
<unitprice>28.5000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10880</orderid>
  +
<productid>70</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10902</orderid>
  +
<customerid>FOLKO</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-02-23</orderdate>
  +
<requireddate>1998-03-23</requireddate>
  +
<shippeddate>1998-03-03</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>44.1500</freight>
  +
<shipname>Folk och fä HB</shipname>
  +
<shipaddress>Åkergatan 24</shipaddress>
  +
<shipcity>Bräcke</shipcity>
  +
<shippostalcode>S-844 67</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10902</orderid>
  +
<productid>55</productid>
  +
<unitprice>24.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10902</orderid>
  +
<productid>62</productid>
  +
<unitprice>49.3000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10955</orderid>
  +
<customerid>FOLKO</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1998-03-17</orderdate>
  +
<requireddate>1998-04-14</requireddate>
  +
<shippeddate>1998-03-20</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>3.2600</freight>
  +
<shipname>Folk och fä HB</shipname>
  +
<shipaddress>Åkergatan 24</shipaddress>
  +
<shipcity>Bräcke</shipcity>
  +
<shippostalcode>S-844 67</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10955</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10977</orderid>
  +
<customerid>FOLKO</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1998-03-26</orderdate>
  +
<requireddate>1998-04-23</requireddate>
  +
<shippeddate>1998-04-10</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>208.5000</freight>
  +
<shipname>Folk och fä HB</shipname>
  +
<shipaddress>Åkergatan 24</shipaddress>
  +
<shipcity>Bräcke</shipcity>
  +
<shippostalcode>S-844 67</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10977</orderid>
  +
<productid>39</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10977</orderid>
  +
<productid>47</productid>
  +
<unitprice>9.5000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10977</orderid>
  +
<productid>51</productid>
  +
<unitprice>53.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10977</orderid>
  +
<productid>63</productid>
  +
<unitprice>43.9000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10980</orderid>
  +
<customerid>FOLKO</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-03-27</orderdate>
  +
<requireddate>1998-05-08</requireddate>
  +
<shippeddate>1998-04-17</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>1.2600</freight>
  +
<shipname>Folk och fä HB</shipname>
  +
<shipaddress>Åkergatan 24</shipaddress>
  +
<shipcity>Bräcke</shipcity>
  +
<shippostalcode>S-844 67</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10980</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10993</orderid>
  +
<customerid>FOLKO</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1998-04-01</orderdate>
  +
<requireddate>1998-04-29</requireddate>
  +
<shippeddate>1998-04-10</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>8.8100</freight>
  +
<shipname>Folk och fä HB</shipname>
  +
<shipaddress>Åkergatan 24</shipaddress>
  +
<shipcity>Bräcke</shipcity>
  +
<shippostalcode>S-844 67</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>10993</orderid>
  +
<productid>29</productid>
  +
<unitprice>123.7900</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10993</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11001</orderid>
  +
<customerid>FOLKO</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-04-06</orderdate>
  +
<requireddate>1998-05-04</requireddate>
  +
<shippeddate>1998-04-14</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>197.3000</freight>
  +
<shipname>Folk och fä HB</shipname>
  +
<shipaddress>Åkergatan 24</shipaddress>
  +
<shipcity>Bräcke</shipcity>
  +
<shippostalcode>S-844 67</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>11001</orderid>
  +
<productid>7</productid>
  +
<unitprice>30.0000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11001</orderid>
  +
<productid>22</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11001</orderid>
  +
<productid>46</productid>
  +
<unitprice>12.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11001</orderid>
  +
<productid>55</productid>
  +
<unitprice>24.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11050</orderid>
  +
<customerid>FOLKO</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1998-04-27</orderdate>
  +
<requireddate>1998-05-25</requireddate>
  +
<shippeddate>1998-05-05</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>59.4100</freight>
  +
<shipname>Folk och fä HB</shipname>
  +
<shipaddress>Åkergatan 24</shipaddress>
  +
<shipcity>Bräcke</shipcity>
  +
<shippostalcode>S-844 67</shippostalcode>
  +
<shipcountry>Sweden</shipcountry>
  +
<orderdetails>
  +
<orderid>11050</orderid>
  +
<productid>76</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>FRANK</customerid>
  +
<companyname>Frankenversand</companyname>
  +
<contactname>Peter Franken</contactname>
  +
<contacttitle>Marketing Manager</contacttitle>
  +
<address>Berliner Platz 43</address>
  +
<city>München</city>
  +
<postalcode>80805</postalcode>
  +
<country>Germany</country>
  +
<phone>089-0877310</phone>
  +
<fax>089-0877451</fax>
  +
<orders>
  +
<orderid>10267</orderid>
  +
<customerid>FRANK</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1996-07-29</orderdate>
  +
<requireddate>1996-08-26</requireddate>
  +
<shippeddate>1996-08-06</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>208.5800</freight>
  +
<shipname>Frankenversand</shipname>
  +
<shipaddress>Berliner Platz 43</shipaddress>
  +
<shipcity>München</shipcity>
  +
<shippostalcode>80805</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10267</orderid>
  +
<productid>40</productid>
  +
<unitprice>14.7000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10267</orderid>
  +
<productid>59</productid>
  +
<unitprice>44.0000</unitprice>
  +
<quantity>70</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10267</orderid>
  +
<productid>76</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10337</orderid>
  +
<customerid>FRANK</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1996-10-24</orderdate>
  +
<requireddate>1996-11-21</requireddate>
  +
<shippeddate>1996-10-29</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>108.2600</freight>
  +
<shipname>Frankenversand</shipname>
  +
<shipaddress>Berliner Platz 43</shipaddress>
  +
<shipcity>München</shipcity>
  +
<shippostalcode>80805</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10337</orderid>
  +
<productid>23</productid>
  +
<unitprice>7.2000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10337</orderid>
  +
<productid>26</productid>
  +
<unitprice>24.9000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10337</orderid>
  +
<productid>36</productid>
  +
<unitprice>15.2000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10337</orderid>
  +
<productid>37</productid>
  +
<unitprice>20.8000</unitprice>
  +
<quantity>28</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10337</orderid>
  +
<productid>72</productid>
  +
<unitprice>27.8000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10342</orderid>
  +
<customerid>FRANK</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1996-10-30</orderdate>
  +
<requireddate>1996-11-13</requireddate>
  +
<shippeddate>1996-11-04</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>54.8300</freight>
  +
<shipname>Frankenversand</shipname>
  +
<shipaddress>Berliner Platz 43</shipaddress>
  +
<shipcity>München</shipcity>
  +
<shippostalcode>80805</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10342</orderid>
  +
<productid>2</productid>
  +
<unitprice>15.2000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10342</orderid>
  +
<productid>31</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>56</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10342</orderid>
  +
<productid>36</productid>
  +
<unitprice>15.2000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10342</orderid>
  +
<productid>55</productid>
  +
<unitprice>19.2000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10396</orderid>
  +
<customerid>FRANK</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1996-12-27</orderdate>
  +
<requireddate>1997-01-10</requireddate>
  +
<shippeddate>1997-01-06</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>135.3500</freight>
  +
<shipname>Frankenversand</shipname>
  +
<shipaddress>Berliner Platz 43</shipaddress>
  +
<shipcity>München</shipcity>
  +
<shippostalcode>80805</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10396</orderid>
  +
<productid>23</productid>
  +
<unitprice>7.2000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10396</orderid>
  +
<productid>71</productid>
  +
<unitprice>17.2000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10396</orderid>
  +
<productid>72</productid>
  +
<unitprice>27.8000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10488</orderid>
  +
<customerid>FRANK</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-03-27</orderdate>
  +
<requireddate>1997-04-24</requireddate>
  +
<shippeddate>1997-04-02</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>4.9300</freight>
  +
<shipname>Frankenversand</shipname>
  +
<shipaddress>Berliner Platz 43</shipaddress>
  +
<shipcity>München</shipcity>
  +
<shippostalcode>80805</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10488</orderid>
  +
<productid>59</productid>
  +
<unitprice>44.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10488</orderid>
  +
<productid>73</productid>
  +
<unitprice>12.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10560</orderid>
  +
<customerid>FRANK</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-06-06</orderdate>
  +
<requireddate>1997-07-04</requireddate>
  +
<shippeddate>1997-06-09</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>36.6500</freight>
  +
<shipname>Frankenversand</shipname>
  +
<shipaddress>Berliner Platz 43</shipaddress>
  +
<shipcity>München</shipcity>
  +
<shippostalcode>80805</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10560</orderid>
  +
<productid>30</productid>
  +
<unitprice>25.8900</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10560</orderid>
  +
<productid>62</productid>
  +
<unitprice>49.3000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10623</orderid>
  +
<customerid>FRANK</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-08-07</orderdate>
  +
<requireddate>1997-09-04</requireddate>
  +
<shippeddate>1997-08-12</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>97.1800</freight>
  +
<shipname>Frankenversand</shipname>
  +
<shipaddress>Berliner Platz 43</shipaddress>
  +
<shipcity>München</shipcity>
  +
<shippostalcode>80805</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10623</orderid>
  +
<productid>14</productid>
  +
<unitprice>23.2500</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10623</orderid>
  +
<productid>19</productid>
  +
<unitprice>9.2000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10623</orderid>
  +
<productid>21</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10623</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10623</orderid>
  +
<productid>35</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10653</orderid>
  +
<customerid>FRANK</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-09-02</orderdate>
  +
<requireddate>1997-09-30</requireddate>
  +
<shippeddate>1997-09-19</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>93.2500</freight>
  +
<shipname>Frankenversand</shipname>
  +
<shipaddress>Berliner Platz 43</shipaddress>
  +
<shipcity>München</shipcity>
  +
<shippostalcode>80805</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10653</orderid>
  +
<productid>16</productid>
  +
<unitprice>17.4500</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10653</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10670</orderid>
  +
<customerid>FRANK</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-09-16</orderdate>
  +
<requireddate>1997-10-14</requireddate>
  +
<shippeddate>1997-09-18</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>203.4800</freight>
  +
<shipname>Frankenversand</shipname>
  +
<shipaddress>Berliner Platz 43</shipaddress>
  +
<shipcity>München</shipcity>
  +
<shippostalcode>80805</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10670</orderid>
  +
<productid>23</productid>
  +
<unitprice>9.0000</unitprice>
  +
<quantity>32</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10670</orderid>
  +
<productid>46</productid>
  +
<unitprice>12.0000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10670</orderid>
  +
<productid>67</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10670</orderid>
  +
<productid>73</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10670</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10675</orderid>
  +
<customerid>FRANK</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1997-09-19</orderdate>
  +
<requireddate>1997-10-17</requireddate>
  +
<shippeddate>1997-09-23</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>31.8500</freight>
  +
<shipname>Frankenversand</shipname>
  +
<shipaddress>Berliner Platz 43</shipaddress>
  +
<shipcity>München</shipcity>
  +
<shippostalcode>80805</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10675</orderid>
  +
<productid>14</productid>
  +
<unitprice>23.2500</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10675</orderid>
  +
<productid>53</productid>
  +
<unitprice>32.8000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10675</orderid>
  +
<productid>58</productid>
  +
<unitprice>13.2500</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10717</orderid>
  +
<customerid>FRANK</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-10-24</orderdate>
  +
<requireddate>1997-11-21</requireddate>
  +
<shippeddate>1997-10-29</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>59.2500</freight>
  +
<shipname>Frankenversand</shipname>
  +
<shipaddress>Berliner Platz 43</shipaddress>
  +
<shipcity>München</shipcity>
  +
<shippostalcode>80805</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10717</orderid>
  +
<productid>21</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>32</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10717</orderid>
  +
<productid>54</productid>
  +
<unitprice>7.4500</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10717</orderid>
  +
<productid>69</productid>
  +
<unitprice>36.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10791</orderid>
  +
<customerid>FRANK</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1997-12-23</orderdate>
  +
<requireddate>1998-01-20</requireddate>
  +
<shippeddate>1998-01-01</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>16.8500</freight>
  +
<shipname>Frankenversand</shipname>
  +
<shipaddress>Berliner Platz 43</shipaddress>
  +
<shipcity>München</shipcity>
  +
<shippostalcode>80805</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10791</orderid>
  +
<productid>29</productid>
  +
<unitprice>123.7900</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10791</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10859</orderid>
  +
<customerid>FRANK</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-01-29</orderdate>
  +
<requireddate>1998-02-26</requireddate>
  +
<shippeddate>1998-02-02</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>76.1000</freight>
  +
<shipname>Frankenversand</shipname>
  +
<shipaddress>Berliner Platz 43</shipaddress>
  +
<shipcity>München</shipcity>
  +
<shippostalcode>80805</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10859</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10859</orderid>
  +
<productid>54</productid>
  +
<unitprice>7.4500</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10859</orderid>
  +
<productid>64</productid>
  +
<unitprice>33.2500</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10929</orderid>
  +
<customerid>FRANK</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1998-03-05</orderdate>
  +
<requireddate>1998-04-02</requireddate>
  +
<shippeddate>1998-03-12</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>33.9300</freight>
  +
<shipname>Frankenversand</shipname>
  +
<shipaddress>Berliner Platz 43</shipaddress>
  +
<shipcity>München</shipcity>
  +
<shippostalcode>80805</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10929</orderid>
  +
<productid>21</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10929</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>49</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10929</orderid>
  +
<productid>77</productid>
  +
<unitprice>13.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11012</orderid>
  +
<customerid>FRANK</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-04-09</orderdate>
  +
<requireddate>1998-04-23</requireddate>
  +
<shippeddate>1998-04-17</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>242.9500</freight>
  +
<shipname>Frankenversand</shipname>
  +
<shipaddress>Berliner Platz 43</shipaddress>
  +
<shipcity>München</shipcity>
  +
<shippostalcode>80805</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>11012</orderid>
  +
<productid>19</productid>
  +
<unitprice>9.2000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11012</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>36</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11012</orderid>
  +
<productid>71</productid>
  +
<unitprice>21.5000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>FRANR</customerid>
  +
<companyname>France restauration</companyname>
  +
<contactname>Carine Schmitt</contactname>
  +
<contacttitle>Marketing Manager</contacttitle>
  +
<address>54, rue Royale</address>
  +
<city>Nantes</city>
  +
<postalcode>44000</postalcode>
  +
<country>France</country>
  +
<phone>40.32.21.21</phone>
  +
<fax>40.32.21.20</fax>
  +
<orders>
  +
<orderid>10671</orderid>
  +
<customerid>FRANR</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-09-17</orderdate>
  +
<requireddate>1997-10-15</requireddate>
  +
<shippeddate>1997-09-24</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>30.3400</freight>
  +
<shipname>France restauration</shipname>
  +
<shipaddress>54, rue Royale</shipaddress>
  +
<shipcity>Nantes</shipcity>
  +
<shippostalcode>44000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10671</orderid>
  +
<productid>16</productid>
  +
<unitprice>17.4500</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10671</orderid>
  +
<productid>62</productid>
  +
<unitprice>49.3000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10671</orderid>
  +
<productid>65</productid>
  +
<unitprice>21.0500</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10860</orderid>
  +
<customerid>FRANR</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-01-29</orderdate>
  +
<requireddate>1998-02-26</requireddate>
  +
<shippeddate>1998-02-04</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>19.2600</freight>
  +
<shipname>France restauration</shipname>
  +
<shipaddress>54, rue Royale</shipaddress>
  +
<shipcity>Nantes</shipcity>
  +
<shippostalcode>44000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10860</orderid>
  +
<productid>51</productid>
  +
<unitprice>53.0000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10860</orderid>
  +
<productid>76</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10971</orderid>
  +
<customerid>FRANR</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-03-24</orderdate>
  +
<requireddate>1998-04-21</requireddate>
  +
<shippeddate>1998-04-02</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>121.8200</freight>
  +
<shipname>France restauration</shipname>
  +
<shipaddress>54, rue Royale</shipaddress>
  +
<shipcity>Nantes</shipcity>
  +
<shippostalcode>44000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10971</orderid>
  +
<productid>29</productid>
  +
<unitprice>123.7900</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>FRANS</customerid>
  +
<companyname>Franchi S.p.A.</companyname>
  +
<contactname>Paolo Accorti</contactname>
  +
<contacttitle>Sales Representative</contacttitle>
  +
<address>Via Monte Bianco 34</address>
  +
<city>Torino</city>
  +
<postalcode>10100</postalcode>
  +
<country>Italy</country>
  +
<phone>011-4988260</phone>
  +
<fax>011-4988261</fax>
  +
<orders>
  +
<orderid>10422</orderid>
  +
<customerid>FRANS</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-01-22</orderdate>
  +
<requireddate>1997-02-19</requireddate>
  +
<shippeddate>1997-01-31</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>3.0200</freight>
  +
<shipname>Franchi S.p.A.</shipname>
  +
<shipaddress>Via Monte Bianco 34</shipaddress>
  +
<shipcity>Torino</shipcity>
  +
<shippostalcode>10100</shippostalcode>
  +
<shipcountry>Italy</shipcountry>
  +
<orderdetails>
  +
<orderid>10422</orderid>
  +
<productid>26</productid>
  +
<unitprice>24.9000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10710</orderid>
  +
<customerid>FRANS</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-10-20</orderdate>
  +
<requireddate>1997-11-17</requireddate>
  +
<shippeddate>1997-10-23</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>4.9800</freight>
  +
<shipname>Franchi S.p.A.</shipname>
  +
<shipaddress>Via Monte Bianco 34</shipaddress>
  +
<shipcity>Torino</shipcity>
  +
<shippostalcode>10100</shippostalcode>
  +
<shipcountry>Italy</shipcountry>
  +
<orderdetails>
  +
<orderid>10710</orderid>
  +
<productid>19</productid>
  +
<unitprice>9.2000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10710</orderid>
  +
<productid>47</productid>
  +
<unitprice>9.5000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10753</orderid>
  +
<customerid>FRANS</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-11-25</orderdate>
  +
<requireddate>1997-12-23</requireddate>
  +
<shippeddate>1997-11-27</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>7.7000</freight>
  +
<shipname>Franchi S.p.A.</shipname>
  +
<shipaddress>Via Monte Bianco 34</shipaddress>
  +
<shipcity>Torino</shipcity>
  +
<shippostalcode>10100</shippostalcode>
  +
<shipcountry>Italy</shipcountry>
  +
<orderdetails>
  +
<orderid>10753</orderid>
  +
<productid>45</productid>
  +
<unitprice>9.5000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10753</orderid>
  +
<productid>74</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10807</orderid>
  +
<customerid>FRANS</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-12-31</orderdate>
  +
<requireddate>1998-01-28</requireddate>
  +
<shippeddate>1998-01-30</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>1.3600</freight>
  +
<shipname>Franchi S.p.A.</shipname>
  +
<shipaddress>Via Monte Bianco 34</shipaddress>
  +
<shipcity>Torino</shipcity>
  +
<shippostalcode>10100</shippostalcode>
  +
<shipcountry>Italy</shipcountry>
  +
<orderdetails>
  +
<orderid>10807</orderid>
  +
<productid>40</productid>
  +
<unitprice>18.4000</unitprice>
  +
<quantity>1</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11026</orderid>
  +
<customerid>FRANS</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-04-15</orderdate>
  +
<requireddate>1998-05-13</requireddate>
  +
<shippeddate>1998-04-28</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>47.0900</freight>
  +
<shipname>Franchi S.p.A.</shipname>
  +
<shipaddress>Via Monte Bianco 34</shipaddress>
  +
<shipcity>Torino</shipcity>
  +
<shippostalcode>10100</shippostalcode>
  +
<shipcountry>Italy</shipcountry>
  +
<orderdetails>
  +
<orderid>11026</orderid>
  +
<productid>18</productid>
  +
<unitprice>62.5000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11026</orderid>
  +
<productid>51</productid>
  +
<unitprice>53.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11060</orderid>
  +
<customerid>FRANS</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-04-30</orderdate>
  +
<requireddate>1998-05-28</requireddate>
  +
<shippeddate>1998-05-04</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>10.9800</freight>
  +
<shipname>Franchi S.p.A.</shipname>
  +
<shipaddress>Via Monte Bianco 34</shipaddress>
  +
<shipcity>Torino</shipcity>
  +
<shippostalcode>10100</shippostalcode>
  +
<shipcountry>Italy</shipcountry>
  +
<orderdetails>
  +
<orderid>11060</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11060</orderid>
  +
<productid>77</productid>
  +
<unitprice>13.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>FURIB</customerid>
  +
<companyname>Furia Bacalhau e Frutos do Mar</companyname>
  +
<contactname>Lino Rodriguez</contactname>
  +
<contacttitle>Sales Manager</contacttitle>
  +
<address>Jardim das rosas n. 32</address>
  +
<city>Lisboa</city>
  +
<postalcode>1675</postalcode>
  +
<country>Portugal</country>
  +
<phone>(1) 354-2534</phone>
  +
<fax>(1) 354-2535</fax>
  +
<orders>
  +
<orderid>10328</orderid>
  +
<customerid>FURIB</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1996-10-14</orderdate>
  +
<requireddate>1996-11-11</requireddate>
  +
<shippeddate>1996-10-17</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>87.0300</freight>
  +
<shipname>Furia Bacalhau e Frutos do Mar</shipname>
  +
<shipaddress>Jardim das rosas n. 32</shipaddress>
  +
<shipcity>Lisboa</shipcity>
  +
<shippostalcode>1675</shippostalcode>
  +
<shipcountry>Portugal</shipcountry>
  +
<orderdetails>
  +
<orderid>10328</orderid>
  +
<productid>59</productid>
  +
<unitprice>44.0000</unitprice>
  +
<quantity>9</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10328</orderid>
  +
<productid>65</productid>
  +
<unitprice>16.8000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10328</orderid>
  +
<productid>68</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10352</orderid>
  +
<customerid>FURIB</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1996-11-12</orderdate>
  +
<requireddate>1996-11-26</requireddate>
  +
<shippeddate>1996-11-18</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>1.3000</freight>
  +
<shipname>Furia Bacalhau e Frutos do Mar</shipname>
  +
<shipaddress>Jardim das rosas n. 32</shipaddress>
  +
<shipcity>Lisboa</shipcity>
  +
<shippostalcode>1675</shippostalcode>
  +
<shipcountry>Portugal</shipcountry>
  +
<orderdetails>
  +
<orderid>10352</orderid>
  +
<productid>24</productid>
  +
<unitprice>3.6000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10352</orderid>
  +
<productid>54</productid>
  +
<unitprice>5.9000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10464</orderid>
  +
<customerid>FURIB</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-03-04</orderdate>
  +
<requireddate>1997-04-01</requireddate>
  +
<shippeddate>1997-03-14</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>89.0000</freight>
  +
<shipname>Furia Bacalhau e Frutos do Mar</shipname>
  +
<shipaddress>Jardim das rosas n. 32</shipaddress>
  +
<shipcity>Lisboa</shipcity>
  +
<shippostalcode>1675</shippostalcode>
  +
<shipcountry>Portugal</shipcountry>
  +
<orderdetails>
  +
<orderid>10464</orderid>
  +
<productid>4</productid>
  +
<unitprice>17.6000</unitprice>
  +
<quantity>16</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10464</orderid>
  +
<productid>43</productid>
  +
<unitprice>36.8000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10464</orderid>
  +
<productid>56</productid>
  +
<unitprice>30.4000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10464</orderid>
  +
<productid>60</productid>
  +
<unitprice>27.2000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10491</orderid>
  +
<customerid>FURIB</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-03-31</orderdate>
  +
<requireddate>1997-04-28</requireddate>
  +
<shippeddate>1997-04-08</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>16.9600</freight>
  +
<shipname>Furia Bacalhau e Frutos do Mar</shipname>
  +
<shipaddress>Jardim das rosas n. 32</shipaddress>
  +
<shipcity>Lisboa</shipcity>
  +
<shippostalcode>1675</shippostalcode>
  +
<shipcountry>Portugal</shipcountry>
  +
<orderdetails>
  +
<orderid>10491</orderid>
  +
<productid>44</productid>
  +
<unitprice>15.5000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10491</orderid>
  +
<productid>77</productid>
  +
<unitprice>10.4000</unitprice>
  +
<quantity>7</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10551</orderid>
  +
<customerid>FURIB</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-05-28</orderdate>
  +
<requireddate>1997-07-09</requireddate>
  +
<shippeddate>1997-06-06</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>72.9500</freight>
  +
<shipname>Furia Bacalhau e Frutos do Mar</shipname>
  +
<shipaddress>Jardim das rosas n. 32</shipaddress>
  +
<shipcity>Lisboa</shipcity>
  +
<shippostalcode>1675</shippostalcode>
  +
<shipcountry>Portugal</shipcountry>
  +
<orderdetails>
  +
<orderid>10551</orderid>
  +
<productid>16</productid>
  +
<unitprice>17.4500</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10551</orderid>
  +
<productid>35</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10551</orderid>
  +
<productid>44</productid>
  +
<unitprice>19.4500</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10604</orderid>
  +
<customerid>FURIB</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-07-18</orderdate>
  +
<requireddate>1997-08-15</requireddate>
  +
<shippeddate>1997-07-29</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>7.4600</freight>
  +
<shipname>Furia Bacalhau e Frutos do Mar</shipname>
  +
<shipaddress>Jardim das rosas n. 32</shipaddress>
  +
<shipcity>Lisboa</shipcity>
  +
<shippostalcode>1675</shippostalcode>
  +
<shipcountry>Portugal</shipcountry>
  +
<orderdetails>
  +
<orderid>10604</orderid>
  +
<productid>48</productid>
  +
<unitprice>12.7500</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10604</orderid>
  +
<productid>76</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10664</orderid>
  +
<customerid>FURIB</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-09-10</orderdate>
  +
<requireddate>1997-10-08</requireddate>
  +
<shippeddate>1997-09-19</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>1.2700</freight>
  +
<shipname>Furia Bacalhau e Frutos do Mar</shipname>
  +
<shipaddress>Jardim das rosas n. 32</shipaddress>
  +
<shipcity>Lisboa</shipcity>
  +
<shippostalcode>1675</shippostalcode>
  +
<shipcountry>Portugal</shipcountry>
  +
<orderdetails>
  +
<orderid>10664</orderid>
  +
<productid>10</productid>
  +
<unitprice>31.0000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10664</orderid>
  +
<productid>56</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10664</orderid>
  +
<productid>65</productid>
  +
<unitprice>21.0500</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10963</orderid>
  +
<customerid>FURIB</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1998-03-19</orderdate>
  +
<requireddate>1998-04-16</requireddate>
  +
<shippeddate>1998-03-26</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>2.7000</freight>
  +
<shipname>Furia Bacalhau e Frutos do Mar</shipname>
  +
<shipaddress>Jardim das rosas n. 32</shipaddress>
  +
<shipcity>Lisboa</shipcity>
  +
<shippostalcode>1675</shippostalcode>
  +
<shipcountry>Portugal</shipcountry>
  +
<orderdetails>
  +
<orderid>10963</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>GALED</customerid>
  +
<companyname>Galería del gastrónomo</companyname>
  +
<contactname>Eduardo Saavedra</contactname>
  +
<contacttitle>Marketing Manager</contacttitle>
  +
<address>Rambla de Cataluña, 23</address>
  +
<city>Barcelona</city>
  +
<postalcode>08022</postalcode>
  +
<country>Spain</country>
  +
<phone>(93) 203 4560</phone>
  +
<fax>(93) 203 4561</fax>
  +
<orders>
  +
<orderid>10366</orderid>
  +
<customerid>GALED</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1996-11-28</orderdate>
  +
<requireddate>1997-01-09</requireddate>
  +
<shippeddate>1996-12-30</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>10.1400</freight>
  +
<shipname>Galería del gastronómo</shipname>
  +
<shipaddress>Rambla de Cataluña, 23</shipaddress>
  +
<shipcity>Barcelona</shipcity>
  +
<shippostalcode>8022</shippostalcode>
  +
<shipcountry>Spain</shipcountry>
  +
<orderdetails>
  +
<orderid>10366</orderid>
  +
<productid>65</productid>
  +
<unitprice>16.8000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10366</orderid>
  +
<productid>77</productid>
  +
<unitprice>10.4000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10426</orderid>
  +
<customerid>GALED</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-01-27</orderdate>
  +
<requireddate>1997-02-24</requireddate>
  +
<shippeddate>1997-02-06</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>18.6900</freight>
  +
<shipname>Galería del gastronómo</shipname>
  +
<shipaddress>Rambla de Cataluña, 23</shipaddress>
  +
<shipcity>Barcelona</shipcity>
  +
<shippostalcode>8022</shippostalcode>
  +
<shipcountry>Spain</shipcountry>
  +
<orderdetails>
  +
<orderid>10426</orderid>
  +
<productid>56</productid>
  +
<unitprice>30.4000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10426</orderid>
  +
<productid>64</productid>
  +
<unitprice>26.6000</unitprice>
  +
<quantity>7</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10568</orderid>
  +
<customerid>GALED</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-06-13</orderdate>
  +
<requireddate>1997-07-11</requireddate>
  +
<shippeddate>1997-07-09</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>6.5400</freight>
  +
<shipname>Galería del gastronómo</shipname>
  +
<shipaddress>Rambla de Cataluña, 23</shipaddress>
  +
<shipcity>Barcelona</shipcity>
  +
<shippostalcode>8022</shippostalcode>
  +
<shipcountry>Spain</shipcountry>
  +
<orderdetails>
  +
<orderid>10568</orderid>
  +
<productid>10</productid>
  +
<unitprice>31.0000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10887</orderid>
  +
<customerid>GALED</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1998-02-13</orderdate>
  +
<requireddate>1998-03-13</requireddate>
  +
<shippeddate>1998-02-16</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>1.2500</freight>
  +
<shipname>Galería del gastronómo</shipname>
  +
<shipaddress>Rambla de Cataluña, 23</shipaddress>
  +
<shipcity>Barcelona</shipcity>
  +
<shippostalcode>8022</shippostalcode>
  +
<shipcountry>Spain</shipcountry>
  +
<orderdetails>
  +
<orderid>10887</orderid>
  +
<productid>25</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10928</orderid>
  +
<customerid>GALED</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-03-05</orderdate>
  +
<requireddate>1998-04-02</requireddate>
  +
<shippeddate>1998-03-18</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>1.3600</freight>
  +
<shipname>Galería del gastronómo</shipname>
  +
<shipaddress>Rambla de Cataluña, 23</shipaddress>
  +
<shipcity>Barcelona</shipcity>
  +
<shippostalcode>8022</shippostalcode>
  +
<shipcountry>Spain</shipcountry>
  +
<orderdetails>
  +
<orderid>10928</orderid>
  +
<productid>47</productid>
  +
<unitprice>9.5000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10928</orderid>
  +
<productid>76</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>GODOS</customerid>
  +
<companyname>Godos Cocina Típica</companyname>
  +
<contactname>José Pedro Freyre</contactname>
  +
<contacttitle>Sales Manager</contacttitle>
  +
<address>C/ Romero, 33</address>
  +
<city>Sevilla</city>
  +
<postalcode>41101</postalcode>
  +
<country>Spain</country>
  +
<phone>(95) 555 82 82</phone>
  +
<orders>
  +
<orderid>10303</orderid>
  +
<customerid>GODOS</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1996-09-11</orderdate>
  +
<requireddate>1996-10-09</requireddate>
  +
<shippeddate>1996-09-18</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>107.8300</freight>
  +
<shipname>Godos Cocina Típica</shipname>
  +
<shipaddress>C/ Romero, 33</shipaddress>
  +
<shipcity>Sevilla</shipcity>
  +
<shippostalcode>41101</shippostalcode>
  +
<shipcountry>Spain</shipcountry>
  +
<orderdetails>
  +
<orderid>10303</orderid>
  +
<productid>40</productid>
  +
<unitprice>14.7000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10303</orderid>
  +
<productid>65</productid>
  +
<unitprice>16.8000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10303</orderid>
  +
<productid>68</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10550</orderid>
  +
<customerid>GODOS</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-05-28</orderdate>
  +
<requireddate>1997-06-25</requireddate>
  +
<shippeddate>1997-06-06</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>4.3200</freight>
  +
<shipname>Godos Cocina Típica</shipname>
  +
<shipaddress>C/ Romero, 33</shipaddress>
  +
<shipcity>Sevilla</shipcity>
  +
<shippostalcode>41101</shippostalcode>
  +
<shipcountry>Spain</shipcountry>
  +
<orderdetails>
  +
<orderid>10550</orderid>
  +
<productid>17</productid>
  +
<unitprice>39.0000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10550</orderid>
  +
<productid>19</productid>
  +
<unitprice>9.2000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10550</orderid>
  +
<productid>21</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10550</orderid>
  +
<productid>61</productid>
  +
<unitprice>28.5000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10629</orderid>
  +
<customerid>GODOS</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-08-12</orderdate>
  +
<requireddate>1997-09-09</requireddate>
  +
<shippeddate>1997-08-20</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>85.4600</freight>
  +
<shipname>Godos Cocina Típica</shipname>
  +
<shipaddress>C/ Romero, 33</shipaddress>
  +
<shipcity>Sevilla</shipcity>
  +
<shippostalcode>41101</shippostalcode>
  +
<shipcountry>Spain</shipcountry>
  +
<orderdetails>
  +
<orderid>10629</orderid>
  +
<productid>29</productid>
  +
<unitprice>123.7900</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10629</orderid>
  +
<productid>64</productid>
  +
<unitprice>33.2500</unitprice>
  +
<quantity>9</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10872</orderid>
  +
<customerid>GODOS</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1998-02-05</orderdate>
  +
<requireddate>1998-03-05</requireddate>
  +
<shippeddate>1998-02-09</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>175.3200</freight>
  +
<shipname>Godos Cocina Típica</shipname>
  +
<shipaddress>C/ Romero, 33</shipaddress>
  +
<shipcity>Sevilla</shipcity>
  +
<shippostalcode>41101</shippostalcode>
  +
<shipcountry>Spain</shipcountry>
  +
<orderdetails>
  +
<orderid>10872</orderid>
  +
<productid>55</productid>
  +
<unitprice>24.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10872</orderid>
  +
<productid>62</productid>
  +
<unitprice>49.3000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10872</orderid>
  +
<productid>64</productid>
  +
<unitprice>33.2500</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10872</orderid>
  +
<productid>65</productid>
  +
<unitprice>21.0500</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10874</orderid>
  +
<customerid>GODOS</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1998-02-06</orderdate>
  +
<requireddate>1998-03-06</requireddate>
  +
<shippeddate>1998-02-11</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>19.5800</freight>
  +
<shipname>Godos Cocina Típica</shipname>
  +
<shipaddress>C/ Romero, 33</shipaddress>
  +
<shipcity>Sevilla</shipcity>
  +
<shippostalcode>41101</shippostalcode>
  +
<shipcountry>Spain</shipcountry>
  +
<orderdetails>
  +
<orderid>10874</orderid>
  +
<productid>10</productid>
  +
<unitprice>31.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10888</orderid>
  +
<customerid>GODOS</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-02-16</orderdate>
  +
<requireddate>1998-03-16</requireddate>
  +
<shippeddate>1998-02-23</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>51.8700</freight>
  +
<shipname>Godos Cocina Típica</shipname>
  +
<shipaddress>C/ Romero, 33</shipaddress>
  +
<shipcity>Sevilla</shipcity>
  +
<shippostalcode>41101</shippostalcode>
  +
<shipcountry>Spain</shipcountry>
  +
<orderdetails>
  +
<orderid>10888</orderid>
  +
<productid>2</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10888</orderid>
  +
<productid>68</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10911</orderid>
  +
<customerid>GODOS</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-02-26</orderdate>
  +
<requireddate>1998-03-26</requireddate>
  +
<shippeddate>1998-03-05</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>38.1900</freight>
  +
<shipname>Godos Cocina Típica</shipname>
  +
<shipaddress>C/ Romero, 33</shipaddress>
  +
<shipcity>Sevilla</shipcity>
  +
<shippostalcode>41101</shippostalcode>
  +
<shipcountry>Spain</shipcountry>
  +
<orderdetails>
  +
<orderid>10911</orderid>
  +
<productid>1</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10911</orderid>
  +
<productid>17</productid>
  +
<unitprice>39.0000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10911</orderid>
  +
<productid>67</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10948</orderid>
  +
<customerid>GODOS</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-03-13</orderdate>
  +
<requireddate>1998-04-10</requireddate>
  +
<shippeddate>1998-03-19</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>23.3900</freight>
  +
<shipname>Godos Cocina Típica</shipname>
  +
<shipaddress>C/ Romero, 33</shipaddress>
  +
<shipcity>Sevilla</shipcity>
  +
<shippostalcode>41101</shippostalcode>
  +
<shipcountry>Spain</shipcountry>
  +
<orderdetails>
  +
<orderid>10948</orderid>
  +
<productid>50</productid>
  +
<unitprice>16.2500</unitprice>
  +
<quantity>9</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10948</orderid>
  +
<productid>51</productid>
  +
<unitprice>53.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10948</orderid>
  +
<productid>55</productid>
  +
<unitprice>24.0000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11009</orderid>
  +
<customerid>GODOS</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-04-08</orderdate>
  +
<requireddate>1998-05-06</requireddate>
  +
<shippeddate>1998-04-10</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>59.1100</freight>
  +
<shipname>Godos Cocina Típica</shipname>
  +
<shipaddress>C/ Romero, 33</shipaddress>
  +
<shipcity>Sevilla</shipcity>
  +
<shippostalcode>41101</shippostalcode>
  +
<shipcountry>Spain</shipcountry>
  +
<orderdetails>
  +
<orderid>11009</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11009</orderid>
  +
<productid>36</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11009</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>9</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11037</orderid>
  +
<customerid>GODOS</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1998-04-21</orderdate>
  +
<requireddate>1998-05-19</requireddate>
  +
<shippeddate>1998-04-27</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>3.2000</freight>
  +
<shipname>Godos Cocina Típica</shipname>
  +
<shipaddress>C/ Romero, 33</shipaddress>
  +
<shipcity>Sevilla</shipcity>
  +
<shippostalcode>41101</shippostalcode>
  +
<shipcountry>Spain</shipcountry>
  +
<orderdetails>
  +
<orderid>11037</orderid>
  +
<productid>70</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>GOURL</customerid>
  +
<companyname>Gourmet Lanchonetes</companyname>
  +
<contactname>André Fonseca</contactname>
  +
<contacttitle>Sales Associate</contacttitle>
  +
<address>Av. Brasil, 442</address>
  +
<city>Campinas</city>
  +
<region>SP</region>
  +
<postalcode>04876-786</postalcode>
  +
<country>Brazil</country>
  +
<phone>(11) 555-9482</phone>
  +
<orders>
  +
<orderid>10423</orderid>
  +
<customerid>GOURL</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1997-01-23</orderdate>
  +
<requireddate>1997-02-06</requireddate>
  +
<shippeddate>1997-02-24</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>24.5000</freight>
  +
<shipname>Gourmet Lanchonetes</shipname>
  +
<shipaddress>Av. Brasil, 442</shipaddress>
  +
<shipcity>Campinas</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>04876-786</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10423</orderid>
  +
<productid>31</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10423</orderid>
  +
<productid>59</productid>
  +
<unitprice>44.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10652</orderid>
  +
<customerid>GOURL</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-09-01</orderdate>
  +
<requireddate>1997-09-29</requireddate>
  +
<shippeddate>1997-09-08</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>7.1400</freight>
  +
<shipname>Gourmet Lanchonetes</shipname>
  +
<shipaddress>Av. Brasil, 442</shipaddress>
  +
<shipcity>Campinas</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>04876-786</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10652</orderid>
  +
<productid>30</productid>
  +
<unitprice>25.8900</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10652</orderid>
  +
<productid>42</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10685</orderid>
  +
<customerid>GOURL</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-09-29</orderdate>
  +
<requireddate>1997-10-13</requireddate>
  +
<shippeddate>1997-10-03</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>33.7500</freight>
  +
<shipname>Gourmet Lanchonetes</shipname>
  +
<shipaddress>Av. Brasil, 442</shipaddress>
  +
<shipcity>Campinas</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>04876-786</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10685</orderid>
  +
<productid>10</productid>
  +
<unitprice>31.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10685</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10685</orderid>
  +
<productid>47</productid>
  +
<unitprice>9.5000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10709</orderid>
  +
<customerid>GOURL</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-10-17</orderdate>
  +
<requireddate>1997-11-14</requireddate>
  +
<shippeddate>1997-11-20</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>210.8000</freight>
  +
<shipname>Gourmet Lanchonetes</shipname>
  +
<shipaddress>Av. Brasil, 442</shipaddress>
  +
<shipcity>Campinas</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>04876-786</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10709</orderid>
  +
<productid>8</productid>
  +
<unitprice>40.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10709</orderid>
  +
<productid>51</productid>
  +
<unitprice>53.0000</unitprice>
  +
<quantity>28</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10709</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10734</orderid>
  +
<customerid>GOURL</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-11-07</orderdate>
  +
<requireddate>1997-12-05</requireddate>
  +
<shippeddate>1997-11-12</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>1.6300</freight>
  +
<shipname>Gourmet Lanchonetes</shipname>
  +
<shipaddress>Av. Brasil, 442</shipaddress>
  +
<shipcity>Campinas</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>04876-786</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10734</orderid>
  +
<productid>6</productid>
  +
<unitprice>25.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10734</orderid>
  +
<productid>30</productid>
  +
<unitprice>25.8900</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10734</orderid>
  +
<productid>76</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10777</orderid>
  +
<customerid>GOURL</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-12-15</orderdate>
  +
<requireddate>1997-12-29</requireddate>
  +
<shippeddate>1998-01-21</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>3.0100</freight>
  +
<shipname>Gourmet Lanchonetes</shipname>
  +
<shipaddress>Av. Brasil, 442</shipaddress>
  +
<shipcity>Campinas</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>04876-786</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10777</orderid>
  +
<productid>42</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10790</orderid>
  +
<customerid>GOURL</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1997-12-22</orderdate>
  +
<requireddate>1998-01-19</requireddate>
  +
<shippeddate>1997-12-26</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>28.2300</freight>
  +
<shipname>Gourmet Lanchonetes</shipname>
  +
<shipaddress>Av. Brasil, 442</shipaddress>
  +
<shipcity>Campinas</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>04876-786</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10790</orderid>
  +
<productid>7</productid>
  +
<unitprice>30.0000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10790</orderid>
  +
<productid>56</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10959</orderid>
  +
<customerid>GOURL</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1998-03-18</orderdate>
  +
<requireddate>1998-04-29</requireddate>
  +
<shippeddate>1998-03-23</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>4.9800</freight>
  +
<shipname>Gourmet Lanchonetes</shipname>
  +
<shipaddress>Av. Brasil, 442</shipaddress>
  +
<shipcity>Campinas</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>04876-786</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10959</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11049</orderid>
  +
<customerid>GOURL</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-04-24</orderdate>
  +
<requireddate>1998-05-22</requireddate>
  +
<shippeddate>1998-05-04</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>8.3400</freight>
  +
<shipname>Gourmet Lanchonetes</shipname>
  +
<shipaddress>Av. Brasil, 442</shipaddress>
  +
<shipcity>Campinas</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>04876-786</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>11049</orderid>
  +
<productid>2</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11049</orderid>
  +
<productid>12</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>GREAL</customerid>
  +
<companyname>Great Lakes Food Market</companyname>
  +
<contactname>Howard Snyder</contactname>
  +
<contacttitle>Marketing Manager</contacttitle>
  +
<address>2732 Baker Blvd.</address>
  +
<city>Eugene</city>
  +
<region>OR</region>
  +
<postalcode>97403</postalcode>
  +
<country>USA</country>
  +
<phone>(503) 555-7555</phone>
  +
<orders>
  +
<orderid>10528</orderid>
  +
<customerid>GREAL</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1997-05-06</orderdate>
  +
<requireddate>1997-05-20</requireddate>
  +
<shippeddate>1997-05-09</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>3.3500</freight>
  +
<shipname>Great Lakes Food Market</shipname>
  +
<shipaddress>2732 Baker Blvd.</shipaddress>
  +
<shipcity>Eugene</shipcity>
  +
<shipregion>OR</shipregion>
  +
<shippostalcode>97403</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10528</orderid>
  +
<productid>11</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10528</orderid>
  +
<productid>33</productid>
  +
<unitprice>2.5000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10528</orderid>
  +
<productid>72</productid>
  +
<unitprice>34.8000</unitprice>
  +
<quantity>9</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10589</orderid>
  +
<customerid>GREAL</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-07-04</orderdate>
  +
<requireddate>1997-08-01</requireddate>
  +
<shippeddate>1997-07-14</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>4.4200</freight>
  +
<shipname>Great Lakes Food Market</shipname>
  +
<shipaddress>2732 Baker Blvd.</shipaddress>
  +
<shipcity>Eugene</shipcity>
  +
<shipregion>OR</shipregion>
  +
<shippostalcode>97403</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10589</orderid>
  +
<productid>35</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10616</orderid>
  +
<customerid>GREAL</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-07-31</orderdate>
  +
<requireddate>1997-08-28</requireddate>
  +
<shippeddate>1997-08-05</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>116.5300</freight>
  +
<shipname>Great Lakes Food Market</shipname>
  +
<shipaddress>2732 Baker Blvd.</shipaddress>
  +
<shipcity>Eugene</shipcity>
  +
<shipregion>OR</shipregion>
  +
<shippostalcode>97403</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10616</orderid>
  +
<productid>38</productid>
  +
<unitprice>263.5000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10616</orderid>
  +
<productid>56</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10616</orderid>
  +
<productid>70</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10616</orderid>
  +
<productid>71</productid>
  +
<unitprice>21.5000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10617</orderid>
  +
<customerid>GREAL</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-07-31</orderdate>
  +
<requireddate>1997-08-28</requireddate>
  +
<shippeddate>1997-08-04</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>18.5300</freight>
  +
<shipname>Great Lakes Food Market</shipname>
  +
<shipaddress>2732 Baker Blvd.</shipaddress>
  +
<shipcity>Eugene</shipcity>
  +
<shipregion>OR</shipregion>
  +
<shippostalcode>97403</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10617</orderid>
  +
<productid>59</productid>
  +
<unitprice>55.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10656</orderid>
  +
<customerid>GREAL</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1997-09-04</orderdate>
  +
<requireddate>1997-10-02</requireddate>
  +
<shippeddate>1997-09-10</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>57.1500</freight>
  +
<shipname>Great Lakes Food Market</shipname>
  +
<shipaddress>2732 Baker Blvd.</shipaddress>
  +
<shipcity>Eugene</shipcity>
  +
<shipregion>OR</shipregion>
  +
<shippostalcode>97403</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10656</orderid>
  +
<productid>14</productid>
  +
<unitprice>23.2500</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10656</orderid>
  +
<productid>44</productid>
  +
<unitprice>19.4500</unitprice>
  +
<quantity>28</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10656</orderid>
  +
<productid>47</productid>
  +
<unitprice>9.5000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10681</orderid>
  +
<customerid>GREAL</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-09-25</orderdate>
  +
<requireddate>1997-10-23</requireddate>
  +
<shippeddate>1997-09-30</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>76.1300</freight>
  +
<shipname>Great Lakes Food Market</shipname>
  +
<shipaddress>2732 Baker Blvd.</shipaddress>
  +
<shipcity>Eugene</shipcity>
  +
<shipregion>OR</shipregion>
  +
<shippostalcode>97403</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10681</orderid>
  +
<productid>19</productid>
  +
<unitprice>9.2000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10681</orderid>
  +
<productid>21</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10681</orderid>
  +
<productid>64</productid>
  +
<unitprice>33.2500</unitprice>
  +
<quantity>28</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10816</orderid>
  +
<customerid>GREAL</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-01-06</orderdate>
  +
<requireddate>1998-02-03</requireddate>
  +
<shippeddate>1998-02-04</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>719.7800</freight>
  +
<shipname>Great Lakes Food Market</shipname>
  +
<shipaddress>2732 Baker Blvd.</shipaddress>
  +
<shipcity>Eugene</shipcity>
  +
<shipregion>OR</shipregion>
  +
<shippostalcode>97403</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10816</orderid>
  +
<productid>38</productid>
  +
<unitprice>263.5000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10816</orderid>
  +
<productid>62</productid>
  +
<unitprice>49.3000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10936</orderid>
  +
<customerid>GREAL</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-03-09</orderdate>
  +
<requireddate>1998-04-06</requireddate>
  +
<shippeddate>1998-03-18</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>33.6800</freight>
  +
<shipname>Great Lakes Food Market</shipname>
  +
<shipaddress>2732 Baker Blvd.</shipaddress>
  +
<shipcity>Eugene</shipcity>
  +
<shipregion>OR</shipregion>
  +
<shippostalcode>97403</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10936</orderid>
  +
<productid>36</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11006</orderid>
  +
<customerid>GREAL</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-04-07</orderdate>
  +
<requireddate>1998-05-05</requireddate>
  +
<shippeddate>1998-04-15</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>25.1900</freight>
  +
<shipname>Great Lakes Food Market</shipname>
  +
<shipaddress>2732 Baker Blvd.</shipaddress>
  +
<shipcity>Eugene</shipcity>
  +
<shipregion>OR</shipregion>
  +
<shippostalcode>97403</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>11006</orderid>
  +
<productid>1</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11006</orderid>
  +
<productid>29</productid>
  +
<unitprice>123.7900</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11040</orderid>
  +
<customerid>GREAL</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-04-22</orderdate>
  +
<requireddate>1998-05-20</requireddate>
  +
<shipvia>3</shipvia>
  +
<freight>18.8400</freight>
  +
<shipname>Great Lakes Food Market</shipname>
  +
<shipaddress>2732 Baker Blvd.</shipaddress>
  +
<shipcity>Eugene</shipcity>
  +
<shipregion>OR</shipregion>
  +
<shippostalcode>97403</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>11040</orderid>
  +
<productid>21</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11061</orderid>
  +
<customerid>GREAL</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-04-30</orderdate>
  +
<requireddate>1998-06-11</requireddate>
  +
<shipvia>3</shipvia>
  +
<freight>14.0100</freight>
  +
<shipname>Great Lakes Food Market</shipname>
  +
<shipaddress>2732 Baker Blvd.</shipaddress>
  +
<shipcity>Eugene</shipcity>
  +
<shipregion>OR</shipregion>
  +
<shippostalcode>97403</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>11061</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>GROSR</customerid>
  +
<companyname>GROSELLA-Restaurante</companyname>
  +
<contactname>Manuel Pereira</contactname>
  +
<contacttitle>Owner</contacttitle>
  +
<address>5ª Ave. Los Palos Grandes</address>
  +
<city>Caracas</city>
  +
<region>DF</region>
  +
<postalcode>1081</postalcode>
  +
<country>Venezuela</country>
  +
<phone>(2) 283-2951</phone>
  +
<fax>(2) 283-3397</fax>
  +
<orders>
  +
<orderid>10268</orderid>
  +
<customerid>GROSR</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1996-07-30</orderdate>
  +
<requireddate>1996-08-27</requireddate>
  +
<shippeddate>1996-08-02</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>66.2900</freight>
  +
<shipname>GROSELLA-Restaurante</shipname>
  +
<shipaddress>5ª Ave. Los Palos Grandes</shipaddress>
  +
<shipcity>Caracas</shipcity>
  +
<shipregion>DF</shipregion>
  +
<shippostalcode>1081</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10268</orderid>
  +
<productid>29</productid>
  +
<unitprice>99.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10268</orderid>
  +
<productid>72</productid>
  +
<unitprice>27.8000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10785</orderid>
  +
<customerid>GROSR</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-12-18</orderdate>
  +
<requireddate>1998-01-15</requireddate>
  +
<shippeddate>1997-12-24</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>1.5100</freight>
  +
<shipname>GROSELLA-Restaurante</shipname>
  +
<shipaddress>5ª Ave. Los Palos Grandes</shipaddress>
  +
<shipcity>Caracas</shipcity>
  +
<shipregion>DF</shipregion>
  +
<shippostalcode>1081</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10785</orderid>
  +
<productid>10</productid>
  +
<unitprice>31.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10785</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>HANAR</customerid>
  +
<companyname>Hanari Carnes</companyname>
  +
<contactname>Mario Pontes</contactname>
  +
<contacttitle>Accounting Manager</contacttitle>
  +
<address>Rua do Paço, 67</address>
  +
<city>Rio de Janeiro</city>
  +
<region>RJ</region>
  +
<postalcode>05454-876</postalcode>
  +
<country>Brazil</country>
  +
<phone>(21) 555-0091</phone>
  +
<fax>(21) 555-8765</fax>
  +
<orders>
  +
<orderid>10250</orderid>
  +
<customerid>HANAR</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1996-07-08</orderdate>
  +
<requireddate>1996-08-05</requireddate>
  +
<shippeddate>1996-07-12</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>65.8300</freight>
  +
<shipname>Hanari Carnes</shipname>
  +
<shipaddress>Rua do Paço, 67</shipaddress>
  +
<shipcity>Rio de Janeiro</shipcity>
  +
<shipregion>RJ</shipregion>
  +
<shippostalcode>05454-876</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10250</orderid>
  +
<productid>41</productid>
  +
<unitprice>7.7000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10250</orderid>
  +
<productid>51</productid>
  +
<unitprice>42.4000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10250</orderid>
  +
<productid>65</productid>
  +
<unitprice>16.8000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10253</orderid>
  +
<customerid>HANAR</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1996-07-10</orderdate>
  +
<requireddate>1996-07-24</requireddate>
  +
<shippeddate>1996-07-16</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>58.1700</freight>
  +
<shipname>Hanari Carnes</shipname>
  +
<shipaddress>Rua do Paço, 67</shipaddress>
  +
<shipcity>Rio de Janeiro</shipcity>
  +
<shipregion>RJ</shipregion>
  +
<shippostalcode>05454-876</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10253</orderid>
  +
<productid>31</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10253</orderid>
  +
<productid>39</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>42</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10253</orderid>
  +
<productid>49</productid>
  +
<unitprice>16.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10541</orderid>
  +
<customerid>HANAR</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-05-19</orderdate>
  +
<requireddate>1997-06-16</requireddate>
  +
<shippeddate>1997-05-29</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>68.6500</freight>
  +
<shipname>Hanari Carnes</shipname>
  +
<shipaddress>Rua do Paço, 67</shipaddress>
  +
<shipcity>Rio de Janeiro</shipcity>
  +
<shipregion>RJ</shipregion>
  +
<shippostalcode>05454-876</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10541</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10541</orderid>
  +
<productid>38</productid>
  +
<unitprice>263.5000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10541</orderid>
  +
<productid>65</productid>
  +
<unitprice>21.0500</unitprice>
  +
<quantity>36</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10541</orderid>
  +
<productid>71</productid>
  +
<unitprice>21.5000</unitprice>
  +
<quantity>9</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10645</orderid>
  +
<customerid>HANAR</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-08-26</orderdate>
  +
<requireddate>1997-09-23</requireddate>
  +
<shippeddate>1997-09-02</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>12.4100</freight>
  +
<shipname>Hanari Carnes</shipname>
  +
<shipaddress>Rua do Paço, 67</shipaddress>
  +
<shipcity>Rio de Janeiro</shipcity>
  +
<shipregion>RJ</shipregion>
  +
<shippostalcode>05454-876</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10645</orderid>
  +
<productid>18</productid>
  +
<unitprice>62.5000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10645</orderid>
  +
<productid>36</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10690</orderid>
  +
<customerid>HANAR</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-10-02</orderdate>
  +
<requireddate>1997-10-30</requireddate>
  +
<shippeddate>1997-10-03</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>15.8000</freight>
  +
<shipname>Hanari Carnes</shipname>
  +
<shipaddress>Rua do Paço, 67</shipaddress>
  +
<shipcity>Rio de Janeiro</shipcity>
  +
<shipregion>RJ</shipregion>
  +
<shippostalcode>05454-876</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10690</orderid>
  +
<productid>56</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10690</orderid>
  +
<productid>77</productid>
  +
<unitprice>13.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10770</orderid>
  +
<customerid>HANAR</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-12-09</orderdate>
  +
<requireddate>1998-01-06</requireddate>
  +
<shippeddate>1997-12-17</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>5.3200</freight>
  +
<shipname>Hanari Carnes</shipname>
  +
<shipaddress>Rua do Paço, 67</shipaddress>
  +
<shipcity>Rio de Janeiro</shipcity>
  +
<shipregion>RJ</shipregion>
  +
<shippostalcode>05454-876</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10770</orderid>
  +
<productid>11</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10783</orderid>
  +
<customerid>HANAR</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-12-18</orderdate>
  +
<requireddate>1998-01-15</requireddate>
  +
<shippeddate>1997-12-19</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>124.9800</freight>
  +
<shipname>Hanari Carnes</shipname>
  +
<shipaddress>Rua do Paço, 67</shipaddress>
  +
<shipcity>Rio de Janeiro</shipcity>
  +
<shipregion>RJ</shipregion>
  +
<shippostalcode>05454-876</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10783</orderid>
  +
<productid>31</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10783</orderid>
  +
<productid>38</productid>
  +
<unitprice>263.5000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10886</orderid>
  +
<customerid>HANAR</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-02-13</orderdate>
  +
<requireddate>1998-03-13</requireddate>
  +
<shippeddate>1998-03-02</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>4.9900</freight>
  +
<shipname>Hanari Carnes</shipname>
  +
<shipaddress>Rua do Paço, 67</shipaddress>
  +
<shipcity>Rio de Janeiro</shipcity>
  +
<shipregion>RJ</shipregion>
  +
<shippostalcode>05454-876</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10886</orderid>
  +
<productid>10</productid>
  +
<unitprice>31.0000</unitprice>
  +
<quantity>70</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10886</orderid>
  +
<productid>31</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10886</orderid>
  +
<productid>77</productid>
  +
<unitprice>13.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10903</orderid>
  +
<customerid>HANAR</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-02-24</orderdate>
  +
<requireddate>1998-03-24</requireddate>
  +
<shippeddate>1998-03-04</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>36.7100</freight>
  +
<shipname>Hanari Carnes</shipname>
  +
<shipaddress>Rua do Paço, 67</shipaddress>
  +
<shipcity>Rio de Janeiro</shipcity>
  +
<shipregion>RJ</shipregion>
  +
<shippostalcode>05454-876</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10903</orderid>
  +
<productid>13</productid>
  +
<unitprice>6.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10903</orderid>
  +
<productid>65</productid>
  +
<unitprice>21.0500</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10903</orderid>
  +
<productid>68</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10922</orderid>
  +
<customerid>HANAR</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1998-03-03</orderdate>
  +
<requireddate>1998-03-31</requireddate>
  +
<shippeddate>1998-03-05</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>62.7400</freight>
  +
<shipname>Hanari Carnes</shipname>
  +
<shipaddress>Rua do Paço, 67</shipaddress>
  +
<shipcity>Rio de Janeiro</shipcity>
  +
<shipregion>RJ</shipregion>
  +
<shippostalcode>05454-876</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10922</orderid>
  +
<productid>17</productid>
  +
<unitprice>39.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10922</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10925</orderid>
  +
<customerid>HANAR</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-03-04</orderdate>
  +
<requireddate>1998-04-01</requireddate>
  +
<shippeddate>1998-03-13</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>2.2700</freight>
  +
<shipname>Hanari Carnes</shipname>
  +
<shipaddress>Rua do Paço, 67</shipaddress>
  +
<shipcity>Rio de Janeiro</shipcity>
  +
<shipregion>RJ</shipregion>
  +
<shippostalcode>05454-876</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10925</orderid>
  +
<productid>36</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10925</orderid>
  +
<productid>52</productid>
  +
<unitprice>7.0000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10981</orderid>
  +
<customerid>HANAR</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-03-27</orderdate>
  +
<requireddate>1998-04-24</requireddate>
  +
<shippeddate>1998-04-02</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>193.3700</freight>
  +
<shipname>Hanari Carnes</shipname>
  +
<shipaddress>Rua do Paço, 67</shipaddress>
  +
<shipcity>Rio de Janeiro</shipcity>
  +
<shipregion>RJ</shipregion>
  +
<shippostalcode>05454-876</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10981</orderid>
  +
<productid>38</productid>
  +
<unitprice>263.5000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11022</orderid>
  +
<customerid>HANAR</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1998-04-14</orderdate>
  +
<requireddate>1998-05-12</requireddate>
  +
<shippeddate>1998-05-04</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>6.2700</freight>
  +
<shipname>Hanari Carnes</shipname>
  +
<shipaddress>Rua do Paço, 67</shipaddress>
  +
<shipcity>Rio de Janeiro</shipcity>
  +
<shipregion>RJ</shipregion>
  +
<shippostalcode>05454-876</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>11022</orderid>
  +
<productid>19</productid>
  +
<unitprice>9.2000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11022</orderid>
  +
<productid>69</productid>
  +
<unitprice>36.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11052</orderid>
  +
<customerid>HANAR</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-04-27</orderdate>
  +
<requireddate>1998-05-25</requireddate>
  +
<shippeddate>1998-05-01</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>67.2600</freight>
  +
<shipname>Hanari Carnes</shipname>
  +
<shipaddress>Rua do Paço, 67</shipaddress>
  +
<shipcity>Rio de Janeiro</shipcity>
  +
<shipregion>RJ</shipregion>
  +
<shippostalcode>05454-876</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>11052</orderid>
  +
<productid>43</productid>
  +
<unitprice>46.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11052</orderid>
  +
<productid>61</productid>
  +
<unitprice>28.5000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>HILAA</customerid>
  +
<companyname>HILARION-Abastos</companyname>
  +
<contactname>Carlos Hernández</contactname>
  +
<contacttitle>Sales Representative</contacttitle>
  +
<address>Carrera 22 con Ave. Carlos Soublette #8-35</address>
  +
<city>San Cristóbal</city>
  +
<region>Táchira</region>
  +
<postalcode>5022</postalcode>
  +
<country>Venezuela</country>
  +
<phone>(5) 555-1340</phone>
  +
<fax>(5) 555-1948</fax>
  +
<orders>
  +
<orderid>10257</orderid>
  +
<customerid>HILAA</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1996-07-16</orderdate>
  +
<requireddate>1996-08-13</requireddate>
  +
<shippeddate>1996-07-22</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>81.9100</freight>
  +
<shipname>HILARION-Abastos</shipname>
  +
<shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress>
  +
<shipcity>San Cristóbal</shipcity>
  +
<shipregion>Táchira</shipregion>
  +
<shippostalcode>5022</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10257</orderid>
  +
<productid>27</productid>
  +
<unitprice>35.1000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10257</orderid>
  +
<productid>39</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10257</orderid>
  +
<productid>77</productid>
  +
<unitprice>10.4000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10395</orderid>
  +
<customerid>HILAA</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1996-12-26</orderdate>
  +
<requireddate>1997-01-23</requireddate>
  +
<shippeddate>1997-01-03</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>184.4100</freight>
  +
<shipname>HILARION-Abastos</shipname>
  +
<shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress>
  +
<shipcity>San Cristóbal</shipcity>
  +
<shipregion>Táchira</shipregion>
  +
<shippostalcode>5022</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10395</orderid>
  +
<productid>46</productid>
  +
<unitprice>9.6000</unitprice>
  +
<quantity>28</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10395</orderid>
  +
<productid>53</productid>
  +
<unitprice>26.2000</unitprice>
  +
<quantity>70</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10395</orderid>
  +
<productid>69</productid>
  +
<unitprice>28.8000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10476</orderid>
  +
<customerid>HILAA</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-03-17</orderdate>
  +
<requireddate>1997-04-14</requireddate>
  +
<shippeddate>1997-03-24</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>4.4100</freight>
  +
<shipname>HILARION-Abastos</shipname>
  +
<shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress>
  +
<shipcity>San Cristóbal</shipcity>
  +
<shipregion>Táchira</shipregion>
  +
<shippostalcode>5022</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10476</orderid>
  +
<productid>55</productid>
  +
<unitprice>19.2000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10476</orderid>
  +
<productid>70</productid>
  +
<unitprice>12.0000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10486</orderid>
  +
<customerid>HILAA</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-03-26</orderdate>
  +
<requireddate>1997-04-23</requireddate>
  +
<shippeddate>1997-04-02</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>30.5300</freight>
  +
<shipname>HILARION-Abastos</shipname>
  +
<shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress>
  +
<shipcity>San Cristóbal</shipcity>
  +
<shipregion>Táchira</shipregion>
  +
<shippostalcode>5022</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10486</orderid>
  +
<productid>11</productid>
  +
<unitprice>16.8000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10486</orderid>
  +
<productid>51</productid>
  +
<unitprice>42.4000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10486</orderid>
  +
<productid>74</productid>
  +
<unitprice>8.0000</unitprice>
  +
<quantity>16</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10490</orderid>
  +
<customerid>HILAA</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-03-31</orderdate>
  +
<requireddate>1997-04-28</requireddate>
  +
<shippeddate>1997-04-03</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>210.1900</freight>
  +
<shipname>HILARION-Abastos</shipname>
  +
<shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress>
  +
<shipcity>San Cristóbal</shipcity>
  +
<shipregion>Táchira</shipregion>
  +
<shippostalcode>5022</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10490</orderid>
  +
<productid>59</productid>
  +
<unitprice>44.0000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10490</orderid>
  +
<productid>68</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10490</orderid>
  +
<productid>75</productid>
  +
<unitprice>6.2000</unitprice>
  +
<quantity>36</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10498</orderid>
  +
<customerid>HILAA</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-04-07</orderdate>
  +
<requireddate>1997-05-05</requireddate>
  +
<shippeddate>1997-04-11</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>29.7500</freight>
  +
<shipname>HILARION-Abastos</shipname>
  +
<shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress>
  +
<shipcity>San Cristóbal</shipcity>
  +
<shipregion>Táchira</shipregion>
  +
<shippostalcode>5022</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10498</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10498</orderid>
  +
<productid>40</productid>
  +
<unitprice>18.4000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10498</orderid>
  +
<productid>42</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10552</orderid>
  +
<customerid>HILAA</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-05-29</orderdate>
  +
<requireddate>1997-06-26</requireddate>
  +
<shippeddate>1997-06-05</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>83.2200</freight>
  +
<shipname>HILARION-Abastos</shipname>
  +
<shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress>
  +
<shipcity>San Cristóbal</shipcity>
  +
<shipregion>Táchira</shipregion>
  +
<shippostalcode>5022</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10552</orderid>
  +
<productid>69</productid>
  +
<unitprice>36.0000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10552</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10601</orderid>
  +
<customerid>HILAA</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-07-16</orderdate>
  +
<requireddate>1997-08-27</requireddate>
  +
<shippeddate>1997-07-22</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>58.3000</freight>
  +
<shipname>HILARION-Abastos</shipname>
  +
<shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress>
  +
<shipcity>San Cristóbal</shipcity>
  +
<shipregion>Táchira</shipregion>
  +
<shippostalcode>5022</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10601</orderid>
  +
<productid>13</productid>
  +
<unitprice>6.0000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10601</orderid>
  +
<productid>59</productid>
  +
<unitprice>55.0000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10613</orderid>
  +
<customerid>HILAA</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-07-29</orderdate>
  +
<requireddate>1997-08-26</requireddate>
  +
<shippeddate>1997-08-01</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>8.1100</freight>
  +
<shipname>HILARION-Abastos</shipname>
  +
<shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress>
  +
<shipcity>San Cristóbal</shipcity>
  +
<shipregion>Táchira</shipregion>
  +
<shippostalcode>5022</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10613</orderid>
  +
<productid>13</productid>
  +
<unitprice>6.0000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10613</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10641</orderid>
  +
<customerid>HILAA</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-08-22</orderdate>
  +
<requireddate>1997-09-19</requireddate>
  +
<shippeddate>1997-08-26</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>179.6100</freight>
  +
<shipname>HILARION-Abastos</shipname>
  +
<shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress>
  +
<shipcity>San Cristóbal</shipcity>
  +
<shipregion>Táchira</shipregion>
  +
<shippostalcode>5022</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10641</orderid>
  +
<productid>2</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10641</orderid>
  +
<productid>40</productid>
  +
<unitprice>18.4000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10705</orderid>
  +
<customerid>HILAA</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1997-10-15</orderdate>
  +
<requireddate>1997-11-12</requireddate>
  +
<shippeddate>1997-11-18</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>3.5200</freight>
  +
<shipname>HILARION-Abastos</shipname>
  +
<shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress>
  +
<shipcity>San Cristóbal</shipcity>
  +
<shipregion>Táchira</shipregion>
  +
<shippostalcode>5022</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10705</orderid>
  +
<productid>31</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10705</orderid>
  +
<productid>32</productid>
  +
<unitprice>32.0000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10796</orderid>
  +
<customerid>HILAA</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-12-25</orderdate>
  +
<requireddate>1998-01-22</requireddate>
  +
<shippeddate>1998-01-14</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>26.5200</freight>
  +
<shipname>HILARION-Abastos</shipname>
  +
<shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress>
  +
<shipcity>San Cristóbal</shipcity>
  +
<shipregion>Táchira</shipregion>
  +
<shippostalcode>5022</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10796</orderid>
  +
<productid>26</productid>
  +
<unitprice>31.2300</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10796</orderid>
  +
<productid>44</productid>
  +
<unitprice>19.4500</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10796</orderid>
  +
<productid>64</productid>
  +
<unitprice>33.2500</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10796</orderid>
  +
<productid>69</productid>
  +
<unitprice>36.0000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10863</orderid>
  +
<customerid>HILAA</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-02-02</orderdate>
  +
<requireddate>1998-03-02</requireddate>
  +
<shippeddate>1998-02-17</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>30.2600</freight>
  +
<shipname>HILARION-Abastos</shipname>
  +
<shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress>
  +
<shipcity>San Cristóbal</shipcity>
  +
<shipregion>Táchira</shipregion>
  +
<shippostalcode>5022</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10863</orderid>
  +
<productid>1</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10863</orderid>
  +
<productid>58</productid>
  +
<unitprice>13.2500</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10901</orderid>
  +
<customerid>HILAA</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-02-23</orderdate>
  +
<requireddate>1998-03-23</requireddate>
  +
<shippeddate>1998-02-26</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>62.0900</freight>
  +
<shipname>HILARION-Abastos</shipname>
  +
<shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress>
  +
<shipcity>San Cristóbal</shipcity>
  +
<shipregion>Táchira</shipregion>
  +
<shippostalcode>5022</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10901</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10901</orderid>
  +
<productid>71</productid>
  +
<unitprice>21.5000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10957</orderid>
  +
<customerid>HILAA</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1998-03-18</orderdate>
  +
<requireddate>1998-04-15</requireddate>
  +
<shippeddate>1998-03-27</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>105.3600</freight>
  +
<shipname>HILARION-Abastos</shipname>
  +
<shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress>
  +
<shipcity>San Cristóbal</shipcity>
  +
<shipregion>Táchira</shipregion>
  +
<shippostalcode>5022</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10957</orderid>
  +
<productid>30</productid>
  +
<unitprice>25.8900</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10957</orderid>
  +
<productid>35</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10957</orderid>
  +
<productid>64</productid>
  +
<unitprice>33.2500</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10960</orderid>
  +
<customerid>HILAA</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-03-19</orderdate>
  +
<requireddate>1998-04-02</requireddate>
  +
<shippeddate>1998-04-08</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>2.0800</freight>
  +
<shipname>HILARION-Abastos</shipname>
  +
<shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress>
  +
<shipcity>San Cristóbal</shipcity>
  +
<shipregion>Táchira</shipregion>
  +
<shippostalcode>5022</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10960</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10960</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10976</orderid>
  +
<customerid>HILAA</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-03-25</orderdate>
  +
<requireddate>1998-05-06</requireddate>
  +
<shippeddate>1998-04-03</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>37.9700</freight>
  +
<shipname>HILARION-Abastos</shipname>
  +
<shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress>
  +
<shipcity>San Cristóbal</shipcity>
  +
<shipregion>Táchira</shipregion>
  +
<shippostalcode>5022</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10976</orderid>
  +
<productid>28</productid>
  +
<unitprice>45.6000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11055</orderid>
  +
<customerid>HILAA</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1998-04-28</orderdate>
  +
<requireddate>1998-05-26</requireddate>
  +
<shippeddate>1998-05-05</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>120.9200</freight>
  +
<shipname>HILARION-Abastos</shipname>
  +
<shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress>
  +
<shipcity>San Cristóbal</shipcity>
  +
<shipregion>Táchira</shipregion>
  +
<shippostalcode>5022</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>11055</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11055</orderid>
  +
<productid>25</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11055</orderid>
  +
<productid>51</productid>
  +
<unitprice>53.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11055</orderid>
  +
<productid>57</productid>
  +
<unitprice>19.5000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>HUNGC</customerid>
  +
<companyname>Hungry Coyote Import Store</companyname>
  +
<contactname>Yoshi Latimer</contactname>
  +
<contacttitle>Sales Representative</contacttitle>
  +
<address>City Center Plaza 516 Main St.</address>
  +
<city>Elgin</city>
  +
<region>OR</region>
  +
<postalcode>97827</postalcode>
  +
<country>USA</country>
  +
<phone>(503) 555-6874</phone>
  +
<fax>(503) 555-2376</fax>
  +
<orders>
  +
<orderid>10375</orderid>
  +
<customerid>HUNGC</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1996-12-06</orderdate>
  +
<requireddate>1997-01-03</requireddate>
  +
<shippeddate>1996-12-09</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>20.1200</freight>
  +
<shipname>Hungry Coyote Import Store</shipname>
  +
<shipaddress>City Center Plaza 516 Main St.</shipaddress>
  +
<shipcity>Elgin</shipcity>
  +
<shipregion>OR</shipregion>
  +
<shippostalcode>97827</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10375</orderid>
  +
<productid>14</productid>
  +
<unitprice>18.6000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10375</orderid>
  +
<productid>54</productid>
  +
<unitprice>5.9000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10394</orderid>
  +
<customerid>HUNGC</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1996-12-25</orderdate>
  +
<requireddate>1997-01-22</requireddate>
  +
<shippeddate>1997-01-03</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>30.3400</freight>
  +
<shipname>Hungry Coyote Import Store</shipname>
  +
<shipaddress>City Center Plaza 516 Main St.</shipaddress>
  +
<shipcity>Elgin</shipcity>
  +
<shipregion>OR</shipregion>
  +
<shippostalcode>97827</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10394</orderid>
  +
<productid>13</productid>
  +
<unitprice>4.8000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10394</orderid>
  +
<productid>62</productid>
  +
<unitprice>39.4000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10415</orderid>
  +
<customerid>HUNGC</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-01-15</orderdate>
  +
<requireddate>1997-02-12</requireddate>
  +
<shippeddate>1997-01-24</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>0.2000</freight>
  +
<shipname>Hungry Coyote Import Store</shipname>
  +
<shipaddress>City Center Plaza 516 Main St.</shipaddress>
  +
<shipcity>Elgin</shipcity>
  +
<shipregion>OR</shipregion>
  +
<shippostalcode>97827</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10415</orderid>
  +
<productid>17</productid>
  +
<unitprice>31.2000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10415</orderid>
  +
<productid>33</productid>
  +
<unitprice>2.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10600</orderid>
  +
<customerid>HUNGC</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-07-16</orderdate>
  +
<requireddate>1997-08-13</requireddate>
  +
<shippeddate>1997-07-21</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>45.1300</freight>
  +
<shipname>Hungry Coyote Import Store</shipname>
  +
<shipaddress>City Center Plaza 516 Main St.</shipaddress>
  +
<shipcity>Elgin</shipcity>
  +
<shipregion>OR</shipregion>
  +
<shippostalcode>97827</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10600</orderid>
  +
<productid>54</productid>
  +
<unitprice>7.4500</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10600</orderid>
  +
<productid>73</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10660</orderid>
  +
<customerid>HUNGC</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-09-08</orderdate>
  +
<requireddate>1997-10-06</requireddate>
  +
<shippeddate>1997-10-15</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>111.2900</freight>
  +
<shipname>Hungry Coyote Import Store</shipname>
  +
<shipaddress>City Center Plaza 516 Main St.</shipaddress>
  +
<shipcity>Elgin</shipcity>
  +
<shipregion>OR</shipregion>
  +
<shippostalcode>97827</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10660</orderid>
  +
<productid>20</productid>
  +
<unitprice>81.0000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>HUNGO</customerid>
  +
<companyname>Hungry Owl All-Night Grocers</companyname>
  +
<contactname>Patricia McKenna</contactname>
  +
<contacttitle>Sales Associate</contacttitle>
  +
<address>8 Johnstown Road</address>
  +
<city>Cork</city>
  +
<region>Co. Cork</region>
  +
<country>Ireland</country>
  +
<phone>2967 542</phone>
  +
<fax>2967 3333</fax>
  +
<orders>
  +
<orderid>10298</orderid>
  +
<customerid>HUNGO</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1996-09-05</orderdate>
  +
<requireddate>1996-10-03</requireddate>
  +
<shippeddate>1996-09-11</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>168.2200</freight>
  +
<shipname>Hungry Owl All-Night Grocers</shipname>
  +
<shipaddress>8 Johnstown Road</shipaddress>
  +
<shipcity>Cork</shipcity>
  +
<shipregion>Co. Cork</shipregion>
  +
<shipcountry>Ireland</shipcountry>
  +
<orderdetails>
  +
<orderid>10298</orderid>
  +
<productid>2</productid>
  +
<unitprice>15.2000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10298</orderid>
  +
<productid>36</productid>
  +
<unitprice>15.2000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10298</orderid>
  +
<productid>59</productid>
  +
<unitprice>44.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10298</orderid>
  +
<productid>62</productid>
  +
<unitprice>39.4000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10309</orderid>
  +
<customerid>HUNGO</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1996-09-19</orderdate>
  +
<requireddate>1996-10-17</requireddate>
  +
<shippeddate>1996-10-23</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>47.3000</freight>
  +
<shipname>Hungry Owl All-Night Grocers</shipname>
  +
<shipaddress>8 Johnstown Road</shipaddress>
  +
<shipcity>Cork</shipcity>
  +
<shipregion>Co. Cork</shipregion>
  +
<shipcountry>Ireland</shipcountry>
  +
<orderdetails>
  +
<orderid>10309</orderid>
  +
<productid>4</productid>
  +
<unitprice>17.6000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10309</orderid>
  +
<productid>6</productid>
  +
<unitprice>20.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10309</orderid>
  +
<productid>42</productid>
  +
<unitprice>11.2000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10309</orderid>
  +
<productid>43</productid>
  +
<unitprice>36.8000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10309</orderid>
  +
<productid>71</productid>
  +
<unitprice>17.2000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10335</orderid>
  +
<customerid>HUNGO</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1996-10-22</orderdate>
  +
<requireddate>1996-11-19</requireddate>
  +
<shippeddate>1996-10-24</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>42.1100</freight>
  +
<shipname>Hungry Owl All-Night Grocers</shipname>
  +
<shipaddress>8 Johnstown Road</shipaddress>
  +
<shipcity>Cork</shipcity>
  +
<shipregion>Co. Cork</shipregion>
  +
<shipcountry>Ireland</shipcountry>
  +
<orderdetails>
  +
<orderid>10335</orderid>
  +
<productid>2</productid>
  +
<unitprice>15.2000</unitprice>
  +
<quantity>7</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10335</orderid>
  +
<productid>31</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10335</orderid>
  +
<productid>32</productid>
  +
<unitprice>25.6000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10335</orderid>
  +
<productid>51</productid>
  +
<unitprice>42.4000</unitprice>
  +
<quantity>48</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10373</orderid>
  +
<customerid>HUNGO</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1996-12-05</orderdate>
  +
<requireddate>1997-01-02</requireddate>
  +
<shippeddate>1996-12-11</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>124.1200</freight>
  +
<shipname>Hungry Owl All-Night Grocers</shipname>
  +
<shipaddress>8 Johnstown Road</shipaddress>
  +
<shipcity>Cork</shipcity>
  +
<shipregion>Co. Cork</shipregion>
  +
<shipcountry>Ireland</shipcountry>
  +
<orderdetails>
  +
<orderid>10373</orderid>
  +
<productid>58</productid>
  +
<unitprice>10.6000</unitprice>
  +
<quantity>80</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10373</orderid>
  +
<productid>71</productid>
  +
<unitprice>17.2000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10380</orderid>
  +
<customerid>HUNGO</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1996-12-12</orderdate>
  +
<requireddate>1997-01-09</requireddate>
  +
<shippeddate>1997-01-16</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>35.0300</freight>
  +
<shipname>Hungry Owl All-Night Grocers</shipname>
  +
<shipaddress>8 Johnstown Road</shipaddress>
  +
<shipcity>Cork</shipcity>
  +
<shipregion>Co. Cork</shipregion>
  +
<shipcountry>Ireland</shipcountry>
  +
<orderdetails>
  +
<orderid>10380</orderid>
  +
<productid>30</productid>
  +
<unitprice>20.7000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10380</orderid>
  +
<productid>53</productid>
  +
<unitprice>26.2000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10380</orderid>
  +
<productid>60</productid>
  +
<unitprice>27.2000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10380</orderid>
  +
<productid>70</productid>
  +
<unitprice>12.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10429</orderid>
  +
<customerid>HUNGO</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-01-29</orderdate>
  +
<requireddate>1997-03-12</requireddate>
  +
<shippeddate>1997-02-07</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>56.6300</freight>
  +
<shipname>Hungry Owl All-Night Grocers</shipname>
  +
<shipaddress>8 Johnstown Road</shipaddress>
  +
<shipcity>Cork</shipcity>
  +
<shipregion>Co. Cork</shipregion>
  +
<shipcountry>Ireland</shipcountry>
  +
<orderdetails>
  +
<orderid>10429</orderid>
  +
<productid>50</productid>
  +
<unitprice>13.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10429</orderid>
  +
<productid>63</productid>
  +
<unitprice>35.1000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10503</orderid>
  +
<customerid>HUNGO</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1997-04-11</orderdate>
  +
<requireddate>1997-05-09</requireddate>
  +
<shippeddate>1997-04-16</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>16.7400</freight>
  +
<shipname>Hungry Owl All-Night Grocers</shipname>
  +
<shipaddress>8 Johnstown Road</shipaddress>
  +
<shipcity>Cork</shipcity>
  +
<shipregion>Co. Cork</shipregion>
  +
<shipcountry>Ireland</shipcountry>
  +
<orderdetails>
  +
<orderid>10503</orderid>
  +
<productid>14</productid>
  +
<unitprice>23.2500</unitprice>
  +
<quantity>70</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10503</orderid>
  +
<productid>65</productid>
  +
<unitprice>21.0500</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10516</orderid>
  +
<customerid>HUNGO</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-04-24</orderdate>
  +
<requireddate>1997-05-22</requireddate>
  +
<shippeddate>1997-05-01</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>62.7800</freight>
  +
<shipname>Hungry Owl All-Night Grocers</shipname>
  +
<shipaddress>8 Johnstown Road</shipaddress>
  +
<shipcity>Cork</shipcity>
  +
<shipregion>Co. Cork</shipregion>
  +
<shipcountry>Ireland</shipcountry>
  +
<orderdetails>
  +
<orderid>10516</orderid>
  +
<productid>18</productid>
  +
<unitprice>62.5000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10516</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>80</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10516</orderid>
  +
<productid>42</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10567</orderid>
  +
<customerid>HUNGO</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-06-12</orderdate>
  +
<requireddate>1997-07-10</requireddate>
  +
<shippeddate>1997-06-17</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>33.9700</freight>
  +
<shipname>Hungry Owl All-Night Grocers</shipname>
  +
<shipaddress>8 Johnstown Road</shipaddress>
  +
<shipcity>Cork</shipcity>
  +
<shipregion>Co. Cork</shipregion>
  +
<shipcountry>Ireland</shipcountry>
  +
<orderdetails>
  +
<orderid>10567</orderid>
  +
<productid>31</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10567</orderid>
  +
<productid>51</productid>
  +
<unitprice>53.0000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10567</orderid>
  +
<productid>59</productid>
  +
<unitprice>55.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10646</orderid>
  +
<customerid>HUNGO</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1997-08-27</orderdate>
  +
<requireddate>1997-10-08</requireddate>
  +
<shippeddate>1997-09-03</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>142.3300</freight>
  +
<shipname>Hungry Owl All-Night Grocers</shipname>
  +
<shipaddress>8 Johnstown Road</shipaddress>
  +
<shipcity>Cork</shipcity>
  +
<shipregion>Co. Cork</shipregion>
  +
<shipcountry>Ireland</shipcountry>
  +
<orderdetails>
  +
<orderid>10646</orderid>
  +
<productid>1</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10646</orderid>
  +
<productid>10</productid>
  +
<unitprice>31.0000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10646</orderid>
  +
<productid>71</productid>
  +
<unitprice>21.5000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10646</orderid>
  +
<productid>77</productid>
  +
<unitprice>13.0000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10661</orderid>
  +
<customerid>HUNGO</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-09-09</orderdate>
  +
<requireddate>1997-10-07</requireddate>
  +
<shippeddate>1997-09-15</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>17.5500</freight>
  +
<shipname>Hungry Owl All-Night Grocers</shipname>
  +
<shipaddress>8 Johnstown Road</shipaddress>
  +
<shipcity>Cork</shipcity>
  +
<shipregion>Co. Cork</shipregion>
  +
<shipcountry>Ireland</shipcountry>
  +
<orderdetails>
  +
<orderid>10661</orderid>
  +
<productid>39</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10661</orderid>
  +
<productid>58</productid>
  +
<unitprice>13.2500</unitprice>
  +
<quantity>49</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10687</orderid>
  +
<customerid>HUNGO</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1997-09-30</orderdate>
  +
<requireddate>1997-10-28</requireddate>
  +
<shippeddate>1997-10-30</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>296.4300</freight>
  +
<shipname>Hungry Owl All-Night Grocers</shipname>
  +
<shipaddress>8 Johnstown Road</shipaddress>
  +
<shipcity>Cork</shipcity>
  +
<shipregion>Co. Cork</shipregion>
  +
<shipcountry>Ireland</shipcountry>
  +
<orderdetails>
  +
<orderid>10687</orderid>
  +
<productid>9</productid>
  +
<unitprice>97.0000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10687</orderid>
  +
<productid>29</productid>
  +
<unitprice>123.7900</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10687</orderid>
  +
<productid>36</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10701</orderid>
  +
<customerid>HUNGO</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1997-10-13</orderdate>
  +
<requireddate>1997-10-27</requireddate>
  +
<shippeddate>1997-10-15</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>220.3100</freight>
  +
<shipname>Hungry Owl All-Night Grocers</shipname>
  +
<shipaddress>8 Johnstown Road</shipaddress>
  +
<shipcity>Cork</shipcity>
  +
<shipregion>Co. Cork</shipregion>
  +
<shipcountry>Ireland</shipcountry>
  +
<orderdetails>
  +
<orderid>10701</orderid>
  +
<productid>59</productid>
  +
<unitprice>55.0000</unitprice>
  +
<quantity>42</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10701</orderid>
  +
<productid>71</productid>
  +
<unitprice>21.5000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10701</orderid>
  +
<productid>76</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10712</orderid>
  +
<customerid>HUNGO</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-10-21</orderdate>
  +
<requireddate>1997-11-18</requireddate>
  +
<shippeddate>1997-10-31</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>89.9300</freight>
  +
<shipname>Hungry Owl All-Night Grocers</shipname>
  +
<shipaddress>8 Johnstown Road</shipaddress>
  +
<shipcity>Cork</shipcity>
  +
<shipregion>Co. Cork</shipregion>
  +
<shipcountry>Ireland</shipcountry>
  +
<orderdetails>
  +
<orderid>10712</orderid>
  +
<productid>53</productid>
  +
<unitprice>32.8000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10712</orderid>
  +
<productid>56</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10736</orderid>
  +
<customerid>HUNGO</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1997-11-11</orderdate>
  +
<requireddate>1997-12-09</requireddate>
  +
<shippeddate>1997-11-21</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>44.1000</freight>
  +
<shipname>Hungry Owl All-Night Grocers</shipname>
  +
<shipaddress>8 Johnstown Road</shipaddress>
  +
<shipcity>Cork</shipcity>
  +
<shipregion>Co. Cork</shipregion>
  +
<shipcountry>Ireland</shipcountry>
  +
<orderdetails>
  +
<orderid>10736</orderid>
  +
<productid>65</productid>
  +
<unitprice>21.0500</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10736</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10897</orderid>
  +
<customerid>HUNGO</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-02-19</orderdate>
  +
<requireddate>1998-03-19</requireddate>
  +
<shippeddate>1998-02-25</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>603.5400</freight>
  +
<shipname>Hungry Owl All-Night Grocers</shipname>
  +
<shipaddress>8 Johnstown Road</shipaddress>
  +
<shipcity>Cork</shipcity>
  +
<shipregion>Co. Cork</shipregion>
  +
<shipcountry>Ireland</shipcountry>
  +
<orderdetails>
  +
<orderid>10897</orderid>
  +
<productid>29</productid>
  +
<unitprice>123.7900</unitprice>
  +
<quantity>80</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10897</orderid>
  +
<productid>30</productid>
  +
<unitprice>25.8900</unitprice>
  +
<quantity>36</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10912</orderid>
  +
<customerid>HUNGO</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-02-26</orderdate>
  +
<requireddate>1998-03-26</requireddate>
  +
<shippeddate>1998-03-18</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>580.9100</freight>
  +
<shipname>Hungry Owl All-Night Grocers</shipname>
  +
<shipaddress>8 Johnstown Road</shipaddress>
  +
<shipcity>Cork</shipcity>
  +
<shipregion>Co. Cork</shipregion>
  +
<shipcountry>Ireland</shipcountry>
  +
<orderdetails>
  +
<orderid>10912</orderid>
  +
<productid>11</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10912</orderid>
  +
<productid>29</productid>
  +
<unitprice>123.7900</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10985</orderid>
  +
<customerid>HUNGO</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-03-30</orderdate>
  +
<requireddate>1998-04-27</requireddate>
  +
<shippeddate>1998-04-02</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>91.5100</freight>
  +
<shipname>Hungry Owl All-Night Grocers</shipname>
  +
<shipaddress>8 Johnstown Road</shipaddress>
  +
<shipcity>Cork</shipcity>
  +
<shipregion>Co. Cork</shipregion>
  +
<shipcountry>Ireland</shipcountry>
  +
<orderdetails>
  +
<orderid>10985</orderid>
  +
<productid>16</productid>
  +
<unitprice>17.4500</unitprice>
  +
<quantity>36</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10985</orderid>
  +
<productid>18</productid>
  +
<unitprice>62.5000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10985</orderid>
  +
<productid>32</productid>
  +
<unitprice>32.0000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11063</orderid>
  +
<customerid>HUNGO</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-04-30</orderdate>
  +
<requireddate>1998-05-28</requireddate>
  +
<shippeddate>1998-05-06</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>81.7300</freight>
  +
<shipname>Hungry Owl All-Night Grocers</shipname>
  +
<shipaddress>8 Johnstown Road</shipaddress>
  +
<shipcity>Cork</shipcity>
  +
<shipregion>Co. Cork</shipregion>
  +
<shipcountry>Ireland</shipcountry>
  +
<orderdetails>
  +
<orderid>11063</orderid>
  +
<productid>34</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11063</orderid>
  +
<productid>40</productid>
  +
<unitprice>18.4000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11063</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>ISLAT</customerid>
  +
<companyname>Island Trading</companyname>
  +
<contactname>Helen Bennett</contactname>
  +
<contacttitle>Marketing Manager</contacttitle>
  +
<address>Garden House Crowther Way</address>
  +
<city>Cowes</city>
  +
<region>Isle of Wight</region>
  +
<postalcode>PO31 7PJ</postalcode>
  +
<country>UK</country>
  +
<phone>(198) 555-8888</phone>
  +
<orders>
  +
<orderid>10315</orderid>
  +
<customerid>ISLAT</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1996-09-26</orderdate>
  +
<requireddate>1996-10-24</requireddate>
  +
<shippeddate>1996-10-03</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>41.7600</freight>
  +
<shipname>Island Trading</shipname>
  +
<shipaddress>Garden House Crowther Way</shipaddress>
  +
<shipcity>Cowes</shipcity>
  +
<shipregion>Isle of Wight</shipregion>
  +
<shippostalcode>PO31 7PJ</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10315</orderid>
  +
<productid>34</productid>
  +
<unitprice>11.2000</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10315</orderid>
  +
<productid>70</productid>
  +
<unitprice>12.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10318</orderid>
  +
<customerid>ISLAT</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1996-10-01</orderdate>
  +
<requireddate>1996-10-29</requireddate>
  +
<shippeddate>1996-10-04</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>4.7300</freight>
  +
<shipname>Island Trading</shipname>
  +
<shipaddress>Garden House Crowther Way</shipaddress>
  +
<shipcity>Cowes</shipcity>
  +
<shipregion>Isle of Wight</shipregion>
  +
<shippostalcode>PO31 7PJ</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10318</orderid>
  +
<productid>41</productid>
  +
<unitprice>7.7000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10318</orderid>
  +
<productid>76</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10321</orderid>
  +
<customerid>ISLAT</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1996-10-03</orderdate>
  +
<requireddate>1996-10-31</requireddate>
  +
<shippeddate>1996-10-11</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>3.4300</freight>
  +
<shipname>Island Trading</shipname>
  +
<shipaddress>Garden House Crowther Way</shipaddress>
  +
<shipcity>Cowes</shipcity>
  +
<shipregion>Isle of Wight</shipregion>
  +
<shippostalcode>PO31 7PJ</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10321</orderid>
  +
<productid>35</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10473</orderid>
  +
<customerid>ISLAT</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-03-13</orderdate>
  +
<requireddate>1997-03-27</requireddate>
  +
<shippeddate>1997-03-21</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>16.3700</freight>
  +
<shipname>Island Trading</shipname>
  +
<shipaddress>Garden House Crowther Way</shipaddress>
  +
<shipcity>Cowes</shipcity>
  +
<shipregion>Isle of Wight</shipregion>
  +
<shippostalcode>PO31 7PJ</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10473</orderid>
  +
<productid>33</productid>
  +
<unitprice>2.0000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10473</orderid>
  +
<productid>71</productid>
  +
<unitprice>17.2000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10621</orderid>
  +
<customerid>ISLAT</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-08-05</orderdate>
  +
<requireddate>1997-09-02</requireddate>
  +
<shippeddate>1997-08-11</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>23.7300</freight>
  +
<shipname>Island Trading</shipname>
  +
<shipaddress>Garden House Crowther Way</shipaddress>
  +
<shipcity>Cowes</shipcity>
  +
<shipregion>Isle of Wight</shipregion>
  +
<shippostalcode>PO31 7PJ</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10621</orderid>
  +
<productid>19</productid>
  +
<unitprice>9.2000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10621</orderid>
  +
<productid>23</productid>
  +
<unitprice>9.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10621</orderid>
  +
<productid>70</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10621</orderid>
  +
<productid>71</productid>
  +
<unitprice>21.5000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10674</orderid>
  +
<customerid>ISLAT</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-09-18</orderdate>
  +
<requireddate>1997-10-16</requireddate>
  +
<shippeddate>1997-09-30</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>0.9000</freight>
  +
<shipname>Island Trading</shipname>
  +
<shipaddress>Garden House Crowther Way</shipaddress>
  +
<shipcity>Cowes</shipcity>
  +
<shipregion>Isle of Wight</shipregion>
  +
<shippostalcode>PO31 7PJ</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10674</orderid>
  +
<productid>23</productid>
  +
<unitprice>9.0000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10749</orderid>
  +
<customerid>ISLAT</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-11-20</orderdate>
  +
<requireddate>1997-12-18</requireddate>
  +
<shippeddate>1997-12-19</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>61.5300</freight>
  +
<shipname>Island Trading</shipname>
  +
<shipaddress>Garden House Crowther Way</shipaddress>
  +
<shipcity>Cowes</shipcity>
  +
<shipregion>Isle of Wight</shipregion>
  +
<shippostalcode>PO31 7PJ</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10749</orderid>
  +
<productid>56</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10749</orderid>
  +
<productid>59</productid>
  +
<unitprice>55.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10749</orderid>
  +
<productid>76</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10798</orderid>
  +
<customerid>ISLAT</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-12-26</orderdate>
  +
<requireddate>1998-01-23</requireddate>
  +
<shippeddate>1998-01-05</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>2.3300</freight>
  +
<shipname>Island Trading</shipname>
  +
<shipaddress>Garden House Crowther Way</shipaddress>
  +
<shipcity>Cowes</shipcity>
  +
<shipregion>Isle of Wight</shipregion>
  +
<shippostalcode>PO31 7PJ</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10798</orderid>
  +
<productid>62</productid>
  +
<unitprice>49.3000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10798</orderid>
  +
<productid>72</productid>
  +
<unitprice>34.8000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10829</orderid>
  +
<customerid>ISLAT</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1998-01-13</orderdate>
  +
<requireddate>1998-02-10</requireddate>
  +
<shippeddate>1998-01-23</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>154.7200</freight>
  +
<shipname>Island Trading</shipname>
  +
<shipaddress>Garden House Crowther Way</shipaddress>
  +
<shipcity>Cowes</shipcity>
  +
<shipregion>Isle of Wight</shipregion>
  +
<shippostalcode>PO31 7PJ</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10829</orderid>
  +
<productid>2</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10829</orderid>
  +
<productid>8</productid>
  +
<unitprice>40.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10829</orderid>
  +
<productid>13</productid>
  +
<unitprice>6.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10829</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10933</orderid>
  +
<customerid>ISLAT</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1998-03-06</orderdate>
  +
<requireddate>1998-04-03</requireddate>
  +
<shippeddate>1998-03-16</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>54.1500</freight>
  +
<shipname>Island Trading</shipname>
  +
<shipaddress>Garden House Crowther Way</shipaddress>
  +
<shipcity>Cowes</shipcity>
  +
<shipregion>Isle of Wight</shipregion>
  +
<shippostalcode>PO31 7PJ</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10933</orderid>
  +
<productid>53</productid>
  +
<unitprice>32.8000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10933</orderid>
  +
<productid>61</productid>
  +
<unitprice>28.5000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>KOENE</customerid>
  +
<companyname>Königlich Essen</companyname>
  +
<contactname>Philip Cramer</contactname>
  +
<contacttitle>Sales Associate</contacttitle>
  +
<address>Maubelstr. 90</address>
  +
<city>Brandenburg</city>
  +
<postalcode>14776</postalcode>
  +
<country>Germany</country>
  +
<phone>0555-09876</phone>
  +
<orders>
  +
<orderid>10323</orderid>
  +
<customerid>KOENE</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1996-10-07</orderdate>
  +
<requireddate>1996-11-04</requireddate>
  +
<shippeddate>1996-10-14</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>4.8800</freight>
  +
<shipname>Königlich Essen</shipname>
  +
<shipaddress>Maubelstr. 90</shipaddress>
  +
<shipcity>Brandenburg</shipcity>
  +
<shippostalcode>14776</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10323</orderid>
  +
<productid>15</productid>
  +
<unitprice>12.4000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10323</orderid>
  +
<productid>25</productid>
  +
<unitprice>11.2000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10323</orderid>
  +
<productid>39</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10325</orderid>
  +
<customerid>KOENE</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1996-10-09</orderdate>
  +
<requireddate>1996-10-23</requireddate>
  +
<shippeddate>1996-10-14</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>64.8600</freight>
  +
<shipname>Königlich Essen</shipname>
  +
<shipaddress>Maubelstr. 90</shipaddress>
  +
<shipcity>Brandenburg</shipcity>
  +
<shippostalcode>14776</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10325</orderid>
  +
<productid>6</productid>
  +
<unitprice>20.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10325</orderid>
  +
<productid>13</productid>
  +
<unitprice>4.8000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10325</orderid>
  +
<productid>14</productid>
  +
<unitprice>18.6000</unitprice>
  +
<quantity>9</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10325</orderid>
  +
<productid>31</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10325</orderid>
  +
<productid>72</productid>
  +
<unitprice>27.8000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10456</orderid>
  +
<customerid>KOENE</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-02-25</orderdate>
  +
<requireddate>1997-04-08</requireddate>
  +
<shippeddate>1997-02-28</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>8.1200</freight>
  +
<shipname>Königlich Essen</shipname>
  +
<shipaddress>Maubelstr. 90</shipaddress>
  +
<shipcity>Brandenburg</shipcity>
  +
<shippostalcode>14776</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10456</orderid>
  +
<productid>21</productid>
  +
<unitprice>8.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10456</orderid>
  +
<productid>49</productid>
  +
<unitprice>16.0000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10457</orderid>
  +
<customerid>KOENE</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-02-25</orderdate>
  +
<requireddate>1997-03-25</requireddate>
  +
<shippeddate>1997-03-03</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>11.5700</freight>
  +
<shipname>Königlich Essen</shipname>
  +
<shipaddress>Maubelstr. 90</shipaddress>
  +
<shipcity>Brandenburg</shipcity>
  +
<shippostalcode>14776</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10457</orderid>
  +
<productid>59</productid>
  +
<unitprice>44.0000</unitprice>
  +
<quantity>36</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10468</orderid>
  +
<customerid>KOENE</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-03-07</orderdate>
  +
<requireddate>1997-04-04</requireddate>
  +
<shippeddate>1997-03-12</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>44.1200</freight>
  +
<shipname>Königlich Essen</shipname>
  +
<shipaddress>Maubelstr. 90</shipaddress>
  +
<shipcity>Brandenburg</shipcity>
  +
<shippostalcode>14776</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10468</orderid>
  +
<productid>30</productid>
  +
<unitprice>20.7000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10468</orderid>
  +
<productid>43</productid>
  +
<unitprice>36.8000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10506</orderid>
  +
<customerid>KOENE</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1997-04-15</orderdate>
  +
<requireddate>1997-05-13</requireddate>
  +
<shippeddate>1997-05-02</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>21.1900</freight>
  +
<shipname>Königlich Essen</shipname>
  +
<shipaddress>Maubelstr. 90</shipaddress>
  +
<shipcity>Brandenburg</shipcity>
  +
<shippostalcode>14776</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10506</orderid>
  +
<productid>25</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10506</orderid>
  +
<productid>70</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10542</orderid>
  +
<customerid>KOENE</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-05-20</orderdate>
  +
<requireddate>1997-06-17</requireddate>
  +
<shippeddate>1997-05-26</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>10.9500</freight>
  +
<shipname>Königlich Essen</shipname>
  +
<shipaddress>Maubelstr. 90</shipaddress>
  +
<shipcity>Brandenburg</shipcity>
  +
<shippostalcode>14776</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10542</orderid>
  +
<productid>11</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10542</orderid>
  +
<productid>54</productid>
  +
<unitprice>7.4500</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10630</orderid>
  +
<customerid>KOENE</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-08-13</orderdate>
  +
<requireddate>1997-09-10</requireddate>
  +
<shippeddate>1997-08-19</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>32.3500</freight>
  +
<shipname>Königlich Essen</shipname>
  +
<shipaddress>Maubelstr. 90</shipaddress>
  +
<shipcity>Brandenburg</shipcity>
  +
<shippostalcode>14776</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10630</orderid>
  +
<productid>55</productid>
  +
<unitprice>24.0000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10630</orderid>
  +
<productid>76</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10718</orderid>
  +
<customerid>KOENE</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-10-27</orderdate>
  +
<requireddate>1997-11-24</requireddate>
  +
<shippeddate>1997-10-29</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>170.8800</freight>
  +
<shipname>Königlich Essen</shipname>
  +
<shipaddress>Maubelstr. 90</shipaddress>
  +
<shipcity>Brandenburg</shipcity>
  +
<shippostalcode>14776</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10718</orderid>
  +
<productid>12</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>36</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10718</orderid>
  +
<productid>16</productid>
  +
<unitprice>17.4500</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10718</orderid>
  +
<productid>36</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10718</orderid>
  +
<productid>62</productid>
  +
<unitprice>49.3000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10799</orderid>
  +
<customerid>KOENE</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1997-12-26</orderdate>
  +
<requireddate>1998-02-06</requireddate>
  +
<shippeddate>1998-01-05</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>30.7600</freight>
  +
<shipname>Königlich Essen</shipname>
  +
<shipaddress>Maubelstr. 90</shipaddress>
  +
<shipcity>Brandenburg</shipcity>
  +
<shippostalcode>14776</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10799</orderid>
  +
<productid>13</productid>
  +
<unitprice>6.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10799</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10799</orderid>
  +
<productid>59</productid>
  +
<unitprice>55.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10817</orderid>
  +
<customerid>KOENE</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-01-06</orderdate>
  +
<requireddate>1998-01-20</requireddate>
  +
<shippeddate>1998-01-13</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>306.0700</freight>
  +
<shipname>Königlich Essen</shipname>
  +
<shipaddress>Maubelstr. 90</shipaddress>
  +
<shipcity>Brandenburg</shipcity>
  +
<shippostalcode>14776</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10817</orderid>
  +
<productid>26</productid>
  +
<unitprice>31.2300</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10817</orderid>
  +
<productid>38</productid>
  +
<unitprice>263.5000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10817</orderid>
  +
<productid>40</productid>
  +
<unitprice>18.4000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10817</orderid>
  +
<productid>62</productid>
  +
<unitprice>49.3000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10849</orderid>
  +
<customerid>KOENE</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1998-01-23</orderdate>
  +
<requireddate>1998-02-20</requireddate>
  +
<shippeddate>1998-01-30</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>0.5600</freight>
  +
<shipname>Königlich Essen</shipname>
  +
<shipaddress>Maubelstr. 90</shipaddress>
  +
<shipcity>Brandenburg</shipcity>
  +
<shippostalcode>14776</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10849</orderid>
  +
<productid>3</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>49</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10849</orderid>
  +
<productid>26</productid>
  +
<unitprice>31.2300</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10893</orderid>
  +
<customerid>KOENE</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1998-02-18</orderdate>
  +
<requireddate>1998-03-18</requireddate>
  +
<shippeddate>1998-02-20</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>77.7800</freight>
  +
<shipname>Königlich Essen</shipname>
  +
<shipaddress>Maubelstr. 90</shipaddress>
  +
<shipcity>Brandenburg</shipcity>
  +
<shippostalcode>14776</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10893</orderid>
  +
<productid>8</productid>
  +
<unitprice>40.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10893</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10893</orderid>
  +
<productid>29</productid>
  +
<unitprice>123.7900</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10893</orderid>
  +
<productid>30</productid>
  +
<unitprice>25.8900</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10893</orderid>
  +
<productid>36</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11028</orderid>
  +
<customerid>KOENE</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-04-16</orderdate>
  +
<requireddate>1998-05-14</requireddate>
  +
<shippeddate>1998-04-22</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>29.5900</freight>
  +
<shipname>Königlich Essen</shipname>
  +
<shipaddress>Maubelstr. 90</shipaddress>
  +
<shipcity>Brandenburg</shipcity>
  +
<shippostalcode>14776</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>11028</orderid>
  +
<productid>55</productid>
  +
<unitprice>24.0000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11028</orderid>
  +
<productid>59</productid>
  +
<unitprice>55.0000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>LACOR</customerid>
  +
<companyname>La corne d'abondance</companyname>
  +
<contactname>Daniel Tonini</contactname>
  +
<contacttitle>Sales Representative</contacttitle>
  +
<address>67, avenue de l'Europe</address>
  +
<city>Versailles</city>
  +
<postalcode>78000</postalcode>
  +
<country>France</country>
  +
<phone>30.59.84.10</phone>
  +
<fax>30.59.85.11</fax>
  +
<orders>
  +
<orderid>10858</orderid>
  +
<customerid>LACOR</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-01-29</orderdate>
  +
<requireddate>1998-02-26</requireddate>
  +
<shippeddate>1998-02-03</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>52.5100</freight>
  +
<shipname>La corne d'abondance</shipname>
  +
<shipaddress>67, avenue de l'Europe</shipaddress>
  +
<shipcity>Versailles</shipcity>
  +
<shippostalcode>78000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10858</orderid>
  +
<productid>7</productid>
  +
<unitprice>30.0000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10858</orderid>
  +
<productid>27</productid>
  +
<unitprice>43.9000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10858</orderid>
  +
<productid>70</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10927</orderid>
  +
<customerid>LACOR</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-03-05</orderdate>
  +
<requireddate>1998-04-02</requireddate>
  +
<shippeddate>1998-04-08</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>19.7900</freight>
  +
<shipname>La corne d'abondance</shipname>
  +
<shipaddress>67, avenue de l'Europe</shipaddress>
  +
<shipcity>Versailles</shipcity>
  +
<shippostalcode>78000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10927</orderid>
  +
<productid>20</productid>
  +
<unitprice>81.0000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10927</orderid>
  +
<productid>52</productid>
  +
<unitprice>7.0000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10927</orderid>
  +
<productid>76</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10972</orderid>
  +
<customerid>LACOR</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-03-24</orderdate>
  +
<requireddate>1998-04-21</requireddate>
  +
<shippeddate>1998-03-26</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>0.0200</freight>
  +
<shipname>La corne d'abondance</shipname>
  +
<shipaddress>67, avenue de l'Europe</shipaddress>
  +
<shipcity>Versailles</shipcity>
  +
<shippostalcode>78000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10972</orderid>
  +
<productid>17</productid>
  +
<unitprice>39.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10972</orderid>
  +
<productid>33</productid>
  +
<unitprice>2.5000</unitprice>
  +
<quantity>7</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10973</orderid>
  +
<customerid>LACOR</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1998-03-24</orderdate>
  +
<requireddate>1998-04-21</requireddate>
  +
<shippeddate>1998-03-27</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>15.1700</freight>
  +
<shipname>La corne d'abondance</shipname>
  +
<shipaddress>67, avenue de l'Europe</shipaddress>
  +
<shipcity>Versailles</shipcity>
  +
<shippostalcode>78000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10973</orderid>
  +
<productid>26</productid>
  +
<unitprice>31.2300</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10973</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10973</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>LAMAI</customerid>
  +
<companyname>La maison d'Asie</companyname>
  +
<contactname>Annette Roulet</contactname>
  +
<contacttitle>Sales Manager</contacttitle>
  +
<address>1 rue Alsace-Lorraine</address>
  +
<city>Toulouse</city>
  +
<postalcode>31000</postalcode>
  +
<country>France</country>
  +
<phone>61.77.61.10</phone>
  +
<fax>61.77.61.11</fax>
  +
<orders>
  +
<orderid>10350</orderid>
  +
<customerid>LAMAI</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1996-11-11</orderdate>
  +
<requireddate>1996-12-09</requireddate>
  +
<shippeddate>1996-12-03</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>64.1900</freight>
  +
<shipname>La maison d'Asie</shipname>
  +
<shipaddress>1 rue Alsace-Lorraine</shipaddress>
  +
<shipcity>Toulouse</shipcity>
  +
<shippostalcode>31000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10350</orderid>
  +
<productid>50</productid>
  +
<unitprice>13.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10350</orderid>
  +
<productid>69</productid>
  +
<unitprice>28.8000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10358</orderid>
  +
<customerid>LAMAI</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1996-11-20</orderdate>
  +
<requireddate>1996-12-18</requireddate>
  +
<shippeddate>1996-11-27</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>19.6400</freight>
  +
<shipname>La maison d'Asie</shipname>
  +
<shipaddress>1 rue Alsace-Lorraine</shipaddress>
  +
<shipcity>Toulouse</shipcity>
  +
<shippostalcode>31000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10358</orderid>
  +
<productid>24</productid>
  +
<unitprice>3.6000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10358</orderid>
  +
<productid>34</productid>
  +
<unitprice>11.2000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10358</orderid>
  +
<productid>36</productid>
  +
<unitprice>15.2000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10371</orderid>
  +
<customerid>LAMAI</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1996-12-03</orderdate>
  +
<requireddate>1996-12-31</requireddate>
  +
<shippeddate>1996-12-24</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>0.4500</freight>
  +
<shipname>La maison d'Asie</shipname>
  +
<shipaddress>1 rue Alsace-Lorraine</shipaddress>
  +
<shipcity>Toulouse</shipcity>
  +
<shippostalcode>31000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10371</orderid>
  +
<productid>36</productid>
  +
<unitprice>15.2000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10413</orderid>
  +
<customerid>LAMAI</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-01-14</orderdate>
  +
<requireddate>1997-02-11</requireddate>
  +
<shippeddate>1997-01-16</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>95.6600</freight>
  +
<shipname>La maison d'Asie</shipname>
  +
<shipaddress>1 rue Alsace-Lorraine</shipaddress>
  +
<shipcity>Toulouse</shipcity>
  +
<shippostalcode>31000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10413</orderid>
  +
<productid>1</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10413</orderid>
  +
<productid>62</productid>
  +
<unitprice>39.4000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10413</orderid>
  +
<productid>76</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10425</orderid>
  +
<customerid>LAMAI</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1997-01-24</orderdate>
  +
<requireddate>1997-02-21</requireddate>
  +
<shippeddate>1997-02-14</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>7.9300</freight>
  +
<shipname>La maison d'Asie</shipname>
  +
<shipaddress>1 rue Alsace-Lorraine</shipaddress>
  +
<shipcity>Toulouse</shipcity>
  +
<shippostalcode>31000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10425</orderid>
  +
<productid>55</productid>
  +
<unitprice>19.2000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10425</orderid>
  +
<productid>76</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10454</orderid>
  +
<customerid>LAMAI</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-02-21</orderdate>
  +
<requireddate>1997-03-21</requireddate>
  +
<shippeddate>1997-02-25</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>2.7400</freight>
  +
<shipname>La maison d'Asie</shipname>
  +
<shipaddress>1 rue Alsace-Lorraine</shipaddress>
  +
<shipcity>Toulouse</shipcity>
  +
<shippostalcode>31000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10454</orderid>
  +
<productid>16</productid>
  +
<unitprice>13.9000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10454</orderid>
  +
<productid>33</productid>
  +
<unitprice>2.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10454</orderid>
  +
<productid>46</productid>
  +
<unitprice>9.6000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10493</orderid>
  +
<customerid>LAMAI</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-04-02</orderdate>
  +
<requireddate>1997-04-30</requireddate>
  +
<shippeddate>1997-04-10</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>10.6400</freight>
  +
<shipname>La maison d'Asie</shipname>
  +
<shipaddress>1 rue Alsace-Lorraine</shipaddress>
  +
<shipcity>Toulouse</shipcity>
  +
<shippostalcode>31000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10493</orderid>
  +
<productid>65</productid>
  +
<unitprice>16.8000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10493</orderid>
  +
<productid>66</productid>
  +
<unitprice>13.6000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10493</orderid>
  +
<productid>69</productid>
  +
<unitprice>28.8000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10500</orderid>
  +
<customerid>LAMAI</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1997-04-09</orderdate>
  +
<requireddate>1997-05-07</requireddate>
  +
<shippeddate>1997-04-17</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>42.6800</freight>
  +
<shipname>La maison d'Asie</shipname>
  +
<shipaddress>1 rue Alsace-Lorraine</shipaddress>
  +
<shipcity>Toulouse</shipcity>
  +
<shippostalcode>31000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10500</orderid>
  +
<productid>15</productid>
  +
<unitprice>15.5000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10500</orderid>
  +
<productid>28</productid>
  +
<unitprice>45.6000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10610</orderid>
  +
<customerid>LAMAI</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-07-25</orderdate>
  +
<requireddate>1997-08-22</requireddate>
  +
<shippeddate>1997-08-06</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>26.7800</freight>
  +
<shipname>La maison d'Asie</shipname>
  +
<shipaddress>1 rue Alsace-Lorraine</shipaddress>
  +
<shipcity>Toulouse</shipcity>
  +
<shippostalcode>31000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10610</orderid>
  +
<productid>36</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10631</orderid>
  +
<customerid>LAMAI</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-08-14</orderdate>
  +
<requireddate>1997-09-11</requireddate>
  +
<shippeddate>1997-08-15</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>0.8700</freight>
  +
<shipname>La maison d'Asie</shipname>
  +
<shipaddress>1 rue Alsace-Lorraine</shipaddress>
  +
<shipcity>Toulouse</shipcity>
  +
<shippostalcode>31000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10631</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10787</orderid>
  +
<customerid>LAMAI</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-12-19</orderdate>
  +
<requireddate>1998-01-02</requireddate>
  +
<shippeddate>1997-12-26</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>249.9300</freight>
  +
<shipname>La maison d'Asie</shipname>
  +
<shipaddress>1 rue Alsace-Lorraine</shipaddress>
  +
<shipcity>Toulouse</shipcity>
  +
<shippostalcode>31000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10787</orderid>
  +
<productid>2</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10787</orderid>
  +
<productid>29</productid>
  +
<unitprice>123.7900</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10832</orderid>
  +
<customerid>LAMAI</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-01-14</orderdate>
  +
<requireddate>1998-02-11</requireddate>
  +
<shippeddate>1998-01-19</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>43.2600</freight>
  +
<shipname>La maison d'Asie</shipname>
  +
<shipaddress>1 rue Alsace-Lorraine</shipaddress>
  +
<shipcity>Toulouse</shipcity>
  +
<shippostalcode>31000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10832</orderid>
  +
<productid>13</productid>
  +
<unitprice>6.0000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10832</orderid>
  +
<productid>25</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10832</orderid>
  +
<productid>44</productid>
  +
<unitprice>19.4500</unitprice>
  +
<quantity>16</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10832</orderid>
  +
<productid>64</productid>
  +
<unitprice>33.2500</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10923</orderid>
  +
<customerid>LAMAI</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1998-03-03</orderdate>
  +
<requireddate>1998-04-14</requireddate>
  +
<shippeddate>1998-03-13</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>68.2600</freight>
  +
<shipname>La maison d'Asie</shipname>
  +
<shipaddress>1 rue Alsace-Lorraine</shipaddress>
  +
<shipcity>Toulouse</shipcity>
  +
<shippostalcode>31000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10923</orderid>
  +
<productid>42</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10923</orderid>
  +
<productid>43</productid>
  +
<unitprice>46.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10923</orderid>
  +
<productid>67</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11051</orderid>
  +
<customerid>LAMAI</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1998-04-27</orderdate>
  +
<requireddate>1998-05-25</requireddate>
  +
<shipvia>3</shipvia>
  +
<freight>2.7900</freight>
  +
<shipname>La maison d'Asie</shipname>
  +
<shipaddress>1 rue Alsace-Lorraine</shipaddress>
  +
<shipcity>Toulouse</shipcity>
  +
<shippostalcode>31000</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>11051</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>LAUGB</customerid>
  +
<companyname>Laughing Bacchus Wine Cellars</companyname>
  +
<contactname>Yoshi Tannamuri</contactname>
  +
<contacttitle>Marketing Assistant</contacttitle>
  +
<address>1900 Oak St.</address>
  +
<city>Vancouver</city>
  +
<region>BC</region>
  +
<postalcode>V3F 2K1</postalcode>
  +
<country>Canada</country>
  +
<phone>(604) 555-3392</phone>
  +
<fax>(604) 555-7293</fax>
  +
<orders>
  +
<orderid>10495</orderid>
  +
<customerid>LAUGB</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-04-03</orderdate>
  +
<requireddate>1997-05-01</requireddate>
  +
<shippeddate>1997-04-11</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>4.6500</freight>
  +
<shipname>Laughing Bacchus Wine Cellars</shipname>
  +
<shipaddress>2319 Elm St.</shipaddress>
  +
<shipcity>Vancouver</shipcity>
  +
<shipregion>BC</shipregion>
  +
<shippostalcode>V3F 2K1</shippostalcode>
  +
<shipcountry>Canada</shipcountry>
  +
<orderdetails>
  +
<orderid>10495</orderid>
  +
<productid>23</productid>
  +
<unitprice>7.2000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10495</orderid>
  +
<productid>41</productid>
  +
<unitprice>7.7000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10495</orderid>
  +
<productid>77</productid>
  +
<unitprice>10.4000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10620</orderid>
  +
<customerid>LAUGB</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-08-05</orderdate>
  +
<requireddate>1997-09-02</requireddate>
  +
<shippeddate>1997-08-14</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>0.9400</freight>
  +
<shipname>Laughing Bacchus Wine Cellars</shipname>
  +
<shipaddress>2319 Elm St.</shipaddress>
  +
<shipcity>Vancouver</shipcity>
  +
<shipregion>BC</shipregion>
  +
<shippostalcode>V3F 2K1</shippostalcode>
  +
<shipcountry>Canada</shipcountry>
  +
<orderdetails>
  +
<orderid>10620</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10620</orderid>
  +
<productid>52</productid>
  +
<unitprice>7.0000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10810</orderid>
  +
<customerid>LAUGB</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-01-01</orderdate>
  +
<requireddate>1998-01-29</requireddate>
  +
<shippeddate>1998-01-07</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>4.3300</freight>
  +
<shipname>Laughing Bacchus Wine Cellars</shipname>
  +
<shipaddress>2319 Elm St.</shipaddress>
  +
<shipcity>Vancouver</shipcity>
  +
<shipregion>BC</shipregion>
  +
<shippostalcode>V3F 2K1</shippostalcode>
  +
<shipcountry>Canada</shipcountry>
  +
<orderdetails>
  +
<orderid>10810</orderid>
  +
<productid>13</productid>
  +
<unitprice>6.0000</unitprice>
  +
<quantity>7</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10810</orderid>
  +
<productid>25</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10810</orderid>
  +
<productid>70</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>LAZYK</customerid>
  +
<companyname>Lazy K Kountry Store</companyname>
  +
<contactname>John Steel</contactname>
  +
<contacttitle>Marketing Manager</contacttitle>
  +
<address>12 Orchestra Terrace</address>
  +
<city>Walla Walla</city>
  +
<region>WA</region>
  +
<postalcode>99362</postalcode>
  +
<country>USA</country>
  +
<phone>(509) 555-7969</phone>
  +
<fax>(509) 555-6221</fax>
  +
<orders>
  +
<orderid>10482</orderid>
  +
<customerid>LAZYK</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-03-21</orderdate>
  +
<requireddate>1997-04-18</requireddate>
  +
<shippeddate>1997-04-10</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>7.4800</freight>
  +
<shipname>Lazy K Kountry Store</shipname>
  +
<shipaddress>12 Orchestra Terrace</shipaddress>
  +
<shipcity>Walla Walla</shipcity>
  +
<shipregion>WA</shipregion>
  +
<shippostalcode>99362</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10482</orderid>
  +
<productid>40</productid>
  +
<unitprice>14.7000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10545</orderid>
  +
<customerid>LAZYK</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-05-22</orderdate>
  +
<requireddate>1997-06-19</requireddate>
  +
<shippeddate>1997-06-26</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>11.9200</freight>
  +
<shipname>Lazy K Kountry Store</shipname>
  +
<shipaddress>12 Orchestra Terrace</shipaddress>
  +
<shipcity>Walla Walla</shipcity>
  +
<shipregion>WA</shipregion>
  +
<shippostalcode>99362</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10545</orderid>
  +
<productid>11</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>LEHMS</customerid>
  +
<companyname>Lehmanns Marktstand</companyname>
  +
<contactname>Renate Messner</contactname>
  +
<contacttitle>Sales Representative</contacttitle>
  +
<address>Magazinweg 7</address>
  +
<city>Frankfurt a.M.</city>
  +
<postalcode>60528</postalcode>
  +
<country>Germany</country>
  +
<phone>069-0245984</phone>
  +
<fax>069-0245874</fax>
  +
<orders>
  +
<orderid>10279</orderid>
  +
<customerid>LEHMS</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1996-08-13</orderdate>
  +
<requireddate>1996-09-10</requireddate>
  +
<shippeddate>1996-08-16</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>25.8300</freight>
  +
<shipname>Lehmanns Marktstand</shipname>
  +
<shipaddress>Magazinweg 7</shipaddress>
  +
<shipcity>Frankfurt a.M.</shipcity>
  +
<shippostalcode>60528</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10279</orderid>
  +
<productid>17</productid>
  +
<unitprice>31.2000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10284</orderid>
  +
<customerid>LEHMS</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1996-08-19</orderdate>
  +
<requireddate>1996-09-16</requireddate>
  +
<shippeddate>1996-08-27</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>76.5600</freight>
  +
<shipname>Lehmanns Marktstand</shipname>
  +
<shipaddress>Magazinweg 7</shipaddress>
  +
<shipcity>Frankfurt a.M.</shipcity>
  +
<shippostalcode>60528</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10284</orderid>
  +
<productid>27</productid>
  +
<unitprice>35.1000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10284</orderid>
  +
<productid>44</productid>
  +
<unitprice>15.5000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10284</orderid>
  +
<productid>60</productid>
  +
<unitprice>27.2000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10284</orderid>
  +
<productid>67</productid>
  +
<unitprice>11.2000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10343</orderid>
  +
<customerid>LEHMS</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1996-10-31</orderdate>
  +
<requireddate>1996-11-28</requireddate>
  +
<shippeddate>1996-11-06</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>110.3700</freight>
  +
<shipname>Lehmanns Marktstand</shipname>
  +
<shipaddress>Magazinweg 7</shipaddress>
  +
<shipcity>Frankfurt a.M.</shipcity>
  +
<shippostalcode>60528</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10343</orderid>
  +
<productid>64</productid>
  +
<unitprice>26.6000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10343</orderid>
  +
<productid>68</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10343</orderid>
  +
<productid>76</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10497</orderid>
  +
<customerid>LEHMS</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-04-04</orderdate>
  +
<requireddate>1997-05-02</requireddate>
  +
<shippeddate>1997-04-07</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>36.2100</freight>
  +
<shipname>Lehmanns Marktstand</shipname>
  +
<shipaddress>Magazinweg 7</shipaddress>
  +
<shipcity>Frankfurt a.M.</shipcity>
  +
<shippostalcode>60528</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10497</orderid>
  +
<productid>56</productid>
  +
<unitprice>30.4000</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10497</orderid>
  +
<productid>72</productid>
  +
<unitprice>27.8000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10497</orderid>
  +
<productid>77</productid>
  +
<unitprice>10.4000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10522</orderid>
  +
<customerid>LEHMS</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-04-30</orderdate>
  +
<requireddate>1997-05-28</requireddate>
  +
<shippeddate>1997-05-06</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>45.3300</freight>
  +
<shipname>Lehmanns Marktstand</shipname>
  +
<shipaddress>Magazinweg 7</shipaddress>
  +
<shipcity>Frankfurt a.M.</shipcity>
  +
<shippostalcode>60528</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10522</orderid>
  +
<productid>1</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10522</orderid>
  +
<productid>8</productid>
  +
<unitprice>40.0000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10522</orderid>
  +
<productid>30</productid>
  +
<unitprice>25.8900</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10522</orderid>
  +
<productid>40</productid>
  +
<unitprice>18.4000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10534</orderid>
  +
<customerid>LEHMS</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-05-12</orderdate>
  +
<requireddate>1997-06-09</requireddate>
  +
<shippeddate>1997-05-14</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>27.9400</freight>
  +
<shipname>Lehmanns Marktstand</shipname>
  +
<shipaddress>Magazinweg 7</shipaddress>
  +
<shipcity>Frankfurt a.M.</shipcity>
  +
<shippostalcode>60528</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10534</orderid>
  +
<productid>30</productid>
  +
<unitprice>25.8900</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10534</orderid>
  +
<productid>40</productid>
  +
<unitprice>18.4000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10534</orderid>
  +
<productid>54</productid>
  +
<unitprice>7.4500</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10536</orderid>
  +
<customerid>LEHMS</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-05-14</orderdate>
  +
<requireddate>1997-06-11</requireddate>
  +
<shippeddate>1997-06-06</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>58.8800</freight>
  +
<shipname>Lehmanns Marktstand</shipname>
  +
<shipaddress>Magazinweg 7</shipaddress>
  +
<shipcity>Frankfurt a.M.</shipcity>
  +
<shippostalcode>60528</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10536</orderid>
  +
<productid>12</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10536</orderid>
  +
<productid>31</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10536</orderid>
  +
<productid>33</productid>
  +
<unitprice>2.5000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10536</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10557</orderid>
  +
<customerid>LEHMS</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1997-06-03</orderdate>
  +
<requireddate>1997-06-17</requireddate>
  +
<shippeddate>1997-06-06</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>96.7200</freight>
  +
<shipname>Lehmanns Marktstand</shipname>
  +
<shipaddress>Magazinweg 7</shipaddress>
  +
<shipcity>Frankfurt a.M.</shipcity>
  +
<shippostalcode>60528</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10557</orderid>
  +
<productid>64</productid>
  +
<unitprice>33.2500</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10557</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10592</orderid>
  +
<customerid>LEHMS</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-07-08</orderdate>
  +
<requireddate>1997-08-05</requireddate>
  +
<shippeddate>1997-07-16</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>32.1000</freight>
  +
<shipname>Lehmanns Marktstand</shipname>
  +
<shipaddress>Magazinweg 7</shipaddress>
  +
<shipcity>Frankfurt a.M.</shipcity>
  +
<shippostalcode>60528</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10592</orderid>
  +
<productid>15</productid>
  +
<unitprice>15.5000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10592</orderid>
  +
<productid>26</productid>
  +
<unitprice>31.2300</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10593</orderid>
  +
<customerid>LEHMS</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-07-09</orderdate>
  +
<requireddate>1997-08-06</requireddate>
  +
<shippeddate>1997-08-13</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>174.2000</freight>
  +
<shipname>Lehmanns Marktstand</shipname>
  +
<shipaddress>Magazinweg 7</shipaddress>
  +
<shipcity>Frankfurt a.M.</shipcity>
  +
<shippostalcode>60528</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10593</orderid>
  +
<productid>20</productid>
  +
<unitprice>81.0000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10593</orderid>
  +
<productid>69</productid>
  +
<unitprice>36.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10593</orderid>
  +
<productid>76</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10772</orderid>
  +
<customerid>LEHMS</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-12-10</orderdate>
  +
<requireddate>1998-01-07</requireddate>
  +
<shippeddate>1997-12-19</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>91.2800</freight>
  +
<shipname>Lehmanns Marktstand</shipname>
  +
<shipaddress>Magazinweg 7</shipaddress>
  +
<shipcity>Frankfurt a.M.</shipcity>
  +
<shippostalcode>60528</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10772</orderid>
  +
<productid>29</productid>
  +
<unitprice>123.7900</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10772</orderid>
  +
<productid>59</productid>
  +
<unitprice>55.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10862</orderid>
  +
<customerid>LEHMS</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1998-01-30</orderdate>
  +
<requireddate>1998-03-13</requireddate>
  +
<shippeddate>1998-02-02</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>53.2300</freight>
  +
<shipname>Lehmanns Marktstand</shipname>
  +
<shipaddress>Magazinweg 7</shipaddress>
  +
<shipcity>Frankfurt a.M.</shipcity>
  +
<shippostalcode>60528</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10862</orderid>
  +
<productid>11</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10862</orderid>
  +
<productid>52</productid>
  +
<unitprice>7.0000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10891</orderid>
  +
<customerid>LEHMS</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1998-02-17</orderdate>
  +
<requireddate>1998-03-17</requireddate>
  +
<shippeddate>1998-02-19</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>20.3700</freight>
  +
<shipname>Lehmanns Marktstand</shipname>
  +
<shipaddress>Magazinweg 7</shipaddress>
  +
<shipcity>Frankfurt a.M.</shipcity>
  +
<shippostalcode>60528</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10891</orderid>
  +
<productid>30</productid>
  +
<unitprice>25.8900</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10934</orderid>
  +
<customerid>LEHMS</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-03-09</orderdate>
  +
<requireddate>1998-04-06</requireddate>
  +
<shippeddate>1998-03-12</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>32.0100</freight>
  +
<shipname>Lehmanns Marktstand</shipname>
  +
<shipaddress>Magazinweg 7</shipaddress>
  +
<shipcity>Frankfurt a.M.</shipcity>
  +
<shippostalcode>60528</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10934</orderid>
  +
<productid>6</productid>
  +
<unitprice>25.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11070</orderid>
  +
<customerid>LEHMS</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-05-05</orderdate>
  +
<requireddate>1998-06-02</requireddate>
  +
<shipvia>1</shipvia>
  +
<freight>136.0000</freight>
  +
<shipname>Lehmanns Marktstand</shipname>
  +
<shipaddress>Magazinweg 7</shipaddress>
  +
<shipcity>Frankfurt a.M.</shipcity>
  +
<shippostalcode>60528</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>11070</orderid>
  +
<productid>1</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11070</orderid>
  +
<productid>2</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11070</orderid>
  +
<productid>16</productid>
  +
<unitprice>17.4500</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11070</orderid>
  +
<productid>31</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>LETSS</customerid>
  +
<companyname>Let's Stop N Shop</companyname>
  +
<contactname>Jaime Yorres</contactname>
  +
<contacttitle>Owner</contacttitle>
  +
<address>87 Polk St. Suite 5</address>
  +
<city>San Francisco</city>
  +
<region>CA</region>
  +
<postalcode>94117</postalcode>
  +
<country>USA</country>
  +
<phone>(415) 555-5938</phone>
  +
<orders>
  +
<orderid>10579</orderid>
  +
<customerid>LETSS</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-06-25</orderdate>
  +
<requireddate>1997-07-23</requireddate>
  +
<shippeddate>1997-07-04</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>13.7300</freight>
  +
<shipname>Let's Stop N Shop</shipname>
  +
<shipaddress>87 Polk St. Suite 5</shipaddress>
  +
<shipcity>San Francisco</shipcity>
  +
<shipregion>CA</shipregion>
  +
<shippostalcode>94117</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10579</orderid>
  +
<productid>15</productid>
  +
<unitprice>15.5000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10579</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10719</orderid>
  +
<customerid>LETSS</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-10-27</orderdate>
  +
<requireddate>1997-11-24</requireddate>
  +
<shippeddate>1997-11-05</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>51.4400</freight>
  +
<shipname>Let's Stop N Shop</shipname>
  +
<shipaddress>87 Polk St. Suite 5</shipaddress>
  +
<shipcity>San Francisco</shipcity>
  +
<shipregion>CA</shipregion>
  +
<shippostalcode>94117</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10719</orderid>
  +
<productid>18</productid>
  +
<unitprice>62.5000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10719</orderid>
  +
<productid>30</productid>
  +
<unitprice>25.8900</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10719</orderid>
  +
<productid>54</productid>
  +
<unitprice>7.4500</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10735</orderid>
  +
<customerid>LETSS</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1997-11-10</orderdate>
  +
<requireddate>1997-12-08</requireddate>
  +
<shippeddate>1997-11-21</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>45.9700</freight>
  +
<shipname>Let's Stop N Shop</shipname>
  +
<shipaddress>87 Polk St. Suite 5</shipaddress>
  +
<shipcity>San Francisco</shipcity>
  +
<shipregion>CA</shipregion>
  +
<shippostalcode>94117</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10735</orderid>
  +
<productid>61</productid>
  +
<unitprice>28.5000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10735</orderid>
  +
<productid>77</productid>
  +
<unitprice>13.0000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10884</orderid>
  +
<customerid>LETSS</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-02-12</orderdate>
  +
<requireddate>1998-03-12</requireddate>
  +
<shippeddate>1998-02-13</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>90.9700</freight>
  +
<shipname>Let's Stop N Shop</shipname>
  +
<shipaddress>87 Polk St. Suite 5</shipaddress>
  +
<shipcity>San Francisco</shipcity>
  +
<shipregion>CA</shipregion>
  +
<shippostalcode>94117</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10884</orderid>
  +
<productid>21</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10884</orderid>
  +
<productid>56</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10884</orderid>
  +
<productid>65</productid>
  +
<unitprice>21.0500</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>LILAS</customerid>
  +
<companyname>LILA-Supermercado</companyname>
  +
<contactname>Carlos González</contactname>
  +
<contacttitle>Accounting Manager</contacttitle>
  +
<address>Carrera 52 con Ave. Bolívar #65-98 Llano Largo</address>
  +
<city>Barquisimeto</city>
  +
<region>Lara</region>
  +
<postalcode>3508</postalcode>
  +
<country>Venezuela</country>
  +
<phone>(9) 331-6954</phone>
  +
<fax>(9) 331-7256</fax>
  +
<orders>
  +
<orderid>10283</orderid>
  +
<customerid>LILAS</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1996-08-16</orderdate>
  +
<requireddate>1996-09-13</requireddate>
  +
<shippeddate>1996-08-23</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>84.8100</freight>
  +
<shipname>LILA-Supermercado</shipname>
  +
<shipaddress>Carrera 52 con Ave. Bolívar #65-98 Llano Largo</shipaddress>
  +
<shipcity>Barquisimeto</shipcity>
  +
<shipregion>Lara</shipregion>
  +
<shippostalcode>3508</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10283</orderid>
  +
<productid>15</productid>
  +
<unitprice>12.4000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10283</orderid>
  +
<productid>19</productid>
  +
<unitprice>7.3000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10283</orderid>
  +
<productid>60</productid>
  +
<unitprice>27.2000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10283</orderid>
  +
<productid>72</productid>
  +
<unitprice>27.8000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10296</orderid>
  +
<customerid>LILAS</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1996-09-03</orderdate>
  +
<requireddate>1996-10-01</requireddate>
  +
<shippeddate>1996-09-11</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>0.1200</freight>
  +
<shipname>LILA-Supermercado</shipname>
  +
<shipaddress>Carrera 52 con Ave. Bolívar #65-98 Llano Largo</shipaddress>
  +
<shipcity>Barquisimeto</shipcity>
  +
<shipregion>Lara</shipregion>
  +
<shippostalcode>3508</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10296</orderid>
  +
<productid>11</productid>
  +
<unitprice>16.8000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10296</orderid>
  +
<productid>16</productid>
  +
<unitprice>13.9000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10296</orderid>
  +
<productid>69</productid>
  +
<unitprice>28.8000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10330</orderid>
  +
<customerid>LILAS</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1996-10-16</orderdate>
  +
<requireddate>1996-11-13</requireddate>
  +
<shippeddate>1996-10-28</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>12.7500</freight>
  +
<shipname>LILA-Supermercado</shipname>
  +
<shipaddress>Carrera 52 con Ave. Bolívar #65-98 Llano Largo</shipaddress>
  +
<shipcity>Barquisimeto</shipcity>
  +
<shipregion>Lara</shipregion>
  +
<shippostalcode>3508</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10330</orderid>
  +
<productid>26</productid>
  +
<unitprice>24.9000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10330</orderid>
  +
<productid>72</productid>
  +
<unitprice>27.8000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10357</orderid>
  +
<customerid>LILAS</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1996-11-19</orderdate>
  +
<requireddate>1996-12-17</requireddate>
  +
<shippeddate>1996-12-02</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>34.8800</freight>
  +
<shipname>LILA-Supermercado</shipname>
  +
<shipaddress>Carrera 52 con Ave. Bolívar #65-98 Llano Largo</shipaddress>
  +
<shipcity>Barquisimeto</shipcity>
  +
<shipregion>Lara</shipregion>
  +
<shippostalcode>3508</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10357</orderid>
  +
<productid>10</productid>
  +
<unitprice>24.8000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10357</orderid>
  +
<productid>26</productid>
  +
<unitprice>24.9000</unitprice>
  +
<quantity>16</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10357</orderid>
  +
<productid>60</productid>
  +
<unitprice>27.2000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10381</orderid>
  +
<customerid>LILAS</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1996-12-12</orderdate>
  +
<requireddate>1997-01-09</requireddate>
  +
<shippeddate>1996-12-13</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>7.9900</freight>
  +
<shipname>LILA-Supermercado</shipname>
  +
<shipaddress>Carrera 52 con Ave. Bolívar #65-98 Llano Largo</shipaddress>
  +
<shipcity>Barquisimeto</shipcity>
  +
<shipregion>Lara</shipregion>
  +
<shippostalcode>3508</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10381</orderid>
  +
<productid>74</productid>
  +
<unitprice>8.0000</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10461</orderid>
  +
<customerid>LILAS</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-02-28</orderdate>
  +
<requireddate>1997-03-28</requireddate>
  +
<shippeddate>1997-03-05</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>148.6100</freight>
  +
<shipname>LILA-Supermercado</shipname>
  +
<shipaddress>Carrera 52 con Ave. Bolívar #65-98 Llano Largo</shipaddress>
  +
<shipcity>Barquisimeto</shipcity>
  +
<shipregion>Lara</shipregion>
  +
<shippostalcode>3508</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10461</orderid>
  +
<productid>21</productid>
  +
<unitprice>8.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10461</orderid>
  +
<productid>30</productid>
  +
<unitprice>20.7000</unitprice>
  +
<quantity>28</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10461</orderid>
  +
<productid>55</productid>
  +
<unitprice>19.2000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10499</orderid>
  +
<customerid>LILAS</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-04-08</orderdate>
  +
<requireddate>1997-05-06</requireddate>
  +
<shippeddate>1997-04-16</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>102.0200</freight>
  +
<shipname>LILA-Supermercado</shipname>
  +
<shipaddress>Carrera 52 con Ave. Bolívar #65-98 Llano Largo</shipaddress>
  +
<shipcity>Barquisimeto</shipcity>
  +
<shipregion>Lara</shipregion>
  +
<shippostalcode>3508</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10499</orderid>
  +
<productid>28</productid>
  +
<unitprice>45.6000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10499</orderid>
  +
<productid>49</productid>
  +
<unitprice>20.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10543</orderid>
  +
<customerid>LILAS</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-05-21</orderdate>
  +
<requireddate>1997-06-18</requireddate>
  +
<shippeddate>1997-05-23</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>48.1700</freight>
  +
<shipname>LILA-Supermercado</shipname>
  +
<shipaddress>Carrera 52 con Ave. Bolívar #65-98 Llano Largo</shipaddress>
  +
<shipcity>Barquisimeto</shipcity>
  +
<shipregion>Lara</shipregion>
  +
<shippostalcode>3508</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10543</orderid>
  +
<productid>12</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10543</orderid>
  +
<productid>23</productid>
  +
<unitprice>9.0000</unitprice>
  +
<quantity>70</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10780</orderid>
  +
<customerid>LILAS</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-12-16</orderdate>
  +
<requireddate>1997-12-30</requireddate>
  +
<shippeddate>1997-12-25</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>42.1300</freight>
  +
<shipname>LILA-Supermercado</shipname>
  +
<shipaddress>Carrera 52 con Ave. Bolívar #65-98 Llano Largo</shipaddress>
  +
<shipcity>Barquisimeto</shipcity>
  +
<shipregion>Lara</shipregion>
  +
<shippostalcode>3508</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10780</orderid>
  +
<productid>70</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10780</orderid>
  +
<productid>77</productid>
  +
<unitprice>13.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10823</orderid>
  +
<customerid>LILAS</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1998-01-09</orderdate>
  +
<requireddate>1998-02-06</requireddate>
  +
<shippeddate>1998-01-13</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>163.9700</freight>
  +
<shipname>LILA-Supermercado</shipname>
  +
<shipaddress>Carrera 52 con Ave. Bolívar #65-98 Llano Largo</shipaddress>
  +
<shipcity>Barquisimeto</shipcity>
  +
<shipregion>Lara</shipregion>
  +
<shippostalcode>3508</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10823</orderid>
  +
<productid>11</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10823</orderid>
  +
<productid>57</productid>
  +
<unitprice>19.5000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10823</orderid>
  +
<productid>59</productid>
  +
<unitprice>55.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10823</orderid>
  +
<productid>77</productid>
  +
<unitprice>13.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10899</orderid>
  +
<customerid>LILAS</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1998-02-20</orderdate>
  +
<requireddate>1998-03-20</requireddate>
  +
<shippeddate>1998-02-26</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>1.2100</freight>
  +
<shipname>LILA-Supermercado</shipname>
  +
<shipaddress>Carrera 52 con Ave. Bolívar #65-98 Llano Largo</shipaddress>
  +
<shipcity>Barquisimeto</shipcity>
  +
<shipregion>Lara</shipregion>
  +
<shippostalcode>3508</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10899</orderid>
  +
<productid>39</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10997</orderid>
  +
<customerid>LILAS</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1998-04-03</orderdate>
  +
<requireddate>1998-05-15</requireddate>
  +
<shippeddate>1998-04-13</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>73.9100</freight>
  +
<shipname>LILA-Supermercado</shipname>
  +
<shipaddress>Carrera 52 con Ave. Bolívar #65-98 Llano Largo</shipaddress>
  +
<shipcity>Barquisimeto</shipcity>
  +
<shipregion>Lara</shipregion>
  +
<shippostalcode>3508</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10997</orderid>
  +
<productid>32</productid>
  +
<unitprice>32.0000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10997</orderid>
  +
<productid>46</productid>
  +
<unitprice>12.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10997</orderid>
  +
<productid>52</productid>
  +
<unitprice>7.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11065</orderid>
  +
<customerid>LILAS</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1998-05-01</orderdate>
  +
<requireddate>1998-05-29</requireddate>
  +
<shipvia>1</shipvia>
  +
<freight>12.9100</freight>
  +
<shipname>LILA-Supermercado</shipname>
  +
<shipaddress>Carrera 52 con Ave. Bolívar #65-98 Llano Largo</shipaddress>
  +
<shipcity>Barquisimeto</shipcity>
  +
<shipregion>Lara</shipregion>
  +
<shippostalcode>3508</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>11065</orderid>
  +
<productid>30</productid>
  +
<unitprice>25.8900</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11065</orderid>
  +
<productid>54</productid>
  +
<unitprice>7.4500</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11071</orderid>
  +
<customerid>LILAS</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-05-05</orderdate>
  +
<requireddate>1998-06-02</requireddate>
  +
<shipvia>1</shipvia>
  +
<freight>0.9300</freight>
  +
<shipname>LILA-Supermercado</shipname>
  +
<shipaddress>Carrera 52 con Ave. Bolívar #65-98 Llano Largo</shipaddress>
  +
<shipcity>Barquisimeto</shipcity>
  +
<shipregion>Lara</shipregion>
  +
<shippostalcode>3508</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>11071</orderid>
  +
<productid>7</productid>
  +
<unitprice>30.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11071</orderid>
  +
<productid>13</productid>
  +
<unitprice>6.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>LINOD</customerid>
  +
<companyname>LINO-Delicateses</companyname>
  +
<contactname>Felipe Izquierdo</contactname>
  +
<contacttitle>Owner</contacttitle>
  +
<address>Ave. 5 de Mayo Porlamar</address>
  +
<city>I. de Margarita</city>
  +
<region>Nueva Esparta</region>
  +
<postalcode>4980</postalcode>
  +
<country>Venezuela</country>
  +
<phone>(8) 34-56-12</phone>
  +
<fax>(8) 34-93-93</fax>
  +
<orders>
  +
<orderid>10405</orderid>
  +
<customerid>LINOD</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-01-06</orderdate>
  +
<requireddate>1997-02-03</requireddate>
  +
<shippeddate>1997-01-22</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>34.8200</freight>
  +
<shipname>LINO-Delicateses</shipname>
  +
<shipaddress>Ave. 5 de Mayo Porlamar</shipaddress>
  +
<shipcity>I. de Margarita</shipcity>
  +
<shipregion>Nueva Esparta</shipregion>
  +
<shippostalcode>4980</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10405</orderid>
  +
<productid>3</productid>
  +
<unitprice>8.0000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10485</orderid>
  +
<customerid>LINOD</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-03-25</orderdate>
  +
<requireddate>1997-04-08</requireddate>
  +
<shippeddate>1997-03-31</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>64.4500</freight>
  +
<shipname>LINO-Delicateses</shipname>
  +
<shipaddress>Ave. 5 de Mayo Porlamar</shipaddress>
  +
<shipcity>I. de Margarita</shipcity>
  +
<shipregion>Nueva Esparta</shipregion>
  +
<shippostalcode>4980</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10485</orderid>
  +
<productid>2</productid>
  +
<unitprice>15.2000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10485</orderid>
  +
<productid>3</productid>
  +
<unitprice>8.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10485</orderid>
  +
<productid>55</productid>
  +
<unitprice>19.2000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10485</orderid>
  +
<productid>70</productid>
  +
<unitprice>12.0000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10638</orderid>
  +
<customerid>LINOD</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-08-20</orderdate>
  +
<requireddate>1997-09-17</requireddate>
  +
<shippeddate>1997-09-01</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>158.4400</freight>
  +
<shipname>LINO-Delicateses</shipname>
  +
<shipaddress>Ave. 5 de Mayo Porlamar</shipaddress>
  +
<shipcity>I. de Margarita</shipcity>
  +
<shipregion>Nueva Esparta</shipregion>
  +
<shippostalcode>4980</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10638</orderid>
  +
<productid>45</productid>
  +
<unitprice>9.5000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10638</orderid>
  +
<productid>65</productid>
  +
<unitprice>21.0500</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10638</orderid>
  +
<productid>72</productid>
  +
<unitprice>34.8000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10697</orderid>
  +
<customerid>LINOD</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-10-08</orderdate>
  +
<requireddate>1997-11-05</requireddate>
  +
<shippeddate>1997-10-14</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>45.5200</freight>
  +
<shipname>LINO-Delicateses</shipname>
  +
<shipaddress>Ave. 5 de Mayo Porlamar</shipaddress>
  +
<shipcity>I. de Margarita</shipcity>
  +
<shipregion>Nueva Esparta</shipregion>
  +
<shippostalcode>4980</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10697</orderid>
  +
<productid>19</productid>
  +
<unitprice>9.2000</unitprice>
  +
<quantity>7</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10697</orderid>
  +
<productid>35</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>9</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10697</orderid>
  +
<productid>58</productid>
  +
<unitprice>13.2500</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10697</orderid>
  +
<productid>70</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10729</orderid>
  +
<customerid>LINOD</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-11-04</orderdate>
  +
<requireddate>1997-12-16</requireddate>
  +
<shippeddate>1997-11-14</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>141.0600</freight>
  +
<shipname>LINO-Delicateses</shipname>
  +
<shipaddress>Ave. 5 de Mayo Porlamar</shipaddress>
  +
<shipcity>I. de Margarita</shipcity>
  +
<shipregion>Nueva Esparta</shipregion>
  +
<shippostalcode>4980</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10729</orderid>
  +
<productid>1</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10729</orderid>
  +
<productid>21</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10729</orderid>
  +
<productid>50</productid>
  +
<unitprice>16.2500</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10811</orderid>
  +
<customerid>LINOD</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1998-01-02</orderdate>
  +
<requireddate>1998-01-30</requireddate>
  +
<shippeddate>1998-01-08</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>31.2200</freight>
  +
<shipname>LINO-Delicateses</shipname>
  +
<shipaddress>Ave. 5 de Mayo Porlamar</shipaddress>
  +
<shipcity>I. de Margarita</shipcity>
  +
<shipregion>Nueva Esparta</shipregion>
  +
<shippostalcode>4980</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10811</orderid>
  +
<productid>19</productid>
  +
<unitprice>9.2000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10811</orderid>
  +
<productid>23</productid>
  +
<unitprice>9.0000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10811</orderid>
  +
<productid>40</productid>
  +
<unitprice>18.4000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10838</orderid>
  +
<customerid>LINOD</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-01-19</orderdate>
  +
<requireddate>1998-02-16</requireddate>
  +
<shippeddate>1998-01-23</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>59.2800</freight>
  +
<shipname>LINO-Delicateses</shipname>
  +
<shipaddress>Ave. 5 de Mayo Porlamar</shipaddress>
  +
<shipcity>I. de Margarita</shipcity>
  +
<shipregion>Nueva Esparta</shipregion>
  +
<shippostalcode>4980</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10838</orderid>
  +
<productid>1</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10838</orderid>
  +
<productid>18</productid>
  +
<unitprice>62.5000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10838</orderid>
  +
<productid>36</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10840</orderid>
  +
<customerid>LINOD</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-01-19</orderdate>
  +
<requireddate>1998-03-02</requireddate>
  +
<shippeddate>1998-02-16</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>2.7100</freight>
  +
<shipname>LINO-Delicateses</shipname>
  +
<shipaddress>Ave. 5 de Mayo Porlamar</shipaddress>
  +
<shipcity>I. de Margarita</shipcity>
  +
<shipregion>Nueva Esparta</shipregion>
  +
<shippostalcode>4980</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10840</orderid>
  +
<productid>25</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10840</orderid>
  +
<productid>39</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10919</orderid>
  +
<customerid>LINOD</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-03-02</orderdate>
  +
<requireddate>1998-03-30</requireddate>
  +
<shippeddate>1998-03-04</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>19.8000</freight>
  +
<shipname>LINO-Delicateses</shipname>
  +
<shipaddress>Ave. 5 de Mayo Porlamar</shipaddress>
  +
<shipcity>I. de Margarita</shipcity>
  +
<shipregion>Nueva Esparta</shipregion>
  +
<shippostalcode>4980</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10919</orderid>
  +
<productid>16</productid>
  +
<unitprice>17.4500</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10919</orderid>
  +
<productid>25</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10919</orderid>
  +
<productid>40</productid>
  +
<unitprice>18.4000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10954</orderid>
  +
<customerid>LINOD</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1998-03-17</orderdate>
  +
<requireddate>1998-04-28</requireddate>
  +
<shippeddate>1998-03-20</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>27.9100</freight>
  +
<shipname>LINO-Delicateses</shipname>
  +
<shipaddress>Ave. 5 de Mayo Porlamar</shipaddress>
  +
<shipcity>I. de Margarita</shipcity>
  +
<shipregion>Nueva Esparta</shipregion>
  +
<shippostalcode>4980</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>10954</orderid>
  +
<productid>16</productid>
  +
<unitprice>17.4500</unitprice>
  +
<quantity>28</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10954</orderid>
  +
<productid>31</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10954</orderid>
  +
<productid>45</productid>
  +
<unitprice>9.5000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10954</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11014</orderid>
  +
<customerid>LINOD</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-04-10</orderdate>
  +
<requireddate>1998-05-08</requireddate>
  +
<shippeddate>1998-04-15</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>23.6000</freight>
  +
<shipname>LINO-Delicateses</shipname>
  +
<shipaddress>Ave. 5 de Mayo Porlamar</shipaddress>
  +
<shipcity>I. de Margarita</shipcity>
  +
<shipregion>Nueva Esparta</shipregion>
  +
<shippostalcode>4980</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>11014</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>28</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11039</orderid>
  +
<customerid>LINOD</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-04-21</orderdate>
  +
<requireddate>1998-05-19</requireddate>
  +
<shipvia>2</shipvia>
  +
<freight>65.0000</freight>
  +
<shipname>LINO-Delicateses</shipname>
  +
<shipaddress>Ave. 5 de Mayo Porlamar</shipaddress>
  +
<shipcity>I. de Margarita</shipcity>
  +
<shipregion>Nueva Esparta</shipregion>
  +
<shippostalcode>4980</shippostalcode>
  +
<shipcountry>Venezuela</shipcountry>
  +
<orderdetails>
  +
<orderid>11039</orderid>
  +
<productid>28</productid>
  +
<unitprice>45.6000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11039</orderid>
  +
<productid>35</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11039</orderid>
  +
<productid>49</productid>
  +
<unitprice>20.0000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11039</orderid>
  +
<productid>57</productid>
  +
<unitprice>19.5000</unitprice>
  +
<quantity>28</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>LONEP</customerid>
  +
<companyname>Lonesome Pine Restaurant</companyname>
  +
<contactname>Fran Wilson</contactname>
  +
<contacttitle>Sales Manager</contacttitle>
  +
<address>89 Chiaroscuro Rd.</address>
  +
<city>Portland</city>
  +
<region>OR</region>
  +
<postalcode>97219</postalcode>
  +
<country>USA</country>
  +
<phone>(503) 555-9573</phone>
  +
<fax>(503) 555-9646</fax>
  +
<orders>
  +
<orderid>10307</orderid>
  +
<customerid>LONEP</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1996-09-17</orderdate>
  +
<requireddate>1996-10-15</requireddate>
  +
<shippeddate>1996-09-25</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>0.5600</freight>
  +
<shipname>Lonesome Pine Restaurant</shipname>
  +
<shipaddress>89 Chiaroscuro Rd.</shipaddress>
  +
<shipcity>Portland</shipcity>
  +
<shipregion>OR</shipregion>
  +
<shippostalcode>97219</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10307</orderid>
  +
<productid>62</productid>
  +
<unitprice>39.4000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10307</orderid>
  +
<productid>68</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10317</orderid>
  +
<customerid>LONEP</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1996-09-30</orderdate>
  +
<requireddate>1996-10-28</requireddate>
  +
<shippeddate>1996-10-10</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>12.6900</freight>
  +
<shipname>Lonesome Pine Restaurant</shipname>
  +
<shipaddress>89 Chiaroscuro Rd.</shipaddress>
  +
<shipcity>Portland</shipcity>
  +
<shipregion>OR</shipregion>
  +
<shippostalcode>97219</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10317</orderid>
  +
<productid>1</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10544</orderid>
  +
<customerid>LONEP</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-05-21</orderdate>
  +
<requireddate>1997-06-18</requireddate>
  +
<shippeddate>1997-05-30</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>24.9100</freight>
  +
<shipname>Lonesome Pine Restaurant</shipname>
  +
<shipaddress>89 Chiaroscuro Rd.</shipaddress>
  +
<shipcity>Portland</shipcity>
  +
<shipregion>OR</shipregion>
  +
<shippostalcode>97219</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10544</orderid>
  +
<productid>28</productid>
  +
<unitprice>45.6000</unitprice>
  +
<quantity>7</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10544</orderid>
  +
<productid>67</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>7</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10662</orderid>
  +
<customerid>LONEP</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-09-09</orderdate>
  +
<requireddate>1997-10-07</requireddate>
  +
<shippeddate>1997-09-18</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>1.2800</freight>
  +
<shipname>Lonesome Pine Restaurant</shipname>
  +
<shipaddress>89 Chiaroscuro Rd.</shipaddress>
  +
<shipcity>Portland</shipcity>
  +
<shipregion>OR</shipregion>
  +
<shippostalcode>97219</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10662</orderid>
  +
<productid>68</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10665</orderid>
  +
<customerid>LONEP</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-09-11</orderdate>
  +
<requireddate>1997-10-09</requireddate>
  +
<shippeddate>1997-09-17</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>26.3100</freight>
  +
<shipname>Lonesome Pine Restaurant</shipname>
  +
<shipaddress>89 Chiaroscuro Rd.</shipaddress>
  +
<shipcity>Portland</shipcity>
  +
<shipregion>OR</shipregion>
  +
<shippostalcode>97219</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10665</orderid>
  +
<productid>51</productid>
  +
<unitprice>53.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10665</orderid>
  +
<productid>59</productid>
  +
<unitprice>55.0000</unitprice>
  +
<quantity>1</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10665</orderid>
  +
<productid>76</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10867</orderid>
  +
<customerid>LONEP</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1998-02-03</orderdate>
  +
<requireddate>1998-03-17</requireddate>
  +
<shippeddate>1998-02-11</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>1.9300</freight>
  +
<shipname>Lonesome Pine Restaurant</shipname>
  +
<shipaddress>89 Chiaroscuro Rd.</shipaddress>
  +
<shipcity>Portland</shipcity>
  +
<shipregion>OR</shipregion>
  +
<shippostalcode>97219</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10867</orderid>
  +
<productid>53</productid>
  +
<unitprice>32.8000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10883</orderid>
  +
<customerid>LONEP</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1998-02-12</orderdate>
  +
<requireddate>1998-03-12</requireddate>
  +
<shippeddate>1998-02-20</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>0.5300</freight>
  +
<shipname>Lonesome Pine Restaurant</shipname>
  +
<shipaddress>89 Chiaroscuro Rd.</shipaddress>
  +
<shipcity>Portland</shipcity>
  +
<shipregion>OR</shipregion>
  +
<shippostalcode>97219</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10883</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11018</orderid>
  +
<customerid>LONEP</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-04-13</orderdate>
  +
<requireddate>1998-05-11</requireddate>
  +
<shippeddate>1998-04-16</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>11.6500</freight>
  +
<shipname>Lonesome Pine Restaurant</shipname>
  +
<shipaddress>89 Chiaroscuro Rd.</shipaddress>
  +
<shipcity>Portland</shipcity>
  +
<shipregion>OR</shipregion>
  +
<shippostalcode>97219</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>11018</orderid>
  +
<productid>12</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11018</orderid>
  +
<productid>18</productid>
  +
<unitprice>62.5000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11018</orderid>
  +
<productid>56</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>MAGAA</customerid>
  +
<companyname>Magazzini Alimentari Riuniti</companyname>
  +
<contactname>Giovanni Rovelli</contactname>
  +
<contacttitle>Marketing Manager</contacttitle>
  +
<address>Via Ludovico il Moro 22</address>
  +
<city>Bergamo</city>
  +
<postalcode>24100</postalcode>
  +
<country>Italy</country>
  +
<phone>035-640230</phone>
  +
<fax>035-640231</fax>
  +
<orders>
  +
<orderid>10275</orderid>
  +
<customerid>MAGAA</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1996-08-07</orderdate>
  +
<requireddate>1996-09-04</requireddate>
  +
<shippeddate>1996-08-09</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>26.9300</freight>
  +
<shipname>Magazzini Alimentari Riuniti</shipname>
  +
<shipaddress>Via Ludovico il Moro 22</shipaddress>
  +
<shipcity>Bergamo</shipcity>
  +
<shippostalcode>24100</shippostalcode>
  +
<shipcountry>Italy</shipcountry>
  +
<orderdetails>
  +
<orderid>10275</orderid>
  +
<productid>24</productid>
  +
<unitprice>3.6000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10275</orderid>
  +
<productid>59</productid>
  +
<unitprice>44.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10300</orderid>
  +
<customerid>MAGAA</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1996-09-09</orderdate>
  +
<requireddate>1996-10-07</requireddate>
  +
<shippeddate>1996-09-18</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>17.6800</freight>
  +
<shipname>Magazzini Alimentari Riuniti</shipname>
  +
<shipaddress>Via Ludovico il Moro 22</shipaddress>
  +
<shipcity>Bergamo</shipcity>
  +
<shippostalcode>24100</shippostalcode>
  +
<shipcountry>Italy</shipcountry>
  +
<orderdetails>
  +
<orderid>10300</orderid>
  +
<productid>66</productid>
  +
<unitprice>13.6000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10300</orderid>
  +
<productid>68</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10404</orderid>
  +
<customerid>MAGAA</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-01-03</orderdate>
  +
<requireddate>1997-01-31</requireddate>
  +
<shippeddate>1997-01-08</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>155.9700</freight>
  +
<shipname>Magazzini Alimentari Riuniti</shipname>
  +
<shipaddress>Via Ludovico il Moro 22</shipaddress>
  +
<shipcity>Bergamo</shipcity>
  +
<shippostalcode>24100</shippostalcode>
  +
<shipcountry>Italy</shipcountry>
  +
<orderdetails>
  +
<orderid>10404</orderid>
  +
<productid>26</productid>
  +
<unitprice>24.9000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10404</orderid>
  +
<productid>42</productid>
  +
<unitprice>11.2000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10404</orderid>
  +
<productid>49</productid>
  +
<unitprice>16.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10467</orderid>
  +
<customerid>MAGAA</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-03-06</orderdate>
  +
<requireddate>1997-04-03</requireddate>
  +
<shippeddate>1997-03-11</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>4.9300</freight>
  +
<shipname>Magazzini Alimentari Riuniti</shipname>
  +
<shipaddress>Via Ludovico il Moro 22</shipaddress>
  +
<shipcity>Bergamo</shipcity>
  +
<shippostalcode>24100</shippostalcode>
  +
<shipcountry>Italy</shipcountry>
  +
<orderdetails>
  +
<orderid>10467</orderid>
  +
<productid>24</productid>
  +
<unitprice>3.6000</unitprice>
  +
<quantity>28</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10467</orderid>
  +
<productid>25</productid>
  +
<unitprice>11.2000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10635</orderid>
  +
<customerid>MAGAA</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-08-18</orderdate>
  +
<requireddate>1997-09-15</requireddate>
  +
<shippeddate>1997-08-21</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>47.4600</freight>
  +
<shipname>Magazzini Alimentari Riuniti</shipname>
  +
<shipaddress>Via Ludovico il Moro 22</shipaddress>
  +
<shipcity>Bergamo</shipcity>
  +
<shippostalcode>24100</shippostalcode>
  +
<shipcountry>Italy</shipcountry>
  +
<orderdetails>
  +
<orderid>10635</orderid>
  +
<productid>4</productid>
  +
<unitprice>22.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10635</orderid>
  +
<productid>5</productid>
  +
<unitprice>21.3500</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10635</orderid>
  +
<productid>22</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10754</orderid>
  +
<customerid>MAGAA</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1997-11-25</orderdate>
  +
<requireddate>1997-12-23</requireddate>
  +
<shippeddate>1997-11-27</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>2.3800</freight>
  +
<shipname>Magazzini Alimentari Riuniti</shipname>
  +
<shipaddress>Via Ludovico il Moro 22</shipaddress>
  +
<shipcity>Bergamo</shipcity>
  +
<shippostalcode>24100</shippostalcode>
  +
<shipcountry>Italy</shipcountry>
  +
<orderdetails>
  +
<orderid>10754</orderid>
  +
<productid>40</productid>
  +
<unitprice>18.4000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10784</orderid>
  +
<customerid>MAGAA</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-12-18</orderdate>
  +
<requireddate>1998-01-15</requireddate>
  +
<shippeddate>1997-12-22</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>70.0900</freight>
  +
<shipname>Magazzini Alimentari Riuniti</shipname>
  +
<shipaddress>Via Ludovico il Moro 22</shipaddress>
  +
<shipcity>Bergamo</shipcity>
  +
<shippostalcode>24100</shippostalcode>
  +
<shipcountry>Italy</shipcountry>
  +
<orderdetails>
  +
<orderid>10784</orderid>
  +
<productid>36</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10784</orderid>
  +
<productid>39</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10784</orderid>
  +
<productid>72</productid>
  +
<unitprice>34.8000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10818</orderid>
  +
<customerid>MAGAA</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1998-01-07</orderdate>
  +
<requireddate>1998-02-04</requireddate>
  +
<shippeddate>1998-01-12</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>65.4800</freight>
  +
<shipname>Magazzini Alimentari Riuniti</shipname>
  +
<shipaddress>Via Ludovico il Moro 22</shipaddress>
  +
<shipcity>Bergamo</shipcity>
  +
<shippostalcode>24100</shippostalcode>
  +
<shipcountry>Italy</shipcountry>
  +
<orderdetails>
  +
<orderid>10818</orderid>
  +
<productid>32</productid>
  +
<unitprice>32.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10818</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10939</orderid>
  +
<customerid>MAGAA</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-03-10</orderdate>
  +
<requireddate>1998-04-07</requireddate>
  +
<shippeddate>1998-03-13</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>76.3300</freight>
  +
<shipname>Magazzini Alimentari Riuniti</shipname>
  +
<shipaddress>Via Ludovico il Moro 22</shipaddress>
  +
<shipcity>Bergamo</shipcity>
  +
<shippostalcode>24100</shippostalcode>
  +
<shipcountry>Italy</shipcountry>
  +
<orderdetails>
  +
<orderid>10939</orderid>
  +
<productid>2</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10939</orderid>
  +
<productid>67</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10950</orderid>
  +
<customerid>MAGAA</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-03-16</orderdate>
  +
<requireddate>1998-04-13</requireddate>
  +
<shippeddate>1998-03-23</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>2.5000</freight>
  +
<shipname>Magazzini Alimentari Riuniti</shipname>
  +
<shipaddress>Via Ludovico il Moro 22</shipaddress>
  +
<shipcity>Bergamo</shipcity>
  +
<shippostalcode>24100</shippostalcode>
  +
<shipcountry>Italy</shipcountry>
  +
<orderdetails>
  +
<orderid>10950</orderid>
  +
<productid>4</productid>
  +
<unitprice>22.0000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>MAISD</customerid>
  +
<companyname>Maison Dewey</companyname>
  +
<contactname>Catherine Dewey</contactname>
  +
<contacttitle>Sales Agent</contacttitle>
  +
<address>Rue Joseph-Bens 532</address>
  +
<city>Bruxelles</city>
  +
<postalcode>B-1180</postalcode>
  +
<country>Belgium</country>
  +
<phone>(02) 201 24 67</phone>
  +
<fax>(02) 201 24 68</fax>
  +
<orders>
  +
<orderid>10529</orderid>
  +
<customerid>MAISD</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1997-05-07</orderdate>
  +
<requireddate>1997-06-04</requireddate>
  +
<shippeddate>1997-05-09</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>66.6900</freight>
  +
<shipname>Maison Dewey</shipname>
  +
<shipaddress>Rue Joseph-Bens 532</shipaddress>
  +
<shipcity>Bruxelles</shipcity>
  +
<shippostalcode>B-1180</shippostalcode>
  +
<shipcountry>Belgium</shipcountry>
  +
<orderdetails>
  +
<orderid>10529</orderid>
  +
<productid>55</productid>
  +
<unitprice>24.0000</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10529</orderid>
  +
<productid>68</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10529</orderid>
  +
<productid>69</productid>
  +
<unitprice>36.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10649</orderid>
  +
<customerid>MAISD</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1997-08-28</orderdate>
  +
<requireddate>1997-09-25</requireddate>
  +
<shippeddate>1997-08-29</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>6.2000</freight>
  +
<shipname>Maison Dewey</shipname>
  +
<shipaddress>Rue Joseph-Bens 532</shipaddress>
  +
<shipcity>Bruxelles</shipcity>
  +
<shippostalcode>B-1180</shippostalcode>
  +
<shipcountry>Belgium</shipcountry>
  +
<orderdetails>
  +
<orderid>10649</orderid>
  +
<productid>28</productid>
  +
<unitprice>45.6000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10649</orderid>
  +
<productid>72</productid>
  +
<unitprice>34.8000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10760</orderid>
  +
<customerid>MAISD</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-12-01</orderdate>
  +
<requireddate>1997-12-29</requireddate>
  +
<shippeddate>1997-12-10</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>155.6400</freight>
  +
<shipname>Maison Dewey</shipname>
  +
<shipaddress>Rue Joseph-Bens 532</shipaddress>
  +
<shipcity>Bruxelles</shipcity>
  +
<shippostalcode>B-1180</shippostalcode>
  +
<shipcountry>Belgium</shipcountry>
  +
<orderdetails>
  +
<orderid>10760</orderid>
  +
<productid>25</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10760</orderid>
  +
<productid>27</productid>
  +
<unitprice>43.9000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10760</orderid>
  +
<productid>43</productid>
  +
<unitprice>46.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10892</orderid>
  +
<customerid>MAISD</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-02-17</orderdate>
  +
<requireddate>1998-03-17</requireddate>
  +
<shippeddate>1998-02-19</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>120.2700</freight>
  +
<shipname>Maison Dewey</shipname>
  +
<shipaddress>Rue Joseph-Bens 532</shipaddress>
  +
<shipcity>Bruxelles</shipcity>
  +
<shippostalcode>B-1180</shippostalcode>
  +
<shipcountry>Belgium</shipcountry>
  +
<orderdetails>
  +
<orderid>10892</orderid>
  +
<productid>59</productid>
  +
<unitprice>55.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10896</orderid>
  +
<customerid>MAISD</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1998-02-19</orderdate>
  +
<requireddate>1998-03-19</requireddate>
  +
<shippeddate>1998-02-27</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>32.4500</freight>
  +
<shipname>Maison Dewey</shipname>
  +
<shipaddress>Rue Joseph-Bens 532</shipaddress>
  +
<shipcity>Bruxelles</shipcity>
  +
<shippostalcode>B-1180</shippostalcode>
  +
<shipcountry>Belgium</shipcountry>
  +
<orderdetails>
  +
<orderid>10896</orderid>
  +
<productid>45</productid>
  +
<unitprice>9.5000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10896</orderid>
  +
<productid>56</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>16</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10978</orderid>
  +
<customerid>MAISD</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1998-03-26</orderdate>
  +
<requireddate>1998-04-23</requireddate>
  +
<shippeddate>1998-04-23</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>32.8200</freight>
  +
<shipname>Maison Dewey</shipname>
  +
<shipaddress>Rue Joseph-Bens 532</shipaddress>
  +
<shipcity>Bruxelles</shipcity>
  +
<shippostalcode>B-1180</shippostalcode>
  +
<shipcountry>Belgium</shipcountry>
  +
<orderdetails>
  +
<orderid>10978</orderid>
  +
<productid>8</productid>
  +
<unitprice>40.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10978</orderid>
  +
<productid>21</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10978</orderid>
  +
<productid>40</productid>
  +
<unitprice>18.4000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10978</orderid>
  +
<productid>44</productid>
  +
<unitprice>19.4500</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11004</orderid>
  +
<customerid>MAISD</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-04-07</orderdate>
  +
<requireddate>1998-05-05</requireddate>
  +
<shippeddate>1998-04-20</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>44.8400</freight>
  +
<shipname>Maison Dewey</shipname>
  +
<shipaddress>Rue Joseph-Bens 532</shipaddress>
  +
<shipcity>Bruxelles</shipcity>
  +
<shippostalcode>B-1180</shippostalcode>
  +
<shipcountry>Belgium</shipcountry>
  +
<orderdetails>
  +
<orderid>11004</orderid>
  +
<productid>26</productid>
  +
<unitprice>31.2300</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11004</orderid>
  +
<productid>76</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>MEREP</customerid>
  +
<companyname>Mère Paillarde</companyname>
  +
<contactname>Jean Fresnière</contactname>
  +
<contacttitle>Marketing Assistant</contacttitle>
  +
<address>43 rue St. Laurent</address>
  +
<city>Montréal</city>
  +
<region>Québec</region>
  +
<postalcode>H1J 1C3</postalcode>
  +
<country>Canada</country>
  +
<phone>(514) 555-8054</phone>
  +
<fax>(514) 555-8055</fax>
  +
<orders>
  +
<orderid>10332</orderid>
  +
<customerid>MEREP</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1996-10-17</orderdate>
  +
<requireddate>1996-11-28</requireddate>
  +
<shippeddate>1996-10-21</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>52.8400</freight>
  +
<shipname>Mère Paillarde</shipname>
  +
<shipaddress>43 rue St. Laurent</shipaddress>
  +
<shipcity>Montréal</shipcity>
  +
<shipregion>Québec</shipregion>
  +
<shippostalcode>H1J 1C3</shippostalcode>
  +
<shipcountry>Canada</shipcountry>
  +
<orderdetails>
  +
<orderid>10332</orderid>
  +
<productid>18</productid>
  +
<unitprice>50.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10332</orderid>
  +
<productid>42</productid>
  +
<unitprice>11.2000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10332</orderid>
  +
<productid>47</productid>
  +
<unitprice>7.6000</unitprice>
  +
<quantity>16</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10339</orderid>
  +
<customerid>MEREP</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1996-10-28</orderdate>
  +
<requireddate>1996-11-25</requireddate>
  +
<shippeddate>1996-11-04</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>15.6600</freight>
  +
<shipname>Mère Paillarde</shipname>
  +
<shipaddress>43 rue St. Laurent</shipaddress>
  +
<shipcity>Montréal</shipcity>
  +
<shipregion>Québec</shipregion>
  +
<shippostalcode>H1J 1C3</shippostalcode>
  +
<shipcountry>Canada</shipcountry>
  +
<orderdetails>
  +
<orderid>10339</orderid>
  +
<productid>4</productid>
  +
<unitprice>17.6000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10339</orderid>
  +
<productid>17</productid>
  +
<unitprice>31.2000</unitprice>
  +
<quantity>70</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10339</orderid>
  +
<productid>62</productid>
  +
<unitprice>39.4000</unitprice>
  +
<quantity>28</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10376</orderid>
  +
<customerid>MEREP</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1996-12-09</orderdate>
  +
<requireddate>1997-01-06</requireddate>
  +
<shippeddate>1996-12-13</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>20.3900</freight>
  +
<shipname>Mère Paillarde</shipname>
  +
<shipaddress>43 rue St. Laurent</shipaddress>
  +
<shipcity>Montréal</shipcity>
  +
<shipregion>Québec</shipregion>
  +
<shippostalcode>H1J 1C3</shippostalcode>
  +
<shipcountry>Canada</shipcountry>
  +
<orderdetails>
  +
<orderid>10376</orderid>
  +
<productid>31</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>42</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10424</orderid>
  +
<customerid>MEREP</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-01-23</orderdate>
  +
<requireddate>1997-02-20</requireddate>
  +
<shippeddate>1997-01-27</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>370.6100</freight>
  +
<shipname>Mère Paillarde</shipname>
  +
<shipaddress>43 rue St. Laurent</shipaddress>
  +
<shipcity>Montréal</shipcity>
  +
<shipregion>Québec</shipregion>
  +
<shippostalcode>H1J 1C3</shippostalcode>
  +
<shipcountry>Canada</shipcountry>
  +
<orderdetails>
  +
<orderid>10424</orderid>
  +
<productid>35</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10424</orderid>
  +
<productid>38</productid>
  +
<unitprice>210.8000</unitprice>
  +
<quantity>49</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10424</orderid>
  +
<productid>68</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10439</orderid>
  +
<customerid>MEREP</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1997-02-07</orderdate>
  +
<requireddate>1997-03-07</requireddate>
  +
<shippeddate>1997-02-10</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>4.0700</freight>
  +
<shipname>Mère Paillarde</shipname>
  +
<shipaddress>43 rue St. Laurent</shipaddress>
  +
<shipcity>Montréal</shipcity>
  +
<shipregion>Québec</shipregion>
  +
<shippostalcode>H1J 1C3</shippostalcode>
  +
<shipcountry>Canada</shipcountry>
  +
<orderdetails>
  +
<orderid>10439</orderid>
  +
<productid>12</productid>
  +
<unitprice>30.4000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10439</orderid>
  +
<productid>16</productid>
  +
<unitprice>13.9000</unitprice>
  +
<quantity>16</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10439</orderid>
  +
<productid>64</productid>
  +
<unitprice>26.6000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10439</orderid>
  +
<productid>74</productid>
  +
<unitprice>8.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10505</orderid>
  +
<customerid>MEREP</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-04-14</orderdate>
  +
<requireddate>1997-05-12</requireddate>
  +
<shippeddate>1997-04-21</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>7.1300</freight>
  +
<shipname>Mère Paillarde</shipname>
  +
<shipaddress>43 rue St. Laurent</shipaddress>
  +
<shipcity>Montréal</shipcity>
  +
<shipregion>Québec</shipregion>
  +
<shippostalcode>H1J 1C3</shippostalcode>
  +
<shipcountry>Canada</shipcountry>
  +
<orderdetails>
  +
<orderid>10505</orderid>
  +
<productid>62</productid>
  +
<unitprice>49.3000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10565</orderid>
  +
<customerid>MEREP</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-06-11</orderdate>
  +
<requireddate>1997-07-09</requireddate>
  +
<shippeddate>1997-06-18</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>7.1500</freight>
  +
<shipname>Mère Paillarde</shipname>
  +
<shipaddress>43 rue St. Laurent</shipaddress>
  +
<shipcity>Montréal</shipcity>
  +
<shipregion>Québec</shipregion>
  +
<shippostalcode>H1J 1C3</shippostalcode>
  +
<shipcountry>Canada</shipcountry>
  +
<orderdetails>
  +
<orderid>10565</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10565</orderid>
  +
<productid>64</productid>
  +
<unitprice>33.2500</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10570</orderid>
  +
<customerid>MEREP</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-06-17</orderdate>
  +
<requireddate>1997-07-15</requireddate>
  +
<shippeddate>1997-06-19</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>188.9900</freight>
  +
<shipname>Mère Paillarde</shipname>
  +
<shipaddress>43 rue St. Laurent</shipaddress>
  +
<shipcity>Montréal</shipcity>
  +
<shipregion>Québec</shipregion>
  +
<shippostalcode>H1J 1C3</shippostalcode>
  +
<shipcountry>Canada</shipcountry>
  +
<orderdetails>
  +
<orderid>10570</orderid>
  +
<productid>11</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10570</orderid>
  +
<productid>56</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10590</orderid>
  +
<customerid>MEREP</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-07-07</orderdate>
  +
<requireddate>1997-08-04</requireddate>
  +
<shippeddate>1997-07-14</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>44.7700</freight>
  +
<shipname>Mère Paillarde</shipname>
  +
<shipaddress>43 rue St. Laurent</shipaddress>
  +
<shipcity>Montréal</shipcity>
  +
<shipregion>Québec</shipregion>
  +
<shippostalcode>H1J 1C3</shippostalcode>
  +
<shipcountry>Canada</shipcountry>
  +
<orderdetails>
  +
<orderid>10590</orderid>
  +
<productid>1</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10590</orderid>
  +
<productid>77</productid>
  +
<unitprice>13.0000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10605</orderid>
  +
<customerid>MEREP</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-07-21</orderdate>
  +
<requireddate>1997-08-18</requireddate>
  +
<shippeddate>1997-07-29</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>379.1300</freight>
  +
<shipname>Mère Paillarde</shipname>
  +
<shipaddress>43 rue St. Laurent</shipaddress>
  +
<shipcity>Montréal</shipcity>
  +
<shipregion>Québec</shipregion>
  +
<shippostalcode>H1J 1C3</shippostalcode>
  +
<shipcountry>Canada</shipcountry>
  +
<orderdetails>
  +
<orderid>10605</orderid>
  +
<productid>16</productid>
  +
<unitprice>17.4500</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10605</orderid>
  +
<productid>59</productid>
  +
<unitprice>55.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10605</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>70</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10605</orderid>
  +
<productid>71</productid>
  +
<unitprice>21.5000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10618</orderid>
  +
<customerid>MEREP</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-08-01</orderdate>
  +
<requireddate>1997-09-12</requireddate>
  +
<shippeddate>1997-08-08</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>154.6800</freight>
  +
<shipname>Mère Paillarde</shipname>
  +
<shipaddress>43 rue St. Laurent</shipaddress>
  +
<shipcity>Montréal</shipcity>
  +
<shipregion>Québec</shipregion>
  +
<shippostalcode>H1J 1C3</shippostalcode>
  +
<shipcountry>Canada</shipcountry>
  +
<orderdetails>
  +
<orderid>10618</orderid>
  +
<productid>6</productid>
  +
<unitprice>25.0000</unitprice>
  +
<quantity>70</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10618</orderid>
  +
<productid>56</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10618</orderid>
  +
<productid>68</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10619</orderid>
  +
<customerid>MEREP</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-08-04</orderdate>
  +
<requireddate>1997-09-01</requireddate>
  +
<shippeddate>1997-08-07</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>91.0500</freight>
  +
<shipname>Mère Paillarde</shipname>
  +
<shipaddress>43 rue St. Laurent</shipaddress>
  +
<shipcity>Montréal</shipcity>
  +
<shipregion>Québec</shipregion>
  +
<shippostalcode>H1J 1C3</shippostalcode>
  +
<shipcountry>Canada</shipcountry>
  +
<orderdetails>
  +
<orderid>10619</orderid>
  +
<productid>21</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>42</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10619</orderid>
  +
<productid>22</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10724</orderid>
  +
<customerid>MEREP</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-10-30</orderdate>
  +
<requireddate>1997-12-11</requireddate>
  +
<shippeddate>1997-11-05</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>57.7500</freight>
  +
<shipname>Mère Paillarde</shipname>
  +
<shipaddress>43 rue St. Laurent</shipaddress>
  +
<shipcity>Montréal</shipcity>
  +
<shipregion>Québec</shipregion>
  +
<shippostalcode>H1J 1C3</shippostalcode>
  +
<shipcountry>Canada</shipcountry>
  +
<orderdetails>
  +
<orderid>10724</orderid>
  +
<productid>10</productid>
  +
<unitprice>31.0000</unitprice>
  +
<quantity>16</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10724</orderid>
  +
<productid>61</productid>
  +
<unitprice>28.5000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>MORGK</customerid>
  +
<companyname>Morgenstern Gesundkost</companyname>
  +
<contactname>Alexander Feuer</contactname>
  +
<contacttitle>Marketing Assistant</contacttitle>
  +
<address>Heerstr. 22</address>
  +
<city>Leipzig</city>
  +
<postalcode>04179</postalcode>
  +
<country>Germany</country>
  +
<phone>0342-023176</phone>
  +
<orders>
  +
<orderid>10277</orderid>
  +
<customerid>MORGK</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1996-08-09</orderdate>
  +
<requireddate>1996-09-06</requireddate>
  +
<shippeddate>1996-08-13</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>125.7700</freight>
  +
<shipname>Morgenstern Gesundkost</shipname>
  +
<shipaddress>Heerstr. 22</shipaddress>
  +
<shipcity>Leipzig</shipcity>
  +
<shippostalcode>04179</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10277</orderid>
  +
<productid>28</productid>
  +
<unitprice>36.4000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10277</orderid>
  +
<productid>62</productid>
  +
<unitprice>39.4000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10575</orderid>
  +
<customerid>MORGK</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1997-06-20</orderdate>
  +
<requireddate>1997-07-04</requireddate>
  +
<shippeddate>1997-06-30</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>127.3400</freight>
  +
<shipname>Morgenstern Gesundkost</shipname>
  +
<shipaddress>Heerstr. 22</shipaddress>
  +
<shipcity>Leipzig</shipcity>
  +
<shippostalcode>04179</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10575</orderid>
  +
<productid>59</productid>
  +
<unitprice>55.0000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10575</orderid>
  +
<productid>63</productid>
  +
<unitprice>43.9000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10575</orderid>
  +
<productid>72</productid>
  +
<unitprice>34.8000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10575</orderid>
  +
<productid>76</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10699</orderid>
  +
<customerid>MORGK</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-10-09</orderdate>
  +
<requireddate>1997-11-06</requireddate>
  +
<shippeddate>1997-10-13</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>0.5800</freight>
  +
<shipname>Morgenstern Gesundkost</shipname>
  +
<shipaddress>Heerstr. 22</shipaddress>
  +
<shipcity>Leipzig</shipcity>
  +
<shippostalcode>04179</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10699</orderid>
  +
<productid>47</productid>
  +
<unitprice>9.5000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10779</orderid>
  +
<customerid>MORGK</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-12-16</orderdate>
  +
<requireddate>1998-01-13</requireddate>
  +
<shippeddate>1998-01-14</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>58.1300</freight>
  +
<shipname>Morgenstern Gesundkost</shipname>
  +
<shipaddress>Heerstr. 22</shipaddress>
  +
<shipcity>Leipzig</shipcity>
  +
<shippostalcode>04179</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10779</orderid>
  +
<productid>16</productid>
  +
<unitprice>17.4500</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10779</orderid>
  +
<productid>62</productid>
  +
<unitprice>49.3000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10945</orderid>
  +
<customerid>MORGK</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-03-12</orderdate>
  +
<requireddate>1998-04-09</requireddate>
  +
<shippeddate>1998-03-18</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>10.2200</freight>
  +
<shipname>Morgenstern Gesundkost</shipname>
  +
<shipaddress>Heerstr. 22</shipaddress>
  +
<shipcity>Leipzig</shipcity>
  +
<shippostalcode>04179</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10945</orderid>
  +
<productid>13</productid>
  +
<unitprice>6.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10945</orderid>
  +
<productid>31</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>NORTS</customerid>
  +
<companyname>North/South</companyname>
  +
<contactname>Simon Crowther</contactname>
  +
<contacttitle>Sales Associate</contacttitle>
  +
<address>South House 300 Queensbridge</address>
  +
<city>London</city>
  +
<postalcode>SW7 1RZ</postalcode>
  +
<country>UK</country>
  +
<phone>(171) 555-7733</phone>
  +
<fax>(171) 555-2530</fax>
  +
<orders>
  +
<orderid>10517</orderid>
  +
<customerid>NORTS</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-04-24</orderdate>
  +
<requireddate>1997-05-22</requireddate>
  +
<shippeddate>1997-04-29</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>32.0700</freight>
  +
<shipname>North/South</shipname>
  +
<shipaddress>South House 300 Queensbridge</shipaddress>
  +
<shipcity>London</shipcity>
  +
<shippostalcode>SW7 1RZ</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10517</orderid>
  +
<productid>52</productid>
  +
<unitprice>7.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10517</orderid>
  +
<productid>59</productid>
  +
<unitprice>55.0000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10517</orderid>
  +
<productid>70</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10752</orderid>
  +
<customerid>NORTS</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-11-24</orderdate>
  +
<requireddate>1997-12-22</requireddate>
  +
<shippeddate>1997-11-28</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>1.3900</freight>
  +
<shipname>North/South</shipname>
  +
<shipaddress>South House 300 Queensbridge</shipaddress>
  +
<shipcity>London</shipcity>
  +
<shippostalcode>SW7 1RZ</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10752</orderid>
  +
<productid>1</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10752</orderid>
  +
<productid>69</productid>
  +
<unitprice>36.0000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11057</orderid>
  +
<customerid>NORTS</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-04-29</orderdate>
  +
<requireddate>1998-05-27</requireddate>
  +
<shippeddate>1998-05-01</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>4.1300</freight>
  +
<shipname>North/South</shipname>
  +
<shipaddress>South House 300 Queensbridge</shipaddress>
  +
<shipcity>London</shipcity>
  +
<shippostalcode>SW7 1RZ</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>11057</orderid>
  +
<productid>70</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>OCEAN</customerid>
  +
<companyname>Océano Atlántico Ltda.</companyname>
  +
<contactname>Yvonne Moncada</contactname>
  +
<contacttitle>Sales Agent</contacttitle>
  +
<address>Ing. Gustavo Moncada 8585 Piso 20-A</address>
  +
<city>Buenos Aires</city>
  +
<postalcode>1010</postalcode>
  +
<country>Argentina</country>
  +
<phone>(1) 135-5333</phone>
  +
<fax>(1) 135-5535</fax>
  +
<orders>
  +
<orderid>10409</orderid>
  +
<customerid>OCEAN</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-01-09</orderdate>
  +
<requireddate>1997-02-06</requireddate>
  +
<shippeddate>1997-01-14</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>29.8300</freight>
  +
<shipname>Océano Atlántico Ltda.</shipname>
  +
<shipaddress>Ing. Gustavo Moncada 8585 Piso 20-A</shipaddress>
  +
<shipcity>Buenos Aires</shipcity>
  +
<shippostalcode>1010</shippostalcode>
  +
<shipcountry>Argentina</shipcountry>
  +
<orderdetails>
  +
<orderid>10409</orderid>
  +
<productid>14</productid>
  +
<unitprice>18.6000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10409</orderid>
  +
<productid>21</productid>
  +
<unitprice>8.0000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10531</orderid>
  +
<customerid>OCEAN</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-05-08</orderdate>
  +
<requireddate>1997-06-05</requireddate>
  +
<shippeddate>1997-05-19</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>8.1200</freight>
  +
<shipname>Océano Atlántico Ltda.</shipname>
  +
<shipaddress>Ing. Gustavo Moncada 8585 Piso 20-A</shipaddress>
  +
<shipcity>Buenos Aires</shipcity>
  +
<shippostalcode>1010</shippostalcode>
  +
<shipcountry>Argentina</shipcountry>
  +
<orderdetails>
  +
<orderid>10531</orderid>
  +
<productid>59</productid>
  +
<unitprice>55.0000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10898</orderid>
  +
<customerid>OCEAN</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-02-20</orderdate>
  +
<requireddate>1998-03-20</requireddate>
  +
<shippeddate>1998-03-06</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>1.2700</freight>
  +
<shipname>Océano Atlántico Ltda.</shipname>
  +
<shipaddress>Ing. Gustavo Moncada 8585 Piso 20-A</shipaddress>
  +
<shipcity>Buenos Aires</shipcity>
  +
<shippostalcode>1010</shippostalcode>
  +
<shipcountry>Argentina</shipcountry>
  +
<orderdetails>
  +
<orderid>10898</orderid>
  +
<productid>13</productid>
  +
<unitprice>6.0000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10958</orderid>
  +
<customerid>OCEAN</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1998-03-18</orderdate>
  +
<requireddate>1998-04-15</requireddate>
  +
<shippeddate>1998-03-27</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>49.5600</freight>
  +
<shipname>Océano Atlántico Ltda.</shipname>
  +
<shipaddress>Ing. Gustavo Moncada 8585 Piso 20-A</shipaddress>
  +
<shipcity>Buenos Aires</shipcity>
  +
<shippostalcode>1010</shippostalcode>
  +
<shipcountry>Argentina</shipcountry>
  +
<orderdetails>
  +
<orderid>10958</orderid>
  +
<productid>5</productid>
  +
<unitprice>21.3500</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10958</orderid>
  +
<productid>7</productid>
  +
<unitprice>30.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10958</orderid>
  +
<productid>72</productid>
  +
<unitprice>34.8000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10986</orderid>
  +
<customerid>OCEAN</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1998-03-30</orderdate>
  +
<requireddate>1998-04-27</requireddate>
  +
<shippeddate>1998-04-21</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>217.8600</freight>
  +
<shipname>Océano Atlántico Ltda.</shipname>
  +
<shipaddress>Ing. Gustavo Moncada 8585 Piso 20-A</shipaddress>
  +
<shipcity>Buenos Aires</shipcity>
  +
<shippostalcode>1010</shippostalcode>
  +
<shipcountry>Argentina</shipcountry>
  +
<orderdetails>
  +
<orderid>10986</orderid>
  +
<productid>11</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10986</orderid>
  +
<productid>20</productid>
  +
<unitprice>81.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10986</orderid>
  +
<productid>76</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10986</orderid>
  +
<productid>77</productid>
  +
<unitprice>13.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>OLDWO</customerid>
  +
<companyname>Old World Delicatessen</companyname>
  +
<contactname>Rene Phillips</contactname>
  +
<contacttitle>Sales Representative</contacttitle>
  +
<address>2743 Bering St.</address>
  +
<city>Anchorage</city>
  +
<region>AK</region>
  +
<postalcode>99508</postalcode>
  +
<country>USA</country>
  +
<phone>(907) 555-7584</phone>
  +
<fax>(907) 555-2880</fax>
  +
<orders>
  +
<orderid>10305</orderid>
  +
<customerid>OLDWO</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1996-09-13</orderdate>
  +
<requireddate>1996-10-11</requireddate>
  +
<shippeddate>1996-10-09</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>257.6200</freight>
  +
<shipname>Old World Delicatessen</shipname>
  +
<shipaddress>2743 Bering St.</shipaddress>
  +
<shipcity>Anchorage</shipcity>
  +
<shipregion>AK</shipregion>
  +
<shippostalcode>99508</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10305</orderid>
  +
<productid>18</productid>
  +
<unitprice>50.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10305</orderid>
  +
<productid>29</productid>
  +
<unitprice>99.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10305</orderid>
  +
<productid>39</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10338</orderid>
  +
<customerid>OLDWO</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1996-10-25</orderdate>
  +
<requireddate>1996-11-22</requireddate>
  +
<shippeddate>1996-10-29</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>84.2100</freight>
  +
<shipname>Old World Delicatessen</shipname>
  +
<shipaddress>2743 Bering St.</shipaddress>
  +
<shipcity>Anchorage</shipcity>
  +
<shipregion>AK</shipregion>
  +
<shippostalcode>99508</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10338</orderid>
  +
<productid>17</productid>
  +
<unitprice>31.2000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10338</orderid>
  +
<productid>30</productid>
  +
<unitprice>20.7000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10441</orderid>
  +
<customerid>OLDWO</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-02-10</orderdate>
  +
<requireddate>1997-03-24</requireddate>
  +
<shippeddate>1997-03-14</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>73.0200</freight>
  +
<shipname>Old World Delicatessen</shipname>
  +
<shipaddress>2743 Bering St.</shipaddress>
  +
<shipcity>Anchorage</shipcity>
  +
<shipregion>AK</shipregion>
  +
<shippostalcode>99508</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10441</orderid>
  +
<productid>27</productid>
  +
<unitprice>35.1000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10594</orderid>
  +
<customerid>OLDWO</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-07-09</orderdate>
  +
<requireddate>1997-08-06</requireddate>
  +
<shippeddate>1997-07-16</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>5.2400</freight>
  +
<shipname>Old World Delicatessen</shipname>
  +
<shipaddress>2743 Bering St.</shipaddress>
  +
<shipcity>Anchorage</shipcity>
  +
<shipregion>AK</shipregion>
  +
<shippostalcode>99508</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10594</orderid>
  +
<productid>52</productid>
  +
<unitprice>7.0000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10594</orderid>
  +
<productid>58</productid>
  +
<unitprice>13.2500</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10680</orderid>
  +
<customerid>OLDWO</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-09-24</orderdate>
  +
<requireddate>1997-10-22</requireddate>
  +
<shippeddate>1997-09-26</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>26.6100</freight>
  +
<shipname>Old World Delicatessen</shipname>
  +
<shipaddress>2743 Bering St.</shipaddress>
  +
<shipcity>Anchorage</shipcity>
  +
<shipregion>AK</shipregion>
  +
<shippostalcode>99508</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10680</orderid>
  +
<productid>16</productid>
  +
<unitprice>17.4500</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10680</orderid>
  +
<productid>31</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10680</orderid>
  +
<productid>42</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10706</orderid>
  +
<customerid>OLDWO</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-10-16</orderdate>
  +
<requireddate>1997-11-13</requireddate>
  +
<shippeddate>1997-10-21</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>135.6300</freight>
  +
<shipname>Old World Delicatessen</shipname>
  +
<shipaddress>2743 Bering St.</shipaddress>
  +
<shipcity>Anchorage</shipcity>
  +
<shipregion>AK</shipregion>
  +
<shippostalcode>99508</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10706</orderid>
  +
<productid>16</productid>
  +
<unitprice>17.4500</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10706</orderid>
  +
<productid>43</productid>
  +
<unitprice>46.0000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10706</orderid>
  +
<productid>59</productid>
  +
<unitprice>55.0000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10808</orderid>
  +
<customerid>OLDWO</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-01-01</orderdate>
  +
<requireddate>1998-01-29</requireddate>
  +
<shippeddate>1998-01-09</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>45.5300</freight>
  +
<shipname>Old World Delicatessen</shipname>
  +
<shipaddress>2743 Bering St.</shipaddress>
  +
<shipcity>Anchorage</shipcity>
  +
<shipregion>AK</shipregion>
  +
<shippostalcode>99508</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10808</orderid>
  +
<productid>56</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10808</orderid>
  +
<productid>76</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10855</orderid>
  +
<customerid>OLDWO</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-01-27</orderdate>
  +
<requireddate>1998-02-24</requireddate>
  +
<shippeddate>1998-02-04</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>170.9700</freight>
  +
<shipname>Old World Delicatessen</shipname>
  +
<shipaddress>2743 Bering St.</shipaddress>
  +
<shipcity>Anchorage</shipcity>
  +
<shipregion>AK</shipregion>
  +
<shippostalcode>99508</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10855</orderid>
  +
<productid>16</productid>
  +
<unitprice>17.4500</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10855</orderid>
  +
<productid>31</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10855</orderid>
  +
<productid>56</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10855</orderid>
  +
<productid>65</productid>
  +
<unitprice>21.0500</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10965</orderid>
  +
<customerid>OLDWO</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1998-03-20</orderdate>
  +
<requireddate>1998-04-17</requireddate>
  +
<shippeddate>1998-03-30</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>144.3800</freight>
  +
<shipname>Old World Delicatessen</shipname>
  +
<shipaddress>2743 Bering St.</shipaddress>
  +
<shipcity>Anchorage</shipcity>
  +
<shipregion>AK</shipregion>
  +
<shippostalcode>99508</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10965</orderid>
  +
<productid>51</productid>
  +
<unitprice>53.0000</unitprice>
  +
<quantity>16</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11034</orderid>
  +
<customerid>OLDWO</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1998-04-20</orderdate>
  +
<requireddate>1998-06-01</requireddate>
  +
<shippeddate>1998-04-27</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>40.3200</freight>
  +
<shipname>Old World Delicatessen</shipname>
  +
<shipaddress>2743 Bering St.</shipaddress>
  +
<shipcity>Anchorage</shipcity>
  +
<shipregion>AK</shipregion>
  +
<shippostalcode>99508</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>11034</orderid>
  +
<productid>21</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11034</orderid>
  +
<productid>44</productid>
  +
<unitprice>19.4500</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11034</orderid>
  +
<productid>61</productid>
  +
<unitprice>28.5000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>OTTIK</customerid>
  +
<companyname>Ottilies Käseladen</companyname>
  +
<contactname>Henriette Pfalzheim</contactname>
  +
<contacttitle>Owner</contacttitle>
  +
<address>Mehrheimerstr. 369</address>
  +
<city>Köln</city>
  +
<postalcode>50739</postalcode>
  +
<country>Germany</country>
  +
<phone>0221-0644327</phone>
  +
<fax>0221-0765721</fax>
  +
<orders>
  +
<orderid>10260</orderid>
  +
<customerid>OTTIK</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1996-07-19</orderdate>
  +
<requireddate>1996-08-16</requireddate>
  +
<shippeddate>1996-07-29</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>55.0900</freight>
  +
<shipname>Ottilies Käseladen</shipname>
  +
<shipaddress>Mehrheimerstr. 369</shipaddress>
  +
<shipcity>Köln</shipcity>
  +
<shippostalcode>50739</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10260</orderid>
  +
<productid>41</productid>
  +
<unitprice>7.7000</unitprice>
  +
<quantity>16</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10260</orderid>
  +
<productid>57</productid>
  +
<unitprice>15.6000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10260</orderid>
  +
<productid>62</productid>
  +
<unitprice>39.4000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10260</orderid>
  +
<productid>70</productid>
  +
<unitprice>12.0000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10407</orderid>
  +
<customerid>OTTIK</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-01-07</orderdate>
  +
<requireddate>1997-02-04</requireddate>
  +
<shippeddate>1997-01-30</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>91.4800</freight>
  +
<shipname>Ottilies Käseladen</shipname>
  +
<shipaddress>Mehrheimerstr. 369</shipaddress>
  +
<shipcity>Köln</shipcity>
  +
<shippostalcode>50739</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10407</orderid>
  +
<productid>11</productid>
  +
<unitprice>16.8000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10407</orderid>
  +
<productid>69</productid>
  +
<unitprice>28.8000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10407</orderid>
  +
<productid>71</productid>
  +
<unitprice>17.2000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10508</orderid>
  +
<customerid>OTTIK</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-04-16</orderdate>
  +
<requireddate>1997-05-14</requireddate>
  +
<shippeddate>1997-05-13</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>4.9900</freight>
  +
<shipname>Ottilies Käseladen</shipname>
  +
<shipaddress>Mehrheimerstr. 369</shipaddress>
  +
<shipcity>Köln</shipcity>
  +
<shippostalcode>50739</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10508</orderid>
  +
<productid>13</productid>
  +
<unitprice>6.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10508</orderid>
  +
<productid>39</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10554</orderid>
  +
<customerid>OTTIK</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-05-30</orderdate>
  +
<requireddate>1997-06-27</requireddate>
  +
<shippeddate>1997-06-05</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>120.9700</freight>
  +
<shipname>Ottilies Käseladen</shipname>
  +
<shipaddress>Mehrheimerstr. 369</shipaddress>
  +
<shipcity>Köln</shipcity>
  +
<shippostalcode>50739</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10554</orderid>
  +
<productid>16</productid>
  +
<unitprice>17.4500</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10554</orderid>
  +
<productid>23</productid>
  +
<unitprice>9.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10554</orderid>
  +
<productid>62</productid>
  +
<unitprice>49.3000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10554</orderid>
  +
<productid>77</productid>
  +
<unitprice>13.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10580</orderid>
  +
<customerid>OTTIK</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-06-26</orderdate>
  +
<requireddate>1997-07-24</requireddate>
  +
<shippeddate>1997-07-01</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>75.8900</freight>
  +
<shipname>Ottilies Käseladen</shipname>
  +
<shipaddress>Mehrheimerstr. 369</shipaddress>
  +
<shipcity>Köln</shipcity>
  +
<shippostalcode>50739</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10580</orderid>
  +
<productid>14</productid>
  +
<unitprice>23.2500</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10580</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>9</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10580</orderid>
  +
<productid>65</productid>
  +
<unitprice>21.0500</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10684</orderid>
  +
<customerid>OTTIK</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-09-26</orderdate>
  +
<requireddate>1997-10-24</requireddate>
  +
<shippeddate>1997-09-30</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>145.6300</freight>
  +
<shipname>Ottilies Käseladen</shipname>
  +
<shipaddress>Mehrheimerstr. 369</shipaddress>
  +
<shipcity>Köln</shipcity>
  +
<shippostalcode>50739</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10684</orderid>
  +
<productid>40</productid>
  +
<unitprice>18.4000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10684</orderid>
  +
<productid>47</productid>
  +
<unitprice>9.5000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10684</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10766</orderid>
  +
<customerid>OTTIK</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-12-05</orderdate>
  +
<requireddate>1998-01-02</requireddate>
  +
<shippeddate>1997-12-09</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>157.5500</freight>
  +
<shipname>Ottilies Käseladen</shipname>
  +
<shipaddress>Mehrheimerstr. 369</shipaddress>
  +
<shipcity>Köln</shipcity>
  +
<shippostalcode>50739</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10766</orderid>
  +
<productid>2</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10766</orderid>
  +
<productid>7</productid>
  +
<unitprice>30.0000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10766</orderid>
  +
<productid>68</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10833</orderid>
  +
<customerid>OTTIK</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1998-01-15</orderdate>
  +
<requireddate>1998-02-12</requireddate>
  +
<shippeddate>1998-01-23</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>71.4900</freight>
  +
<shipname>Ottilies Käseladen</shipname>
  +
<shipaddress>Mehrheimerstr. 369</shipaddress>
  +
<shipcity>Köln</shipcity>
  +
<shippostalcode>50739</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10833</orderid>
  +
<productid>7</productid>
  +
<unitprice>30.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10833</orderid>
  +
<productid>31</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>9</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10833</orderid>
  +
<productid>53</productid>
  +
<unitprice>32.8000</unitprice>
  +
<quantity>9</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10999</orderid>
  +
<customerid>OTTIK</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1998-04-03</orderdate>
  +
<requireddate>1998-05-01</requireddate>
  +
<shippeddate>1998-04-10</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>96.3500</freight>
  +
<shipname>Ottilies Käseladen</shipname>
  +
<shipaddress>Mehrheimerstr. 369</shipaddress>
  +
<shipcity>Köln</shipcity>
  +
<shippostalcode>50739</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10999</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10999</orderid>
  +
<productid>51</productid>
  +
<unitprice>53.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10999</orderid>
  +
<productid>77</productid>
  +
<unitprice>13.0000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11020</orderid>
  +
<customerid>OTTIK</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-04-14</orderdate>
  +
<requireddate>1998-05-12</requireddate>
  +
<shippeddate>1998-04-16</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>43.3000</freight>
  +
<shipname>Ottilies Käseladen</shipname>
  +
<shipaddress>Mehrheimerstr. 369</shipaddress>
  +
<shipcity>Köln</shipcity>
  +
<shippostalcode>50739</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>11020</orderid>
  +
<productid>10</productid>
  +
<unitprice>31.0000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>PARIS</customerid>
  +
<companyname>Paris spécialités</companyname>
  +
<contactname>Marie Bertrand</contactname>
  +
<contacttitle>Owner</contacttitle>
  +
<address>265, boulevard Charonne</address>
  +
<city>Paris</city>
  +
<postalcode>75012</postalcode>
  +
<country>France</country>
  +
<phone>(1) 42.34.22.66</phone>
  +
<fax>(1) 42.34.22.77</fax>
  +
</customers>
  +
<customers>
  +
<customerid>PERIC</customerid>
  +
<companyname>Pericles Comidas clásicas</companyname>
  +
<contactname>Guillermo Fernández</contactname>
  +
<contacttitle>Sales Representative</contacttitle>
  +
<address>Calle Dr. Jorge Cash 321</address>
  +
<city>México D.F.</city>
  +
<postalcode>05033</postalcode>
  +
<country>Mexico</country>
  +
<phone>(5) 552-3745</phone>
  +
<fax>(5) 545-3745</fax>
  +
<orders>
  +
<orderid>10322</orderid>
  +
<customerid>PERIC</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1996-10-04</orderdate>
  +
<requireddate>1996-11-01</requireddate>
  +
<shippeddate>1996-10-23</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>0.4000</freight>
  +
<shipname>Pericles Comidas clásicas</shipname>
  +
<shipaddress>Calle Dr. Jorge Cash 321</shipaddress>
  +
<shipcity>México D.F.</shipcity>
  +
<shippostalcode>05033</shippostalcode>
  +
<shipcountry>Mexico</shipcountry>
  +
<orderdetails>
  +
<orderid>10322</orderid>
  +
<productid>52</productid>
  +
<unitprice>5.6000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10354</orderid>
  +
<customerid>PERIC</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1996-11-14</orderdate>
  +
<requireddate>1996-12-12</requireddate>
  +
<shippeddate>1996-11-20</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>53.8000</freight>
  +
<shipname>Pericles Comidas clásicas</shipname>
  +
<shipaddress>Calle Dr. Jorge Cash 321</shipaddress>
  +
<shipcity>México D.F.</shipcity>
  +
<shippostalcode>05033</shippostalcode>
  +
<shipcountry>Mexico</shipcountry>
  +
<orderdetails>
  +
<orderid>10354</orderid>
  +
<productid>1</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10354</orderid>
  +
<productid>29</productid>
  +
<unitprice>99.0000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10474</orderid>
  +
<customerid>PERIC</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1997-03-13</orderdate>
  +
<requireddate>1997-04-10</requireddate>
  +
<shippeddate>1997-03-21</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>83.4900</freight>
  +
<shipname>Pericles Comidas clásicas</shipname>
  +
<shipaddress>Calle Dr. Jorge Cash 321</shipaddress>
  +
<shipcity>México D.F.</shipcity>
  +
<shippostalcode>05033</shippostalcode>
  +
<shipcountry>Mexico</shipcountry>
  +
<orderdetails>
  +
<orderid>10474</orderid>
  +
<productid>14</productid>
  +
<unitprice>18.6000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10474</orderid>
  +
<productid>28</productid>
  +
<unitprice>36.4000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10474</orderid>
  +
<productid>40</productid>
  +
<unitprice>14.7000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10474</orderid>
  +
<productid>75</productid>
  +
<unitprice>6.2000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10502</orderid>
  +
<customerid>PERIC</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-04-10</orderdate>
  +
<requireddate>1997-05-08</requireddate>
  +
<shippeddate>1997-04-29</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>69.3200</freight>
  +
<shipname>Pericles Comidas clásicas</shipname>
  +
<shipaddress>Calle Dr. Jorge Cash 321</shipaddress>
  +
<shipcity>México D.F.</shipcity>
  +
<shippostalcode>05033</shippostalcode>
  +
<shipcountry>Mexico</shipcountry>
  +
<orderdetails>
  +
<orderid>10502</orderid>
  +
<productid>45</productid>
  +
<unitprice>9.5000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10502</orderid>
  +
<productid>53</productid>
  +
<unitprice>32.8000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10502</orderid>
  +
<productid>67</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10995</orderid>
  +
<customerid>PERIC</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-04-02</orderdate>
  +
<requireddate>1998-04-30</requireddate>
  +
<shippeddate>1998-04-06</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>46.0000</freight>
  +
<shipname>Pericles Comidas clásicas</shipname>
  +
<shipaddress>Calle Dr. Jorge Cash 321</shipaddress>
  +
<shipcity>México D.F.</shipcity>
  +
<shippostalcode>05033</shippostalcode>
  +
<shipcountry>Mexico</shipcountry>
  +
<orderdetails>
  +
<orderid>10995</orderid>
  +
<productid>51</productid>
  +
<unitprice>53.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10995</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11073</orderid>
  +
<customerid>PERIC</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-05-05</orderdate>
  +
<requireddate>1998-06-02</requireddate>
  +
<shipvia>2</shipvia>
  +
<freight>24.9500</freight>
  +
<shipname>Pericles Comidas clásicas</shipname>
  +
<shipaddress>Calle Dr. Jorge Cash 321</shipaddress>
  +
<shipcity>México D.F.</shipcity>
  +
<shippostalcode>05033</shippostalcode>
  +
<shipcountry>Mexico</shipcountry>
  +
<orderdetails>
  +
<orderid>11073</orderid>
  +
<productid>11</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11073</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>PICCO</customerid>
  +
<companyname>Piccolo und mehr</companyname>
  +
<contactname>Georg Pipps</contactname>
  +
<contacttitle>Sales Manager</contacttitle>
  +
<address>Geislweg 14</address>
  +
<city>Salzburg</city>
  +
<postalcode>5020</postalcode>
  +
<country>Austria</country>
  +
<phone>6562-9722</phone>
  +
<fax>6562-9723</fax>
  +
<orders>
  +
<orderid>10353</orderid>
  +
<customerid>PICCO</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1996-11-13</orderdate>
  +
<requireddate>1996-12-11</requireddate>
  +
<shippeddate>1996-11-25</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>360.6300</freight>
  +
<shipname>Piccolo und mehr</shipname>
  +
<shipaddress>Geislweg 14</shipaddress>
  +
<shipcity>Salzburg</shipcity>
  +
<shippostalcode>5020</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10353</orderid>
  +
<productid>11</productid>
  +
<unitprice>16.8000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10353</orderid>
  +
<productid>38</productid>
  +
<unitprice>210.8000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10392</orderid>
  +
<customerid>PICCO</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1996-12-24</orderdate>
  +
<requireddate>1997-01-21</requireddate>
  +
<shippeddate>1997-01-01</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>122.4600</freight>
  +
<shipname>Piccolo und mehr</shipname>
  +
<shipaddress>Geislweg 14</shipaddress>
  +
<shipcity>Salzburg</shipcity>
  +
<shippostalcode>5020</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10392</orderid>
  +
<productid>69</productid>
  +
<unitprice>28.8000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10427</orderid>
  +
<customerid>PICCO</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-01-27</orderdate>
  +
<requireddate>1997-02-24</requireddate>
  +
<shippeddate>1997-03-03</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>31.2900</freight>
  +
<shipname>Piccolo und mehr</shipname>
  +
<shipaddress>Geislweg 14</shipaddress>
  +
<shipcity>Salzburg</shipcity>
  +
<shippostalcode>5020</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10427</orderid>
  +
<productid>14</productid>
  +
<unitprice>18.6000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10489</orderid>
  +
<customerid>PICCO</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1997-03-28</orderdate>
  +
<requireddate>1997-04-25</requireddate>
  +
<shippeddate>1997-04-09</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>5.2900</freight>
  +
<shipname>Piccolo und mehr</shipname>
  +
<shipaddress>Geislweg 14</shipaddress>
  +
<shipcity>Salzburg</shipcity>
  +
<shippostalcode>5020</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10489</orderid>
  +
<productid>11</productid>
  +
<unitprice>16.8000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10489</orderid>
  +
<productid>16</productid>
  +
<unitprice>13.9000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10530</orderid>
  +
<customerid>PICCO</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-05-08</orderdate>
  +
<requireddate>1997-06-05</requireddate>
  +
<shippeddate>1997-05-12</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>339.2200</freight>
  +
<shipname>Piccolo und mehr</shipname>
  +
<shipaddress>Geislweg 14</shipaddress>
  +
<shipcity>Salzburg</shipcity>
  +
<shippostalcode>5020</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10530</orderid>
  +
<productid>17</productid>
  +
<unitprice>39.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10530</orderid>
  +
<productid>43</productid>
  +
<unitprice>46.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10530</orderid>
  +
<productid>61</productid>
  +
<unitprice>28.5000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10530</orderid>
  +
<productid>76</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10597</orderid>
  +
<customerid>PICCO</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-07-11</orderdate>
  +
<requireddate>1997-08-08</requireddate>
  +
<shippeddate>1997-07-18</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>35.1200</freight>
  +
<shipname>Piccolo und mehr</shipname>
  +
<shipaddress>Geislweg 14</shipaddress>
  +
<shipcity>Salzburg</shipcity>
  +
<shippostalcode>5020</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10597</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10597</orderid>
  +
<productid>57</productid>
  +
<unitprice>19.5000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10597</orderid>
  +
<productid>65</productid>
  +
<unitprice>21.0500</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10686</orderid>
  +
<customerid>PICCO</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-09-30</orderdate>
  +
<requireddate>1997-10-28</requireddate>
  +
<shippeddate>1997-10-08</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>96.5000</freight>
  +
<shipname>Piccolo und mehr</shipname>
  +
<shipaddress>Geislweg 14</shipaddress>
  +
<shipcity>Salzburg</shipcity>
  +
<shippostalcode>5020</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10686</orderid>
  +
<productid>17</productid>
  +
<unitprice>39.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10686</orderid>
  +
<productid>26</productid>
  +
<unitprice>31.2300</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10747</orderid>
  +
<customerid>PICCO</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1997-11-19</orderdate>
  +
<requireddate>1997-12-17</requireddate>
  +
<shippeddate>1997-11-26</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>117.3300</freight>
  +
<shipname>Piccolo und mehr</shipname>
  +
<shipaddress>Geislweg 14</shipaddress>
  +
<shipcity>Salzburg</shipcity>
  +
<shippostalcode>5020</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10747</orderid>
  +
<productid>31</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10747</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10747</orderid>
  +
<productid>63</productid>
  +
<unitprice>43.9000</unitprice>
  +
<quantity>9</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10747</orderid>
  +
<productid>69</productid>
  +
<unitprice>36.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10844</orderid>
  +
<customerid>PICCO</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1998-01-21</orderdate>
  +
<requireddate>1998-02-18</requireddate>
  +
<shippeddate>1998-01-26</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>25.2200</freight>
  +
<shipname>Piccolo und mehr</shipname>
  +
<shipaddress>Geislweg 14</shipaddress>
  +
<shipcity>Salzburg</shipcity>
  +
<shippostalcode>5020</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>10844</orderid>
  +
<productid>22</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11053</orderid>
  +
<customerid>PICCO</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-04-27</orderdate>
  +
<requireddate>1998-05-25</requireddate>
  +
<shippeddate>1998-04-29</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>53.0500</freight>
  +
<shipname>Piccolo und mehr</shipname>
  +
<shipaddress>Geislweg 14</shipaddress>
  +
<shipcity>Salzburg</shipcity>
  +
<shippostalcode>5020</shippostalcode>
  +
<shipcountry>Austria</shipcountry>
  +
<orderdetails>
  +
<orderid>11053</orderid>
  +
<productid>18</productid>
  +
<unitprice>62.5000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11053</orderid>
  +
<productid>32</productid>
  +
<unitprice>32.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11053</orderid>
  +
<productid>64</productid>
  +
<unitprice>33.2500</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>PRINI</customerid>
  +
<companyname>Princesa Isabel Vinhos</companyname>
  +
<contactname>Isabel de Castro</contactname>
  +
<contacttitle>Sales Representative</contacttitle>
  +
<address>Estrada da saúde n. 58</address>
  +
<city>Lisboa</city>
  +
<postalcode>1756</postalcode>
  +
<country>Portugal</country>
  +
<phone>(1) 356-5634</phone>
  +
<orders>
  +
<orderid>10336</orderid>
  +
<customerid>PRINI</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1996-10-23</orderdate>
  +
<requireddate>1996-11-20</requireddate>
  +
<shippeddate>1996-10-25</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>15.5100</freight>
  +
<shipname>Princesa Isabel Vinhos</shipname>
  +
<shipaddress>Estrada da saúde n. 58</shipaddress>
  +
<shipcity>Lisboa</shipcity>
  +
<shippostalcode>1756</shippostalcode>
  +
<shipcountry>Portugal</shipcountry>
  +
<orderdetails>
  +
<orderid>10336</orderid>
  +
<productid>4</productid>
  +
<unitprice>17.6000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10397</orderid>
  +
<customerid>PRINI</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1996-12-27</orderdate>
  +
<requireddate>1997-01-24</requireddate>
  +
<shippeddate>1997-01-02</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>60.2600</freight>
  +
<shipname>Princesa Isabel Vinhos</shipname>
  +
<shipaddress>Estrada da saúde n. 58</shipaddress>
  +
<shipcity>Lisboa</shipcity>
  +
<shippostalcode>1756</shippostalcode>
  +
<shipcountry>Portugal</shipcountry>
  +
<orderdetails>
  +
<orderid>10397</orderid>
  +
<productid>21</productid>
  +
<unitprice>8.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10397</orderid>
  +
<productid>51</productid>
  +
<unitprice>42.4000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10433</orderid>
  +
<customerid>PRINI</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-02-03</orderdate>
  +
<requireddate>1997-03-03</requireddate>
  +
<shippeddate>1997-03-04</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>73.8300</freight>
  +
<shipname>Princesa Isabel Vinhos</shipname>
  +
<shipaddress>Estrada da saúde n. 58</shipaddress>
  +
<shipcity>Lisboa</shipcity>
  +
<shippostalcode>1756</shippostalcode>
  +
<shipcountry>Portugal</shipcountry>
  +
<orderdetails>
  +
<orderid>10433</orderid>
  +
<productid>56</productid>
  +
<unitprice>30.4000</unitprice>
  +
<quantity>28</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10477</orderid>
  +
<customerid>PRINI</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1997-03-17</orderdate>
  +
<requireddate>1997-04-14</requireddate>
  +
<shippeddate>1997-03-25</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>13.0200</freight>
  +
<shipname>Princesa Isabel Vinhos</shipname>
  +
<shipaddress>Estrada da saúde n. 58</shipaddress>
  +
<shipcity>Lisboa</shipcity>
  +
<shippostalcode>1756</shippostalcode>
  +
<shipcountry>Portugal</shipcountry>
  +
<orderdetails>
  +
<orderid>10477</orderid>
  +
<productid>1</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10477</orderid>
  +
<productid>21</productid>
  +
<unitprice>8.0000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10477</orderid>
  +
<productid>39</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11007</orderid>
  +
<customerid>PRINI</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1998-04-08</orderdate>
  +
<requireddate>1998-05-06</requireddate>
  +
<shippeddate>1998-04-13</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>202.2400</freight>
  +
<shipname>Princesa Isabel Vinhos</shipname>
  +
<shipaddress>Estrada da saúde n. 58</shipaddress>
  +
<shipcity>Lisboa</shipcity>
  +
<shippostalcode>1756</shippostalcode>
  +
<shipcountry>Portugal</shipcountry>
  +
<orderdetails>
  +
<orderid>11007</orderid>
  +
<productid>8</productid>
  +
<unitprice>40.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11007</orderid>
  +
<productid>29</productid>
  +
<unitprice>123.7900</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11007</orderid>
  +
<productid>42</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>QUEDE</customerid>
  +
<companyname>Que Delícia</companyname>
  +
<contactname>Bernardo Batista</contactname>
  +
<contacttitle>Accounting Manager</contacttitle>
  +
<address>Rua da Panificadora, 12</address>
  +
<city>Rio de Janeiro</city>
  +
<region>RJ</region>
  +
<postalcode>02389-673</postalcode>
  +
<country>Brazil</country>
  +
<phone>(21) 555-4252</phone>
  +
<fax>(21) 555-4545</fax>
  +
<orders>
  +
<orderid>10261</orderid>
  +
<customerid>QUEDE</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1996-07-19</orderdate>
  +
<requireddate>1996-08-16</requireddate>
  +
<shippeddate>1996-07-30</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>3.0500</freight>
  +
<shipname>Que Delícia</shipname>
  +
<shipaddress>Rua da Panificadora, 12</shipaddress>
  +
<shipcity>Rio de Janeiro</shipcity>
  +
<shipregion>RJ</shipregion>
  +
<shippostalcode>02389-673</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10261</orderid>
  +
<productid>21</productid>
  +
<unitprice>8.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10261</orderid>
  +
<productid>35</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10291</orderid>
  +
<customerid>QUEDE</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1996-08-27</orderdate>
  +
<requireddate>1996-09-24</requireddate>
  +
<shippeddate>1996-09-04</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>6.4000</freight>
  +
<shipname>Que Delícia</shipname>
  +
<shipaddress>Rua da Panificadora, 12</shipaddress>
  +
<shipcity>Rio de Janeiro</shipcity>
  +
<shipregion>RJ</shipregion>
  +
<shippostalcode>02389-673</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10291</orderid>
  +
<productid>13</productid>
  +
<unitprice>4.8000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10291</orderid>
  +
<productid>44</productid>
  +
<unitprice>15.5000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10291</orderid>
  +
<productid>51</productid>
  +
<unitprice>42.4000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10379</orderid>
  +
<customerid>QUEDE</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1996-12-11</orderdate>
  +
<requireddate>1997-01-08</requireddate>
  +
<shippeddate>1996-12-13</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>45.0300</freight>
  +
<shipname>Que Delícia</shipname>
  +
<shipaddress>Rua da Panificadora, 12</shipaddress>
  +
<shipcity>Rio de Janeiro</shipcity>
  +
<shipregion>RJ</shipregion>
  +
<shippostalcode>02389-673</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10379</orderid>
  +
<productid>41</productid>
  +
<unitprice>7.7000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10379</orderid>
  +
<productid>63</productid>
  +
<unitprice>35.1000</unitprice>
  +
<quantity>16</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10379</orderid>
  +
<productid>65</productid>
  +
<unitprice>16.8000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10421</orderid>
  +
<customerid>QUEDE</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-01-21</orderdate>
  +
<requireddate>1997-03-04</requireddate>
  +
<shippeddate>1997-01-27</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>99.2300</freight>
  +
<shipname>Que Delícia</shipname>
  +
<shipaddress>Rua da Panificadora, 12</shipaddress>
  +
<shipcity>Rio de Janeiro</shipcity>
  +
<shipregion>RJ</shipregion>
  +
<shippostalcode>02389-673</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10421</orderid>
  +
<productid>19</productid>
  +
<unitprice>7.3000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10421</orderid>
  +
<productid>26</productid>
  +
<unitprice>24.9000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10421</orderid>
  +
<productid>53</productid>
  +
<unitprice>26.2000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10421</orderid>
  +
<productid>77</productid>
  +
<unitprice>10.4000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10587</orderid>
  +
<customerid>QUEDE</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-07-02</orderdate>
  +
<requireddate>1997-07-30</requireddate>
  +
<shippeddate>1997-07-09</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>62.5200</freight>
  +
<shipname>Que Delícia</shipname>
  +
<shipaddress>Rua da Panificadora, 12</shipaddress>
  +
<shipcity>Rio de Janeiro</shipcity>
  +
<shipregion>RJ</shipregion>
  +
<shippostalcode>02389-673</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10587</orderid>
  +
<productid>26</productid>
  +
<unitprice>31.2300</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10587</orderid>
  +
<productid>35</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10587</orderid>
  +
<productid>77</productid>
  +
<unitprice>13.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10647</orderid>
  +
<customerid>QUEDE</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-08-27</orderdate>
  +
<requireddate>1997-09-10</requireddate>
  +
<shippeddate>1997-09-03</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>45.5400</freight>
  +
<shipname>Que Delícia</shipname>
  +
<shipaddress>Rua da Panificadora, 12</shipaddress>
  +
<shipcity>Rio de Janeiro</shipcity>
  +
<shipregion>RJ</shipregion>
  +
<shippostalcode>02389-673</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10647</orderid>
  +
<productid>19</productid>
  +
<unitprice>9.2000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10647</orderid>
  +
<productid>39</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10720</orderid>
  +
<customerid>QUEDE</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-10-28</orderdate>
  +
<requireddate>1997-11-11</requireddate>
  +
<shippeddate>1997-11-05</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>9.5300</freight>
  +
<shipname>Que Delícia</shipname>
  +
<shipaddress>Rua da Panificadora, 12</shipaddress>
  +
<shipcity>Rio de Janeiro</shipcity>
  +
<shipregion>RJ</shipregion>
  +
<shippostalcode>02389-673</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10720</orderid>
  +
<productid>35</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10720</orderid>
  +
<productid>71</productid>
  +
<unitprice>21.5000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10794</orderid>
  +
<customerid>QUEDE</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1997-12-24</orderdate>
  +
<requireddate>1998-01-21</requireddate>
  +
<shippeddate>1998-01-02</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>21.4900</freight>
  +
<shipname>Que Delícia</shipname>
  +
<shipaddress>Rua da Panificadora, 12</shipaddress>
  +
<shipcity>Rio de Janeiro</shipcity>
  +
<shipregion>RJ</shipregion>
  +
<shippostalcode>02389-673</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10794</orderid>
  +
<productid>14</productid>
  +
<unitprice>23.2500</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10794</orderid>
  +
<productid>54</productid>
  +
<unitprice>7.4500</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10989</orderid>
  +
<customerid>QUEDE</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-03-31</orderdate>
  +
<requireddate>1998-04-28</requireddate>
  +
<shippeddate>1998-04-02</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>34.7600</freight>
  +
<shipname>Que Delícia</shipname>
  +
<shipaddress>Rua da Panificadora, 12</shipaddress>
  +
<shipcity>Rio de Janeiro</shipcity>
  +
<shipregion>RJ</shipregion>
  +
<shippostalcode>02389-673</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10989</orderid>
  +
<productid>6</productid>
  +
<unitprice>25.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10989</orderid>
  +
<productid>11</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10989</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>QUEEN</customerid>
  +
<companyname>Queen Cozinha</companyname>
  +
<contactname>Lúcia Carvalho</contactname>
  +
<contacttitle>Marketing Assistant</contacttitle>
  +
<address>Alameda dos Canàrios, 891</address>
  +
<city>Sao Paulo</city>
  +
<region>SP</region>
  +
<postalcode>05487-020</postalcode>
  +
<country>Brazil</country>
  +
<phone>(11) 555-1189</phone>
  +
<orders>
  +
<orderid>10372</orderid>
  +
<customerid>QUEEN</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1996-12-04</orderdate>
  +
<requireddate>1997-01-01</requireddate>
  +
<shippeddate>1996-12-09</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>890.7800</freight>
  +
<shipname>Queen Cozinha</shipname>
  +
<shipaddress>Alameda dos Canàrios, 891</shipaddress>
  +
<shipcity>Sao Paulo</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>05487-020</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10372</orderid>
  +
<productid>20</productid>
  +
<unitprice>64.8000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10372</orderid>
  +
<productid>38</productid>
  +
<unitprice>210.8000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10372</orderid>
  +
<productid>60</productid>
  +
<unitprice>27.2000</unitprice>
  +
<quantity>70</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10372</orderid>
  +
<productid>72</productid>
  +
<unitprice>27.8000</unitprice>
  +
<quantity>42</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10406</orderid>
  +
<customerid>QUEEN</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-01-07</orderdate>
  +
<requireddate>1997-02-18</requireddate>
  +
<shippeddate>1997-01-13</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>108.0400</freight>
  +
<shipname>Queen Cozinha</shipname>
  +
<shipaddress>Alameda dos Canàrios, 891</shipaddress>
  +
<shipcity>Sao Paulo</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>05487-020</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10406</orderid>
  +
<productid>1</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10406</orderid>
  +
<productid>21</productid>
  +
<unitprice>8.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10406</orderid>
  +
<productid>28</productid>
  +
<unitprice>36.4000</unitprice>
  +
<quantity>42</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10406</orderid>
  +
<productid>36</productid>
  +
<unitprice>15.2000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10406</orderid>
  +
<productid>40</productid>
  +
<unitprice>14.7000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10487</orderid>
  +
<customerid>QUEEN</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-03-26</orderdate>
  +
<requireddate>1997-04-23</requireddate>
  +
<shippeddate>1997-03-28</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>71.0700</freight>
  +
<shipname>Queen Cozinha</shipname>
  +
<shipaddress>Alameda dos Canàrios, 891</shipaddress>
  +
<shipcity>Sao Paulo</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>05487-020</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10487</orderid>
  +
<productid>19</productid>
  +
<unitprice>7.3000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10487</orderid>
  +
<productid>26</productid>
  +
<unitprice>24.9000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10487</orderid>
  +
<productid>54</productid>
  +
<unitprice>5.9000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10637</orderid>
  +
<customerid>QUEEN</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1997-08-19</orderdate>
  +
<requireddate>1997-09-16</requireddate>
  +
<shippeddate>1997-08-26</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>201.2900</freight>
  +
<shipname>Queen Cozinha</shipname>
  +
<shipaddress>Alameda dos Canàrios, 891</shipaddress>
  +
<shipcity>Sao Paulo</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>05487-020</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10637</orderid>
  +
<productid>11</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10637</orderid>
  +
<productid>50</productid>
  +
<unitprice>16.2500</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10637</orderid>
  +
<productid>56</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10659</orderid>
  +
<customerid>QUEEN</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-09-05</orderdate>
  +
<requireddate>1997-10-03</requireddate>
  +
<shippeddate>1997-09-10</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>105.8100</freight>
  +
<shipname>Queen Cozinha</shipname>
  +
<shipaddress>Alameda dos Canàrios, 891</shipaddress>
  +
<shipcity>Sao Paulo</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>05487-020</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10659</orderid>
  +
<productid>31</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10659</orderid>
  +
<productid>40</productid>
  +
<unitprice>18.4000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10659</orderid>
  +
<productid>70</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10704</orderid>
  +
<customerid>QUEEN</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1997-10-14</orderdate>
  +
<requireddate>1997-11-11</requireddate>
  +
<shippeddate>1997-11-07</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>4.7800</freight>
  +
<shipname>Queen Cozinha</shipname>
  +
<shipaddress>Alameda dos Canàrios, 891</shipaddress>
  +
<shipcity>Sao Paulo</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>05487-020</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10704</orderid>
  +
<productid>4</productid>
  +
<unitprice>22.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10704</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10704</orderid>
  +
<productid>48</productid>
  +
<unitprice>12.7500</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10728</orderid>
  +
<customerid>QUEEN</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-11-04</orderdate>
  +
<requireddate>1997-12-02</requireddate>
  +
<shippeddate>1997-11-11</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>58.3300</freight>
  +
<shipname>Queen Cozinha</shipname>
  +
<shipaddress>Alameda dos Canàrios, 891</shipaddress>
  +
<shipcity>Sao Paulo</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>05487-020</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10728</orderid>
  +
<productid>30</productid>
  +
<unitprice>25.8900</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10728</orderid>
  +
<productid>40</productid>
  +
<unitprice>18.4000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10728</orderid>
  +
<productid>55</productid>
  +
<unitprice>24.0000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10728</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10786</orderid>
  +
<customerid>QUEEN</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-12-19</orderdate>
  +
<requireddate>1998-01-16</requireddate>
  +
<shippeddate>1997-12-23</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>110.8700</freight>
  +
<shipname>Queen Cozinha</shipname>
  +
<shipaddress>Alameda dos Canàrios, 891</shipaddress>
  +
<shipcity>Sao Paulo</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>05487-020</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10786</orderid>
  +
<productid>8</productid>
  +
<unitprice>40.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10786</orderid>
  +
<productid>30</productid>
  +
<unitprice>25.8900</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10786</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>42</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10868</orderid>
  +
<customerid>QUEEN</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1998-02-04</orderdate>
  +
<requireddate>1998-03-04</requireddate>
  +
<shippeddate>1998-02-23</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>191.2700</freight>
  +
<shipname>Queen Cozinha</shipname>
  +
<shipaddress>Alameda dos Canàrios, 891</shipaddress>
  +
<shipcity>Sao Paulo</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>05487-020</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10868</orderid>
  +
<productid>26</productid>
  +
<unitprice>31.2300</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10868</orderid>
  +
<productid>35</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10868</orderid>
  +
<productid>49</productid>
  +
<unitprice>20.0000</unitprice>
  +
<quantity>42</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10913</orderid>
  +
<customerid>QUEEN</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-02-26</orderdate>
  +
<requireddate>1998-03-26</requireddate>
  +
<shippeddate>1998-03-04</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>33.0500</freight>
  +
<shipname>Queen Cozinha</shipname>
  +
<shipaddress>Alameda dos Canàrios, 891</shipaddress>
  +
<shipcity>Sao Paulo</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>05487-020</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10913</orderid>
  +
<productid>4</productid>
  +
<unitprice>22.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10913</orderid>
  +
<productid>33</productid>
  +
<unitprice>2.5000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10913</orderid>
  +
<productid>58</productid>
  +
<unitprice>13.2500</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10914</orderid>
  +
<customerid>QUEEN</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1998-02-27</orderdate>
  +
<requireddate>1998-03-27</requireddate>
  +
<shippeddate>1998-03-02</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>21.1900</freight>
  +
<shipname>Queen Cozinha</shipname>
  +
<shipaddress>Alameda dos Canàrios, 891</shipaddress>
  +
<shipcity>Sao Paulo</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>05487-020</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10914</orderid>
  +
<productid>71</productid>
  +
<unitprice>21.5000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10961</orderid>
  +
<customerid>QUEEN</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1998-03-19</orderdate>
  +
<requireddate>1998-04-16</requireddate>
  +
<shippeddate>1998-03-30</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>104.4700</freight>
  +
<shipname>Queen Cozinha</shipname>
  +
<shipaddress>Alameda dos Canàrios, 891</shipaddress>
  +
<shipcity>Sao Paulo</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>05487-020</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10961</orderid>
  +
<productid>52</productid>
  +
<unitprice>7.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10961</orderid>
  +
<productid>76</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11068</orderid>
  +
<customerid>QUEEN</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1998-05-04</orderdate>
  +
<requireddate>1998-06-01</requireddate>
  +
<shipvia>2</shipvia>
  +
<freight>81.7500</freight>
  +
<shipname>Queen Cozinha</shipname>
  +
<shipaddress>Alameda dos Canàrios, 891</shipaddress>
  +
<shipcity>Sao Paulo</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>05487-020</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>11068</orderid>
  +
<productid>28</productid>
  +
<unitprice>45.6000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11068</orderid>
  +
<productid>43</productid>
  +
<unitprice>46.0000</unitprice>
  +
<quantity>36</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11068</orderid>
  +
<productid>77</productid>
  +
<unitprice>13.0000</unitprice>
  +
<quantity>28</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>QUICK</customerid>
  +
<companyname>QUICK-Stop</companyname>
  +
<contactname>Horst Kloss</contactname>
  +
<contacttitle>Accounting Manager</contacttitle>
  +
<address>Taucherstraße 10</address>
  +
<city>Cunewalde</city>
  +
<postalcode>01307</postalcode>
  +
<country>Germany</country>
  +
<phone>0372-035188</phone>
  +
<orders>
  +
<orderid>10273</orderid>
  +
<customerid>QUICK</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1996-08-05</orderdate>
  +
<requireddate>1996-09-02</requireddate>
  +
<shippeddate>1996-08-12</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>76.0700</freight>
  +
<shipname>QUICK-Stop</shipname>
  +
<shipaddress>Taucherstraße 10</shipaddress>
  +
<shipcity>Cunewalde</shipcity>
  +
<shippostalcode>01307</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10273</orderid>
  +
<productid>10</productid>
  +
<unitprice>24.8000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10273</orderid>
  +
<productid>31</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10273</orderid>
  +
<productid>33</productid>
  +
<unitprice>2.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10273</orderid>
  +
<productid>40</productid>
  +
<unitprice>14.7000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10273</orderid>
  +
<productid>76</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>33</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10285</orderid>
  +
<customerid>QUICK</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1996-08-20</orderdate>
  +
<requireddate>1996-09-17</requireddate>
  +
<shippeddate>1996-08-26</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>76.8300</freight>
  +
<shipname>QUICK-Stop</shipname>
  +
<shipaddress>Taucherstraße 10</shipaddress>
  +
<shipcity>Cunewalde</shipcity>
  +
<shippostalcode>01307</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10285</orderid>
  +
<productid>1</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>45</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10285</orderid>
  +
<productid>40</productid>
  +
<unitprice>14.7000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10285</orderid>
  +
<productid>53</productid>
  +
<unitprice>26.2000</unitprice>
  +
<quantity>36</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10286</orderid>
  +
<customerid>QUICK</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1996-08-21</orderdate>
  +
<requireddate>1996-09-18</requireddate>
  +
<shippeddate>1996-08-30</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>229.2400</freight>
  +
<shipname>QUICK-Stop</shipname>
  +
<shipaddress>Taucherstraße 10</shipaddress>
  +
<shipcity>Cunewalde</shipcity>
  +
<shippostalcode>01307</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10286</orderid>
  +
<productid>35</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>100</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10286</orderid>
  +
<productid>62</productid>
  +
<unitprice>39.4000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10313</orderid>
  +
<customerid>QUICK</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1996-09-24</orderdate>
  +
<requireddate>1996-10-22</requireddate>
  +
<shippeddate>1996-10-04</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>1.9600</freight>
  +
<shipname>QUICK-Stop</shipname>
  +
<shipaddress>Taucherstraße 10</shipaddress>
  +
<shipcity>Cunewalde</shipcity>
  +
<shippostalcode>01307</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10313</orderid>
  +
<productid>36</productid>
  +
<unitprice>15.2000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10345</orderid>
  +
<customerid>QUICK</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1996-11-04</orderdate>
  +
<requireddate>1996-12-02</requireddate>
  +
<shippeddate>1996-11-11</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>249.0600</freight>
  +
<shipname>QUICK-Stop</shipname>
  +
<shipaddress>Taucherstraße 10</shipaddress>
  +
<shipcity>Cunewalde</shipcity>
  +
<shippostalcode>01307</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10345</orderid>
  +
<productid>8</productid>
  +
<unitprice>32.0000</unitprice>
  +
<quantity>70</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10345</orderid>
  +
<productid>19</productid>
  +
<unitprice>7.3000</unitprice>
  +
<quantity>80</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10345</orderid>
  +
<productid>42</productid>
  +
<unitprice>11.2000</unitprice>
  +
<quantity>9</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10361</orderid>
  +
<customerid>QUICK</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1996-11-22</orderdate>
  +
<requireddate>1996-12-20</requireddate>
  +
<shippeddate>1996-12-03</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>183.1700</freight>
  +
<shipname>QUICK-Stop</shipname>
  +
<shipaddress>Taucherstraße 10</shipaddress>
  +
<shipcity>Cunewalde</shipcity>
  +
<shippostalcode>01307</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10361</orderid>
  +
<productid>39</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>54</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10361</orderid>
  +
<productid>60</productid>
  +
<unitprice>27.2000</unitprice>
  +
<quantity>55</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10418</orderid>
  +
<customerid>QUICK</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-01-17</orderdate>
  +
<requireddate>1997-02-14</requireddate>
  +
<shippeddate>1997-01-24</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>17.5500</freight>
  +
<shipname>QUICK-Stop</shipname>
  +
<shipaddress>Taucherstraße 10</shipaddress>
  +
<shipcity>Cunewalde</shipcity>
  +
<shippostalcode>01307</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10418</orderid>
  +
<productid>2</productid>
  +
<unitprice>15.2000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10418</orderid>
  +
<productid>47</productid>
  +
<unitprice>7.6000</unitprice>
  +
<quantity>55</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10418</orderid>
  +
<productid>61</productid>
  +
<unitprice>22.8000</unitprice>
  +
<quantity>16</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10418</orderid>
  +
<productid>74</productid>
  +
<unitprice>8.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10451</orderid>
  +
<customerid>QUICK</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-02-19</orderdate>
  +
<requireddate>1997-03-05</requireddate>
  +
<shippeddate>1997-03-12</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>189.0900</freight>
  +
<shipname>QUICK-Stop</shipname>
  +
<shipaddress>Taucherstraße 10</shipaddress>
  +
<shipcity>Cunewalde</shipcity>
  +
<shippostalcode>01307</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10451</orderid>
  +
<productid>55</productid>
  +
<unitprice>19.2000</unitprice>
  +
<quantity>120</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10451</orderid>
  +
<productid>64</productid>
  +
<unitprice>26.6000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10451</orderid>
  +
<productid>65</productid>
  +
<unitprice>16.8000</unitprice>
  +
<quantity>28</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10451</orderid>
  +
<productid>77</productid>
  +
<unitprice>10.4000</unitprice>
  +
<quantity>55</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10515</orderid>
  +
<customerid>QUICK</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-04-23</orderdate>
  +
<requireddate>1997-05-07</requireddate>
  +
<shippeddate>1997-05-23</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>204.4700</freight>
  +
<shipname>QUICK-Stop</shipname>
  +
<shipaddress>Taucherstraße 10</shipaddress>
  +
<shipcity>Cunewalde</shipcity>
  +
<shippostalcode>01307</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10515</orderid>
  +
<productid>9</productid>
  +
<unitprice>97.0000</unitprice>
  +
<quantity>16</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10515</orderid>
  +
<productid>16</productid>
  +
<unitprice>17.4500</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10515</orderid>
  +
<productid>27</productid>
  +
<unitprice>43.9000</unitprice>
  +
<quantity>120</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10515</orderid>
  +
<productid>33</productid>
  +
<unitprice>2.5000</unitprice>
  +
<quantity>16</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10515</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>84</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10527</orderid>
  +
<customerid>QUICK</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-05-05</orderdate>
  +
<requireddate>1997-06-02</requireddate>
  +
<shippeddate>1997-05-07</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>41.9000</freight>
  +
<shipname>QUICK-Stop</shipname>
  +
<shipaddress>Taucherstraße 10</shipaddress>
  +
<shipcity>Cunewalde</shipcity>
  +
<shippostalcode>01307</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10527</orderid>
  +
<productid>4</productid>
  +
<unitprice>22.0000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10527</orderid>
  +
<productid>36</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10540</orderid>
  +
<customerid>QUICK</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-05-19</orderdate>
  +
<requireddate>1997-06-16</requireddate>
  +
<shippeddate>1997-06-13</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>1007.6400</freight>
  +
<shipname>QUICK-Stop</shipname>
  +
<shipaddress>Taucherstraße 10</shipaddress>
  +
<shipcity>Cunewalde</shipcity>
  +
<shippostalcode>01307</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10540</orderid>
  +
<productid>3</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10540</orderid>
  +
<productid>26</productid>
  +
<unitprice>31.2300</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10540</orderid>
  +
<productid>38</productid>
  +
<unitprice>263.5000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10540</orderid>
  +
<productid>68</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10549</orderid>
  +
<customerid>QUICK</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1997-05-27</orderdate>
  +
<requireddate>1997-06-10</requireddate>
  +
<shippeddate>1997-05-30</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>171.2400</freight>
  +
<shipname>QUICK-Stop</shipname>
  +
<shipaddress>Taucherstraße 10</shipaddress>
  +
<shipcity>Cunewalde</shipcity>
  +
<shippostalcode>01307</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10549</orderid>
  +
<productid>31</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>55</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10549</orderid>
  +
<productid>45</productid>
  +
<unitprice>9.5000</unitprice>
  +
<quantity>100</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10549</orderid>
  +
<productid>51</productid>
  +
<unitprice>53.0000</unitprice>
  +
<quantity>48</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10588</orderid>
  +
<customerid>QUICK</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-07-03</orderdate>
  +
<requireddate>1997-07-31</requireddate>
  +
<shippeddate>1997-07-10</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>194.6700</freight>
  +
<shipname>QUICK-Stop</shipname>
  +
<shipaddress>Taucherstraße 10</shipaddress>
  +
<shipcity>Cunewalde</shipcity>
  +
<shippostalcode>01307</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10588</orderid>
  +
<productid>18</productid>
  +
<unitprice>62.5000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10588</orderid>
  +
<productid>42</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>100</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10658</orderid>
  +
<customerid>QUICK</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-09-05</orderdate>
  +
<requireddate>1997-10-03</requireddate>
  +
<shippeddate>1997-09-08</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>364.1500</freight>
  +
<shipname>QUICK-Stop</shipname>
  +
<shipaddress>Taucherstraße 10</shipaddress>
  +
<shipcity>Cunewalde</shipcity>
  +
<shippostalcode>01307</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10658</orderid>
  +
<productid>21</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10658</orderid>
  +
<productid>40</productid>
  +
<unitprice>18.4000</unitprice>
  +
<quantity>70</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10658</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>55</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10658</orderid>
  +
<productid>77</productid>
  +
<unitprice>13.0000</unitprice>
  +
<quantity>70</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10691</orderid>
  +
<customerid>QUICK</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-10-03</orderdate>
  +
<requireddate>1997-11-14</requireddate>
  +
<shippeddate>1997-10-22</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>810.0500</freight>
  +
<shipname>QUICK-Stop</shipname>
  +
<shipaddress>Taucherstraße 10</shipaddress>
  +
<shipcity>Cunewalde</shipcity>
  +
<shippostalcode>01307</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10691</orderid>
  +
<productid>1</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10691</orderid>
  +
<productid>29</productid>
  +
<unitprice>123.7900</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10691</orderid>
  +
<productid>43</productid>
  +
<unitprice>46.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10691</orderid>
  +
<productid>44</productid>
  +
<unitprice>19.4500</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10691</orderid>
  +
<productid>62</productid>
  +
<unitprice>49.3000</unitprice>
  +
<quantity>48</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10694</orderid>
  +
<customerid>QUICK</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-10-06</orderdate>
  +
<requireddate>1997-11-03</requireddate>
  +
<shippeddate>1997-10-09</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>398.3600</freight>
  +
<shipname>QUICK-Stop</shipname>
  +
<shipaddress>Taucherstraße 10</shipaddress>
  +
<shipcity>Cunewalde</shipcity>
  +
<shippostalcode>01307</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10694</orderid>
  +
<productid>7</productid>
  +
<unitprice>30.0000</unitprice>
  +
<quantity>90</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10694</orderid>
  +
<productid>59</productid>
  +
<unitprice>55.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10694</orderid>
  +
<productid>70</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10721</orderid>
  +
<customerid>QUICK</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1997-10-29</orderdate>
  +
<requireddate>1997-11-26</requireddate>
  +
<shippeddate>1997-10-31</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>48.9200</freight>
  +
<shipname>QUICK-Stop</shipname>
  +
<shipaddress>Taucherstraße 10</shipaddress>
  +
<shipcity>Cunewalde</shipcity>
  +
<shippostalcode>01307</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10721</orderid>
  +
<productid>44</productid>
  +
<unitprice>19.4500</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10745</orderid>
  +
<customerid>QUICK</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1997-11-18</orderdate>
  +
<requireddate>1997-12-16</requireddate>
  +
<shippeddate>1997-11-27</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>3.5200</freight>
  +
<shipname>QUICK-Stop</shipname>
  +
<shipaddress>Taucherstraße 10</shipaddress>
  +
<shipcity>Cunewalde</shipcity>
  +
<shippostalcode>01307</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10745</orderid>
  +
<productid>18</productid>
  +
<unitprice>62.5000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10745</orderid>
  +
<productid>44</productid>
  +
<unitprice>19.4500</unitprice>
  +
<quantity>16</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10745</orderid>
  +
<productid>59</productid>
  +
<unitprice>55.0000</unitprice>
  +
<quantity>45</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10745</orderid>
  +
<productid>72</productid>
  +
<unitprice>34.8000</unitprice>
  +
<quantity>7</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10765</orderid>
  +
<customerid>QUICK</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-12-04</orderdate>
  +
<requireddate>1998-01-01</requireddate>
  +
<shippeddate>1997-12-09</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>42.7400</freight>
  +
<shipname>QUICK-Stop</shipname>
  +
<shipaddress>Taucherstraße 10</shipaddress>
  +
<shipcity>Cunewalde</shipcity>
  +
<shippostalcode>01307</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10765</orderid>
  +
<productid>65</productid>
  +
<unitprice>21.0500</unitprice>
  +
<quantity>80</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10788</orderid>
  +
<customerid>QUICK</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-12-22</orderdate>
  +
<requireddate>1998-01-19</requireddate>
  +
<shippeddate>1998-01-19</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>42.7000</freight>
  +
<shipname>QUICK-Stop</shipname>
  +
<shipaddress>Taucherstraße 10</shipaddress>
  +
<shipcity>Cunewalde</shipcity>
  +
<shippostalcode>01307</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10788</orderid>
  +
<productid>19</productid>
  +
<unitprice>9.2000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10788</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10845</orderid>
  +
<customerid>QUICK</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1998-01-21</orderdate>
  +
<requireddate>1998-02-04</requireddate>
  +
<shippeddate>1998-01-30</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>212.9800</freight>
  +
<shipname>QUICK-Stop</shipname>
  +
<shipaddress>Taucherstraße 10</shipaddress>
  +
<shipcity>Cunewalde</shipcity>
  +
<shippostalcode>01307</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10845</orderid>
  +
<productid>23</productid>
  +
<unitprice>9.0000</unitprice>
  +
<quantity>70</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10845</orderid>
  +
<productid>35</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10845</orderid>
  +
<productid>42</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>42</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10845</orderid>
  +
<productid>58</productid>
  +
<unitprice>13.2500</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10845</orderid>
  +
<productid>64</productid>
  +
<unitprice>33.2500</unitprice>
  +
<quantity>48</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10865</orderid>
  +
<customerid>QUICK</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-02-02</orderdate>
  +
<requireddate>1998-02-16</requireddate>
  +
<shippeddate>1998-02-12</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>348.1400</freight>
  +
<shipname>QUICK-Stop</shipname>
  +
<shipaddress>Taucherstraße 10</shipaddress>
  +
<shipcity>Cunewalde</shipcity>
  +
<shippostalcode>01307</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10865</orderid>
  +
<productid>38</productid>
  +
<unitprice>263.5000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10865</orderid>
  +
<productid>39</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>80</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10878</orderid>
  +
<customerid>QUICK</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-02-10</orderdate>
  +
<requireddate>1998-03-10</requireddate>
  +
<shippeddate>1998-02-12</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>46.6900</freight>
  +
<shipname>QUICK-Stop</shipname>
  +
<shipaddress>Taucherstraße 10</shipaddress>
  +
<shipcity>Cunewalde</shipcity>
  +
<shippostalcode>01307</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10878</orderid>
  +
<productid>20</productid>
  +
<unitprice>81.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10938</orderid>
  +
<customerid>QUICK</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-03-10</orderdate>
  +
<requireddate>1998-04-07</requireddate>
  +
<shippeddate>1998-03-16</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>31.8900</freight>
  +
<shipname>QUICK-Stop</shipname>
  +
<shipaddress>Taucherstraße 10</shipaddress>
  +
<shipcity>Cunewalde</shipcity>
  +
<shippostalcode>01307</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10938</orderid>
  +
<productid>13</productid>
  +
<unitprice>6.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10938</orderid>
  +
<productid>43</productid>
  +
<unitprice>46.0000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10938</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>49</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10938</orderid>
  +
<productid>71</productid>
  +
<unitprice>21.5000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10962</orderid>
  +
<customerid>QUICK</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1998-03-19</orderdate>
  +
<requireddate>1998-04-16</requireddate>
  +
<shippeddate>1998-03-23</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>275.7900</freight>
  +
<shipname>QUICK-Stop</shipname>
  +
<shipaddress>Taucherstraße 10</shipaddress>
  +
<shipcity>Cunewalde</shipcity>
  +
<shippostalcode>01307</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10962</orderid>
  +
<productid>7</productid>
  +
<unitprice>30.0000</unitprice>
  +
<quantity>45</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10962</orderid>
  +
<productid>13</productid>
  +
<unitprice>6.0000</unitprice>
  +
<quantity>77</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10962</orderid>
  +
<productid>53</productid>
  +
<unitprice>32.8000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10962</orderid>
  +
<productid>69</productid>
  +
<unitprice>36.0000</unitprice>
  +
<quantity>9</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10962</orderid>
  +
<productid>76</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>44</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10991</orderid>
  +
<customerid>QUICK</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-04-01</orderdate>
  +
<requireddate>1998-04-29</requireddate>
  +
<shippeddate>1998-04-07</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>38.5100</freight>
  +
<shipname>QUICK-Stop</shipname>
  +
<shipaddress>Taucherstraße 10</shipaddress>
  +
<shipcity>Cunewalde</shipcity>
  +
<shippostalcode>01307</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10991</orderid>
  +
<productid>2</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10991</orderid>
  +
<productid>70</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10991</orderid>
  +
<productid>76</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>90</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10996</orderid>
  +
<customerid>QUICK</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-04-02</orderdate>
  +
<requireddate>1998-04-30</requireddate>
  +
<shippeddate>1998-04-10</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>1.1200</freight>
  +
<shipname>QUICK-Stop</shipname>
  +
<shipaddress>Taucherstraße 10</shipaddress>
  +
<shipcity>Cunewalde</shipcity>
  +
<shippostalcode>01307</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10996</orderid>
  +
<productid>42</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11021</orderid>
  +
<customerid>QUICK</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-04-14</orderdate>
  +
<requireddate>1998-05-12</requireddate>
  +
<shippeddate>1998-04-21</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>297.1800</freight>
  +
<shipname>QUICK-Stop</shipname>
  +
<shipaddress>Taucherstraße 10</shipaddress>
  +
<shipcity>Cunewalde</shipcity>
  +
<shippostalcode>01307</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>11021</orderid>
  +
<productid>2</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>11</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11021</orderid>
  +
<productid>20</productid>
  +
<unitprice>81.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11021</orderid>
  +
<productid>26</productid>
  +
<unitprice>31.2300</unitprice>
  +
<quantity>63</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11021</orderid>
  +
<productid>51</productid>
  +
<unitprice>53.0000</unitprice>
  +
<quantity>44</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11021</orderid>
  +
<productid>72</productid>
  +
<unitprice>34.8000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>RANCH</customerid>
  +
<companyname>Rancho grande</companyname>
  +
<contactname>Sergio Gutiérrez</contactname>
  +
<contacttitle>Sales Representative</contacttitle>
  +
<address>Av. del Libertador 900</address>
  +
<city>Buenos Aires</city>
  +
<postalcode>1010</postalcode>
  +
<country>Argentina</country>
  +
<phone>(1) 123-5555</phone>
  +
<fax>(1) 123-5556</fax>
  +
<orders>
  +
<orderid>10448</orderid>
  +
<customerid>RANCH</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-02-17</orderdate>
  +
<requireddate>1997-03-17</requireddate>
  +
<shippeddate>1997-02-24</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>38.8200</freight>
  +
<shipname>Rancho grande</shipname>
  +
<shipaddress>Av. del Libertador 900</shipaddress>
  +
<shipcity>Buenos Aires</shipcity>
  +
<shippostalcode>1010</shippostalcode>
  +
<shipcountry>Argentina</shipcountry>
  +
<orderdetails>
  +
<orderid>10448</orderid>
  +
<productid>26</productid>
  +
<unitprice>24.9000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10448</orderid>
  +
<productid>40</productid>
  +
<unitprice>14.7000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10716</orderid>
  +
<customerid>RANCH</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-10-24</orderdate>
  +
<requireddate>1997-11-21</requireddate>
  +
<shippeddate>1997-10-27</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>22.5700</freight>
  +
<shipname>Rancho grande</shipname>
  +
<shipaddress>Av. del Libertador 900</shipaddress>
  +
<shipcity>Buenos Aires</shipcity>
  +
<shippostalcode>1010</shippostalcode>
  +
<shipcountry>Argentina</shipcountry>
  +
<orderdetails>
  +
<orderid>10716</orderid>
  +
<productid>21</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10716</orderid>
  +
<productid>51</productid>
  +
<unitprice>53.0000</unitprice>
  +
<quantity>7</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10716</orderid>
  +
<productid>61</productid>
  +
<unitprice>28.5000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10828</orderid>
  +
<customerid>RANCH</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1998-01-13</orderdate>
  +
<requireddate>1998-01-27</requireddate>
  +
<shippeddate>1998-02-04</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>90.8500</freight>
  +
<shipname>Rancho grande</shipname>
  +
<shipaddress>Av. del Libertador 900</shipaddress>
  +
<shipcity>Buenos Aires</shipcity>
  +
<shippostalcode>1010</shippostalcode>
  +
<shipcountry>Argentina</shipcountry>
  +
<orderdetails>
  +
<orderid>10828</orderid>
  +
<productid>20</productid>
  +
<unitprice>81.0000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10828</orderid>
  +
<productid>38</productid>
  +
<unitprice>263.5000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10916</orderid>
  +
<customerid>RANCH</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-02-27</orderdate>
  +
<requireddate>1998-03-27</requireddate>
  +
<shippeddate>1998-03-09</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>63.7700</freight>
  +
<shipname>Rancho grande</shipname>
  +
<shipaddress>Av. del Libertador 900</shipaddress>
  +
<shipcity>Buenos Aires</shipcity>
  +
<shippostalcode>1010</shippostalcode>
  +
<shipcountry>Argentina</shipcountry>
  +
<orderdetails>
  +
<orderid>10916</orderid>
  +
<productid>16</productid>
  +
<unitprice>17.4500</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10916</orderid>
  +
<productid>32</productid>
  +
<unitprice>32.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10916</orderid>
  +
<productid>57</productid>
  +
<unitprice>19.5000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11019</orderid>
  +
<customerid>RANCH</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1998-04-13</orderdate>
  +
<requireddate>1998-05-11</requireddate>
  +
<shipvia>3</shipvia>
  +
<freight>3.1700</freight>
  +
<shipname>Rancho grande</shipname>
  +
<shipaddress>Av. del Libertador 900</shipaddress>
  +
<shipcity>Buenos Aires</shipcity>
  +
<shippostalcode>1010</shippostalcode>
  +
<shipcountry>Argentina</shipcountry>
  +
<orderdetails>
  +
<orderid>11019</orderid>
  +
<productid>46</productid>
  +
<unitprice>12.0000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11019</orderid>
  +
<productid>49</productid>
  +
<unitprice>20.0000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>RATTC</customerid>
  +
<companyname>Rattlesnake Canyon Grocery</companyname>
  +
<contactname>Paula Wilson</contactname>
  +
<contacttitle>Assistant Sales Representative</contacttitle>
  +
<address>2817 Milton Dr.</address>
  +
<city>Albuquerque</city>
  +
<region>NM</region>
  +
<postalcode>87110</postalcode>
  +
<country>USA</country>
  +
<phone>(505) 555-5939</phone>
  +
<fax>(505) 555-3620</fax>
  +
<orders>
  +
<orderid>10262</orderid>
  +
<customerid>RATTC</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1996-07-22</orderdate>
  +
<requireddate>1996-08-19</requireddate>
  +
<shippeddate>1996-07-25</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>48.2900</freight>
  +
<shipname>Rattlesnake Canyon Grocery</shipname>
  +
<shipaddress>2817 Milton Dr.</shipaddress>
  +
<shipcity>Albuquerque</shipcity>
  +
<shipregion>NM</shipregion>
  +
<shippostalcode>87110</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10262</orderid>
  +
<productid>5</productid>
  +
<unitprice>17.0000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10262</orderid>
  +
<productid>7</productid>
  +
<unitprice>24.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10262</orderid>
  +
<productid>56</productid>
  +
<unitprice>30.4000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10272</orderid>
  +
<customerid>RATTC</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1996-08-02</orderdate>
  +
<requireddate>1996-08-30</requireddate>
  +
<shippeddate>1996-08-06</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>98.0300</freight>
  +
<shipname>Rattlesnake Canyon Grocery</shipname>
  +
<shipaddress>2817 Milton Dr.</shipaddress>
  +
<shipcity>Albuquerque</shipcity>
  +
<shipregion>NM</shipregion>
  +
<shippostalcode>87110</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10272</orderid>
  +
<productid>20</productid>
  +
<unitprice>64.8000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10272</orderid>
  +
<productid>31</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10272</orderid>
  +
<productid>72</productid>
  +
<unitprice>27.8000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10294</orderid>
  +
<customerid>RATTC</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1996-08-30</orderdate>
  +
<requireddate>1996-09-27</requireddate>
  +
<shippeddate>1996-09-05</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>147.2600</freight>
  +
<shipname>Rattlesnake Canyon Grocery</shipname>
  +
<shipaddress>2817 Milton Dr.</shipaddress>
  +
<shipcity>Albuquerque</shipcity>
  +
<shipregion>NM</shipregion>
  +
<shippostalcode>87110</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10294</orderid>
  +
<productid>1</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10294</orderid>
  +
<productid>17</productid>
  +
<unitprice>31.2000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10294</orderid>
  +
<productid>43</productid>
  +
<unitprice>36.8000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10294</orderid>
  +
<productid>60</productid>
  +
<unitprice>27.2000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10294</orderid>
  +
<productid>75</productid>
  +
<unitprice>6.2000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10314</orderid>
  +
<customerid>RATTC</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1996-09-25</orderdate>
  +
<requireddate>1996-10-23</requireddate>
  +
<shippeddate>1996-10-04</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>74.1600</freight>
  +
<shipname>Rattlesnake Canyon Grocery</shipname>
  +
<shipaddress>2817 Milton Dr.</shipaddress>
  +
<shipcity>Albuquerque</shipcity>
  +
<shipregion>NM</shipregion>
  +
<shippostalcode>87110</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10314</orderid>
  +
<productid>32</productid>
  +
<unitprice>25.6000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10314</orderid>
  +
<productid>58</productid>
  +
<unitprice>10.6000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10314</orderid>
  +
<productid>62</productid>
  +
<unitprice>39.4000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10316</orderid>
  +
<customerid>RATTC</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1996-09-27</orderdate>
  +
<requireddate>1996-10-25</requireddate>
  +
<shippeddate>1996-10-08</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>150.1500</freight>
  +
<shipname>Rattlesnake Canyon Grocery</shipname>
  +
<shipaddress>2817 Milton Dr.</shipaddress>
  +
<shipcity>Albuquerque</shipcity>
  +
<shipregion>NM</shipregion>
  +
<shippostalcode>87110</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10316</orderid>
  +
<productid>41</productid>
  +
<unitprice>7.7000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10316</orderid>
  +
<productid>62</productid>
  +
<unitprice>39.4000</unitprice>
  +
<quantity>70</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10346</orderid>
  +
<customerid>RATTC</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1996-11-05</orderdate>
  +
<requireddate>1996-12-17</requireddate>
  +
<shippeddate>1996-11-08</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>142.0800</freight>
  +
<shipname>Rattlesnake Canyon Grocery</shipname>
  +
<shipaddress>2817 Milton Dr.</shipaddress>
  +
<shipcity>Albuquerque</shipcity>
  +
<shipregion>NM</shipregion>
  +
<shippostalcode>87110</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10346</orderid>
  +
<productid>17</productid>
  +
<unitprice>31.2000</unitprice>
  +
<quantity>36</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10346</orderid>
  +
<productid>56</productid>
  +
<unitprice>30.4000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10401</orderid>
  +
<customerid>RATTC</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-01-01</orderdate>
  +
<requireddate>1997-01-29</requireddate>
  +
<shippeddate>1997-01-10</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>12.5100</freight>
  +
<shipname>Rattlesnake Canyon Grocery</shipname>
  +
<shipaddress>2817 Milton Dr.</shipaddress>
  +
<shipcity>Albuquerque</shipcity>
  +
<shipregion>NM</shipregion>
  +
<shippostalcode>87110</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10401</orderid>
  +
<productid>30</productid>
  +
<unitprice>20.7000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10401</orderid>
  +
<productid>56</productid>
  +
<unitprice>30.4000</unitprice>
  +
<quantity>70</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10401</orderid>
  +
<productid>65</productid>
  +
<unitprice>16.8000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10401</orderid>
  +
<productid>71</productid>
  +
<unitprice>17.2000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10479</orderid>
  +
<customerid>RATTC</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-03-19</orderdate>
  +
<requireddate>1997-04-16</requireddate>
  +
<shippeddate>1997-03-21</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>708.9500</freight>
  +
<shipname>Rattlesnake Canyon Grocery</shipname>
  +
<shipaddress>2817 Milton Dr.</shipaddress>
  +
<shipcity>Albuquerque</shipcity>
  +
<shipregion>NM</shipregion>
  +
<shippostalcode>87110</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10479</orderid>
  +
<productid>38</productid>
  +
<unitprice>210.8000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10479</orderid>
  +
<productid>53</productid>
  +
<unitprice>26.2000</unitprice>
  +
<quantity>28</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10479</orderid>
  +
<productid>59</productid>
  +
<unitprice>44.0000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10479</orderid>
  +
<productid>64</productid>
  +
<unitprice>26.6000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10564</orderid>
  +
<customerid>RATTC</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-06-10</orderdate>
  +
<requireddate>1997-07-08</requireddate>
  +
<shippeddate>1997-06-16</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>13.7500</freight>
  +
<shipname>Rattlesnake Canyon Grocery</shipname>
  +
<shipaddress>2817 Milton Dr.</shipaddress>
  +
<shipcity>Albuquerque</shipcity>
  +
<shipregion>NM</shipregion>
  +
<shippostalcode>87110</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10564</orderid>
  +
<productid>17</productid>
  +
<unitprice>39.0000</unitprice>
  +
<quantity>16</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10564</orderid>
  +
<productid>31</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10564</orderid>
  +
<productid>55</productid>
  +
<unitprice>24.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10569</orderid>
  +
<customerid>RATTC</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1997-06-16</orderdate>
  +
<requireddate>1997-07-14</requireddate>
  +
<shippeddate>1997-07-11</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>58.9800</freight>
  +
<shipname>Rattlesnake Canyon Grocery</shipname>
  +
<shipaddress>2817 Milton Dr.</shipaddress>
  +
<shipcity>Albuquerque</shipcity>
  +
<shipregion>NM</shipregion>
  +
<shippostalcode>87110</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10569</orderid>
  +
<productid>31</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10569</orderid>
  +
<productid>76</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10598</orderid>
  +
<customerid>RATTC</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-07-14</orderdate>
  +
<requireddate>1997-08-11</requireddate>
  +
<shippeddate>1997-07-18</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>44.4200</freight>
  +
<shipname>Rattlesnake Canyon Grocery</shipname>
  +
<shipaddress>2817 Milton Dr.</shipaddress>
  +
<shipcity>Albuquerque</shipcity>
  +
<shipregion>NM</shipregion>
  +
<shippostalcode>87110</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10598</orderid>
  +
<productid>27</productid>
  +
<unitprice>43.9000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10598</orderid>
  +
<productid>71</productid>
  +
<unitprice>21.5000</unitprice>
  +
<quantity>9</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10761</orderid>
  +
<customerid>RATTC</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1997-12-02</orderdate>
  +
<requireddate>1997-12-30</requireddate>
  +
<shippeddate>1997-12-08</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>18.6600</freight>
  +
<shipname>Rattlesnake Canyon Grocery</shipname>
  +
<shipaddress>2817 Milton Dr.</shipaddress>
  +
<shipcity>Albuquerque</shipcity>
  +
<shipregion>NM</shipregion>
  +
<shippostalcode>87110</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10761</orderid>
  +
<productid>25</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10761</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10820</orderid>
  +
<customerid>RATTC</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-01-07</orderdate>
  +
<requireddate>1998-02-04</requireddate>
  +
<shippeddate>1998-01-13</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>37.5200</freight>
  +
<shipname>Rattlesnake Canyon Grocery</shipname>
  +
<shipaddress>2817 Milton Dr.</shipaddress>
  +
<shipcity>Albuquerque</shipcity>
  +
<shipregion>NM</shipregion>
  +
<shippostalcode>87110</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10820</orderid>
  +
<productid>56</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10852</orderid>
  +
<customerid>RATTC</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1998-01-26</orderdate>
  +
<requireddate>1998-02-09</requireddate>
  +
<shippeddate>1998-01-30</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>174.0500</freight>
  +
<shipname>Rattlesnake Canyon Grocery</shipname>
  +
<shipaddress>2817 Milton Dr.</shipaddress>
  +
<shipcity>Albuquerque</shipcity>
  +
<shipregion>NM</shipregion>
  +
<shippostalcode>87110</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10852</orderid>
  +
<productid>2</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10852</orderid>
  +
<productid>17</productid>
  +
<unitprice>39.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10852</orderid>
  +
<productid>62</productid>
  +
<unitprice>49.3000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10889</orderid>
  +
<customerid>RATTC</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1998-02-16</orderdate>
  +
<requireddate>1998-03-16</requireddate>
  +
<shippeddate>1998-02-23</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>280.6100</freight>
  +
<shipname>Rattlesnake Canyon Grocery</shipname>
  +
<shipaddress>2817 Milton Dr.</shipaddress>
  +
<shipcity>Albuquerque</shipcity>
  +
<shipregion>NM</shipregion>
  +
<shippostalcode>87110</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10889</orderid>
  +
<productid>11</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10889</orderid>
  +
<productid>38</productid>
  +
<unitprice>263.5000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10988</orderid>
  +
<customerid>RATTC</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-03-31</orderdate>
  +
<requireddate>1998-04-28</requireddate>
  +
<shippeddate>1998-04-10</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>61.1400</freight>
  +
<shipname>Rattlesnake Canyon Grocery</shipname>
  +
<shipaddress>2817 Milton Dr.</shipaddress>
  +
<shipcity>Albuquerque</shipcity>
  +
<shipregion>NM</shipregion>
  +
<shippostalcode>87110</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10988</orderid>
  +
<productid>7</productid>
  +
<unitprice>30.0000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10988</orderid>
  +
<productid>62</productid>
  +
<unitprice>49.3000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11000</orderid>
  +
<customerid>RATTC</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-04-06</orderdate>
  +
<requireddate>1998-05-04</requireddate>
  +
<shippeddate>1998-04-14</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>55.1200</freight>
  +
<shipname>Rattlesnake Canyon Grocery</shipname>
  +
<shipaddress>2817 Milton Dr.</shipaddress>
  +
<shipcity>Albuquerque</shipcity>
  +
<shipregion>NM</shipregion>
  +
<shippostalcode>87110</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>11000</orderid>
  +
<productid>4</productid>
  +
<unitprice>22.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11000</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11000</orderid>
  +
<productid>77</productid>
  +
<unitprice>13.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11077</orderid>
  +
<customerid>RATTC</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-05-06</orderdate>
  +
<requireddate>1998-06-03</requireddate>
  +
<shipvia>2</shipvia>
  +
<freight>8.5300</freight>
  +
<shipname>Rattlesnake Canyon Grocery</shipname>
  +
<shipaddress>2817 Milton Dr.</shipaddress>
  +
<shipcity>Albuquerque</shipcity>
  +
<shipregion>NM</shipregion>
  +
<shippostalcode>87110</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>11077</orderid>
  +
<productid>2</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11077</orderid>
  +
<productid>3</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11077</orderid>
  +
<productid>4</productid>
  +
<unitprice>22.0000</unitprice>
  +
<quantity>1</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11077</orderid>
  +
<productid>6</productid>
  +
<unitprice>25.0000</unitprice>
  +
<quantity>1</quantity>
  +
<discount>0.01999</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11077</orderid>
  +
<productid>7</productid>
  +
<unitprice>30.0000</unitprice>
  +
<quantity>1</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11077</orderid>
  +
<productid>8</productid>
  +
<unitprice>40.0000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11077</orderid>
  +
<productid>10</productid>
  +
<unitprice>31.0000</unitprice>
  +
<quantity>1</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11077</orderid>
  +
<productid>12</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11077</orderid>
  +
<productid>13</productid>
  +
<unitprice>6.0000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11077</orderid>
  +
<productid>14</productid>
  +
<unitprice>23.2500</unitprice>
  +
<quantity>1</quantity>
  +
<discount>0.02999</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11077</orderid>
  +
<productid>16</productid>
  +
<unitprice>17.4500</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.02999</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11077</orderid>
  +
<productid>20</productid>
  +
<unitprice>81.0000</unitprice>
  +
<quantity>1</quantity>
  +
<discount>0.03999</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11077</orderid>
  +
<productid>23</productid>
  +
<unitprice>9.0000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11077</orderid>
  +
<productid>32</productid>
  +
<unitprice>32.0000</unitprice>
  +
<quantity>1</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11077</orderid>
  +
<productid>39</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11077</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11077</orderid>
  +
<productid>46</productid>
  +
<unitprice>12.0000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.01999</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11077</orderid>
  +
<productid>52</productid>
  +
<unitprice>7.0000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11077</orderid>
  +
<productid>55</productid>
  +
<unitprice>24.0000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11077</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.05999</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11077</orderid>
  +
<productid>64</productid>
  +
<unitprice>33.2500</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.02999</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11077</orderid>
  +
<productid>66</productid>
  +
<unitprice>17.0000</unitprice>
  +
<quantity>1</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11077</orderid>
  +
<productid>73</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.00999</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11077</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11077</orderid>
  +
<productid>77</productid>
  +
<unitprice>13.0000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>REGGC</customerid>
  +
<companyname>Reggiani Caseifici</companyname>
  +
<contactname>Maurizio Moroni</contactname>
  +
<contacttitle>Sales Associate</contacttitle>
  +
<address>Strada Provinciale 124</address>
  +
<city>Reggio Emilia</city>
  +
<postalcode>42100</postalcode>
  +
<country>Italy</country>
  +
<phone>0522-556721</phone>
  +
<fax>0522-556722</fax>
  +
<orders>
  +
<orderid>10288</orderid>
  +
<customerid>REGGC</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1996-08-23</orderdate>
  +
<requireddate>1996-09-20</requireddate>
  +
<shippeddate>1996-09-03</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>7.4500</freight>
  +
<shipname>Reggiani Caseifici</shipname>
  +
<shipaddress>Strada Provinciale 124</shipaddress>
  +
<shipcity>Reggio Emilia</shipcity>
  +
<shippostalcode>42100</shippostalcode>
  +
<shipcountry>Italy</shipcountry>
  +
<orderdetails>
  +
<orderid>10288</orderid>
  +
<productid>54</productid>
  +
<unitprice>5.9000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10288</orderid>
  +
<productid>68</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10428</orderid>
  +
<customerid>REGGC</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-01-28</orderdate>
  +
<requireddate>1997-02-25</requireddate>
  +
<shippeddate>1997-02-04</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>11.0900</freight>
  +
<shipname>Reggiani Caseifici</shipname>
  +
<shipaddress>Strada Provinciale 124</shipaddress>
  +
<shipcity>Reggio Emilia</shipcity>
  +
<shippostalcode>42100</shippostalcode>
  +
<shipcountry>Italy</shipcountry>
  +
<orderdetails>
  +
<orderid>10428</orderid>
  +
<productid>46</productid>
  +
<unitprice>9.6000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10443</orderid>
  +
<customerid>REGGC</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-02-12</orderdate>
  +
<requireddate>1997-03-12</requireddate>
  +
<shippeddate>1997-02-14</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>13.9500</freight>
  +
<shipname>Reggiani Caseifici</shipname>
  +
<shipaddress>Strada Provinciale 124</shipaddress>
  +
<shipcity>Reggio Emilia</shipcity>
  +
<shippostalcode>42100</shippostalcode>
  +
<shipcountry>Italy</shipcountry>
  +
<orderdetails>
  +
<orderid>10443</orderid>
  +
<productid>11</productid>
  +
<unitprice>16.8000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10443</orderid>
  +
<productid>28</productid>
  +
<unitprice>36.4000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10562</orderid>
  +
<customerid>REGGC</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-06-09</orderdate>
  +
<requireddate>1997-07-07</requireddate>
  +
<shippeddate>1997-06-12</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>22.9500</freight>
  +
<shipname>Reggiani Caseifici</shipname>
  +
<shipaddress>Strada Provinciale 124</shipaddress>
  +
<shipcity>Reggio Emilia</shipcity>
  +
<shippostalcode>42100</shippostalcode>
  +
<shipcountry>Italy</shipcountry>
  +
<orderdetails>
  +
<orderid>10562</orderid>
  +
<productid>33</productid>
  +
<unitprice>2.5000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10562</orderid>
  +
<productid>62</productid>
  +
<unitprice>49.3000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10586</orderid>
  +
<customerid>REGGC</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1997-07-02</orderdate>
  +
<requireddate>1997-07-30</requireddate>
  +
<shippeddate>1997-07-09</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>0.4800</freight>
  +
<shipname>Reggiani Caseifici</shipname>
  +
<shipaddress>Strada Provinciale 124</shipaddress>
  +
<shipcity>Reggio Emilia</shipcity>
  +
<shippostalcode>42100</shippostalcode>
  +
<shipcountry>Italy</shipcountry>
  +
<orderdetails>
  +
<orderid>10586</orderid>
  +
<productid>52</productid>
  +
<unitprice>7.0000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10655</orderid>
  +
<customerid>REGGC</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-09-03</orderdate>
  +
<requireddate>1997-10-01</requireddate>
  +
<shippeddate>1997-09-11</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>4.4100</freight>
  +
<shipname>Reggiani Caseifici</shipname>
  +
<shipaddress>Strada Provinciale 124</shipaddress>
  +
<shipcity>Reggio Emilia</shipcity>
  +
<shippostalcode>42100</shippostalcode>
  +
<shipcountry>Italy</shipcountry>
  +
<orderdetails>
  +
<orderid>10655</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10727</orderid>
  +
<customerid>REGGC</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-11-03</orderdate>
  +
<requireddate>1997-12-01</requireddate>
  +
<shippeddate>1997-12-05</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>89.9000</freight>
  +
<shipname>Reggiani Caseifici</shipname>
  +
<shipaddress>Strada Provinciale 124</shipaddress>
  +
<shipcity>Reggio Emilia</shipcity>
  +
<shippostalcode>42100</shippostalcode>
  +
<shipcountry>Italy</shipcountry>
  +
<orderdetails>
  +
<orderid>10727</orderid>
  +
<productid>17</productid>
  +
<unitprice>39.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10727</orderid>
  +
<productid>56</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10727</orderid>
  +
<productid>59</productid>
  +
<unitprice>55.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10812</orderid>
  +
<customerid>REGGC</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1998-01-02</orderdate>
  +
<requireddate>1998-01-30</requireddate>
  +
<shippeddate>1998-01-12</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>59.7800</freight>
  +
<shipname>Reggiani Caseifici</shipname>
  +
<shipaddress>Strada Provinciale 124</shipaddress>
  +
<shipcity>Reggio Emilia</shipcity>
  +
<shippostalcode>42100</shippostalcode>
  +
<shipcountry>Italy</shipcountry>
  +
<orderdetails>
  +
<orderid>10812</orderid>
  +
<productid>31</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>16</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10812</orderid>
  +
<productid>72</productid>
  +
<unitprice>34.8000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10812</orderid>
  +
<productid>77</productid>
  +
<unitprice>13.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10908</orderid>
  +
<customerid>REGGC</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-02-26</orderdate>
  +
<requireddate>1998-03-26</requireddate>
  +
<shippeddate>1998-03-06</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>32.9600</freight>
  +
<shipname>Reggiani Caseifici</shipname>
  +
<shipaddress>Strada Provinciale 124</shipaddress>
  +
<shipcity>Reggio Emilia</shipcity>
  +
<shippostalcode>42100</shippostalcode>
  +
<shipcountry>Italy</shipcountry>
  +
<orderdetails>
  +
<orderid>10908</orderid>
  +
<productid>7</productid>
  +
<unitprice>30.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10908</orderid>
  +
<productid>52</productid>
  +
<unitprice>7.0000</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10942</orderid>
  +
<customerid>REGGC</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1998-03-11</orderdate>
  +
<requireddate>1998-04-08</requireddate>
  +
<shippeddate>1998-03-18</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>17.9500</freight>
  +
<shipname>Reggiani Caseifici</shipname>
  +
<shipaddress>Strada Provinciale 124</shipaddress>
  +
<shipcity>Reggio Emilia</shipcity>
  +
<shippostalcode>42100</shippostalcode>
  +
<shipcountry>Italy</shipcountry>
  +
<orderdetails>
  +
<orderid>10942</orderid>
  +
<productid>49</productid>
  +
<unitprice>20.0000</unitprice>
  +
<quantity>28</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11010</orderid>
  +
<customerid>REGGC</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-04-09</orderdate>
  +
<requireddate>1998-05-07</requireddate>
  +
<shippeddate>1998-04-21</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>28.7100</freight>
  +
<shipname>Reggiani Caseifici</shipname>
  +
<shipaddress>Strada Provinciale 124</shipaddress>
  +
<shipcity>Reggio Emilia</shipcity>
  +
<shippostalcode>42100</shippostalcode>
  +
<shipcountry>Italy</shipcountry>
  +
<orderdetails>
  +
<orderid>11010</orderid>
  +
<productid>7</productid>
  +
<unitprice>30.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11010</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11062</orderid>
  +
<customerid>REGGC</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-04-30</orderdate>
  +
<requireddate>1998-05-28</requireddate>
  +
<shipvia>2</shipvia>
  +
<freight>29.9300</freight>
  +
<shipname>Reggiani Caseifici</shipname>
  +
<shipaddress>Strada Provinciale 124</shipaddress>
  +
<shipcity>Reggio Emilia</shipcity>
  +
<shippostalcode>42100</shippostalcode>
  +
<shipcountry>Italy</shipcountry>
  +
<orderdetails>
  +
<orderid>11062</orderid>
  +
<productid>53</productid>
  +
<unitprice>32.8000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11062</orderid>
  +
<productid>70</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>RICAR</customerid>
  +
<companyname>Ricardo Adocicados</companyname>
  +
<contactname>Janete Limeira</contactname>
  +
<contacttitle>Assistant Sales Agent</contacttitle>
  +
<address>Av. Copacabana, 267</address>
  +
<city>Rio de Janeiro</city>
  +
<region>RJ</region>
  +
<postalcode>02389-890</postalcode>
  +
<country>Brazil</country>
  +
<phone>(21) 555-3412</phone>
  +
<orders>
  +
<orderid>10287</orderid>
  +
<customerid>RICAR</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1996-08-22</orderdate>
  +
<requireddate>1996-09-19</requireddate>
  +
<shippeddate>1996-08-28</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>12.7600</freight>
  +
<shipname>Ricardo Adocicados</shipname>
  +
<shipaddress>Av. Copacabana, 267</shipaddress>
  +
<shipcity>Rio de Janeiro</shipcity>
  +
<shipregion>RJ</shipregion>
  +
<shippostalcode>02389-890</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10287</orderid>
  +
<productid>16</productid>
  +
<unitprice>13.9000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10287</orderid>
  +
<productid>34</productid>
  +
<unitprice>11.2000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10287</orderid>
  +
<productid>46</productid>
  +
<unitprice>9.6000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10299</orderid>
  +
<customerid>RICAR</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1996-09-06</orderdate>
  +
<requireddate>1996-10-04</requireddate>
  +
<shippeddate>1996-09-13</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>29.7600</freight>
  +
<shipname>Ricardo Adocicados</shipname>
  +
<shipaddress>Av. Copacabana, 267</shipaddress>
  +
<shipcity>Rio de Janeiro</shipcity>
  +
<shipregion>RJ</shipregion>
  +
<shippostalcode>02389-890</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10299</orderid>
  +
<productid>19</productid>
  +
<unitprice>7.3000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10299</orderid>
  +
<productid>70</productid>
  +
<unitprice>12.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10447</orderid>
  +
<customerid>RICAR</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-02-14</orderdate>
  +
<requireddate>1997-03-14</requireddate>
  +
<shippeddate>1997-03-07</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>68.6600</freight>
  +
<shipname>Ricardo Adocicados</shipname>
  +
<shipaddress>Av. Copacabana, 267</shipaddress>
  +
<shipcity>Rio de Janeiro</shipcity>
  +
<shipregion>RJ</shipregion>
  +
<shippostalcode>02389-890</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10447</orderid>
  +
<productid>19</productid>
  +
<unitprice>7.3000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10447</orderid>
  +
<productid>65</productid>
  +
<unitprice>16.8000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10447</orderid>
  +
<productid>71</productid>
  +
<unitprice>17.2000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10481</orderid>
  +
<customerid>RICAR</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-03-20</orderdate>
  +
<requireddate>1997-04-17</requireddate>
  +
<shippeddate>1997-03-25</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>64.3300</freight>
  +
<shipname>Ricardo Adocicados</shipname>
  +
<shipaddress>Av. Copacabana, 267</shipaddress>
  +
<shipcity>Rio de Janeiro</shipcity>
  +
<shipregion>RJ</shipregion>
  +
<shippostalcode>02389-890</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10481</orderid>
  +
<productid>49</productid>
  +
<unitprice>16.0000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10481</orderid>
  +
<productid>60</productid>
  +
<unitprice>27.2000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10563</orderid>
  +
<customerid>RICAR</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-06-10</orderdate>
  +
<requireddate>1997-07-22</requireddate>
  +
<shippeddate>1997-06-24</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>60.4300</freight>
  +
<shipname>Ricardo Adocicados</shipname>
  +
<shipaddress>Av. Copacabana, 267</shipaddress>
  +
<shipcity>Rio de Janeiro</shipcity>
  +
<shipregion>RJ</shipregion>
  +
<shippostalcode>02389-890</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10563</orderid>
  +
<productid>36</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10563</orderid>
  +
<productid>52</productid>
  +
<unitprice>7.0000</unitprice>
  +
<quantity>70</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10622</orderid>
  +
<customerid>RICAR</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-08-06</orderdate>
  +
<requireddate>1997-09-03</requireddate>
  +
<shippeddate>1997-08-11</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>50.9700</freight>
  +
<shipname>Ricardo Adocicados</shipname>
  +
<shipaddress>Av. Copacabana, 267</shipaddress>
  +
<shipcity>Rio de Janeiro</shipcity>
  +
<shipregion>RJ</shipregion>
  +
<shippostalcode>02389-890</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10622</orderid>
  +
<productid>2</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10622</orderid>
  +
<productid>68</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10648</orderid>
  +
<customerid>RICAR</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1997-08-28</orderdate>
  +
<requireddate>1997-10-09</requireddate>
  +
<shippeddate>1997-09-09</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>14.2500</freight>
  +
<shipname>Ricardo Adocicados</shipname>
  +
<shipaddress>Av. Copacabana, 267</shipaddress>
  +
<shipcity>Rio de Janeiro</shipcity>
  +
<shipregion>RJ</shipregion>
  +
<shippostalcode>02389-890</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10648</orderid>
  +
<productid>22</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10648</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10813</orderid>
  +
<customerid>RICAR</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-01-05</orderdate>
  +
<requireddate>1998-02-02</requireddate>
  +
<shippeddate>1998-01-09</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>47.3800</freight>
  +
<shipname>Ricardo Adocicados</shipname>
  +
<shipaddress>Av. Copacabana, 267</shipaddress>
  +
<shipcity>Rio de Janeiro</shipcity>
  +
<shipregion>RJ</shipregion>
  +
<shippostalcode>02389-890</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10813</orderid>
  +
<productid>2</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10813</orderid>
  +
<productid>46</productid>
  +
<unitprice>12.0000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10851</orderid>
  +
<customerid>RICAR</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1998-01-26</orderdate>
  +
<requireddate>1998-02-23</requireddate>
  +
<shippeddate>1998-02-02</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>160.5500</freight>
  +
<shipname>Ricardo Adocicados</shipname>
  +
<shipaddress>Av. Copacabana, 267</shipaddress>
  +
<shipcity>Rio de Janeiro</shipcity>
  +
<shipregion>RJ</shipregion>
  +
<shippostalcode>02389-890</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10851</orderid>
  +
<productid>2</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10851</orderid>
  +
<productid>25</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10851</orderid>
  +
<productid>57</productid>
  +
<unitprice>19.5000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10851</orderid>
  +
<productid>59</productid>
  +
<unitprice>55.0000</unitprice>
  +
<quantity>42</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10877</orderid>
  +
<customerid>RICAR</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-02-09</orderdate>
  +
<requireddate>1998-03-09</requireddate>
  +
<shippeddate>1998-02-19</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>38.0600</freight>
  +
<shipname>Ricardo Adocicados</shipname>
  +
<shipaddress>Av. Copacabana, 267</shipaddress>
  +
<shipcity>Rio de Janeiro</shipcity>
  +
<shipregion>RJ</shipregion>
  +
<shippostalcode>02389-890</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10877</orderid>
  +
<productid>16</productid>
  +
<unitprice>17.4500</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10877</orderid>
  +
<productid>18</productid>
  +
<unitprice>62.5000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11059</orderid>
  +
<customerid>RICAR</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-04-29</orderdate>
  +
<requireddate>1998-06-10</requireddate>
  +
<shipvia>2</shipvia>
  +
<freight>85.8000</freight>
  +
<shipname>Ricardo Adocicados</shipname>
  +
<shipaddress>Av. Copacabana, 267</shipaddress>
  +
<shipcity>Rio de Janeiro</shipcity>
  +
<shipregion>RJ</shipregion>
  +
<shippostalcode>02389-890</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>11059</orderid>
  +
<productid>13</productid>
  +
<unitprice>6.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11059</orderid>
  +
<productid>17</productid>
  +
<unitprice>39.0000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11059</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>RICSU</customerid>
  +
<companyname>Richter Supermarkt</companyname>
  +
<contactname>Michael Holz</contactname>
  +
<contacttitle>Sales Manager</contacttitle>
  +
<address>Grenzacherweg 237</address>
  +
<city>Genève</city>
  +
<postalcode>1203</postalcode>
  +
<country>Switzerland</country>
  +
<phone>0897-034214</phone>
  +
<orders>
  +
<orderid>10255</orderid>
  +
<customerid>RICSU</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1996-07-12</orderdate>
  +
<requireddate>1996-08-09</requireddate>
  +
<shippeddate>1996-07-15</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>148.3300</freight>
  +
<shipname>Richter Supermarkt</shipname>
  +
<shipaddress>Starenweg 5</shipaddress>
  +
<shipcity>Genève</shipcity>
  +
<shippostalcode>1204</shippostalcode>
  +
<shipcountry>Switzerland</shipcountry>
  +
<orderdetails>
  +
<orderid>10255</orderid>
  +
<productid>2</productid>
  +
<unitprice>15.2000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10255</orderid>
  +
<productid>16</productid>
  +
<unitprice>13.9000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10255</orderid>
  +
<productid>36</productid>
  +
<unitprice>15.2000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10255</orderid>
  +
<productid>59</productid>
  +
<unitprice>44.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10419</orderid>
  +
<customerid>RICSU</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-01-20</orderdate>
  +
<requireddate>1997-02-17</requireddate>
  +
<shippeddate>1997-01-30</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>137.3500</freight>
  +
<shipname>Richter Supermarkt</shipname>
  +
<shipaddress>Starenweg 5</shipaddress>
  +
<shipcity>Genève</shipcity>
  +
<shippostalcode>1204</shippostalcode>
  +
<shipcountry>Switzerland</shipcountry>
  +
<orderdetails>
  +
<orderid>10419</orderid>
  +
<productid>60</productid>
  +
<unitprice>27.2000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10419</orderid>
  +
<productid>69</productid>
  +
<unitprice>28.8000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10537</orderid>
  +
<customerid>RICSU</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-05-14</orderdate>
  +
<requireddate>1997-05-28</requireddate>
  +
<shippeddate>1997-05-19</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>78.8500</freight>
  +
<shipname>Richter Supermarkt</shipname>
  +
<shipaddress>Starenweg 5</shipaddress>
  +
<shipcity>Genève</shipcity>
  +
<shippostalcode>1204</shippostalcode>
  +
<shipcountry>Switzerland</shipcountry>
  +
<orderdetails>
  +
<orderid>10537</orderid>
  +
<productid>31</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10537</orderid>
  +
<productid>51</productid>
  +
<unitprice>53.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10537</orderid>
  +
<productid>58</productid>
  +
<unitprice>13.2500</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10537</orderid>
  +
<productid>72</productid>
  +
<unitprice>34.8000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10537</orderid>
  +
<productid>73</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>9</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10666</orderid>
  +
<customerid>RICSU</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-09-12</orderdate>
  +
<requireddate>1997-10-10</requireddate>
  +
<shippeddate>1997-09-22</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>232.4200</freight>
  +
<shipname>Richter Supermarkt</shipname>
  +
<shipaddress>Starenweg 5</shipaddress>
  +
<shipcity>Genève</shipcity>
  +
<shippostalcode>1204</shippostalcode>
  +
<shipcountry>Switzerland</shipcountry>
  +
<orderdetails>
  +
<orderid>10666</orderid>
  +
<productid>29</productid>
  +
<unitprice>123.7900</unitprice>
  +
<quantity>36</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10666</orderid>
  +
<productid>65</productid>
  +
<unitprice>21.0500</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10751</orderid>
  +
<customerid>RICSU</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-11-24</orderdate>
  +
<requireddate>1997-12-22</requireddate>
  +
<shippeddate>1997-12-03</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>130.7900</freight>
  +
<shipname>Richter Supermarkt</shipname>
  +
<shipaddress>Starenweg 5</shipaddress>
  +
<shipcity>Genève</shipcity>
  +
<shippostalcode>1204</shippostalcode>
  +
<shipcountry>Switzerland</shipcountry>
  +
<orderdetails>
  +
<orderid>10751</orderid>
  +
<productid>26</productid>
  +
<unitprice>31.2300</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10751</orderid>
  +
<productid>30</productid>
  +
<unitprice>25.8900</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10751</orderid>
  +
<productid>50</productid>
  +
<unitprice>16.2500</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10751</orderid>
  +
<productid>73</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10758</orderid>
  +
<customerid>RICSU</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-11-28</orderdate>
  +
<requireddate>1997-12-26</requireddate>
  +
<shippeddate>1997-12-04</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>138.1700</freight>
  +
<shipname>Richter Supermarkt</shipname>
  +
<shipaddress>Starenweg 5</shipaddress>
  +
<shipcity>Genève</shipcity>
  +
<shippostalcode>1204</shippostalcode>
  +
<shipcountry>Switzerland</shipcountry>
  +
<orderdetails>
  +
<orderid>10758</orderid>
  +
<productid>26</productid>
  +
<unitprice>31.2300</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10758</orderid>
  +
<productid>52</productid>
  +
<unitprice>7.0000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10758</orderid>
  +
<productid>70</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10931</orderid>
  +
<customerid>RICSU</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-03-06</orderdate>
  +
<requireddate>1998-03-20</requireddate>
  +
<shippeddate>1998-03-19</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>13.6000</freight>
  +
<shipname>Richter Supermarkt</shipname>
  +
<shipaddress>Starenweg 5</shipaddress>
  +
<shipcity>Genève</shipcity>
  +
<shippostalcode>1204</shippostalcode>
  +
<shipcountry>Switzerland</shipcountry>
  +
<orderdetails>
  +
<orderid>10931</orderid>
  +
<productid>13</productid>
  +
<unitprice>6.0000</unitprice>
  +
<quantity>42</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10931</orderid>
  +
<productid>57</productid>
  +
<unitprice>19.5000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10951</orderid>
  +
<customerid>RICSU</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1998-03-16</orderdate>
  +
<requireddate>1998-04-27</requireddate>
  +
<shippeddate>1998-04-07</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>30.8500</freight>
  +
<shipname>Richter Supermarkt</shipname>
  +
<shipaddress>Starenweg 5</shipaddress>
  +
<shipcity>Genève</shipcity>
  +
<shippostalcode>1204</shippostalcode>
  +
<shipcountry>Switzerland</shipcountry>
  +
<orderdetails>
  +
<orderid>10951</orderid>
  +
<productid>33</productid>
  +
<unitprice>2.5000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10951</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10951</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11033</orderid>
  +
<customerid>RICSU</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1998-04-17</orderdate>
  +
<requireddate>1998-05-15</requireddate>
  +
<shippeddate>1998-04-23</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>84.7400</freight>
  +
<shipname>Richter Supermarkt</shipname>
  +
<shipaddress>Starenweg 5</shipaddress>
  +
<shipcity>Genève</shipcity>
  +
<shippostalcode>1204</shippostalcode>
  +
<shipcountry>Switzerland</shipcountry>
  +
<orderdetails>
  +
<orderid>11033</orderid>
  +
<productid>53</productid>
  +
<unitprice>32.8000</unitprice>
  +
<quantity>70</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11033</orderid>
  +
<productid>69</productid>
  +
<unitprice>36.0000</unitprice>
  +
<quantity>36</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11075</orderid>
  +
<customerid>RICSU</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1998-05-06</orderdate>
  +
<requireddate>1998-06-03</requireddate>
  +
<shipvia>2</shipvia>
  +
<freight>6.1900</freight>
  +
<shipname>Richter Supermarkt</shipname>
  +
<shipaddress>Starenweg 5</shipaddress>
  +
<shipcity>Genève</shipcity>
  +
<shippostalcode>1204</shippostalcode>
  +
<shipcountry>Switzerland</shipcountry>
  +
<orderdetails>
  +
<orderid>11075</orderid>
  +
<productid>2</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11075</orderid>
  +
<productid>46</productid>
  +
<unitprice>12.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11075</orderid>
  +
<productid>76</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>ROMEY</customerid>
  +
<companyname>Romero y tomillo</companyname>
  +
<contactname>Alejandra Camino</contactname>
  +
<contacttitle>Accounting Manager</contacttitle>
  +
<address>Gran Vía, 1</address>
  +
<city>Madrid</city>
  +
<postalcode>28001</postalcode>
  +
<country>Spain</country>
  +
<phone>(91) 745 6200</phone>
  +
<fax>(91) 745 6210</fax>
  +
<orders>
  +
<orderid>10281</orderid>
  +
<customerid>ROMEY</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1996-08-14</orderdate>
  +
<requireddate>1996-08-28</requireddate>
  +
<shippeddate>1996-08-21</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>2.9400</freight>
  +
<shipname>Romero y tomillo</shipname>
  +
<shipaddress>Gran Vía, 1</shipaddress>
  +
<shipcity>Madrid</shipcity>
  +
<shippostalcode>28001</shippostalcode>
  +
<shipcountry>Spain</shipcountry>
  +
<orderdetails>
  +
<orderid>10281</orderid>
  +
<productid>19</productid>
  +
<unitprice>7.3000</unitprice>
  +
<quantity>1</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10281</orderid>
  +
<productid>24</productid>
  +
<unitprice>3.6000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10281</orderid>
  +
<productid>35</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10282</orderid>
  +
<customerid>ROMEY</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1996-08-15</orderdate>
  +
<requireddate>1996-09-12</requireddate>
  +
<shippeddate>1996-08-21</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>12.6900</freight>
  +
<shipname>Romero y tomillo</shipname>
  +
<shipaddress>Gran Vía, 1</shipaddress>
  +
<shipcity>Madrid</shipcity>
  +
<shippostalcode>28001</shippostalcode>
  +
<shipcountry>Spain</shipcountry>
  +
<orderdetails>
  +
<orderid>10282</orderid>
  +
<productid>30</productid>
  +
<unitprice>20.7000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10282</orderid>
  +
<productid>57</productid>
  +
<unitprice>15.6000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10306</orderid>
  +
<customerid>ROMEY</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1996-09-16</orderdate>
  +
<requireddate>1996-10-14</requireddate>
  +
<shippeddate>1996-09-23</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>7.5600</freight>
  +
<shipname>Romero y tomillo</shipname>
  +
<shipaddress>Gran Vía, 1</shipaddress>
  +
<shipcity>Madrid</shipcity>
  +
<shippostalcode>28001</shippostalcode>
  +
<shipcountry>Spain</shipcountry>
  +
<orderdetails>
  +
<orderid>10306</orderid>
  +
<productid>30</productid>
  +
<unitprice>20.7000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10306</orderid>
  +
<productid>53</productid>
  +
<unitprice>26.2000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10306</orderid>
  +
<productid>54</productid>
  +
<unitprice>5.9000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10917</orderid>
  +
<customerid>ROMEY</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-03-02</orderdate>
  +
<requireddate>1998-03-30</requireddate>
  +
<shippeddate>1998-03-11</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>8.2900</freight>
  +
<shipname>Romero y tomillo</shipname>
  +
<shipaddress>Gran Vía, 1</shipaddress>
  +
<shipcity>Madrid</shipcity>
  +
<shippostalcode>28001</shippostalcode>
  +
<shipcountry>Spain</shipcountry>
  +
<orderdetails>
  +
<orderid>10917</orderid>
  +
<productid>30</productid>
  +
<unitprice>25.8900</unitprice>
  +
<quantity>1</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10917</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11013</orderid>
  +
<customerid>ROMEY</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-04-09</orderdate>
  +
<requireddate>1998-05-07</requireddate>
  +
<shippeddate>1998-04-10</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>32.9900</freight>
  +
<shipname>Romero y tomillo</shipname>
  +
<shipaddress>Gran Vía, 1</shipaddress>
  +
<shipcity>Madrid</shipcity>
  +
<shippostalcode>28001</shippostalcode>
  +
<shipcountry>Spain</shipcountry>
  +
<orderdetails>
  +
<orderid>11013</orderid>
  +
<productid>23</productid>
  +
<unitprice>9.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11013</orderid>
  +
<productid>42</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11013</orderid>
  +
<productid>45</productid>
  +
<unitprice>9.5000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11013</orderid>
  +
<productid>68</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>SANTG</customerid>
  +
<companyname>Santé Gourmet</companyname>
  +
<contactname>Jonas Bergulfsen</contactname>
  +
<contacttitle>Owner</contacttitle>
  +
<address>Erling Skakkes gate 78</address>
  +
<city>Stavern</city>
  +
<postalcode>4110</postalcode>
  +
<country>Norway</country>
  +
<phone>07-98 92 35</phone>
  +
<fax>07-98 92 47</fax>
  +
<orders>
  +
<orderid>10387</orderid>
  +
<customerid>SANTG</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1996-12-18</orderdate>
  +
<requireddate>1997-01-15</requireddate>
  +
<shippeddate>1996-12-20</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>93.6300</freight>
  +
<shipname>Santé Gourmet</shipname>
  +
<shipaddress>Erling Skakkes gate 78</shipaddress>
  +
<shipcity>Stavern</shipcity>
  +
<shippostalcode>4110</shippostalcode>
  +
<shipcountry>Norway</shipcountry>
  +
<orderdetails>
  +
<orderid>10387</orderid>
  +
<productid>24</productid>
  +
<unitprice>3.6000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10387</orderid>
  +
<productid>28</productid>
  +
<unitprice>36.4000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10387</orderid>
  +
<productid>59</productid>
  +
<unitprice>44.0000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10387</orderid>
  +
<productid>71</productid>
  +
<unitprice>17.2000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10520</orderid>
  +
<customerid>SANTG</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-04-29</orderdate>
  +
<requireddate>1997-05-27</requireddate>
  +
<shippeddate>1997-05-01</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>13.3700</freight>
  +
<shipname>Santé Gourmet</shipname>
  +
<shipaddress>Erling Skakkes gate 78</shipaddress>
  +
<shipcity>Stavern</shipcity>
  +
<shippostalcode>4110</shippostalcode>
  +
<shipcountry>Norway</shipcountry>
  +
<orderdetails>
  +
<orderid>10520</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10520</orderid>
  +
<productid>53</productid>
  +
<unitprice>32.8000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10639</orderid>
  +
<customerid>SANTG</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-08-20</orderdate>
  +
<requireddate>1997-09-17</requireddate>
  +
<shippeddate>1997-08-27</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>38.6400</freight>
  +
<shipname>Santé Gourmet</shipname>
  +
<shipaddress>Erling Skakkes gate 78</shipaddress>
  +
<shipcity>Stavern</shipcity>
  +
<shippostalcode>4110</shippostalcode>
  +
<shipcountry>Norway</shipcountry>
  +
<orderdetails>
  +
<orderid>10639</orderid>
  +
<productid>18</productid>
  +
<unitprice>62.5000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10831</orderid>
  +
<customerid>SANTG</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-01-14</orderdate>
  +
<requireddate>1998-02-11</requireddate>
  +
<shippeddate>1998-01-23</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>72.1900</freight>
  +
<shipname>Santé Gourmet</shipname>
  +
<shipaddress>Erling Skakkes gate 78</shipaddress>
  +
<shipcity>Stavern</shipcity>
  +
<shippostalcode>4110</shippostalcode>
  +
<shipcountry>Norway</shipcountry>
  +
<orderdetails>
  +
<orderid>10831</orderid>
  +
<productid>19</productid>
  +
<unitprice>9.2000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10831</orderid>
  +
<productid>35</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10831</orderid>
  +
<productid>38</productid>
  +
<unitprice>263.5000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10831</orderid>
  +
<productid>43</productid>
  +
<unitprice>46.0000</unitprice>
  +
<quantity>9</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10909</orderid>
  +
<customerid>SANTG</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-02-26</orderdate>
  +
<requireddate>1998-03-26</requireddate>
  +
<shippeddate>1998-03-10</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>53.0500</freight>
  +
<shipname>Santé Gourmet</shipname>
  +
<shipaddress>Erling Skakkes gate 78</shipaddress>
  +
<shipcity>Stavern</shipcity>
  +
<shippostalcode>4110</shippostalcode>
  +
<shipcountry>Norway</shipcountry>
  +
<orderdetails>
  +
<orderid>10909</orderid>
  +
<productid>7</productid>
  +
<unitprice>30.0000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10909</orderid>
  +
<productid>16</productid>
  +
<unitprice>17.4500</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10909</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11015</orderid>
  +
<customerid>SANTG</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-04-10</orderdate>
  +
<requireddate>1998-04-24</requireddate>
  +
<shippeddate>1998-04-20</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>4.6200</freight>
  +
<shipname>Santé Gourmet</shipname>
  +
<shipaddress>Erling Skakkes gate 78</shipaddress>
  +
<shipcity>Stavern</shipcity>
  +
<shippostalcode>4110</shippostalcode>
  +
<shipcountry>Norway</shipcountry>
  +
<orderdetails>
  +
<orderid>11015</orderid>
  +
<productid>30</productid>
  +
<unitprice>25.8900</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11015</orderid>
  +
<productid>77</productid>
  +
<unitprice>13.0000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>SAVEA</customerid>
  +
<companyname>Save-a-lot Markets</companyname>
  +
<contactname>Jose Pavarotti</contactname>
  +
<contacttitle>Sales Representative</contacttitle>
  +
<address>187 Suffolk Ln.</address>
  +
<city>Boise</city>
  +
<region>ID</region>
  +
<postalcode>83720</postalcode>
  +
<country>USA</country>
  +
<phone>(208) 555-8097</phone>
  +
<orders>
  +
<orderid>10324</orderid>
  +
<customerid>SAVEA</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1996-10-08</orderdate>
  +
<requireddate>1996-11-05</requireddate>
  +
<shippeddate>1996-10-10</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>214.2700</freight>
  +
<shipname>Save-a-lot Markets</shipname>
  +
<shipaddress>187 Suffolk Ln.</shipaddress>
  +
<shipcity>Boise</shipcity>
  +
<shipregion>ID</shipregion>
  +
<shippostalcode>83720</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10324</orderid>
  +
<productid>16</productid>
  +
<unitprice>13.9000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10324</orderid>
  +
<productid>35</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>70</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10324</orderid>
  +
<productid>46</productid>
  +
<unitprice>9.6000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10324</orderid>
  +
<productid>59</productid>
  +
<unitprice>44.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10324</orderid>
  +
<productid>63</productid>
  +
<unitprice>35.1000</unitprice>
  +
<quantity>80</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10393</orderid>
  +
<customerid>SAVEA</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1996-12-25</orderdate>
  +
<requireddate>1997-01-22</requireddate>
  +
<shippeddate>1997-01-03</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>126.5600</freight>
  +
<shipname>Save-a-lot Markets</shipname>
  +
<shipaddress>187 Suffolk Ln.</shipaddress>
  +
<shipcity>Boise</shipcity>
  +
<shipregion>ID</shipregion>
  +
<shippostalcode>83720</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10393</orderid>
  +
<productid>2</productid>
  +
<unitprice>15.2000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10393</orderid>
  +
<productid>14</productid>
  +
<unitprice>18.6000</unitprice>
  +
<quantity>42</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10393</orderid>
  +
<productid>25</productid>
  +
<unitprice>11.2000</unitprice>
  +
<quantity>7</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10393</orderid>
  +
<productid>26</productid>
  +
<unitprice>24.9000</unitprice>
  +
<quantity>70</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10393</orderid>
  +
<productid>31</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>32</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10398</orderid>
  +
<customerid>SAVEA</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1996-12-30</orderdate>
  +
<requireddate>1997-01-27</requireddate>
  +
<shippeddate>1997-01-09</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>89.1600</freight>
  +
<shipname>Save-a-lot Markets</shipname>
  +
<shipaddress>187 Suffolk Ln.</shipaddress>
  +
<shipcity>Boise</shipcity>
  +
<shipregion>ID</shipregion>
  +
<shippostalcode>83720</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10398</orderid>
  +
<productid>35</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10398</orderid>
  +
<productid>55</productid>
  +
<unitprice>19.2000</unitprice>
  +
<quantity>120</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10440</orderid>
  +
<customerid>SAVEA</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-02-10</orderdate>
  +
<requireddate>1997-03-10</requireddate>
  +
<shippeddate>1997-02-28</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>86.5300</freight>
  +
<shipname>Save-a-lot Markets</shipname>
  +
<shipaddress>187 Suffolk Ln.</shipaddress>
  +
<shipcity>Boise</shipcity>
  +
<shipregion>ID</shipregion>
  +
<shippostalcode>83720</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10440</orderid>
  +
<productid>2</productid>
  +
<unitprice>15.2000</unitprice>
  +
<quantity>45</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10440</orderid>
  +
<productid>16</productid>
  +
<unitprice>13.9000</unitprice>
  +
<quantity>49</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10440</orderid>
  +
<productid>29</productid>
  +
<unitprice>99.0000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10440</orderid>
  +
<productid>61</productid>
  +
<unitprice>22.8000</unitprice>
  +
<quantity>90</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10452</orderid>
  +
<customerid>SAVEA</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-02-20</orderdate>
  +
<requireddate>1997-03-20</requireddate>
  +
<shippeddate>1997-02-26</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>140.2600</freight>
  +
<shipname>Save-a-lot Markets</shipname>
  +
<shipaddress>187 Suffolk Ln.</shipaddress>
  +
<shipcity>Boise</shipcity>
  +
<shipregion>ID</shipregion>
  +
<shippostalcode>83720</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10452</orderid>
  +
<productid>28</productid>
  +
<unitprice>36.4000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10452</orderid>
  +
<productid>44</productid>
  +
<unitprice>15.5000</unitprice>
  +
<quantity>100</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10510</orderid>
  +
<customerid>SAVEA</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1997-04-18</orderdate>
  +
<requireddate>1997-05-16</requireddate>
  +
<shippeddate>1997-04-28</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>367.6300</freight>
  +
<shipname>Save-a-lot Markets</shipname>
  +
<shipaddress>187 Suffolk Ln.</shipaddress>
  +
<shipcity>Boise</shipcity>
  +
<shipregion>ID</shipregion>
  +
<shippostalcode>83720</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10510</orderid>
  +
<productid>29</productid>
  +
<unitprice>123.7900</unitprice>
  +
<quantity>36</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10510</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>36</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10555</orderid>
  +
<customerid>SAVEA</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1997-06-02</orderdate>
  +
<requireddate>1997-06-30</requireddate>
  +
<shippeddate>1997-06-04</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>252.4900</freight>
  +
<shipname>Save-a-lot Markets</shipname>
  +
<shipaddress>187 Suffolk Ln.</shipaddress>
  +
<shipcity>Boise</shipcity>
  +
<shipregion>ID</shipregion>
  +
<shippostalcode>83720</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10555</orderid>
  +
<productid>14</productid>
  +
<unitprice>23.2500</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10555</orderid>
  +
<productid>19</productid>
  +
<unitprice>9.2000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10555</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10555</orderid>
  +
<productid>51</productid>
  +
<unitprice>53.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10555</orderid>
  +
<productid>56</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10603</orderid>
  +
<customerid>SAVEA</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-07-18</orderdate>
  +
<requireddate>1997-08-15</requireddate>
  +
<shippeddate>1997-08-08</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>48.7700</freight>
  +
<shipname>Save-a-lot Markets</shipname>
  +
<shipaddress>187 Suffolk Ln.</shipaddress>
  +
<shipcity>Boise</shipcity>
  +
<shipregion>ID</shipregion>
  +
<shippostalcode>83720</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10603</orderid>
  +
<productid>22</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>48</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10603</orderid>
  +
<productid>49</productid>
  +
<unitprice>20.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10607</orderid>
  +
<customerid>SAVEA</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1997-07-22</orderdate>
  +
<requireddate>1997-08-19</requireddate>
  +
<shippeddate>1997-07-25</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>200.2400</freight>
  +
<shipname>Save-a-lot Markets</shipname>
  +
<shipaddress>187 Suffolk Ln.</shipaddress>
  +
<shipcity>Boise</shipcity>
  +
<shipregion>ID</shipregion>
  +
<shippostalcode>83720</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10607</orderid>
  +
<productid>7</productid>
  +
<unitprice>30.0000</unitprice>
  +
<quantity>45</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10607</orderid>
  +
<productid>17</productid>
  +
<unitprice>39.0000</unitprice>
  +
<quantity>100</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10607</orderid>
  +
<productid>33</productid>
  +
<unitprice>2.5000</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10607</orderid>
  +
<productid>40</productid>
  +
<unitprice>18.4000</unitprice>
  +
<quantity>42</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10607</orderid>
  +
<productid>72</productid>
  +
<unitprice>34.8000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10612</orderid>
  +
<customerid>SAVEA</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-07-28</orderdate>
  +
<requireddate>1997-08-25</requireddate>
  +
<shippeddate>1997-08-01</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>544.0800</freight>
  +
<shipname>Save-a-lot Markets</shipname>
  +
<shipaddress>187 Suffolk Ln.</shipaddress>
  +
<shipcity>Boise</shipcity>
  +
<shipregion>ID</shipregion>
  +
<shippostalcode>83720</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10612</orderid>
  +
<productid>10</productid>
  +
<unitprice>31.0000</unitprice>
  +
<quantity>70</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10612</orderid>
  +
<productid>36</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>55</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10612</orderid>
  +
<productid>49</productid>
  +
<unitprice>20.0000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10612</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10612</orderid>
  +
<productid>76</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>80</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10627</orderid>
  +
<customerid>SAVEA</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-08-11</orderdate>
  +
<requireddate>1997-09-22</requireddate>
  +
<shippeddate>1997-08-21</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>107.4600</freight>
  +
<shipname>Save-a-lot Markets</shipname>
  +
<shipaddress>187 Suffolk Ln.</shipaddress>
  +
<shipcity>Boise</shipcity>
  +
<shipregion>ID</shipregion>
  +
<shippostalcode>83720</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10627</orderid>
  +
<productid>62</productid>
  +
<unitprice>49.3000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10627</orderid>
  +
<productid>73</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10657</orderid>
  +
<customerid>SAVEA</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-09-04</orderdate>
  +
<requireddate>1997-10-02</requireddate>
  +
<shippeddate>1997-09-15</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>352.6900</freight>
  +
<shipname>Save-a-lot Markets</shipname>
  +
<shipaddress>187 Suffolk Ln.</shipaddress>
  +
<shipcity>Boise</shipcity>
  +
<shipregion>ID</shipregion>
  +
<shippostalcode>83720</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10657</orderid>
  +
<productid>15</productid>
  +
<unitprice>15.5000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10657</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10657</orderid>
  +
<productid>46</productid>
  +
<unitprice>12.0000</unitprice>
  +
<quantity>45</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10657</orderid>
  +
<productid>47</productid>
  +
<unitprice>9.5000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10657</orderid>
  +
<productid>56</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>45</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10657</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10678</orderid>
  +
<customerid>SAVEA</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-09-23</orderdate>
  +
<requireddate>1997-10-21</requireddate>
  +
<shippeddate>1997-10-16</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>388.9800</freight>
  +
<shipname>Save-a-lot Markets</shipname>
  +
<shipaddress>187 Suffolk Ln.</shipaddress>
  +
<shipcity>Boise</shipcity>
  +
<shipregion>ID</shipregion>
  +
<shippostalcode>83720</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10678</orderid>
  +
<productid>12</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>100</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10678</orderid>
  +
<productid>33</productid>
  +
<unitprice>2.5000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10678</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>120</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10678</orderid>
  +
<productid>54</productid>
  +
<unitprice>7.4500</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10700</orderid>
  +
<customerid>SAVEA</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-10-10</orderdate>
  +
<requireddate>1997-11-07</requireddate>
  +
<shippeddate>1997-10-16</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>65.1000</freight>
  +
<shipname>Save-a-lot Markets</shipname>
  +
<shipaddress>187 Suffolk Ln.</shipaddress>
  +
<shipcity>Boise</shipcity>
  +
<shipregion>ID</shipregion>
  +
<shippostalcode>83720</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10700</orderid>
  +
<productid>1</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10700</orderid>
  +
<productid>34</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10700</orderid>
  +
<productid>68</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10700</orderid>
  +
<productid>71</productid>
  +
<unitprice>21.5000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10711</orderid>
  +
<customerid>SAVEA</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1997-10-21</orderdate>
  +
<requireddate>1997-12-02</requireddate>
  +
<shippeddate>1997-10-29</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>52.4100</freight>
  +
<shipname>Save-a-lot Markets</shipname>
  +
<shipaddress>187 Suffolk Ln.</shipaddress>
  +
<shipcity>Boise</shipcity>
  +
<shipregion>ID</shipregion>
  +
<shippostalcode>83720</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10711</orderid>
  +
<productid>19</productid>
  +
<unitprice>9.2000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10711</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>42</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10711</orderid>
  +
<productid>53</productid>
  +
<unitprice>32.8000</unitprice>
  +
<quantity>120</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10713</orderid>
  +
<customerid>SAVEA</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-10-22</orderdate>
  +
<requireddate>1997-11-19</requireddate>
  +
<shippeddate>1997-10-24</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>167.0500</freight>
  +
<shipname>Save-a-lot Markets</shipname>
  +
<shipaddress>187 Suffolk Ln.</shipaddress>
  +
<shipcity>Boise</shipcity>
  +
<shipregion>ID</shipregion>
  +
<shippostalcode>83720</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10713</orderid>
  +
<productid>10</productid>
  +
<unitprice>31.0000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10713</orderid>
  +
<productid>26</productid>
  +
<unitprice>31.2300</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10713</orderid>
  +
<productid>45</productid>
  +
<unitprice>9.5000</unitprice>
  +
<quantity>110</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10713</orderid>
  +
<productid>46</productid>
  +
<unitprice>12.0000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10714</orderid>
  +
<customerid>SAVEA</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1997-10-22</orderdate>
  +
<requireddate>1997-11-19</requireddate>
  +
<shippeddate>1997-10-27</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>24.4900</freight>
  +
<shipname>Save-a-lot Markets</shipname>
  +
<shipaddress>187 Suffolk Ln.</shipaddress>
  +
<shipcity>Boise</shipcity>
  +
<shipregion>ID</shipregion>
  +
<shippostalcode>83720</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10714</orderid>
  +
<productid>2</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10714</orderid>
  +
<productid>17</productid>
  +
<unitprice>39.0000</unitprice>
  +
<quantity>27</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10714</orderid>
  +
<productid>47</productid>
  +
<unitprice>9.5000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10714</orderid>
  +
<productid>56</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10714</orderid>
  +
<productid>58</productid>
  +
<unitprice>13.2500</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10722</orderid>
  +
<customerid>SAVEA</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-10-29</orderdate>
  +
<requireddate>1997-12-10</requireddate>
  +
<shippeddate>1997-11-04</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>74.5800</freight>
  +
<shipname>Save-a-lot Markets</shipname>
  +
<shipaddress>187 Suffolk Ln.</shipaddress>
  +
<shipcity>Boise</shipcity>
  +
<shipregion>ID</shipregion>
  +
<shippostalcode>83720</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10722</orderid>
  +
<productid>2</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10722</orderid>
  +
<productid>31</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10722</orderid>
  +
<productid>68</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>45</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10722</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>42</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10748</orderid>
  +
<customerid>SAVEA</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-11-20</orderdate>
  +
<requireddate>1997-12-18</requireddate>
  +
<shippeddate>1997-11-28</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>232.5500</freight>
  +
<shipname>Save-a-lot Markets</shipname>
  +
<shipaddress>187 Suffolk Ln.</shipaddress>
  +
<shipcity>Boise</shipcity>
  +
<shipregion>ID</shipregion>
  +
<shippostalcode>83720</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10748</orderid>
  +
<productid>23</productid>
  +
<unitprice>9.0000</unitprice>
  +
<quantity>44</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10748</orderid>
  +
<productid>40</productid>
  +
<unitprice>18.4000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10748</orderid>
  +
<productid>56</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>28</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10757</orderid>
  +
<customerid>SAVEA</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1997-11-27</orderdate>
  +
<requireddate>1997-12-25</requireddate>
  +
<shippeddate>1997-12-15</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>8.1900</freight>
  +
<shipname>Save-a-lot Markets</shipname>
  +
<shipaddress>187 Suffolk Ln.</shipaddress>
  +
<shipcity>Boise</shipcity>
  +
<shipregion>ID</shipregion>
  +
<shippostalcode>83720</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10757</orderid>
  +
<productid>34</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10757</orderid>
  +
<productid>59</productid>
  +
<unitprice>55.0000</unitprice>
  +
<quantity>7</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10757</orderid>
  +
<productid>62</productid>
  +
<unitprice>49.3000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10757</orderid>
  +
<productid>64</productid>
  +
<unitprice>33.2500</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10815</orderid>
  +
<customerid>SAVEA</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-01-05</orderdate>
  +
<requireddate>1998-02-02</requireddate>
  +
<shippeddate>1998-01-14</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>14.6200</freight>
  +
<shipname>Save-a-lot Markets</shipname>
  +
<shipaddress>187 Suffolk Ln.</shipaddress>
  +
<shipcity>Boise</shipcity>
  +
<shipregion>ID</shipregion>
  +
<shippostalcode>83720</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10815</orderid>
  +
<productid>33</productid>
  +
<unitprice>2.5000</unitprice>
  +
<quantity>16</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10847</orderid>
  +
<customerid>SAVEA</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-01-22</orderdate>
  +
<requireddate>1998-02-05</requireddate>
  +
<shippeddate>1998-02-10</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>487.5700</freight>
  +
<shipname>Save-a-lot Markets</shipname>
  +
<shipaddress>187 Suffolk Ln.</shipaddress>
  +
<shipcity>Boise</shipcity>
  +
<shipregion>ID</shipregion>
  +
<shippostalcode>83720</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10847</orderid>
  +
<productid>1</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>80</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10847</orderid>
  +
<productid>19</productid>
  +
<unitprice>9.2000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10847</orderid>
  +
<productid>37</productid>
  +
<unitprice>26.0000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10847</orderid>
  +
<productid>45</productid>
  +
<unitprice>9.5000</unitprice>
  +
<quantity>36</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10847</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>45</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10847</orderid>
  +
<productid>71</productid>
  +
<unitprice>21.5000</unitprice>
  +
<quantity>55</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10882</orderid>
  +
<customerid>SAVEA</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-02-11</orderdate>
  +
<requireddate>1998-03-11</requireddate>
  +
<shippeddate>1998-02-20</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>23.1000</freight>
  +
<shipname>Save-a-lot Markets</shipname>
  +
<shipaddress>187 Suffolk Ln.</shipaddress>
  +
<shipcity>Boise</shipcity>
  +
<shipregion>ID</shipregion>
  +
<shippostalcode>83720</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10882</orderid>
  +
<productid>42</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10882</orderid>
  +
<productid>49</productid>
  +
<unitprice>20.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10882</orderid>
  +
<productid>54</productid>
  +
<unitprice>7.4500</unitprice>
  +
<quantity>32</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10894</orderid>
  +
<customerid>SAVEA</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-02-18</orderdate>
  +
<requireddate>1998-03-18</requireddate>
  +
<shippeddate>1998-02-20</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>116.1300</freight>
  +
<shipname>Save-a-lot Markets</shipname>
  +
<shipaddress>187 Suffolk Ln.</shipaddress>
  +
<shipcity>Boise</shipcity>
  +
<shipregion>ID</shipregion>
  +
<shippostalcode>83720</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10894</orderid>
  +
<productid>13</productid>
  +
<unitprice>6.0000</unitprice>
  +
<quantity>28</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10894</orderid>
  +
<productid>69</productid>
  +
<unitprice>36.0000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10894</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>120</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10941</orderid>
  +
<customerid>SAVEA</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1998-03-11</orderdate>
  +
<requireddate>1998-04-08</requireddate>
  +
<shippeddate>1998-03-20</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>400.8100</freight>
  +
<shipname>Save-a-lot Markets</shipname>
  +
<shipaddress>187 Suffolk Ln.</shipaddress>
  +
<shipcity>Boise</shipcity>
  +
<shipregion>ID</shipregion>
  +
<shippostalcode>83720</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10941</orderid>
  +
<productid>31</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>44</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10941</orderid>
  +
<productid>62</productid>
  +
<unitprice>49.3000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10941</orderid>
  +
<productid>68</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>80</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10941</orderid>
  +
<productid>72</productid>
  +
<unitprice>34.8000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10983</orderid>
  +
<customerid>SAVEA</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-03-27</orderdate>
  +
<requireddate>1998-04-24</requireddate>
  +
<shippeddate>1998-04-06</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>657.5400</freight>
  +
<shipname>Save-a-lot Markets</shipname>
  +
<shipaddress>187 Suffolk Ln.</shipaddress>
  +
<shipcity>Boise</shipcity>
  +
<shipregion>ID</shipregion>
  +
<shippostalcode>83720</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10983</orderid>
  +
<productid>13</productid>
  +
<unitprice>6.0000</unitprice>
  +
<quantity>84</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10983</orderid>
  +
<productid>57</productid>
  +
<unitprice>19.5000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10984</orderid>
  +
<customerid>SAVEA</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-03-30</orderdate>
  +
<requireddate>1998-04-27</requireddate>
  +
<shippeddate>1998-04-03</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>211.2200</freight>
  +
<shipname>Save-a-lot Markets</shipname>
  +
<shipaddress>187 Suffolk Ln.</shipaddress>
  +
<shipcity>Boise</shipcity>
  +
<shipregion>ID</shipregion>
  +
<shippostalcode>83720</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10984</orderid>
  +
<productid>16</productid>
  +
<unitprice>17.4500</unitprice>
  +
<quantity>55</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10984</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10984</orderid>
  +
<productid>36</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11002</orderid>
  +
<customerid>SAVEA</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-04-06</orderdate>
  +
<requireddate>1998-05-04</requireddate>
  +
<shippeddate>1998-04-16</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>141.1600</freight>
  +
<shipname>Save-a-lot Markets</shipname>
  +
<shipaddress>187 Suffolk Ln.</shipaddress>
  +
<shipcity>Boise</shipcity>
  +
<shipregion>ID</shipregion>
  +
<shippostalcode>83720</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>11002</orderid>
  +
<productid>13</productid>
  +
<unitprice>6.0000</unitprice>
  +
<quantity>56</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11002</orderid>
  +
<productid>35</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11002</orderid>
  +
<productid>42</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11002</orderid>
  +
<productid>55</productid>
  +
<unitprice>24.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11030</orderid>
  +
<customerid>SAVEA</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1998-04-17</orderdate>
  +
<requireddate>1998-05-15</requireddate>
  +
<shippeddate>1998-04-27</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>830.7500</freight>
  +
<shipname>Save-a-lot Markets</shipname>
  +
<shipaddress>187 Suffolk Ln.</shipaddress>
  +
<shipcity>Boise</shipcity>
  +
<shipregion>ID</shipregion>
  +
<shippostalcode>83720</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>11030</orderid>
  +
<productid>2</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>100</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11030</orderid>
  +
<productid>5</productid>
  +
<unitprice>21.3500</unitprice>
  +
<quantity>70</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11030</orderid>
  +
<productid>29</productid>
  +
<unitprice>123.7900</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11030</orderid>
  +
<productid>59</productid>
  +
<unitprice>55.0000</unitprice>
  +
<quantity>100</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11031</orderid>
  +
<customerid>SAVEA</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1998-04-17</orderdate>
  +
<requireddate>1998-05-15</requireddate>
  +
<shippeddate>1998-04-24</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>227.2200</freight>
  +
<shipname>Save-a-lot Markets</shipname>
  +
<shipaddress>187 Suffolk Ln.</shipaddress>
  +
<shipcity>Boise</shipcity>
  +
<shipregion>ID</shipregion>
  +
<shippostalcode>83720</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>11031</orderid>
  +
<productid>1</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>45</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11031</orderid>
  +
<productid>13</productid>
  +
<unitprice>6.0000</unitprice>
  +
<quantity>80</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11031</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11031</orderid>
  +
<productid>64</productid>
  +
<unitprice>33.2500</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11031</orderid>
  +
<productid>71</productid>
  +
<unitprice>21.5000</unitprice>
  +
<quantity>16</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11064</orderid>
  +
<customerid>SAVEA</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-05-01</orderdate>
  +
<requireddate>1998-05-29</requireddate>
  +
<shippeddate>1998-05-04</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>30.0900</freight>
  +
<shipname>Save-a-lot Markets</shipname>
  +
<shipaddress>187 Suffolk Ln.</shipaddress>
  +
<shipcity>Boise</shipcity>
  +
<shipregion>ID</shipregion>
  +
<shippostalcode>83720</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>11064</orderid>
  +
<productid>17</productid>
  +
<unitprice>39.0000</unitprice>
  +
<quantity>77</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11064</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11064</orderid>
  +
<productid>53</productid>
  +
<unitprice>32.8000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11064</orderid>
  +
<productid>55</productid>
  +
<unitprice>24.0000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11064</orderid>
  +
<productid>68</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>55</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>SEVES</customerid>
  +
<companyname>Seven Seas Imports</companyname>
  +
<contactname>Hari Kumar</contactname>
  +
<contacttitle>Sales Manager</contacttitle>
  +
<address>90 Wadhurst Rd.</address>
  +
<city>London</city>
  +
<postalcode>OX15 4NB</postalcode>
  +
<country>UK</country>
  +
<phone>(171) 555-1717</phone>
  +
<fax>(171) 555-5646</fax>
  +
<orders>
  +
<orderid>10359</orderid>
  +
<customerid>SEVES</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1996-11-21</orderdate>
  +
<requireddate>1996-12-19</requireddate>
  +
<shippeddate>1996-11-26</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>288.4300</freight>
  +
<shipname>Seven Seas Imports</shipname>
  +
<shipaddress>90 Wadhurst Rd.</shipaddress>
  +
<shipcity>London</shipcity>
  +
<shippostalcode>OX15 4NB</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10359</orderid>
  +
<productid>16</productid>
  +
<unitprice>13.9000</unitprice>
  +
<quantity>56</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10359</orderid>
  +
<productid>31</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>70</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10359</orderid>
  +
<productid>60</productid>
  +
<unitprice>27.2000</unitprice>
  +
<quantity>80</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10377</orderid>
  +
<customerid>SEVES</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1996-12-09</orderdate>
  +
<requireddate>1997-01-06</requireddate>
  +
<shippeddate>1996-12-13</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>22.2100</freight>
  +
<shipname>Seven Seas Imports</shipname>
  +
<shipaddress>90 Wadhurst Rd.</shipaddress>
  +
<shipcity>London</shipcity>
  +
<shippostalcode>OX15 4NB</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10377</orderid>
  +
<productid>28</productid>
  +
<unitprice>36.4000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10377</orderid>
  +
<productid>39</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10388</orderid>
  +
<customerid>SEVES</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1996-12-19</orderdate>
  +
<requireddate>1997-01-16</requireddate>
  +
<shippeddate>1996-12-20</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>34.8600</freight>
  +
<shipname>Seven Seas Imports</shipname>
  +
<shipaddress>90 Wadhurst Rd.</shipaddress>
  +
<shipcity>London</shipcity>
  +
<shippostalcode>OX15 4NB</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10388</orderid>
  +
<productid>45</productid>
  +
<unitprice>7.6000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10388</orderid>
  +
<productid>52</productid>
  +
<unitprice>5.6000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10388</orderid>
  +
<productid>53</productid>
  +
<unitprice>26.2000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10472</orderid>
  +
<customerid>SEVES</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-03-12</orderdate>
  +
<requireddate>1997-04-09</requireddate>
  +
<shippeddate>1997-03-19</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>4.2000</freight>
  +
<shipname>Seven Seas Imports</shipname>
  +
<shipaddress>90 Wadhurst Rd.</shipaddress>
  +
<shipcity>London</shipcity>
  +
<shippostalcode>OX15 4NB</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10472</orderid>
  +
<productid>24</productid>
  +
<unitprice>3.6000</unitprice>
  +
<quantity>80</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10472</orderid>
  +
<productid>51</productid>
  +
<unitprice>42.4000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10523</orderid>
  +
<customerid>SEVES</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-05-01</orderdate>
  +
<requireddate>1997-05-29</requireddate>
  +
<shippeddate>1997-05-30</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>77.6300</freight>
  +
<shipname>Seven Seas Imports</shipname>
  +
<shipaddress>90 Wadhurst Rd.</shipaddress>
  +
<shipcity>London</shipcity>
  +
<shippostalcode>OX15 4NB</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10523</orderid>
  +
<productid>17</productid>
  +
<unitprice>39.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10523</orderid>
  +
<productid>20</productid>
  +
<unitprice>81.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10523</orderid>
  +
<productid>37</productid>
  +
<unitprice>26.0000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10523</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10547</orderid>
  +
<customerid>SEVES</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-05-23</orderdate>
  +
<requireddate>1997-06-20</requireddate>
  +
<shippeddate>1997-06-02</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>178.4300</freight>
  +
<shipname>Seven Seas Imports</shipname>
  +
<shipaddress>90 Wadhurst Rd.</shipaddress>
  +
<shipcity>London</shipcity>
  +
<shippostalcode>OX15 4NB</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10547</orderid>
  +
<productid>32</productid>
  +
<unitprice>32.0000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10547</orderid>
  +
<productid>36</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10800</orderid>
  +
<customerid>SEVES</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-12-26</orderdate>
  +
<requireddate>1998-01-23</requireddate>
  +
<shippeddate>1998-01-05</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>137.4400</freight>
  +
<shipname>Seven Seas Imports</shipname>
  +
<shipaddress>90 Wadhurst Rd.</shipaddress>
  +
<shipcity>London</shipcity>
  +
<shippostalcode>OX15 4NB</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10800</orderid>
  +
<productid>11</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10800</orderid>
  +
<productid>51</productid>
  +
<unitprice>53.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10800</orderid>
  +
<productid>54</productid>
  +
<unitprice>7.4500</unitprice>
  +
<quantity>7</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10804</orderid>
  +
<customerid>SEVES</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1997-12-30</orderdate>
  +
<requireddate>1998-01-27</requireddate>
  +
<shippeddate>1998-01-07</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>27.3300</freight>
  +
<shipname>Seven Seas Imports</shipname>
  +
<shipaddress>90 Wadhurst Rd.</shipaddress>
  +
<shipcity>London</shipcity>
  +
<shippostalcode>OX15 4NB</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10804</orderid>
  +
<productid>10</productid>
  +
<unitprice>31.0000</unitprice>
  +
<quantity>36</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10804</orderid>
  +
<productid>28</productid>
  +
<unitprice>45.6000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10804</orderid>
  +
<productid>49</productid>
  +
<unitprice>20.0000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10869</orderid>
  +
<customerid>SEVES</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1998-02-04</orderdate>
  +
<requireddate>1998-03-04</requireddate>
  +
<shippeddate>1998-02-09</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>143.2800</freight>
  +
<shipname>Seven Seas Imports</shipname>
  +
<shipaddress>90 Wadhurst Rd.</shipaddress>
  +
<shipcity>London</shipcity>
  +
<shippostalcode>OX15 4NB</shippostalcode>
  +
<shipcountry>UK</shipcountry>
  +
<orderdetails>
  +
<orderid>10869</orderid>
  +
<productid>1</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10869</orderid>
  +
<productid>11</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10869</orderid>
  +
<productid>23</productid>
  +
<unitprice>9.0000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10869</orderid>
  +
<productid>68</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>SIMOB</customerid>
  +
<companyname>Simons bistro</companyname>
  +
<contactname>Jytte Petersen</contactname>
  +
<contacttitle>Owner</contacttitle>
  +
<address>Vinbæltet 34</address>
  +
<city>Kobenhavn</city>
  +
<postalcode>1734</postalcode>
  +
<country>Denmark</country>
  +
<phone>31 12 34 56</phone>
  +
<fax>31 13 35 57</fax>
  +
<orders>
  +
<orderid>10341</orderid>
  +
<customerid>SIMOB</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1996-10-29</orderdate>
  +
<requireddate>1996-11-26</requireddate>
  +
<shippeddate>1996-11-05</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>26.7800</freight>
  +
<shipname>Simons bistro</shipname>
  +
<shipaddress>Vinbæltet 34</shipaddress>
  +
<shipcity>Kobenhavn</shipcity>
  +
<shippostalcode>1734</shippostalcode>
  +
<shipcountry>Denmark</shipcountry>
  +
<orderdetails>
  +
<orderid>10341</orderid>
  +
<productid>33</productid>
  +
<unitprice>2.0000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10341</orderid>
  +
<productid>59</productid>
  +
<unitprice>44.0000</unitprice>
  +
<quantity>9</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10417</orderid>
  +
<customerid>SIMOB</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-01-16</orderdate>
  +
<requireddate>1997-02-13</requireddate>
  +
<shippeddate>1997-01-28</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>70.2900</freight>
  +
<shipname>Simons bistro</shipname>
  +
<shipaddress>Vinbæltet 34</shipaddress>
  +
<shipcity>Kobenhavn</shipcity>
  +
<shippostalcode>1734</shippostalcode>
  +
<shipcountry>Denmark</shipcountry>
  +
<orderdetails>
  +
<orderid>10417</orderid>
  +
<productid>38</productid>
  +
<unitprice>210.8000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10417</orderid>
  +
<productid>46</productid>
  +
<unitprice>9.6000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10417</orderid>
  +
<productid>68</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>36</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10417</orderid>
  +
<productid>77</productid>
  +
<unitprice>10.4000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10556</orderid>
  +
<customerid>SIMOB</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-06-03</orderdate>
  +
<requireddate>1997-07-15</requireddate>
  +
<shippeddate>1997-06-13</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>9.8000</freight>
  +
<shipname>Simons bistro</shipname>
  +
<shipaddress>Vinbæltet 34</shipaddress>
  +
<shipcity>Kobenhavn</shipcity>
  +
<shippostalcode>1734</shippostalcode>
  +
<shipcountry>Denmark</shipcountry>
  +
<orderdetails>
  +
<orderid>10556</orderid>
  +
<productid>72</productid>
  +
<unitprice>34.8000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10642</orderid>
  +
<customerid>SIMOB</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-08-22</orderdate>
  +
<requireddate>1997-09-19</requireddate>
  +
<shippeddate>1997-09-05</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>41.8900</freight>
  +
<shipname>Simons bistro</shipname>
  +
<shipaddress>Vinbæltet 34</shipaddress>
  +
<shipcity>Kobenhavn</shipcity>
  +
<shippostalcode>1734</shippostalcode>
  +
<shipcountry>Denmark</shipcountry>
  +
<orderdetails>
  +
<orderid>10642</orderid>
  +
<productid>21</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10642</orderid>
  +
<productid>61</productid>
  +
<unitprice>28.5000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10669</orderid>
  +
<customerid>SIMOB</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-09-15</orderdate>
  +
<requireddate>1997-10-13</requireddate>
  +
<shippeddate>1997-09-22</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>24.3900</freight>
  +
<shipname>Simons bistro</shipname>
  +
<shipaddress>Vinbæltet 34</shipaddress>
  +
<shipcity>Kobenhavn</shipcity>
  +
<shippostalcode>1734</shippostalcode>
  +
<shipcountry>Denmark</shipcountry>
  +
<orderdetails>
  +
<orderid>10669</orderid>
  +
<productid>36</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10802</orderid>
  +
<customerid>SIMOB</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-12-29</orderdate>
  +
<requireddate>1998-01-26</requireddate>
  +
<shippeddate>1998-01-02</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>257.2600</freight>
  +
<shipname>Simons bistro</shipname>
  +
<shipaddress>Vinbæltet 34</shipaddress>
  +
<shipcity>Kobenhavn</shipcity>
  +
<shippostalcode>1734</shippostalcode>
  +
<shipcountry>Denmark</shipcountry>
  +
<orderdetails>
  +
<orderid>10802</orderid>
  +
<productid>30</productid>
  +
<unitprice>25.8900</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10802</orderid>
  +
<productid>51</productid>
  +
<unitprice>53.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10802</orderid>
  +
<productid>55</productid>
  +
<unitprice>24.0000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10802</orderid>
  +
<productid>62</productid>
  +
<unitprice>49.3000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11074</orderid>
  +
<customerid>SIMOB</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1998-05-06</orderdate>
  +
<requireddate>1998-06-03</requireddate>
  +
<shipvia>2</shipvia>
  +
<freight>18.4400</freight>
  +
<shipname>Simons bistro</shipname>
  +
<shipaddress>Vinbæltet 34</shipaddress>
  +
<shipcity>Kobenhavn</shipcity>
  +
<shippostalcode>1734</shippostalcode>
  +
<shipcountry>Denmark</shipcountry>
  +
<orderdetails>
  +
<orderid>11074</orderid>
  +
<productid>16</productid>
  +
<unitprice>17.4500</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>SPECD</customerid>
  +
<companyname>Spécialités du monde</companyname>
  +
<contactname>Dominique Perrier</contactname>
  +
<contacttitle>Marketing Manager</contacttitle>
  +
<address>25, rue Lauriston</address>
  +
<city>Paris</city>
  +
<postalcode>75016</postalcode>
  +
<country>France</country>
  +
<phone>(1) 47.55.60.10</phone>
  +
<fax>(1) 47.55.60.20</fax>
  +
<orders>
  +
<orderid>10738</orderid>
  +
<customerid>SPECD</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-11-12</orderdate>
  +
<requireddate>1997-12-10</requireddate>
  +
<shippeddate>1997-11-18</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>2.9100</freight>
  +
<shipname>Spécialités du monde</shipname>
  +
<shipaddress>25, rue Lauriston</shipaddress>
  +
<shipcity>Paris</shipcity>
  +
<shippostalcode>75016</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10738</orderid>
  +
<productid>16</productid>
  +
<unitprice>17.4500</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10907</orderid>
  +
<customerid>SPECD</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1998-02-25</orderdate>
  +
<requireddate>1998-03-25</requireddate>
  +
<shippeddate>1998-02-27</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>9.1900</freight>
  +
<shipname>Spécialités du monde</shipname>
  +
<shipaddress>25, rue Lauriston</shipaddress>
  +
<shipcity>Paris</shipcity>
  +
<shippostalcode>75016</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10907</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10964</orderid>
  +
<customerid>SPECD</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-03-20</orderdate>
  +
<requireddate>1998-04-17</requireddate>
  +
<shippeddate>1998-03-24</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>87.3800</freight>
  +
<shipname>Spécialités du monde</shipname>
  +
<shipaddress>25, rue Lauriston</shipaddress>
  +
<shipcity>Paris</shipcity>
  +
<shippostalcode>75016</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10964</orderid>
  +
<productid>18</productid>
  +
<unitprice>62.5000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10964</orderid>
  +
<productid>38</productid>
  +
<unitprice>263.5000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10964</orderid>
  +
<productid>69</productid>
  +
<unitprice>36.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11043</orderid>
  +
<customerid>SPECD</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1998-04-22</orderdate>
  +
<requireddate>1998-05-20</requireddate>
  +
<shippeddate>1998-04-29</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>8.8000</freight>
  +
<shipname>Spécialités du monde</shipname>
  +
<shipaddress>25, rue Lauriston</shipaddress>
  +
<shipcity>Paris</shipcity>
  +
<shippostalcode>75016</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>11043</orderid>
  +
<productid>11</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>SPLIR</customerid>
  +
<companyname>Split Rail Beer &amp; Ale</companyname>
  +
<contactname>Art Braunschweiger</contactname>
  +
<contacttitle>Sales Manager</contacttitle>
  +
<address>P.O. Box 555</address>
  +
<city>Lander</city>
  +
<region>WY</region>
  +
<postalcode>82520</postalcode>
  +
<country>USA</country>
  +
<phone>(307) 555-4680</phone>
  +
<fax>(307) 555-6525</fax>
  +
<orders>
  +
<orderid>10271</orderid>
  +
<customerid>SPLIR</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1996-08-01</orderdate>
  +
<requireddate>1996-08-29</requireddate>
  +
<shippeddate>1996-08-30</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>4.5400</freight>
  +
<shipname>Split Rail Beer &amp; Ale</shipname>
  +
<shipaddress>P.O. Box 555</shipaddress>
  +
<shipcity>Lander</shipcity>
  +
<shipregion>WY</shipregion>
  +
<shippostalcode>82520</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10271</orderid>
  +
<productid>33</productid>
  +
<unitprice>2.0000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10329</orderid>
  +
<customerid>SPLIR</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1996-10-15</orderdate>
  +
<requireddate>1996-11-26</requireddate>
  +
<shippeddate>1996-10-23</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>191.6700</freight>
  +
<shipname>Split Rail Beer &amp; Ale</shipname>
  +
<shipaddress>P.O. Box 555</shipaddress>
  +
<shipcity>Lander</shipcity>
  +
<shipregion>WY</shipregion>
  +
<shippostalcode>82520</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10329</orderid>
  +
<productid>19</productid>
  +
<unitprice>7.3000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10329</orderid>
  +
<productid>30</productid>
  +
<unitprice>20.7000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10329</orderid>
  +
<productid>38</productid>
  +
<unitprice>210.8000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10329</orderid>
  +
<productid>56</productid>
  +
<unitprice>30.4000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10349</orderid>
  +
<customerid>SPLIR</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1996-11-08</orderdate>
  +
<requireddate>1996-12-06</requireddate>
  +
<shippeddate>1996-11-15</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>8.6300</freight>
  +
<shipname>Split Rail Beer &amp; Ale</shipname>
  +
<shipaddress>P.O. Box 555</shipaddress>
  +
<shipcity>Lander</shipcity>
  +
<shipregion>WY</shipregion>
  +
<shippostalcode>82520</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10349</orderid>
  +
<productid>54</productid>
  +
<unitprice>5.9000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10369</orderid>
  +
<customerid>SPLIR</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1996-12-02</orderdate>
  +
<requireddate>1996-12-30</requireddate>
  +
<shippeddate>1996-12-09</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>195.6800</freight>
  +
<shipname>Split Rail Beer &amp; Ale</shipname>
  +
<shipaddress>P.O. Box 555</shipaddress>
  +
<shipcity>Lander</shipcity>
  +
<shipregion>WY</shipregion>
  +
<shippostalcode>82520</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10369</orderid>
  +
<productid>29</productid>
  +
<unitprice>99.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10369</orderid>
  +
<productid>56</productid>
  +
<unitprice>30.4000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10385</orderid>
  +
<customerid>SPLIR</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1996-12-17</orderdate>
  +
<requireddate>1997-01-14</requireddate>
  +
<shippeddate>1996-12-23</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>30.9600</freight>
  +
<shipname>Split Rail Beer &amp; Ale</shipname>
  +
<shipaddress>P.O. Box 555</shipaddress>
  +
<shipcity>Lander</shipcity>
  +
<shipregion>WY</shipregion>
  +
<shippostalcode>82520</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10385</orderid>
  +
<productid>7</productid>
  +
<unitprice>24.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10385</orderid>
  +
<productid>60</productid>
  +
<unitprice>27.2000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10385</orderid>
  +
<productid>68</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10432</orderid>
  +
<customerid>SPLIR</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-01-31</orderdate>
  +
<requireddate>1997-02-14</requireddate>
  +
<shippeddate>1997-02-07</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>4.3400</freight>
  +
<shipname>Split Rail Beer &amp; Ale</shipname>
  +
<shipaddress>P.O. Box 555</shipaddress>
  +
<shipcity>Lander</shipcity>
  +
<shipregion>WY</shipregion>
  +
<shippostalcode>82520</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10432</orderid>
  +
<productid>26</productid>
  +
<unitprice>24.9000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10432</orderid>
  +
<productid>54</productid>
  +
<unitprice>5.9000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10756</orderid>
  +
<customerid>SPLIR</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-11-27</orderdate>
  +
<requireddate>1997-12-25</requireddate>
  +
<shippeddate>1997-12-02</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>73.2100</freight>
  +
<shipname>Split Rail Beer &amp; Ale</shipname>
  +
<shipaddress>P.O. Box 555</shipaddress>
  +
<shipcity>Lander</shipcity>
  +
<shipregion>WY</shipregion>
  +
<shippostalcode>82520</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10756</orderid>
  +
<productid>18</productid>
  +
<unitprice>62.5000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10756</orderid>
  +
<productid>36</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10756</orderid>
  +
<productid>68</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10756</orderid>
  +
<productid>69</productid>
  +
<unitprice>36.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10821</orderid>
  +
<customerid>SPLIR</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-01-08</orderdate>
  +
<requireddate>1998-02-05</requireddate>
  +
<shippeddate>1998-01-15</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>36.6800</freight>
  +
<shipname>Split Rail Beer &amp; Ale</shipname>
  +
<shipaddress>P.O. Box 555</shipaddress>
  +
<shipcity>Lander</shipcity>
  +
<shipregion>WY</shipregion>
  +
<shippostalcode>82520</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10821</orderid>
  +
<productid>35</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10821</orderid>
  +
<productid>51</productid>
  +
<unitprice>53.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10974</orderid>
  +
<customerid>SPLIR</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-03-25</orderdate>
  +
<requireddate>1998-04-08</requireddate>
  +
<shippeddate>1998-04-03</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>12.9600</freight>
  +
<shipname>Split Rail Beer &amp; Ale</shipname>
  +
<shipaddress>P.O. Box 555</shipaddress>
  +
<shipcity>Lander</shipcity>
  +
<shipregion>WY</shipregion>
  +
<shippostalcode>82520</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10974</orderid>
  +
<productid>63</productid>
  +
<unitprice>43.9000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>SUPRD</customerid>
  +
<companyname>Suprêmes délices</companyname>
  +
<contactname>Pascale Cartrain</contactname>
  +
<contacttitle>Accounting Manager</contacttitle>
  +
<address>Boulevard Tirou, 255</address>
  +
<city>Charleroi</city>
  +
<postalcode>B-6000</postalcode>
  +
<country>Belgium</country>
  +
<phone>(071) 23 67 22 20</phone>
  +
<fax>(071) 23 67 22 21</fax>
  +
<orders>
  +
<orderid>10252</orderid>
  +
<customerid>SUPRD</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1996-07-09</orderdate>
  +
<requireddate>1996-08-06</requireddate>
  +
<shippeddate>1996-07-11</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>51.3000</freight>
  +
<shipname>Suprêmes délices</shipname>
  +
<shipaddress>Boulevard Tirou, 255</shipaddress>
  +
<shipcity>Charleroi</shipcity>
  +
<shippostalcode>B-6000</shippostalcode>
  +
<shipcountry>Belgium</shipcountry>
  +
<orderdetails>
  +
<orderid>10252</orderid>
  +
<productid>20</productid>
  +
<unitprice>64.8000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10252</orderid>
  +
<productid>33</productid>
  +
<unitprice>2.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10252</orderid>
  +
<productid>60</productid>
  +
<unitprice>27.2000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10302</orderid>
  +
<customerid>SUPRD</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1996-09-10</orderdate>
  +
<requireddate>1996-10-08</requireddate>
  +
<shippeddate>1996-10-09</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>6.2700</freight>
  +
<shipname>Suprêmes délices</shipname>
  +
<shipaddress>Boulevard Tirou, 255</shipaddress>
  +
<shipcity>Charleroi</shipcity>
  +
<shippostalcode>B-6000</shippostalcode>
  +
<shipcountry>Belgium</shipcountry>
  +
<orderdetails>
  +
<orderid>10302</orderid>
  +
<productid>17</productid>
  +
<unitprice>31.2000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10302</orderid>
  +
<productid>28</productid>
  +
<unitprice>36.4000</unitprice>
  +
<quantity>28</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10302</orderid>
  +
<productid>43</productid>
  +
<unitprice>36.8000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10458</orderid>
  +
<customerid>SUPRD</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-02-26</orderdate>
  +
<requireddate>1997-03-26</requireddate>
  +
<shippeddate>1997-03-04</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>147.0600</freight>
  +
<shipname>Suprêmes délices</shipname>
  +
<shipaddress>Boulevard Tirou, 255</shipaddress>
  +
<shipcity>Charleroi</shipcity>
  +
<shippostalcode>B-6000</shippostalcode>
  +
<shipcountry>Belgium</shipcountry>
  +
<orderdetails>
  +
<orderid>10458</orderid>
  +
<productid>26</productid>
  +
<unitprice>24.9000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10458</orderid>
  +
<productid>28</productid>
  +
<unitprice>36.4000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10458</orderid>
  +
<productid>43</productid>
  +
<unitprice>36.8000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10458</orderid>
  +
<productid>56</productid>
  +
<unitprice>30.4000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10458</orderid>
  +
<productid>71</productid>
  +
<unitprice>17.2000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10463</orderid>
  +
<customerid>SUPRD</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1997-03-04</orderdate>
  +
<requireddate>1997-04-01</requireddate>
  +
<shippeddate>1997-03-06</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>14.7800</freight>
  +
<shipname>Suprêmes délices</shipname>
  +
<shipaddress>Boulevard Tirou, 255</shipaddress>
  +
<shipcity>Charleroi</shipcity>
  +
<shippostalcode>B-6000</shippostalcode>
  +
<shipcountry>Belgium</shipcountry>
  +
<orderdetails>
  +
<orderid>10463</orderid>
  +
<productid>19</productid>
  +
<unitprice>7.3000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10463</orderid>
  +
<productid>42</productid>
  +
<unitprice>11.2000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10475</orderid>
  +
<customerid>SUPRD</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1997-03-14</orderdate>
  +
<requireddate>1997-04-11</requireddate>
  +
<shippeddate>1997-04-04</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>68.5200</freight>
  +
<shipname>Suprêmes délices</shipname>
  +
<shipaddress>Boulevard Tirou, 255</shipaddress>
  +
<shipcity>Charleroi</shipcity>
  +
<shippostalcode>B-6000</shippostalcode>
  +
<shipcountry>Belgium</shipcountry>
  +
<orderdetails>
  +
<orderid>10475</orderid>
  +
<productid>31</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10475</orderid>
  +
<productid>66</productid>
  +
<unitprice>13.6000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10475</orderid>
  +
<productid>76</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>42</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10767</orderid>
  +
<customerid>SUPRD</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-12-05</orderdate>
  +
<requireddate>1998-01-02</requireddate>
  +
<shippeddate>1997-12-15</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>1.5900</freight>
  +
<shipname>Suprêmes délices</shipname>
  +
<shipaddress>Boulevard Tirou, 255</shipaddress>
  +
<shipcity>Charleroi</shipcity>
  +
<shippostalcode>B-6000</shippostalcode>
  +
<shipcountry>Belgium</shipcountry>
  +
<orderdetails>
  +
<orderid>10767</orderid>
  +
<productid>42</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10841</orderid>
  +
<customerid>SUPRD</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1998-01-20</orderdate>
  +
<requireddate>1998-02-17</requireddate>
  +
<shippeddate>1998-01-29</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>424.3000</freight>
  +
<shipname>Suprêmes délices</shipname>
  +
<shipaddress>Boulevard Tirou, 255</shipaddress>
  +
<shipcity>Charleroi</shipcity>
  +
<shippostalcode>B-6000</shippostalcode>
  +
<shipcountry>Belgium</shipcountry>
  +
<orderdetails>
  +
<orderid>10841</orderid>
  +
<productid>10</productid>
  +
<unitprice>31.0000</unitprice>
  +
<quantity>16</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10841</orderid>
  +
<productid>56</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10841</orderid>
  +
<productid>59</productid>
  +
<unitprice>55.0000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10841</orderid>
  +
<productid>77</productid>
  +
<unitprice>13.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10846</orderid>
  +
<customerid>SUPRD</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-01-22</orderdate>
  +
<requireddate>1998-03-05</requireddate>
  +
<shippeddate>1998-01-23</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>56.4600</freight>
  +
<shipname>Suprêmes délices</shipname>
  +
<shipaddress>Boulevard Tirou, 255</shipaddress>
  +
<shipcity>Charleroi</shipcity>
  +
<shippostalcode>B-6000</shippostalcode>
  +
<shipcountry>Belgium</shipcountry>
  +
<orderdetails>
  +
<orderid>10846</orderid>
  +
<productid>4</productid>
  +
<unitprice>22.0000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10846</orderid>
  +
<productid>70</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10846</orderid>
  +
<productid>74</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10885</orderid>
  +
<customerid>SUPRD</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1998-02-12</orderdate>
  +
<requireddate>1998-03-12</requireddate>
  +
<shippeddate>1998-02-18</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>5.6400</freight>
  +
<shipname>Suprêmes délices</shipname>
  +
<shipaddress>Boulevard Tirou, 255</shipaddress>
  +
<shipcity>Charleroi</shipcity>
  +
<shippostalcode>B-6000</shippostalcode>
  +
<shipcountry>Belgium</shipcountry>
  +
<orderdetails>
  +
<orderid>10885</orderid>
  +
<productid>2</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10885</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10885</orderid>
  +
<productid>70</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10885</orderid>
  +
<productid>77</productid>
  +
<unitprice>13.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10930</orderid>
  +
<customerid>SUPRD</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-03-06</orderdate>
  +
<requireddate>1998-04-17</requireddate>
  +
<shippeddate>1998-03-18</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>15.5500</freight>
  +
<shipname>Suprêmes délices</shipname>
  +
<shipaddress>Boulevard Tirou, 255</shipaddress>
  +
<shipcity>Charleroi</shipcity>
  +
<shippostalcode>B-6000</shippostalcode>
  +
<shipcountry>Belgium</shipcountry>
  +
<orderdetails>
  +
<orderid>10930</orderid>
  +
<productid>21</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>36</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10930</orderid>
  +
<productid>27</productid>
  +
<unitprice>43.9000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10930</orderid>
  +
<productid>55</productid>
  +
<unitprice>24.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10930</orderid>
  +
<productid>58</productid>
  +
<unitprice>13.2500</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11035</orderid>
  +
<customerid>SUPRD</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-04-20</orderdate>
  +
<requireddate>1998-05-18</requireddate>
  +
<shippeddate>1998-04-24</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>0.1700</freight>
  +
<shipname>Suprêmes délices</shipname>
  +
<shipaddress>Boulevard Tirou, 255</shipaddress>
  +
<shipcity>Charleroi</shipcity>
  +
<shippostalcode>B-6000</shippostalcode>
  +
<shipcountry>Belgium</shipcountry>
  +
<orderdetails>
  +
<orderid>11035</orderid>
  +
<productid>1</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11035</orderid>
  +
<productid>35</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11035</orderid>
  +
<productid>42</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11035</orderid>
  +
<productid>54</productid>
  +
<unitprice>7.4500</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11038</orderid>
  +
<customerid>SUPRD</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-04-21</orderdate>
  +
<requireddate>1998-05-19</requireddate>
  +
<shippeddate>1998-04-30</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>29.5900</freight>
  +
<shipname>Suprêmes délices</shipname>
  +
<shipaddress>Boulevard Tirou, 255</shipaddress>
  +
<shipcity>Charleroi</shipcity>
  +
<shippostalcode>B-6000</shippostalcode>
  +
<shipcountry>Belgium</shipcountry>
  +
<orderdetails>
  +
<orderid>11038</orderid>
  +
<productid>40</productid>
  +
<unitprice>18.4000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11038</orderid>
  +
<productid>52</productid>
  +
<unitprice>7.0000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11038</orderid>
  +
<productid>71</productid>
  +
<unitprice>21.5000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>THEBI</customerid>
  +
<companyname>The Big Cheese</companyname>
  +
<contactname>Liz Nixon</contactname>
  +
<contacttitle>Marketing Manager</contacttitle>
  +
<address>89 Jefferson Way Suite 2</address>
  +
<city>Portland</city>
  +
<region>OR</region>
  +
<postalcode>97201</postalcode>
  +
<country>USA</country>
  +
<phone>(503) 555-3612</phone>
  +
<orders>
  +
<orderid>10310</orderid>
  +
<customerid>THEBI</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1996-09-20</orderdate>
  +
<requireddate>1996-10-18</requireddate>
  +
<shippeddate>1996-09-27</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>17.5200</freight>
  +
<shipname>The Big Cheese</shipname>
  +
<shipaddress>89 Jefferson Way Suite 2</shipaddress>
  +
<shipcity>Portland</shipcity>
  +
<shipregion>OR</shipregion>
  +
<shippostalcode>97201</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10310</orderid>
  +
<productid>16</productid>
  +
<unitprice>13.9000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10310</orderid>
  +
<productid>62</productid>
  +
<unitprice>39.4000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10708</orderid>
  +
<customerid>THEBI</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1997-10-17</orderdate>
  +
<requireddate>1997-11-28</requireddate>
  +
<shippeddate>1997-11-05</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>2.9600</freight>
  +
<shipname>The Big Cheese</shipname>
  +
<shipaddress>89 Jefferson Way Suite 2</shipaddress>
  +
<shipcity>Portland</shipcity>
  +
<shipregion>OR</shipregion>
  +
<shippostalcode>97201</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10708</orderid>
  +
<productid>5</productid>
  +
<unitprice>21.3500</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10708</orderid>
  +
<productid>36</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10805</orderid>
  +
<customerid>THEBI</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-12-30</orderdate>
  +
<requireddate>1998-01-27</requireddate>
  +
<shippeddate>1998-01-09</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>237.3400</freight>
  +
<shipname>The Big Cheese</shipname>
  +
<shipaddress>89 Jefferson Way Suite 2</shipaddress>
  +
<shipcity>Portland</shipcity>
  +
<shipregion>OR</shipregion>
  +
<shippostalcode>97201</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10805</orderid>
  +
<productid>34</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10805</orderid>
  +
<productid>38</productid>
  +
<unitprice>263.5000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10992</orderid>
  +
<customerid>THEBI</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-04-01</orderdate>
  +
<requireddate>1998-04-29</requireddate>
  +
<shippeddate>1998-04-03</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>4.2700</freight>
  +
<shipname>The Big Cheese</shipname>
  +
<shipaddress>89 Jefferson Way Suite 2</shipaddress>
  +
<shipcity>Portland</shipcity>
  +
<shipregion>OR</shipregion>
  +
<shippostalcode>97201</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10992</orderid>
  +
<productid>72</productid>
  +
<unitprice>34.8000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>THECR</customerid>
  +
<companyname>The Cracker Box</companyname>
  +
<contactname>Liu Wong</contactname>
  +
<contacttitle>Marketing Assistant</contacttitle>
  +
<address>55 Grizzly Peak Rd.</address>
  +
<city>Butte</city>
  +
<region>MT</region>
  +
<postalcode>59801</postalcode>
  +
<country>USA</country>
  +
<phone>(406) 555-5834</phone>
  +
<fax>(406) 555-8083</fax>
  +
<orders>
  +
<orderid>10624</orderid>
  +
<customerid>THECR</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-08-07</orderdate>
  +
<requireddate>1997-09-04</requireddate>
  +
<shippeddate>1997-08-19</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>94.8000</freight>
  +
<shipname>The Cracker Box</shipname>
  +
<shipaddress>55 Grizzly Peak Rd.</shipaddress>
  +
<shipcity>Butte</shipcity>
  +
<shipregion>MT</shipregion>
  +
<shippostalcode>59801</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10624</orderid>
  +
<productid>28</productid>
  +
<unitprice>45.6000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10624</orderid>
  +
<productid>29</productid>
  +
<unitprice>123.7900</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10624</orderid>
  +
<productid>44</productid>
  +
<unitprice>19.4500</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10775</orderid>
  +
<customerid>THECR</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-12-12</orderdate>
  +
<requireddate>1998-01-09</requireddate>
  +
<shippeddate>1997-12-26</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>20.2500</freight>
  +
<shipname>The Cracker Box</shipname>
  +
<shipaddress>55 Grizzly Peak Rd.</shipaddress>
  +
<shipcity>Butte</shipcity>
  +
<shipregion>MT</shipregion>
  +
<shippostalcode>59801</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10775</orderid>
  +
<productid>10</productid>
  +
<unitprice>31.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10775</orderid>
  +
<productid>67</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11003</orderid>
  +
<customerid>THECR</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-04-06</orderdate>
  +
<requireddate>1998-05-04</requireddate>
  +
<shippeddate>1998-04-08</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>14.9100</freight>
  +
<shipname>The Cracker Box</shipname>
  +
<shipaddress>55 Grizzly Peak Rd.</shipaddress>
  +
<shipcity>Butte</shipcity>
  +
<shipregion>MT</shipregion>
  +
<shippostalcode>59801</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>11003</orderid>
  +
<productid>1</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11003</orderid>
  +
<productid>40</productid>
  +
<unitprice>18.4000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11003</orderid>
  +
<productid>52</productid>
  +
<unitprice>7.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>TOMSP</customerid>
  +
<companyname>Toms Spezialitäten</companyname>
  +
<contactname>Karin Josephs</contactname>
  +
<contacttitle>Marketing Manager</contacttitle>
  +
<address>Luisenstr. 48</address>
  +
<city>Münster</city>
  +
<postalcode>44087</postalcode>
  +
<country>Germany</country>
  +
<phone>0251-031259</phone>
  +
<fax>0251-035695</fax>
  +
<orders>
  +
<orderid>10249</orderid>
  +
<customerid>TOMSP</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1996-07-05</orderdate>
  +
<requireddate>1996-08-16</requireddate>
  +
<shippeddate>1996-07-10</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>11.6100</freight>
  +
<shipname>Toms Spezialitäten</shipname>
  +
<shipaddress>Luisenstr. 48</shipaddress>
  +
<shipcity>Münster</shipcity>
  +
<shippostalcode>44087</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10249</orderid>
  +
<productid>14</productid>
  +
<unitprice>18.6000</unitprice>
  +
<quantity>9</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10249</orderid>
  +
<productid>51</productid>
  +
<unitprice>42.4000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10438</orderid>
  +
<customerid>TOMSP</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-02-06</orderdate>
  +
<requireddate>1997-03-06</requireddate>
  +
<shippeddate>1997-02-14</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>8.2400</freight>
  +
<shipname>Toms Spezialitäten</shipname>
  +
<shipaddress>Luisenstr. 48</shipaddress>
  +
<shipcity>Münster</shipcity>
  +
<shippostalcode>44087</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10438</orderid>
  +
<productid>19</productid>
  +
<unitprice>7.3000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10438</orderid>
  +
<productid>34</productid>
  +
<unitprice>11.2000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10438</orderid>
  +
<productid>57</productid>
  +
<unitprice>15.6000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10446</orderid>
  +
<customerid>TOMSP</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1997-02-14</orderdate>
  +
<requireddate>1997-03-14</requireddate>
  +
<shippeddate>1997-02-19</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>14.6800</freight>
  +
<shipname>Toms Spezialitäten</shipname>
  +
<shipaddress>Luisenstr. 48</shipaddress>
  +
<shipcity>Münster</shipcity>
  +
<shippostalcode>44087</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10446</orderid>
  +
<productid>19</productid>
  +
<unitprice>7.3000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10446</orderid>
  +
<productid>24</productid>
  +
<unitprice>3.6000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10446</orderid>
  +
<productid>31</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10446</orderid>
  +
<productid>52</productid>
  +
<unitprice>5.6000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10548</orderid>
  +
<customerid>TOMSP</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-05-26</orderdate>
  +
<requireddate>1997-06-23</requireddate>
  +
<shippeddate>1997-06-02</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>1.4300</freight>
  +
<shipname>Toms Spezialitäten</shipname>
  +
<shipaddress>Luisenstr. 48</shipaddress>
  +
<shipcity>Münster</shipcity>
  +
<shippostalcode>44087</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10548</orderid>
  +
<productid>34</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10548</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10608</orderid>
  +
<customerid>TOMSP</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-07-23</orderdate>
  +
<requireddate>1997-08-20</requireddate>
  +
<shippeddate>1997-08-01</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>27.7900</freight>
  +
<shipname>Toms Spezialitäten</shipname>
  +
<shipaddress>Luisenstr. 48</shipaddress>
  +
<shipcity>Münster</shipcity>
  +
<shippostalcode>44087</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10608</orderid>
  +
<productid>56</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>28</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10967</orderid>
  +
<customerid>TOMSP</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-03-23</orderdate>
  +
<requireddate>1998-04-20</requireddate>
  +
<shippeddate>1998-04-02</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>62.2200</freight>
  +
<shipname>Toms Spezialitäten</shipname>
  +
<shipaddress>Luisenstr. 48</shipaddress>
  +
<shipcity>Münster</shipcity>
  +
<shippostalcode>44087</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10967</orderid>
  +
<productid>19</productid>
  +
<unitprice>9.2000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10967</orderid>
  +
<productid>49</productid>
  +
<unitprice>20.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>TORTU</customerid>
  +
<companyname>Tortuga Restaurante</companyname>
  +
<contactname>Miguel Angel Paolino</contactname>
  +
<contacttitle>Owner</contacttitle>
  +
<address>Avda. Azteca 123</address>
  +
<city>México D.F.</city>
  +
<postalcode>05033</postalcode>
  +
<country>Mexico</country>
  +
<phone>(5) 555-2933</phone>
  +
<orders>
  +
<orderid>10276</orderid>
  +
<customerid>TORTU</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1996-08-08</orderdate>
  +
<requireddate>1996-08-22</requireddate>
  +
<shippeddate>1996-08-14</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>13.8400</freight>
  +
<shipname>Tortuga Restaurante</shipname>
  +
<shipaddress>Avda. Azteca 123</shipaddress>
  +
<shipcity>México D.F.</shipcity>
  +
<shippostalcode>05033</shippostalcode>
  +
<shipcountry>Mexico</shipcountry>
  +
<orderdetails>
  +
<orderid>10276</orderid>
  +
<productid>10</productid>
  +
<unitprice>24.8000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10276</orderid>
  +
<productid>13</productid>
  +
<unitprice>4.8000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10293</orderid>
  +
<customerid>TORTU</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1996-08-29</orderdate>
  +
<requireddate>1996-09-26</requireddate>
  +
<shippeddate>1996-09-11</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>21.1800</freight>
  +
<shipname>Tortuga Restaurante</shipname>
  +
<shipaddress>Avda. Azteca 123</shipaddress>
  +
<shipcity>México D.F.</shipcity>
  +
<shippostalcode>05033</shippostalcode>
  +
<shipcountry>Mexico</shipcountry>
  +
<orderdetails>
  +
<orderid>10293</orderid>
  +
<productid>18</productid>
  +
<unitprice>50.0000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10293</orderid>
  +
<productid>24</productid>
  +
<unitprice>3.6000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10293</orderid>
  +
<productid>63</productid>
  +
<unitprice>35.1000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10293</orderid>
  +
<productid>75</productid>
  +
<unitprice>6.2000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10304</orderid>
  +
<customerid>TORTU</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1996-09-12</orderdate>
  +
<requireddate>1996-10-10</requireddate>
  +
<shippeddate>1996-09-17</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>63.7900</freight>
  +
<shipname>Tortuga Restaurante</shipname>
  +
<shipaddress>Avda. Azteca 123</shipaddress>
  +
<shipcity>México D.F.</shipcity>
  +
<shippostalcode>05033</shippostalcode>
  +
<shipcountry>Mexico</shipcountry>
  +
<orderdetails>
  +
<orderid>10304</orderid>
  +
<productid>49</productid>
  +
<unitprice>16.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10304</orderid>
  +
<productid>59</productid>
  +
<unitprice>44.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10304</orderid>
  +
<productid>71</productid>
  +
<unitprice>17.2000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10319</orderid>
  +
<customerid>TORTU</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1996-10-02</orderdate>
  +
<requireddate>1996-10-30</requireddate>
  +
<shippeddate>1996-10-11</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>64.5000</freight>
  +
<shipname>Tortuga Restaurante</shipname>
  +
<shipaddress>Avda. Azteca 123</shipaddress>
  +
<shipcity>México D.F.</shipcity>
  +
<shippostalcode>05033</shippostalcode>
  +
<shipcountry>Mexico</shipcountry>
  +
<orderdetails>
  +
<orderid>10319</orderid>
  +
<productid>17</productid>
  +
<unitprice>31.2000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10319</orderid>
  +
<productid>28</productid>
  +
<unitprice>36.4000</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10319</orderid>
  +
<productid>76</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10518</orderid>
  +
<customerid>TORTU</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-04-25</orderdate>
  +
<requireddate>1997-05-09</requireddate>
  +
<shippeddate>1997-05-05</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>218.1500</freight>
  +
<shipname>Tortuga Restaurante</shipname>
  +
<shipaddress>Avda. Azteca 123</shipaddress>
  +
<shipcity>México D.F.</shipcity>
  +
<shippostalcode>05033</shippostalcode>
  +
<shipcountry>Mexico</shipcountry>
  +
<orderdetails>
  +
<orderid>10518</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10518</orderid>
  +
<productid>38</productid>
  +
<unitprice>263.5000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10518</orderid>
  +
<productid>44</productid>
  +
<unitprice>19.4500</unitprice>
  +
<quantity>9</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10576</orderid>
  +
<customerid>TORTU</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-06-23</orderdate>
  +
<requireddate>1997-07-07</requireddate>
  +
<shippeddate>1997-06-30</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>18.5600</freight>
  +
<shipname>Tortuga Restaurante</shipname>
  +
<shipaddress>Avda. Azteca 123</shipaddress>
  +
<shipcity>México D.F.</shipcity>
  +
<shippostalcode>05033</shippostalcode>
  +
<shipcountry>Mexico</shipcountry>
  +
<orderdetails>
  +
<orderid>10576</orderid>
  +
<productid>1</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10576</orderid>
  +
<productid>31</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10576</orderid>
  +
<productid>44</productid>
  +
<unitprice>19.4500</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10676</orderid>
  +
<customerid>TORTU</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-09-22</orderdate>
  +
<requireddate>1997-10-20</requireddate>
  +
<shippeddate>1997-09-29</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>2.0100</freight>
  +
<shipname>Tortuga Restaurante</shipname>
  +
<shipaddress>Avda. Azteca 123</shipaddress>
  +
<shipcity>México D.F.</shipcity>
  +
<shippostalcode>05033</shippostalcode>
  +
<shipcountry>Mexico</shipcountry>
  +
<orderdetails>
  +
<orderid>10676</orderid>
  +
<productid>10</productid>
  +
<unitprice>31.0000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10676</orderid>
  +
<productid>19</productid>
  +
<unitprice>9.2000</unitprice>
  +
<quantity>7</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10676</orderid>
  +
<productid>44</productid>
  +
<unitprice>19.4500</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10842</orderid>
  +
<customerid>TORTU</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-01-20</orderdate>
  +
<requireddate>1998-02-17</requireddate>
  +
<shippeddate>1998-01-29</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>54.4200</freight>
  +
<shipname>Tortuga Restaurante</shipname>
  +
<shipaddress>Avda. Azteca 123</shipaddress>
  +
<shipcity>México D.F.</shipcity>
  +
<shippostalcode>05033</shippostalcode>
  +
<shipcountry>Mexico</shipcountry>
  +
<orderdetails>
  +
<orderid>10842</orderid>
  +
<productid>11</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10842</orderid>
  +
<productid>43</productid>
  +
<unitprice>46.0000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10842</orderid>
  +
<productid>68</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10842</orderid>
  +
<productid>70</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10915</orderid>
  +
<customerid>TORTU</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-02-27</orderdate>
  +
<requireddate>1998-03-27</requireddate>
  +
<shippeddate>1998-03-02</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>3.5100</freight>
  +
<shipname>Tortuga Restaurante</shipname>
  +
<shipaddress>Avda. Azteca 123</shipaddress>
  +
<shipcity>México D.F.</shipcity>
  +
<shippostalcode>05033</shippostalcode>
  +
<shipcountry>Mexico</shipcountry>
  +
<orderdetails>
  +
<orderid>10915</orderid>
  +
<productid>17</productid>
  +
<unitprice>39.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10915</orderid>
  +
<productid>33</productid>
  +
<unitprice>2.5000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10915</orderid>
  +
<productid>54</productid>
  +
<unitprice>7.4500</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11069</orderid>
  +
<customerid>TORTU</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-05-04</orderdate>
  +
<requireddate>1998-06-01</requireddate>
  +
<shippeddate>1998-05-06</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>15.6700</freight>
  +
<shipname>Tortuga Restaurante</shipname>
  +
<shipaddress>Avda. Azteca 123</shipaddress>
  +
<shipcity>México D.F.</shipcity>
  +
<shippostalcode>05033</shippostalcode>
  +
<shipcountry>Mexico</shipcountry>
  +
<orderdetails>
  +
<orderid>11069</orderid>
  +
<productid>39</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>TRADH</customerid>
  +
<companyname>Tradição Hipermercados</companyname>
  +
<contactname>Anabela Domingues</contactname>
  +
<contacttitle>Sales Representative</contacttitle>
  +
<address>Av. Inês de Castro, 414</address>
  +
<city>Sao Paulo</city>
  +
<region>SP</region>
  +
<postalcode>05634-030</postalcode>
  +
<country>Brazil</country>
  +
<phone>(11) 555-2167</phone>
  +
<fax>(11) 555-2168</fax>
  +
<orders>
  +
<orderid>10292</orderid>
  +
<customerid>TRADH</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1996-08-28</orderdate>
  +
<requireddate>1996-09-25</requireddate>
  +
<shippeddate>1996-09-02</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>1.3500</freight>
  +
<shipname>Tradiçao Hipermercados</shipname>
  +
<shipaddress>Av. Inês de Castro, 414</shipaddress>
  +
<shipcity>Sao Paulo</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>05634-030</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10292</orderid>
  +
<productid>20</productid>
  +
<unitprice>64.8000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10496</orderid>
  +
<customerid>TRADH</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-04-04</orderdate>
  +
<requireddate>1997-05-02</requireddate>
  +
<shippeddate>1997-04-07</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>46.7700</freight>
  +
<shipname>Tradiçao Hipermercados</shipname>
  +
<shipaddress>Av. Inês de Castro, 414</shipaddress>
  +
<shipcity>Sao Paulo</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>05634-030</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10496</orderid>
  +
<productid>31</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10606</orderid>
  +
<customerid>TRADH</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-07-22</orderdate>
  +
<requireddate>1997-08-19</requireddate>
  +
<shippeddate>1997-07-31</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>79.4000</freight>
  +
<shipname>Tradiçao Hipermercados</shipname>
  +
<shipaddress>Av. Inês de Castro, 414</shipaddress>
  +
<shipcity>Sao Paulo</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>05634-030</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10606</orderid>
  +
<productid>4</productid>
  +
<unitprice>22.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10606</orderid>
  +
<productid>55</productid>
  +
<unitprice>24.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10606</orderid>
  +
<productid>62</productid>
  +
<unitprice>49.3000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10830</orderid>
  +
<customerid>TRADH</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-01-13</orderdate>
  +
<requireddate>1998-02-24</requireddate>
  +
<shippeddate>1998-01-21</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>81.8300</freight>
  +
<shipname>Tradiçao Hipermercados</shipname>
  +
<shipaddress>Av. Inês de Castro, 414</shipaddress>
  +
<shipcity>Sao Paulo</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>05634-030</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10830</orderid>
  +
<productid>6</productid>
  +
<unitprice>25.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10830</orderid>
  +
<productid>39</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>28</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10830</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10830</orderid>
  +
<productid>68</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10834</orderid>
  +
<customerid>TRADH</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-01-15</orderdate>
  +
<requireddate>1998-02-12</requireddate>
  +
<shippeddate>1998-01-19</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>29.7800</freight>
  +
<shipname>Tradiçao Hipermercados</shipname>
  +
<shipaddress>Av. Inês de Castro, 414</shipaddress>
  +
<shipcity>Sao Paulo</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>05634-030</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10834</orderid>
  +
<productid>29</productid>
  +
<unitprice>123.7900</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10834</orderid>
  +
<productid>30</productid>
  +
<unitprice>25.8900</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10839</orderid>
  +
<customerid>TRADH</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-01-19</orderdate>
  +
<requireddate>1998-02-16</requireddate>
  +
<shippeddate>1998-01-22</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>35.4300</freight>
  +
<shipname>Tradiçao Hipermercados</shipname>
  +
<shipaddress>Av. Inês de Castro, 414</shipaddress>
  +
<shipcity>Sao Paulo</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>05634-030</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10839</orderid>
  +
<productid>58</productid>
  +
<unitprice>13.2500</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10839</orderid>
  +
<productid>72</productid>
  +
<unitprice>34.8000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>TRAIH</customerid>
  +
<companyname>Trail's Head Gourmet Provisioners</companyname>
  +
<contactname>Helvetius Nagy</contactname>
  +
<contacttitle>Sales Associate</contacttitle>
  +
<address>722 DaVinci Blvd.</address>
  +
<city>Kirkland</city>
  +
<region>WA</region>
  +
<postalcode>98034</postalcode>
  +
<country>USA</country>
  +
<phone>(206) 555-8257</phone>
  +
<fax>(206) 555-2174</fax>
  +
<orders>
  +
<orderid>10574</orderid>
  +
<customerid>TRAIH</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-06-19</orderdate>
  +
<requireddate>1997-07-17</requireddate>
  +
<shippeddate>1997-06-30</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>37.6000</freight>
  +
<shipname>Trail's Head Gourmet Provisioners</shipname>
  +
<shipaddress>722 DaVinci Blvd.</shipaddress>
  +
<shipcity>Kirkland</shipcity>
  +
<shipregion>WA</shipregion>
  +
<shippostalcode>98034</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10574</orderid>
  +
<productid>33</productid>
  +
<unitprice>2.5000</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10574</orderid>
  +
<productid>40</productid>
  +
<unitprice>18.4000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10574</orderid>
  +
<productid>62</productid>
  +
<unitprice>49.3000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10574</orderid>
  +
<productid>64</productid>
  +
<unitprice>33.2500</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10577</orderid>
  +
<customerid>TRAIH</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1997-06-23</orderdate>
  +
<requireddate>1997-08-04</requireddate>
  +
<shippeddate>1997-06-30</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>25.4100</freight>
  +
<shipname>Trail's Head Gourmet Provisioners</shipname>
  +
<shipaddress>722 DaVinci Blvd.</shipaddress>
  +
<shipcity>Kirkland</shipcity>
  +
<shipregion>WA</shipregion>
  +
<shippostalcode>98034</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10577</orderid>
  +
<productid>39</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10577</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10577</orderid>
  +
<productid>77</productid>
  +
<unitprice>13.0000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10822</orderid>
  +
<customerid>TRAIH</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1998-01-08</orderdate>
  +
<requireddate>1998-02-05</requireddate>
  +
<shippeddate>1998-01-16</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>7.0000</freight>
  +
<shipname>Trail's Head Gourmet Provisioners</shipname>
  +
<shipaddress>722 DaVinci Blvd.</shipaddress>
  +
<shipcity>Kirkland</shipcity>
  +
<shipregion>WA</shipregion>
  +
<shippostalcode>98034</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10822</orderid>
  +
<productid>62</productid>
  +
<unitprice>49.3000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10822</orderid>
  +
<productid>70</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>VAFFE</customerid>
  +
<companyname>Vaffeljernet</companyname>
  +
<contactname>Palle Ibsen</contactname>
  +
<contacttitle>Sales Manager</contacttitle>
  +
<address>Smagsloget 45</address>
  +
<city>Århus</city>
  +
<postalcode>8200</postalcode>
  +
<country>Denmark</country>
  +
<phone>86 21 32 43</phone>
  +
<fax>86 22 33 44</fax>
  +
<orders>
  +
<orderid>10367</orderid>
  +
<customerid>VAFFE</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1996-11-28</orderdate>
  +
<requireddate>1996-12-26</requireddate>
  +
<shippeddate>1996-12-02</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>13.5500</freight>
  +
<shipname>Vaffeljernet</shipname>
  +
<shipaddress>Smagsloget 45</shipaddress>
  +
<shipcity>Århus</shipcity>
  +
<shippostalcode>8200</shippostalcode>
  +
<shipcountry>Denmark</shipcountry>
  +
<orderdetails>
  +
<orderid>10367</orderid>
  +
<productid>34</productid>
  +
<unitprice>11.2000</unitprice>
  +
<quantity>36</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10367</orderid>
  +
<productid>54</productid>
  +
<unitprice>5.9000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10367</orderid>
  +
<productid>65</productid>
  +
<unitprice>16.8000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10367</orderid>
  +
<productid>77</productid>
  +
<unitprice>10.4000</unitprice>
  +
<quantity>7</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10399</orderid>
  +
<customerid>VAFFE</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1996-12-31</orderdate>
  +
<requireddate>1997-01-14</requireddate>
  +
<shippeddate>1997-01-08</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>27.3600</freight>
  +
<shipname>Vaffeljernet</shipname>
  +
<shipaddress>Smagsloget 45</shipaddress>
  +
<shipcity>Århus</shipcity>
  +
<shippostalcode>8200</shippostalcode>
  +
<shipcountry>Denmark</shipcountry>
  +
<orderdetails>
  +
<orderid>10399</orderid>
  +
<productid>68</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10399</orderid>
  +
<productid>71</productid>
  +
<unitprice>17.2000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10399</orderid>
  +
<productid>76</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10399</orderid>
  +
<productid>77</productid>
  +
<unitprice>10.4000</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10465</orderid>
  +
<customerid>VAFFE</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-03-05</orderdate>
  +
<requireddate>1997-04-02</requireddate>
  +
<shippeddate>1997-03-14</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>145.0400</freight>
  +
<shipname>Vaffeljernet</shipname>
  +
<shipaddress>Smagsloget 45</shipaddress>
  +
<shipcity>Århus</shipcity>
  +
<shippostalcode>8200</shippostalcode>
  +
<shipcountry>Denmark</shipcountry>
  +
<orderdetails>
  +
<orderid>10465</orderid>
  +
<productid>24</productid>
  +
<unitprice>3.6000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10465</orderid>
  +
<productid>29</productid>
  +
<unitprice>99.0000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10465</orderid>
  +
<productid>40</productid>
  +
<unitprice>14.7000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10465</orderid>
  +
<productid>45</productid>
  +
<unitprice>7.6000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10465</orderid>
  +
<productid>50</productid>
  +
<unitprice>13.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10591</orderid>
  +
<customerid>VAFFE</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-07-07</orderdate>
  +
<requireddate>1997-07-21</requireddate>
  +
<shippeddate>1997-07-16</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>55.9200</freight>
  +
<shipname>Vaffeljernet</shipname>
  +
<shipaddress>Smagsloget 45</shipaddress>
  +
<shipcity>Århus</shipcity>
  +
<shippostalcode>8200</shippostalcode>
  +
<shipcountry>Denmark</shipcountry>
  +
<orderdetails>
  +
<orderid>10591</orderid>
  +
<productid>3</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10591</orderid>
  +
<productid>7</productid>
  +
<unitprice>30.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10591</orderid>
  +
<productid>54</productid>
  +
<unitprice>7.4500</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10602</orderid>
  +
<customerid>VAFFE</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-07-17</orderdate>
  +
<requireddate>1997-08-14</requireddate>
  +
<shippeddate>1997-07-22</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>2.9200</freight>
  +
<shipname>Vaffeljernet</shipname>
  +
<shipaddress>Smagsloget 45</shipaddress>
  +
<shipcity>Århus</shipcity>
  +
<shippostalcode>8200</shippostalcode>
  +
<shipcountry>Denmark</shipcountry>
  +
<orderdetails>
  +
<orderid>10602</orderid>
  +
<productid>77</productid>
  +
<unitprice>13.0000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10688</orderid>
  +
<customerid>VAFFE</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-10-01</orderdate>
  +
<requireddate>1997-10-15</requireddate>
  +
<shippeddate>1997-10-07</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>299.0900</freight>
  +
<shipname>Vaffeljernet</shipname>
  +
<shipaddress>Smagsloget 45</shipaddress>
  +
<shipcity>Århus</shipcity>
  +
<shippostalcode>8200</shippostalcode>
  +
<shipcountry>Denmark</shipcountry>
  +
<orderdetails>
  +
<orderid>10688</orderid>
  +
<productid>10</productid>
  +
<unitprice>31.0000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10688</orderid>
  +
<productid>28</productid>
  +
<unitprice>45.6000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10688</orderid>
  +
<productid>34</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10744</orderid>
  +
<customerid>VAFFE</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1997-11-17</orderdate>
  +
<requireddate>1997-12-15</requireddate>
  +
<shippeddate>1997-11-24</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>69.1900</freight>
  +
<shipname>Vaffeljernet</shipname>
  +
<shipaddress>Smagsloget 45</shipaddress>
  +
<shipcity>Århus</shipcity>
  +
<shippostalcode>8200</shippostalcode>
  +
<shipcountry>Denmark</shipcountry>
  +
<orderdetails>
  +
<orderid>10744</orderid>
  +
<productid>40</productid>
  +
<unitprice>18.4000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10769</orderid>
  +
<customerid>VAFFE</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-12-08</orderdate>
  +
<requireddate>1998-01-05</requireddate>
  +
<shippeddate>1997-12-12</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>65.0600</freight>
  +
<shipname>Vaffeljernet</shipname>
  +
<shipaddress>Smagsloget 45</shipaddress>
  +
<shipcity>Århus</shipcity>
  +
<shippostalcode>8200</shippostalcode>
  +
<shipcountry>Denmark</shipcountry>
  +
<orderdetails>
  +
<orderid>10769</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10769</orderid>
  +
<productid>52</productid>
  +
<unitprice>7.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10769</orderid>
  +
<productid>61</productid>
  +
<unitprice>28.5000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10769</orderid>
  +
<productid>62</productid>
  +
<unitprice>49.3000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10921</orderid>
  +
<customerid>VAFFE</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-03-03</orderdate>
  +
<requireddate>1998-04-14</requireddate>
  +
<shippeddate>1998-03-09</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>176.4800</freight>
  +
<shipname>Vaffeljernet</shipname>
  +
<shipaddress>Smagsloget 45</shipaddress>
  +
<shipcity>Århus</shipcity>
  +
<shippostalcode>8200</shippostalcode>
  +
<shipcountry>Denmark</shipcountry>
  +
<orderdetails>
  +
<orderid>10921</orderid>
  +
<productid>35</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10921</orderid>
  +
<productid>63</productid>
  +
<unitprice>43.9000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10946</orderid>
  +
<customerid>VAFFE</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-03-12</orderdate>
  +
<requireddate>1998-04-09</requireddate>
  +
<shippeddate>1998-03-19</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>27.2000</freight>
  +
<shipname>Vaffeljernet</shipname>
  +
<shipaddress>Smagsloget 45</shipaddress>
  +
<shipcity>Århus</shipcity>
  +
<shippostalcode>8200</shippostalcode>
  +
<shipcountry>Denmark</shipcountry>
  +
<orderdetails>
  +
<orderid>10946</orderid>
  +
<productid>10</productid>
  +
<unitprice>31.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10946</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10946</orderid>
  +
<productid>77</productid>
  +
<unitprice>13.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10994</orderid>
  +
<customerid>VAFFE</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-04-02</orderdate>
  +
<requireddate>1998-04-16</requireddate>
  +
<shippeddate>1998-04-09</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>65.5300</freight>
  +
<shipname>Vaffeljernet</shipname>
  +
<shipaddress>Smagsloget 45</shipaddress>
  +
<shipcity>Århus</shipcity>
  +
<shippostalcode>8200</shippostalcode>
  +
<shipcountry>Denmark</shipcountry>
  +
<orderdetails>
  +
<orderid>10994</orderid>
  +
<productid>59</productid>
  +
<unitprice>55.0000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>VICTE</customerid>
  +
<companyname>Victuailles en stock</companyname>
  +
<contactname>Mary Saveley</contactname>
  +
<contacttitle>Sales Agent</contacttitle>
  +
<address>2, rue du Commerce</address>
  +
<city>Lyon</city>
  +
<postalcode>69004</postalcode>
  +
<country>France</country>
  +
<phone>78.32.54.86</phone>
  +
<fax>78.32.54.87</fax>
  +
<orders>
  +
<orderid>10251</orderid>
  +
<customerid>VICTE</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1996-07-08</orderdate>
  +
<requireddate>1996-08-05</requireddate>
  +
<shippeddate>1996-07-15</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>41.3400</freight>
  +
<shipname>Victuailles en stock</shipname>
  +
<shipaddress>2, rue du Commerce</shipaddress>
  +
<shipcity>Lyon</shipcity>
  +
<shippostalcode>69004</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10251</orderid>
  +
<productid>22</productid>
  +
<unitprice>16.8000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10251</orderid>
  +
<productid>57</productid>
  +
<unitprice>15.6000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10251</orderid>
  +
<productid>65</productid>
  +
<unitprice>16.8000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10334</orderid>
  +
<customerid>VICTE</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1996-10-21</orderdate>
  +
<requireddate>1996-11-18</requireddate>
  +
<shippeddate>1996-10-28</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>8.5600</freight>
  +
<shipname>Victuailles en stock</shipname>
  +
<shipaddress>2, rue du Commerce</shipaddress>
  +
<shipcity>Lyon</shipcity>
  +
<shippostalcode>69004</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10334</orderid>
  +
<productid>52</productid>
  +
<unitprice>5.6000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10334</orderid>
  +
<productid>68</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10450</orderid>
  +
<customerid>VICTE</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-02-19</orderdate>
  +
<requireddate>1997-03-19</requireddate>
  +
<shippeddate>1997-03-11</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>7.2300</freight>
  +
<shipname>Victuailles en stock</shipname>
  +
<shipaddress>2, rue du Commerce</shipaddress>
  +
<shipcity>Lyon</shipcity>
  +
<shippostalcode>69004</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10450</orderid>
  +
<productid>10</productid>
  +
<unitprice>24.8000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10450</orderid>
  +
<productid>54</productid>
  +
<unitprice>5.9000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10459</orderid>
  +
<customerid>VICTE</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-02-27</orderdate>
  +
<requireddate>1997-03-27</requireddate>
  +
<shippeddate>1997-02-28</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>25.0900</freight>
  +
<shipname>Victuailles en stock</shipname>
  +
<shipaddress>2, rue du Commerce</shipaddress>
  +
<shipcity>Lyon</shipcity>
  +
<shippostalcode>69004</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10459</orderid>
  +
<productid>7</productid>
  +
<unitprice>24.0000</unitprice>
  +
<quantity>16</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10459</orderid>
  +
<productid>46</productid>
  +
<unitprice>9.6000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10459</orderid>
  +
<productid>72</productid>
  +
<unitprice>27.8000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10478</orderid>
  +
<customerid>VICTE</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-03-18</orderdate>
  +
<requireddate>1997-04-01</requireddate>
  +
<shippeddate>1997-03-26</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>4.8100</freight>
  +
<shipname>Victuailles en stock</shipname>
  +
<shipaddress>2, rue du Commerce</shipaddress>
  +
<shipcity>Lyon</shipcity>
  +
<shippostalcode>69004</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10478</orderid>
  +
<productid>10</productid>
  +
<unitprice>24.8000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10546</orderid>
  +
<customerid>VICTE</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-05-23</orderdate>
  +
<requireddate>1997-06-20</requireddate>
  +
<shippeddate>1997-05-27</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>194.7200</freight>
  +
<shipname>Victuailles en stock</shipname>
  +
<shipaddress>2, rue du Commerce</shipaddress>
  +
<shipcity>Lyon</shipcity>
  +
<shippostalcode>69004</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10546</orderid>
  +
<productid>7</productid>
  +
<unitprice>30.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10546</orderid>
  +
<productid>35</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10546</orderid>
  +
<productid>62</productid>
  +
<unitprice>49.3000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10806</orderid>
  +
<customerid>VICTE</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-12-31</orderdate>
  +
<requireddate>1998-01-28</requireddate>
  +
<shippeddate>1998-01-05</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>22.1100</freight>
  +
<shipname>Victuailles en stock</shipname>
  +
<shipaddress>2, rue du Commerce</shipaddress>
  +
<shipcity>Lyon</shipcity>
  +
<shippostalcode>69004</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10806</orderid>
  +
<productid>2</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10806</orderid>
  +
<productid>65</productid>
  +
<unitprice>21.0500</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10806</orderid>
  +
<productid>74</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10814</orderid>
  +
<customerid>VICTE</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-01-05</orderdate>
  +
<requireddate>1998-02-02</requireddate>
  +
<shippeddate>1998-01-14</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>130.9400</freight>
  +
<shipname>Victuailles en stock</shipname>
  +
<shipaddress>2, rue du Commerce</shipaddress>
  +
<shipcity>Lyon</shipcity>
  +
<shippostalcode>69004</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10814</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10814</orderid>
  +
<productid>43</productid>
  +
<unitprice>46.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10814</orderid>
  +
<productid>48</productid>
  +
<unitprice>12.7500</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10814</orderid>
  +
<productid>61</productid>
  +
<unitprice>28.5000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10843</orderid>
  +
<customerid>VICTE</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-01-21</orderdate>
  +
<requireddate>1998-02-18</requireddate>
  +
<shippeddate>1998-01-26</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>9.2600</freight>
  +
<shipname>Victuailles en stock</shipname>
  +
<shipaddress>2, rue du Commerce</shipaddress>
  +
<shipcity>Lyon</shipcity>
  +
<shippostalcode>69004</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10843</orderid>
  +
<productid>51</productid>
  +
<unitprice>53.0000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10850</orderid>
  +
<customerid>VICTE</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-01-23</orderdate>
  +
<requireddate>1998-03-06</requireddate>
  +
<shippeddate>1998-01-30</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>49.1900</freight>
  +
<shipname>Victuailles en stock</shipname>
  +
<shipaddress>2, rue du Commerce</shipaddress>
  +
<shipcity>Lyon</shipcity>
  +
<shippostalcode>69004</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10850</orderid>
  +
<productid>25</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10850</orderid>
  +
<productid>33</productid>
  +
<unitprice>2.5000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10850</orderid>
  +
<productid>70</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>VINET</customerid>
  +
<companyname>Vins et alcools Chevalier</companyname>
  +
<contactname>Paul Henriot</contactname>
  +
<contacttitle>Accounting Manager</contacttitle>
  +
<address>59 rue de l'Abbaye</address>
  +
<city>Reims</city>
  +
<postalcode>51100</postalcode>
  +
<country>France</country>
  +
<phone>26.47.15.10</phone>
  +
<fax>26.47.15.11</fax>
  +
<orders>
  +
<orderid>10248</orderid>
  +
<customerid>VINET</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1996-07-04</orderdate>
  +
<requireddate>1996-08-01</requireddate>
  +
<shippeddate>1996-07-16</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>32.3800</freight>
  +
<shipname>Vins et alcools Chevalier</shipname>
  +
<shipaddress>59 rue de l'Abbaye</shipaddress>
  +
<shipcity>Reims</shipcity>
  +
<shippostalcode>51100</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10248</orderid>
  +
<productid>11</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10248</orderid>
  +
<productid>42</productid>
  +
<unitprice>9.8000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10248</orderid>
  +
<productid>72</productid>
  +
<unitprice>34.8000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10274</orderid>
  +
<customerid>VINET</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1996-08-06</orderdate>
  +
<requireddate>1996-09-03</requireddate>
  +
<shippeddate>1996-08-16</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>6.0100</freight>
  +
<shipname>Vins et alcools Chevalier</shipname>
  +
<shipaddress>59 rue de l'Abbaye</shipaddress>
  +
<shipcity>Reims</shipcity>
  +
<shippostalcode>51100</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10274</orderid>
  +
<productid>71</productid>
  +
<unitprice>17.2000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10274</orderid>
  +
<productid>72</productid>
  +
<unitprice>27.8000</unitprice>
  +
<quantity>7</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10295</orderid>
  +
<customerid>VINET</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1996-09-02</orderdate>
  +
<requireddate>1996-09-30</requireddate>
  +
<shippeddate>1996-09-10</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>1.1500</freight>
  +
<shipname>Vins et alcools Chevalier</shipname>
  +
<shipaddress>59 rue de l'Abbaye</shipaddress>
  +
<shipcity>Reims</shipcity>
  +
<shippostalcode>51100</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10295</orderid>
  +
<productid>56</productid>
  +
<unitprice>30.4000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10737</orderid>
  +
<customerid>VINET</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-11-11</orderdate>
  +
<requireddate>1997-12-09</requireddate>
  +
<shippeddate>1997-11-18</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>7.7900</freight>
  +
<shipname>Vins et alcools Chevalier</shipname>
  +
<shipaddress>59 rue de l'Abbaye</shipaddress>
  +
<shipcity>Reims</shipcity>
  +
<shippostalcode>51100</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10737</orderid>
  +
<productid>13</productid>
  +
<unitprice>6.0000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10737</orderid>
  +
<productid>41</productid>
  +
<unitprice>9.6500</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10739</orderid>
  +
<customerid>VINET</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-11-12</orderdate>
  +
<requireddate>1997-12-10</requireddate>
  +
<shippeddate>1997-11-17</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>11.0800</freight>
  +
<shipname>Vins et alcools Chevalier</shipname>
  +
<shipaddress>59 rue de l'Abbaye</shipaddress>
  +
<shipcity>Reims</shipcity>
  +
<shippostalcode>51100</shippostalcode>
  +
<shipcountry>France</shipcountry>
  +
<orderdetails>
  +
<orderid>10739</orderid>
  +
<productid>36</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10739</orderid>
  +
<productid>52</productid>
  +
<unitprice>7.0000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>WANDK</customerid>
  +
<companyname>Die Wandernde Kuh</companyname>
  +
<contactname>Rita Müller</contactname>
  +
<contacttitle>Sales Representative</contacttitle>
  +
<address>Adenauerallee 900</address>
  +
<city>Stuttgart</city>
  +
<postalcode>70563</postalcode>
  +
<country>Germany</country>
  +
<phone>0711-020361</phone>
  +
<fax>0711-035428</fax>
  +
<orders>
  +
<orderid>10301</orderid>
  +
<customerid>WANDK</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1996-09-09</orderdate>
  +
<requireddate>1996-10-07</requireddate>
  +
<shippeddate>1996-09-17</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>45.0800</freight>
  +
<shipname>Die Wandernde Kuh</shipname>
  +
<shipaddress>Adenauerallee 900</shipaddress>
  +
<shipcity>Stuttgart</shipcity>
  +
<shippostalcode>70563</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10301</orderid>
  +
<productid>40</productid>
  +
<unitprice>14.7000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10301</orderid>
  +
<productid>56</productid>
  +
<unitprice>30.4000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10312</orderid>
  +
<customerid>WANDK</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1996-09-23</orderdate>
  +
<requireddate>1996-10-21</requireddate>
  +
<shippeddate>1996-10-03</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>40.2600</freight>
  +
<shipname>Die Wandernde Kuh</shipname>
  +
<shipaddress>Adenauerallee 900</shipaddress>
  +
<shipcity>Stuttgart</shipcity>
  +
<shippostalcode>70563</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10312</orderid>
  +
<productid>28</productid>
  +
<unitprice>36.4000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10312</orderid>
  +
<productid>43</productid>
  +
<unitprice>36.8000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10312</orderid>
  +
<productid>53</productid>
  +
<unitprice>26.2000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10312</orderid>
  +
<productid>75</productid>
  +
<unitprice>6.2000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10348</orderid>
  +
<customerid>WANDK</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1996-11-07</orderdate>
  +
<requireddate>1996-12-05</requireddate>
  +
<shippeddate>1996-11-15</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>0.7800</freight>
  +
<shipname>Die Wandernde Kuh</shipname>
  +
<shipaddress>Adenauerallee 900</shipaddress>
  +
<shipcity>Stuttgart</shipcity>
  +
<shippostalcode>70563</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10348</orderid>
  +
<productid>1</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10348</orderid>
  +
<productid>23</productid>
  +
<unitprice>7.2000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10356</orderid>
  +
<customerid>WANDK</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1996-11-18</orderdate>
  +
<requireddate>1996-12-16</requireddate>
  +
<shippeddate>1996-11-27</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>36.7100</freight>
  +
<shipname>Die Wandernde Kuh</shipname>
  +
<shipaddress>Adenauerallee 900</shipaddress>
  +
<shipcity>Stuttgart</shipcity>
  +
<shippostalcode>70563</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10356</orderid>
  +
<productid>31</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10356</orderid>
  +
<productid>55</productid>
  +
<unitprice>19.2000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10356</orderid>
  +
<productid>69</productid>
  +
<unitprice>28.8000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10513</orderid>
  +
<customerid>WANDK</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-04-22</orderdate>
  +
<requireddate>1997-06-03</requireddate>
  +
<shippeddate>1997-04-28</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>105.6500</freight>
  +
<shipname>Die Wandernde Kuh</shipname>
  +
<shipaddress>Adenauerallee 900</shipaddress>
  +
<shipcity>Stuttgart</shipcity>
  +
<shippostalcode>70563</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10513</orderid>
  +
<productid>21</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10513</orderid>
  +
<productid>32</productid>
  +
<unitprice>32.0000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10513</orderid>
  +
<productid>61</productid>
  +
<unitprice>28.5000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10632</orderid>
  +
<customerid>WANDK</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-08-14</orderdate>
  +
<requireddate>1997-09-11</requireddate>
  +
<shippeddate>1997-08-19</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>41.3800</freight>
  +
<shipname>Die Wandernde Kuh</shipname>
  +
<shipaddress>Adenauerallee 900</shipaddress>
  +
<shipcity>Stuttgart</shipcity>
  +
<shippostalcode>70563</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10632</orderid>
  +
<productid>2</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10632</orderid>
  +
<productid>33</productid>
  +
<unitprice>2.5000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10640</orderid>
  +
<customerid>WANDK</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-08-21</orderdate>
  +
<requireddate>1997-09-18</requireddate>
  +
<shippeddate>1997-08-28</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>23.5500</freight>
  +
<shipname>Die Wandernde Kuh</shipname>
  +
<shipaddress>Adenauerallee 900</shipaddress>
  +
<shipcity>Stuttgart</shipcity>
  +
<shippostalcode>70563</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10640</orderid>
  +
<productid>69</productid>
  +
<unitprice>36.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10640</orderid>
  +
<productid>70</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10651</orderid>
  +
<customerid>WANDK</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-09-01</orderdate>
  +
<requireddate>1997-09-29</requireddate>
  +
<shippeddate>1997-09-11</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>20.6000</freight>
  +
<shipname>Die Wandernde Kuh</shipname>
  +
<shipaddress>Adenauerallee 900</shipaddress>
  +
<shipcity>Stuttgart</shipcity>
  +
<shippostalcode>70563</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10651</orderid>
  +
<productid>19</productid>
  +
<unitprice>9.2000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10651</orderid>
  +
<productid>22</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10668</orderid>
  +
<customerid>WANDK</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-09-15</orderdate>
  +
<requireddate>1997-10-13</requireddate>
  +
<shippeddate>1997-09-23</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>47.2200</freight>
  +
<shipname>Die Wandernde Kuh</shipname>
  +
<shipaddress>Adenauerallee 900</shipaddress>
  +
<shipcity>Stuttgart</shipcity>
  +
<shippostalcode>70563</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>10668</orderid>
  +
<productid>31</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10668</orderid>
  +
<productid>55</productid>
  +
<unitprice>24.0000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10668</orderid>
  +
<productid>64</productid>
  +
<unitprice>33.2500</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11046</orderid>
  +
<customerid>WANDK</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1998-04-23</orderdate>
  +
<requireddate>1998-05-21</requireddate>
  +
<shippeddate>1998-04-24</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>71.6400</freight>
  +
<shipname>Die Wandernde Kuh</shipname>
  +
<shipaddress>Adenauerallee 900</shipaddress>
  +
<shipcity>Stuttgart</shipcity>
  +
<shippostalcode>70563</shippostalcode>
  +
<shipcountry>Germany</shipcountry>
  +
<orderdetails>
  +
<orderid>11046</orderid>
  +
<productid>12</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11046</orderid>
  +
<productid>32</productid>
  +
<unitprice>32.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11046</orderid>
  +
<productid>35</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>WARTH</customerid>
  +
<companyname>Wartian Herkku</companyname>
  +
<contactname>Pirkko Koskitalo</contactname>
  +
<contacttitle>Accounting Manager</contacttitle>
  +
<address>Torikatu 38</address>
  +
<city>Oulu</city>
  +
<postalcode>90110</postalcode>
  +
<country>Finland</country>
  +
<phone>981-443655</phone>
  +
<fax>981-443655</fax>
  +
<orders>
  +
<orderid>10266</orderid>
  +
<customerid>WARTH</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1996-07-26</orderdate>
  +
<requireddate>1996-09-06</requireddate>
  +
<shippeddate>1996-07-31</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>25.7300</freight>
  +
<shipname>Wartian Herkku</shipname>
  +
<shipaddress>Torikatu 38</shipaddress>
  +
<shipcity>Oulu</shipcity>
  +
<shippostalcode>90110</shippostalcode>
  +
<shipcountry>Finland</shipcountry>
  +
<orderdetails>
  +
<orderid>10266</orderid>
  +
<productid>12</productid>
  +
<unitprice>30.4000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10270</orderid>
  +
<customerid>WARTH</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1996-08-01</orderdate>
  +
<requireddate>1996-08-29</requireddate>
  +
<shippeddate>1996-08-02</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>136.5400</freight>
  +
<shipname>Wartian Herkku</shipname>
  +
<shipaddress>Torikatu 38</shipaddress>
  +
<shipcity>Oulu</shipcity>
  +
<shippostalcode>90110</shippostalcode>
  +
<shipcountry>Finland</shipcountry>
  +
<orderdetails>
  +
<orderid>10270</orderid>
  +
<productid>36</productid>
  +
<unitprice>15.2000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10270</orderid>
  +
<productid>43</productid>
  +
<unitprice>36.8000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10320</orderid>
  +
<customerid>WARTH</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1996-10-03</orderdate>
  +
<requireddate>1996-10-17</requireddate>
  +
<shippeddate>1996-10-18</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>34.5700</freight>
  +
<shipname>Wartian Herkku</shipname>
  +
<shipaddress>Torikatu 38</shipaddress>
  +
<shipcity>Oulu</shipcity>
  +
<shippostalcode>90110</shippostalcode>
  +
<shipcountry>Finland</shipcountry>
  +
<orderdetails>
  +
<orderid>10320</orderid>
  +
<productid>71</productid>
  +
<unitprice>17.2000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10333</orderid>
  +
<customerid>WARTH</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1996-10-18</orderdate>
  +
<requireddate>1996-11-15</requireddate>
  +
<shippeddate>1996-10-25</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>0.5900</freight>
  +
<shipname>Wartian Herkku</shipname>
  +
<shipaddress>Torikatu 38</shipaddress>
  +
<shipcity>Oulu</shipcity>
  +
<shippostalcode>90110</shippostalcode>
  +
<shipcountry>Finland</shipcountry>
  +
<orderdetails>
  +
<orderid>10333</orderid>
  +
<productid>14</productid>
  +
<unitprice>18.6000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10333</orderid>
  +
<productid>21</productid>
  +
<unitprice>8.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10333</orderid>
  +
<productid>71</productid>
  +
<unitprice>17.2000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10412</orderid>
  +
<customerid>WARTH</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-01-13</orderdate>
  +
<requireddate>1997-02-10</requireddate>
  +
<shippeddate>1997-01-15</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>3.7700</freight>
  +
<shipname>Wartian Herkku</shipname>
  +
<shipaddress>Torikatu 38</shipaddress>
  +
<shipcity>Oulu</shipcity>
  +
<shippostalcode>90110</shippostalcode>
  +
<shipcountry>Finland</shipcountry>
  +
<orderdetails>
  +
<orderid>10412</orderid>
  +
<productid>14</productid>
  +
<unitprice>18.6000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10416</orderid>
  +
<customerid>WARTH</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-01-16</orderdate>
  +
<requireddate>1997-02-13</requireddate>
  +
<shippeddate>1997-01-27</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>22.7200</freight>
  +
<shipname>Wartian Herkku</shipname>
  +
<shipaddress>Torikatu 38</shipaddress>
  +
<shipcity>Oulu</shipcity>
  +
<shippostalcode>90110</shippostalcode>
  +
<shipcountry>Finland</shipcountry>
  +
<orderdetails>
  +
<orderid>10416</orderid>
  +
<productid>19</productid>
  +
<unitprice>7.3000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10416</orderid>
  +
<productid>53</productid>
  +
<unitprice>26.2000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10416</orderid>
  +
<productid>57</productid>
  +
<unitprice>15.6000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10437</orderid>
  +
<customerid>WARTH</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-02-05</orderdate>
  +
<requireddate>1997-03-05</requireddate>
  +
<shippeddate>1997-02-12</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>19.9700</freight>
  +
<shipname>Wartian Herkku</shipname>
  +
<shipaddress>Torikatu 38</shipaddress>
  +
<shipcity>Oulu</shipcity>
  +
<shippostalcode>90110</shippostalcode>
  +
<shipcountry>Finland</shipcountry>
  +
<orderdetails>
  +
<orderid>10437</orderid>
  +
<productid>53</productid>
  +
<unitprice>26.2000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10455</orderid>
  +
<customerid>WARTH</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-02-24</orderdate>
  +
<requireddate>1997-04-07</requireddate>
  +
<shippeddate>1997-03-03</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>180.4500</freight>
  +
<shipname>Wartian Herkku</shipname>
  +
<shipaddress>Torikatu 38</shipaddress>
  +
<shipcity>Oulu</shipcity>
  +
<shippostalcode>90110</shippostalcode>
  +
<shipcountry>Finland</shipcountry>
  +
<orderdetails>
  +
<orderid>10455</orderid>
  +
<productid>39</productid>
  +
<unitprice>14.4000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10455</orderid>
  +
<productid>53</productid>
  +
<unitprice>26.2000</unitprice>
  +
<quantity>50</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10455</orderid>
  +
<productid>61</productid>
  +
<unitprice>22.8000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10455</orderid>
  +
<productid>71</productid>
  +
<unitprice>17.2000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10526</orderid>
  +
<customerid>WARTH</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-05-05</orderdate>
  +
<requireddate>1997-06-02</requireddate>
  +
<shippeddate>1997-05-15</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>58.5900</freight>
  +
<shipname>Wartian Herkku</shipname>
  +
<shipaddress>Torikatu 38</shipaddress>
  +
<shipcity>Oulu</shipcity>
  +
<shippostalcode>90110</shippostalcode>
  +
<shipcountry>Finland</shipcountry>
  +
<orderdetails>
  +
<orderid>10526</orderid>
  +
<productid>1</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10526</orderid>
  +
<productid>13</productid>
  +
<unitprice>6.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10526</orderid>
  +
<productid>56</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10553</orderid>
  +
<customerid>WARTH</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-05-30</orderdate>
  +
<requireddate>1997-06-27</requireddate>
  +
<shippeddate>1997-06-03</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>149.4900</freight>
  +
<shipname>Wartian Herkku</shipname>
  +
<shipaddress>Torikatu 38</shipaddress>
  +
<shipcity>Oulu</shipcity>
  +
<shippostalcode>90110</shippostalcode>
  +
<shipcountry>Finland</shipcountry>
  +
<orderdetails>
  +
<orderid>10553</orderid>
  +
<productid>11</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10553</orderid>
  +
<productid>16</productid>
  +
<unitprice>17.4500</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10553</orderid>
  +
<productid>22</productid>
  +
<unitprice>21.0000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10553</orderid>
  +
<productid>31</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10553</orderid>
  +
<productid>35</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10583</orderid>
  +
<customerid>WARTH</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-06-30</orderdate>
  +
<requireddate>1997-07-28</requireddate>
  +
<shippeddate>1997-07-04</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>7.2800</freight>
  +
<shipname>Wartian Herkku</shipname>
  +
<shipaddress>Torikatu 38</shipaddress>
  +
<shipcity>Oulu</shipcity>
  +
<shippostalcode>90110</shippostalcode>
  +
<shipcountry>Finland</shipcountry>
  +
<orderdetails>
  +
<orderid>10583</orderid>
  +
<productid>29</productid>
  +
<unitprice>123.7900</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10583</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10583</orderid>
  +
<productid>69</productid>
  +
<unitprice>36.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10636</orderid>
  +
<customerid>WARTH</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-08-19</orderdate>
  +
<requireddate>1997-09-16</requireddate>
  +
<shippeddate>1997-08-26</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>1.1500</freight>
  +
<shipname>Wartian Herkku</shipname>
  +
<shipaddress>Torikatu 38</shipaddress>
  +
<shipcity>Oulu</shipcity>
  +
<shippostalcode>90110</shippostalcode>
  +
<shipcountry>Finland</shipcountry>
  +
<orderdetails>
  +
<orderid>10636</orderid>
  +
<productid>4</productid>
  +
<unitprice>22.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10636</orderid>
  +
<productid>58</productid>
  +
<unitprice>13.2500</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10750</orderid>
  +
<customerid>WARTH</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1997-11-21</orderdate>
  +
<requireddate>1997-12-19</requireddate>
  +
<shippeddate>1997-11-24</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>79.3000</freight>
  +
<shipname>Wartian Herkku</shipname>
  +
<shipaddress>Torikatu 38</shipaddress>
  +
<shipcity>Oulu</shipcity>
  +
<shippostalcode>90110</shippostalcode>
  +
<shipcountry>Finland</shipcountry>
  +
<orderdetails>
  +
<orderid>10750</orderid>
  +
<productid>14</productid>
  +
<unitprice>23.2500</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10750</orderid>
  +
<productid>45</productid>
  +
<unitprice>9.5000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10750</orderid>
  +
<productid>59</productid>
  +
<unitprice>55.0000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10781</orderid>
  +
<customerid>WARTH</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-12-17</orderdate>
  +
<requireddate>1998-01-14</requireddate>
  +
<shippeddate>1997-12-19</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>73.1600</freight>
  +
<shipname>Wartian Herkku</shipname>
  +
<shipaddress>Torikatu 38</shipaddress>
  +
<shipcity>Oulu</shipcity>
  +
<shippostalcode>90110</shippostalcode>
  +
<shipcountry>Finland</shipcountry>
  +
<orderdetails>
  +
<orderid>10781</orderid>
  +
<productid>54</productid>
  +
<unitprice>7.4500</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10781</orderid>
  +
<productid>56</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10781</orderid>
  +
<productid>74</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11025</orderid>
  +
<customerid>WARTH</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1998-04-15</orderdate>
  +
<requireddate>1998-05-13</requireddate>
  +
<shippeddate>1998-04-24</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>29.1700</freight>
  +
<shipname>Wartian Herkku</shipname>
  +
<shipaddress>Torikatu 38</shipaddress>
  +
<shipcity>Oulu</shipcity>
  +
<shippostalcode>90110</shippostalcode>
  +
<shipcountry>Finland</shipcountry>
  +
<orderdetails>
  +
<orderid>11025</orderid>
  +
<productid>1</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11025</orderid>
  +
<productid>13</productid>
  +
<unitprice>6.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>WELLI</customerid>
  +
<companyname>Wellington Importadora</companyname>
  +
<contactname>Paula Parente</contactname>
  +
<contacttitle>Sales Manager</contacttitle>
  +
<address>Rua do Mercado, 12</address>
  +
<city>Resende</city>
  +
<region>SP</region>
  +
<postalcode>08737-363</postalcode>
  +
<country>Brazil</country>
  +
<phone>(14) 555-8122</phone>
  +
<orders>
  +
<orderid>10256</orderid>
  +
<customerid>WELLI</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1996-07-15</orderdate>
  +
<requireddate>1996-08-12</requireddate>
  +
<shippeddate>1996-07-17</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>13.9700</freight>
  +
<shipname>Wellington Importadora</shipname>
  +
<shipaddress>Rua do Mercado, 12</shipaddress>
  +
<shipcity>Resende</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>08737-363</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10256</orderid>
  +
<productid>53</productid>
  +
<unitprice>26.2000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10256</orderid>
  +
<productid>77</productid>
  +
<unitprice>10.4000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10420</orderid>
  +
<customerid>WELLI</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-01-21</orderdate>
  +
<requireddate>1997-02-18</requireddate>
  +
<shippeddate>1997-01-27</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>44.1200</freight>
  +
<shipname>Wellington Importadora</shipname>
  +
<shipaddress>Rua do Mercado, 12</shipaddress>
  +
<shipcity>Resende</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>08737-363</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10420</orderid>
  +
<productid>9</productid>
  +
<unitprice>77.6000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10420</orderid>
  +
<productid>13</productid>
  +
<unitprice>4.8000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10420</orderid>
  +
<productid>70</productid>
  +
<unitprice>12.0000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10420</orderid>
  +
<productid>73</productid>
  +
<unitprice>12.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10585</orderid>
  +
<customerid>WELLI</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-07-01</orderdate>
  +
<requireddate>1997-07-29</requireddate>
  +
<shippeddate>1997-07-10</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>13.4100</freight>
  +
<shipname>Wellington Importadora</shipname>
  +
<shipaddress>Rua do Mercado, 12</shipaddress>
  +
<shipcity>Resende</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>08737-363</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10585</orderid>
  +
<productid>47</productid>
  +
<unitprice>9.5000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10644</orderid>
  +
<customerid>WELLI</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-08-25</orderdate>
  +
<requireddate>1997-09-22</requireddate>
  +
<shippeddate>1997-09-01</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>0.1400</freight>
  +
<shipname>Wellington Importadora</shipname>
  +
<shipaddress>Rua do Mercado, 12</shipaddress>
  +
<shipcity>Resende</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>08737-363</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10644</orderid>
  +
<productid>18</productid>
  +
<unitprice>62.5000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10644</orderid>
  +
<productid>43</productid>
  +
<unitprice>46.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10644</orderid>
  +
<productid>46</productid>
  +
<unitprice>12.0000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.10000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10803</orderid>
  +
<customerid>WELLI</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-12-30</orderdate>
  +
<requireddate>1998-01-27</requireddate>
  +
<shippeddate>1998-01-06</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>55.2300</freight>
  +
<shipname>Wellington Importadora</shipname>
  +
<shipaddress>Rua do Mercado, 12</shipaddress>
  +
<shipcity>Resende</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>08737-363</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10803</orderid>
  +
<productid>19</productid>
  +
<unitprice>9.2000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10803</orderid>
  +
<productid>25</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10803</orderid>
  +
<productid>59</productid>
  +
<unitprice>55.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10809</orderid>
  +
<customerid>WELLI</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1998-01-01</orderdate>
  +
<requireddate>1998-01-29</requireddate>
  +
<shippeddate>1998-01-07</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>4.8700</freight>
  +
<shipname>Wellington Importadora</shipname>
  +
<shipaddress>Rua do Mercado, 12</shipaddress>
  +
<shipcity>Resende</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>08737-363</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10809</orderid>
  +
<productid>52</productid>
  +
<unitprice>7.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10900</orderid>
  +
<customerid>WELLI</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-02-20</orderdate>
  +
<requireddate>1998-03-20</requireddate>
  +
<shippeddate>1998-03-04</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>1.6600</freight>
  +
<shipname>Wellington Importadora</shipname>
  +
<shipaddress>Rua do Mercado, 12</shipaddress>
  +
<shipcity>Resende</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>08737-363</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10900</orderid>
  +
<productid>70</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10905</orderid>
  +
<customerid>WELLI</customerid>
  +
<employeeid>9</employeeid>
  +
<orderdate>1998-02-24</orderdate>
  +
<requireddate>1998-03-24</requireddate>
  +
<shippeddate>1998-03-06</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>13.7200</freight>
  +
<shipname>Wellington Importadora</shipname>
  +
<shipaddress>Rua do Mercado, 12</shipaddress>
  +
<shipcity>Resende</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>08737-363</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10905</orderid>
  +
<productid>1</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10935</orderid>
  +
<customerid>WELLI</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-03-09</orderdate>
  +
<requireddate>1998-04-06</requireddate>
  +
<shippeddate>1998-03-18</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>47.5900</freight>
  +
<shipname>Wellington Importadora</shipname>
  +
<shipaddress>Rua do Mercado, 12</shipaddress>
  +
<shipcity>Resende</shipcity>
  +
<shipregion>SP</shipregion>
  +
<shippostalcode>08737-363</shippostalcode>
  +
<shipcountry>Brazil</shipcountry>
  +
<orderdetails>
  +
<orderid>10935</orderid>
  +
<productid>1</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>21</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10935</orderid>
  +
<productid>18</productid>
  +
<unitprice>62.5000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10935</orderid>
  +
<productid>23</productid>
  +
<unitprice>9.0000</unitprice>
  +
<quantity>8</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>WHITC</customerid>
  +
<companyname>White Clover Markets</companyname>
  +
<contactname>Karl Jablonski</contactname>
  +
<contacttitle>Owner</contacttitle>
  +
<address>305 - 14th Ave. S. Suite 3B</address>
  +
<city>Seattle</city>
  +
<region>WA</region>
  +
<postalcode>98128</postalcode>
  +
<country>USA</country>
  +
<phone>(206) 555-4112</phone>
  +
<fax>(206) 555-4115</fax>
  +
<orders>
  +
<orderid>10269</orderid>
  +
<customerid>WHITC</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1996-07-31</orderdate>
  +
<requireddate>1996-08-14</requireddate>
  +
<shippeddate>1996-08-09</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>4.5600</freight>
  +
<shipname>White Clover Markets</shipname>
  +
<shipaddress>1029 - 12th Ave. S.</shipaddress>
  +
<shipcity>Seattle</shipcity>
  +
<shipregion>WA</shipregion>
  +
<shippostalcode>98124</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10269</orderid>
  +
<productid>33</productid>
  +
<unitprice>2.0000</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10269</orderid>
  +
<productid>72</productid>
  +
<unitprice>27.8000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10344</orderid>
  +
<customerid>WHITC</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1996-11-01</orderdate>
  +
<requireddate>1996-11-29</requireddate>
  +
<shippeddate>1996-11-05</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>23.2900</freight>
  +
<shipname>White Clover Markets</shipname>
  +
<shipaddress>1029 - 12th Ave. S.</shipaddress>
  +
<shipcity>Seattle</shipcity>
  +
<shipregion>WA</shipregion>
  +
<shippostalcode>98124</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10344</orderid>
  +
<productid>4</productid>
  +
<unitprice>17.6000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10344</orderid>
  +
<productid>8</productid>
  +
<unitprice>32.0000</unitprice>
  +
<quantity>70</quantity>
  +
<discount>0.25000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10469</orderid>
  +
<customerid>WHITC</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-03-10</orderdate>
  +
<requireddate>1997-04-07</requireddate>
  +
<shippeddate>1997-03-14</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>60.1800</freight>
  +
<shipname>White Clover Markets</shipname>
  +
<shipaddress>1029 - 12th Ave. S.</shipaddress>
  +
<shipcity>Seattle</shipcity>
  +
<shipregion>WA</shipregion>
  +
<shippostalcode>98124</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10469</orderid>
  +
<productid>2</productid>
  +
<unitprice>15.2000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10469</orderid>
  +
<productid>16</productid>
  +
<unitprice>13.9000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10469</orderid>
  +
<productid>44</productid>
  +
<unitprice>15.5000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10483</orderid>
  +
<customerid>WHITC</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-03-24</orderdate>
  +
<requireddate>1997-04-21</requireddate>
  +
<shippeddate>1997-04-25</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>15.2800</freight>
  +
<shipname>White Clover Markets</shipname>
  +
<shipaddress>1029 - 12th Ave. S.</shipaddress>
  +
<shipcity>Seattle</shipcity>
  +
<shipregion>WA</shipregion>
  +
<shippostalcode>98124</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10483</orderid>
  +
<productid>34</productid>
  +
<unitprice>11.2000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10483</orderid>
  +
<productid>77</productid>
  +
<unitprice>10.4000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.05000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10504</orderid>
  +
<customerid>WHITC</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-04-11</orderdate>
  +
<requireddate>1997-05-09</requireddate>
  +
<shippeddate>1997-04-18</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>59.1300</freight>
  +
<shipname>White Clover Markets</shipname>
  +
<shipaddress>1029 - 12th Ave. S.</shipaddress>
  +
<shipcity>Seattle</shipcity>
  +
<shipregion>WA</shipregion>
  +
<shippostalcode>98124</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10504</orderid>
  +
<productid>2</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10504</orderid>
  +
<productid>21</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10504</orderid>
  +
<productid>53</productid>
  +
<unitprice>32.8000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10504</orderid>
  +
<productid>61</productid>
  +
<unitprice>28.5000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10596</orderid>
  +
<customerid>WHITC</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-07-11</orderdate>
  +
<requireddate>1997-08-08</requireddate>
  +
<shippeddate>1997-08-12</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>16.3400</freight>
  +
<shipname>White Clover Markets</shipname>
  +
<shipaddress>1029 - 12th Ave. S.</shipaddress>
  +
<shipcity>Seattle</shipcity>
  +
<shipregion>WA</shipregion>
  +
<shippostalcode>98124</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10596</orderid>
  +
<productid>56</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10596</orderid>
  +
<productid>63</productid>
  +
<unitprice>43.9000</unitprice>
  +
<quantity>24</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10596</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10693</orderid>
  +
<customerid>WHITC</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-10-06</orderdate>
  +
<requireddate>1997-10-20</requireddate>
  +
<shippeddate>1997-10-10</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>139.3400</freight>
  +
<shipname>White Clover Markets</shipname>
  +
<shipaddress>1029 - 12th Ave. S.</shipaddress>
  +
<shipcity>Seattle</shipcity>
  +
<shipregion>WA</shipregion>
  +
<shippostalcode>98124</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10693</orderid>
  +
<productid>9</productid>
  +
<unitprice>97.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10693</orderid>
  +
<productid>54</productid>
  +
<unitprice>7.4500</unitprice>
  +
<quantity>60</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10693</orderid>
  +
<productid>69</productid>
  +
<unitprice>36.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10693</orderid>
  +
<productid>73</productid>
  +
<unitprice>15.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.15000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10696</orderid>
  +
<customerid>WHITC</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1997-10-08</orderdate>
  +
<requireddate>1997-11-19</requireddate>
  +
<shippeddate>1997-10-14</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>102.5500</freight>
  +
<shipname>White Clover Markets</shipname>
  +
<shipaddress>1029 - 12th Ave. S.</shipaddress>
  +
<shipcity>Seattle</shipcity>
  +
<shipregion>WA</shipregion>
  +
<shippostalcode>98124</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10696</orderid>
  +
<productid>17</productid>
  +
<unitprice>39.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10696</orderid>
  +
<productid>46</productid>
  +
<unitprice>12.0000</unitprice>
  +
<quantity>18</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10723</orderid>
  +
<customerid>WHITC</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1997-10-30</orderdate>
  +
<requireddate>1997-11-27</requireddate>
  +
<shippeddate>1997-11-25</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>21.7200</freight>
  +
<shipname>White Clover Markets</shipname>
  +
<shipaddress>1029 - 12th Ave. S.</shipaddress>
  +
<shipcity>Seattle</shipcity>
  +
<shipregion>WA</shipregion>
  +
<shippostalcode>98124</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10723</orderid>
  +
<productid>26</productid>
  +
<unitprice>31.2300</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10740</orderid>
  +
<customerid>WHITC</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1997-11-13</orderdate>
  +
<requireddate>1997-12-11</requireddate>
  +
<shippeddate>1997-11-25</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>81.8800</freight>
  +
<shipname>White Clover Markets</shipname>
  +
<shipaddress>1029 - 12th Ave. S.</shipaddress>
  +
<shipcity>Seattle</shipcity>
  +
<shipregion>WA</shipregion>
  +
<shippostalcode>98124</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10740</orderid>
  +
<productid>28</productid>
  +
<unitprice>45.6000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10740</orderid>
  +
<productid>35</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10740</orderid>
  +
<productid>45</productid>
  +
<unitprice>9.5000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10740</orderid>
  +
<productid>56</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>14</quantity>
  +
<discount>0.20000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10861</orderid>
  +
<customerid>WHITC</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-01-30</orderdate>
  +
<requireddate>1998-02-27</requireddate>
  +
<shippeddate>1998-02-17</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>14.9300</freight>
  +
<shipname>White Clover Markets</shipname>
  +
<shipaddress>1029 - 12th Ave. S.</shipaddress>
  +
<shipcity>Seattle</shipcity>
  +
<shipregion>WA</shipregion>
  +
<shippostalcode>98124</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10861</orderid>
  +
<productid>17</productid>
  +
<unitprice>39.0000</unitprice>
  +
<quantity>42</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10861</orderid>
  +
<productid>18</productid>
  +
<unitprice>62.5000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10861</orderid>
  +
<productid>21</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>40</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10861</orderid>
  +
<productid>33</productid>
  +
<unitprice>2.5000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10861</orderid>
  +
<productid>62</productid>
  +
<unitprice>49.3000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10904</orderid>
  +
<customerid>WHITC</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-02-24</orderdate>
  +
<requireddate>1998-03-24</requireddate>
  +
<shippeddate>1998-02-27</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>162.9500</freight>
  +
<shipname>White Clover Markets</shipname>
  +
<shipaddress>1029 - 12th Ave. S.</shipaddress>
  +
<shipcity>Seattle</shipcity>
  +
<shipregion>WA</shipregion>
  +
<shippostalcode>98124</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>10904</orderid>
  +
<productid>58</productid>
  +
<unitprice>13.2500</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10904</orderid>
  +
<productid>62</productid>
  +
<unitprice>49.3000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11032</orderid>
  +
<customerid>WHITC</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-04-17</orderdate>
  +
<requireddate>1998-05-15</requireddate>
  +
<shippeddate>1998-04-23</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>606.1900</freight>
  +
<shipname>White Clover Markets</shipname>
  +
<shipaddress>1029 - 12th Ave. S.</shipaddress>
  +
<shipcity>Seattle</shipcity>
  +
<shipregion>WA</shipregion>
  +
<shippostalcode>98124</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>11032</orderid>
  +
<productid>36</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11032</orderid>
  +
<productid>38</productid>
  +
<unitprice>263.5000</unitprice>
  +
<quantity>25</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11032</orderid>
  +
<productid>59</productid>
  +
<unitprice>55.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11066</orderid>
  +
<customerid>WHITC</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1998-05-01</orderdate>
  +
<requireddate>1998-05-29</requireddate>
  +
<shippeddate>1998-05-04</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>44.7200</freight>
  +
<shipname>White Clover Markets</shipname>
  +
<shipaddress>1029 - 12th Ave. S.</shipaddress>
  +
<shipcity>Seattle</shipcity>
  +
<shipregion>WA</shipregion>
  +
<shippostalcode>98124</shippostalcode>
  +
<shipcountry>USA</shipcountry>
  +
<orderdetails>
  +
<orderid>11066</orderid>
  +
<productid>16</productid>
  +
<unitprice>17.4500</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11066</orderid>
  +
<productid>19</productid>
  +
<unitprice>9.2000</unitprice>
  +
<quantity>42</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11066</orderid>
  +
<productid>34</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>35</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>WILMK</customerid>
  +
<companyname>Wilman Kala</companyname>
  +
<contactname>Matti Karttunen</contactname>
  +
<contacttitle>Owner/Marketing Assistant</contacttitle>
  +
<address>Keskuskatu 45</address>
  +
<city>Helsinki</city>
  +
<postalcode>21240</postalcode>
  +
<country>Finland</country>
  +
<phone>90-224 8858</phone>
  +
<fax>90-224 8858</fax>
  +
<orders>
  +
<orderid>10615</orderid>
  +
<customerid>WILMK</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-07-30</orderdate>
  +
<requireddate>1997-08-27</requireddate>
  +
<shippeddate>1997-08-06</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>0.7500</freight>
  +
<shipname>Wilman Kala</shipname>
  +
<shipaddress>Keskuskatu 45</shipaddress>
  +
<shipcity>Helsinki</shipcity>
  +
<shippostalcode>21240</shippostalcode>
  +
<shipcountry>Finland</shipcountry>
  +
<orderdetails>
  +
<orderid>10615</orderid>
  +
<productid>55</productid>
  +
<unitprice>24.0000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10673</orderid>
  +
<customerid>WILMK</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1997-09-18</orderdate>
  +
<requireddate>1997-10-16</requireddate>
  +
<shippeddate>1997-09-19</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>22.7600</freight>
  +
<shipname>Wilman Kala</shipname>
  +
<shipaddress>Keskuskatu 45</shipaddress>
  +
<shipcity>Helsinki</shipcity>
  +
<shippostalcode>21240</shippostalcode>
  +
<shipcountry>Finland</shipcountry>
  +
<orderdetails>
  +
<orderid>10673</orderid>
  +
<productid>16</productid>
  +
<unitprice>17.4500</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10673</orderid>
  +
<productid>42</productid>
  +
<unitprice>14.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10673</orderid>
  +
<productid>43</productid>
  +
<unitprice>46.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10695</orderid>
  +
<customerid>WILMK</customerid>
  +
<employeeid>7</employeeid>
  +
<orderdate>1997-10-07</orderdate>
  +
<requireddate>1997-11-18</requireddate>
  +
<shippeddate>1997-10-14</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>16.7200</freight>
  +
<shipname>Wilman Kala</shipname>
  +
<shipaddress>Keskuskatu 45</shipaddress>
  +
<shipcity>Helsinki</shipcity>
  +
<shippostalcode>21240</shippostalcode>
  +
<shipcountry>Finland</shipcountry>
  +
<orderdetails>
  +
<orderid>10695</orderid>
  +
<productid>8</productid>
  +
<unitprice>40.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10695</orderid>
  +
<productid>12</productid>
  +
<unitprice>38.0000</unitprice>
  +
<quantity>4</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10695</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10873</orderid>
  +
<customerid>WILMK</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-02-06</orderdate>
  +
<requireddate>1998-03-06</requireddate>
  +
<shippeddate>1998-02-09</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>0.8200</freight>
  +
<shipname>Wilman Kala</shipname>
  +
<shipaddress>Keskuskatu 45</shipaddress>
  +
<shipcity>Helsinki</shipcity>
  +
<shippostalcode>21240</shippostalcode>
  +
<shipcountry>Finland</shipcountry>
  +
<orderdetails>
  +
<orderid>10873</orderid>
  +
<productid>21</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10873</orderid>
  +
<productid>28</productid>
  +
<unitprice>45.6000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10879</orderid>
  +
<customerid>WILMK</customerid>
  +
<employeeid>3</employeeid>
  +
<orderdate>1998-02-10</orderdate>
  +
<requireddate>1998-03-10</requireddate>
  +
<shippeddate>1998-02-12</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>8.5000</freight>
  +
<shipname>Wilman Kala</shipname>
  +
<shipaddress>Keskuskatu 45</shipaddress>
  +
<shipcity>Helsinki</shipcity>
  +
<shippostalcode>21240</shippostalcode>
  +
<shipcountry>Finland</shipcountry>
  +
<orderdetails>
  +
<orderid>10879</orderid>
  +
<productid>40</productid>
  +
<unitprice>18.4000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10879</orderid>
  +
<productid>65</productid>
  +
<unitprice>21.0500</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10879</orderid>
  +
<productid>76</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10910</orderid>
  +
<customerid>WILMK</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1998-02-26</orderdate>
  +
<requireddate>1998-03-26</requireddate>
  +
<shippeddate>1998-03-04</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>38.1100</freight>
  +
<shipname>Wilman Kala</shipname>
  +
<shipaddress>Keskuskatu 45</shipaddress>
  +
<shipcity>Helsinki</shipcity>
  +
<shippostalcode>21240</shippostalcode>
  +
<shipcountry>Finland</shipcountry>
  +
<orderdetails>
  +
<orderid>10910</orderid>
  +
<productid>19</productid>
  +
<unitprice>9.2000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10910</orderid>
  +
<productid>49</productid>
  +
<unitprice>20.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10910</orderid>
  +
<productid>61</productid>
  +
<unitprice>28.5000</unitprice>
  +
<quantity>5</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11005</orderid>
  +
<customerid>WILMK</customerid>
  +
<employeeid>2</employeeid>
  +
<orderdate>1998-04-07</orderdate>
  +
<requireddate>1998-05-05</requireddate>
  +
<shippeddate>1998-04-10</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>0.7500</freight>
  +
<shipname>Wilman Kala</shipname>
  +
<shipaddress>Keskuskatu 45</shipaddress>
  +
<shipcity>Helsinki</shipcity>
  +
<shippostalcode>21240</shippostalcode>
  +
<shipcountry>Finland</shipcountry>
  +
<orderdetails>
  +
<orderid>11005</orderid>
  +
<productid>1</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>11005</orderid>
  +
<productid>59</productid>
  +
<unitprice>55.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
<customers>
  +
<customerid>WOLZA</customerid>
  +
<companyname>Wolski Zajazd</companyname>
  +
<contactname>Zbyszek Piestrzeniewicz</contactname>
  +
<contacttitle>Owner</contacttitle>
  +
<address>ul. Filtrowa 68</address>
  +
<city>Warszawa</city>
  +
<postalcode>01-012</postalcode>
  +
<country>Poland</country>
  +
<phone>(26) 642-7012</phone>
  +
<fax>(26) 642-7012</fax>
  +
<orders>
  +
<orderid>10374</orderid>
  +
<customerid>WOLZA</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1996-12-05</orderdate>
  +
<requireddate>1997-01-02</requireddate>
  +
<shippeddate>1996-12-09</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>3.9400</freight>
  +
<shipname>Wolski Zajazd</shipname>
  +
<shipaddress>ul. Filtrowa 68</shipaddress>
  +
<shipcity>Warszawa</shipcity>
  +
<shippostalcode>01-012</shippostalcode>
  +
<shipcountry>Poland</shipcountry>
  +
<orderdetails>
  +
<orderid>10374</orderid>
  +
<productid>31</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10374</orderid>
  +
<productid>58</productid>
  +
<unitprice>10.6000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10611</orderid>
  +
<customerid>WOLZA</customerid>
  +
<employeeid>6</employeeid>
  +
<orderdate>1997-07-25</orderdate>
  +
<requireddate>1997-08-22</requireddate>
  +
<shippeddate>1997-08-01</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>80.6500</freight>
  +
<shipname>Wolski Zajazd</shipname>
  +
<shipaddress>ul. Filtrowa 68</shipaddress>
  +
<shipcity>Warszawa</shipcity>
  +
<shippostalcode>01-012</shippostalcode>
  +
<shipcountry>Poland</shipcountry>
  +
<orderdetails>
  +
<orderid>10611</orderid>
  +
<productid>1</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>6</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10611</orderid>
  +
<productid>2</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10611</orderid>
  +
<productid>60</productid>
  +
<unitprice>34.0000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10792</orderid>
  +
<customerid>WOLZA</customerid>
  +
<employeeid>1</employeeid>
  +
<orderdate>1997-12-23</orderdate>
  +
<requireddate>1998-01-20</requireddate>
  +
<shippeddate>1997-12-31</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>23.7900</freight>
  +
<shipname>Wolski Zajazd</shipname>
  +
<shipaddress>ul. Filtrowa 68</shipaddress>
  +
<shipcity>Warszawa</shipcity>
  +
<shippostalcode>01-012</shippostalcode>
  +
<shipcountry>Poland</shipcountry>
  +
<orderdetails>
  +
<orderid>10792</orderid>
  +
<productid>2</productid>
  +
<unitprice>19.0000</unitprice>
  +
<quantity>10</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10792</orderid>
  +
<productid>54</productid>
  +
<unitprice>7.4500</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10792</orderid>
  +
<productid>68</productid>
  +
<unitprice>12.5000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10870</orderid>
  +
<customerid>WOLZA</customerid>
  +
<employeeid>5</employeeid>
  +
<orderdate>1998-02-04</orderdate>
  +
<requireddate>1998-03-04</requireddate>
  +
<shippeddate>1998-02-13</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>12.0400</freight>
  +
<shipname>Wolski Zajazd</shipname>
  +
<shipaddress>ul. Filtrowa 68</shipaddress>
  +
<shipcity>Warszawa</shipcity>
  +
<shippostalcode>01-012</shippostalcode>
  +
<shipcountry>Poland</shipcountry>
  +
<orderdetails>
  +
<orderid>10870</orderid>
  +
<productid>35</productid>
  +
<unitprice>18.0000</unitprice>
  +
<quantity>3</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10870</orderid>
  +
<productid>51</productid>
  +
<unitprice>53.0000</unitprice>
  +
<quantity>2</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10906</orderid>
  +
<customerid>WOLZA</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-02-25</orderdate>
  +
<requireddate>1998-03-11</requireddate>
  +
<shippeddate>1998-03-03</shippeddate>
  +
<shipvia>3</shipvia>
  +
<freight>26.2900</freight>
  +
<shipname>Wolski Zajazd</shipname>
  +
<shipaddress>ul. Filtrowa 68</shipaddress>
  +
<shipcity>Warszawa</shipcity>
  +
<shippostalcode>01-012</shippostalcode>
  +
<shipcountry>Poland</shipcountry>
  +
<orderdetails>
  +
<orderid>10906</orderid>
  +
<productid>61</productid>
  +
<unitprice>28.5000</unitprice>
  +
<quantity>15</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>10998</orderid>
  +
<customerid>WOLZA</customerid>
  +
<employeeid>8</employeeid>
  +
<orderdate>1998-04-03</orderdate>
  +
<requireddate>1998-04-17</requireddate>
  +
<shippeddate>1998-04-17</shippeddate>
  +
<shipvia>2</shipvia>
  +
<freight>20.3100</freight>
  +
<shipname>Wolski Zajazd</shipname>
  +
<shipaddress>ul. Filtrowa 68</shipaddress>
  +
<shipcity>Warszawa</shipcity>
  +
<shippostalcode>01-012</shippostalcode>
  +
<shipcountry>Poland</shipcountry>
  +
<orderdetails>
  +
<orderid>10998</orderid>
  +
<productid>24</productid>
  +
<unitprice>4.5000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10998</orderid>
  +
<productid>61</productid>
  +
<unitprice>28.5000</unitprice>
  +
<quantity>7</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10998</orderid>
  +
<productid>74</productid>
  +
<unitprice>10.0000</unitprice>
  +
<quantity>20</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
<orderdetails>
  +
<orderid>10998</orderid>
  +
<productid>75</productid>
  +
<unitprice>7.7500</unitprice>
  +
<quantity>30</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
<orders>
  +
<orderid>11044</orderid>
  +
<customerid>WOLZA</customerid>
  +
<employeeid>4</employeeid>
  +
<orderdate>1998-04-23</orderdate>
  +
<requireddate>1998-05-21</requireddate>
  +
<shippeddate>1998-05-01</shippeddate>
  +
<shipvia>1</shipvia>
  +
<freight>8.7200</freight>
  +
<shipname>Wolski Zajazd</shipname>
  +
<shipaddress>ul. Filtrowa 68</shipaddress>
  +
<shipcity>Warszawa</shipcity>
  +
<shippostalcode>01-012</shippostalcode>
  +
<shipcountry>Poland</shipcountry>
  +
<orderdetails>
  +
<orderid>11044</orderid>
  +
<productid>62</productid>
  +
<unitprice>49.3000</unitprice>
  +
<quantity>12</quantity>
  +
<discount>0.00000</discount>
  +
</orderdetails>
  +
</orders>
  +
</customers>
  +
</VFPDataSet>

Revision as of 06:13, 23 May 2015

<?xml version = "1.0" encoding="Windows-1252" standalone="yes"?> <VFPDataSet xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="C:\Users\sakhaa\Downloads\xasampls\XA\OneToMany\result.XSD"> <customers> <customerid>ALFKI</customerid> <companyname>Alfreds Futterkiste</companyname> <contactname>Maria Anders</contactname> <contacttitle>Sales Representative</contacttitle> <address>Obere Str. 57</address> <city>Berlin</city> <postalcode>12209</postalcode> <country>Germany</country> <phone>030-0074321</phone> <fax>030-0076545</fax> <orders> <orderid>10643</orderid> <customerid>ALFKI</customerid> <employeeid>6</employeeid> <orderdate>1997-08-25</orderdate> <requireddate>1997-09-22</requireddate> <shippeddate>1997-09-02</shippeddate> <shipvia>1</shipvia> <freight>29.4600</freight> <shipname>Alfreds Futterkiste</shipname> <shipaddress>Obere Str. 57</shipaddress> <shipcity>Berlin</shipcity> <shippostalcode>12209</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10643</orderid> <productid>28</productid> <unitprice>45.6000</unitprice> <quantity>15</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10643</orderid> <productid>39</productid> <unitprice>18.0000</unitprice> <quantity>21</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10643</orderid> <productid>46</productid> <unitprice>12.0000</unitprice> <quantity>2</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10692</orderid> <customerid>ALFKI</customerid> <employeeid>4</employeeid> <orderdate>1997-10-03</orderdate> <requireddate>1997-10-31</requireddate> <shippeddate>1997-10-13</shippeddate> <shipvia>2</shipvia> <freight>61.0200</freight> <shipname>Alfred's Futterkiste</shipname> <shipaddress>Obere Str. 57</shipaddress> <shipcity>Berlin</shipcity> <shippostalcode>12209</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10692</orderid> <productid>63</productid> <unitprice>43.9000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10702</orderid> <customerid>ALFKI</customerid> <employeeid>4</employeeid> <orderdate>1997-10-13</orderdate> <requireddate>1997-11-24</requireddate> <shippeddate>1997-10-21</shippeddate> <shipvia>1</shipvia> <freight>23.9400</freight> <shipname>Alfred's Futterkiste</shipname> <shipaddress>Obere Str. 57</shipaddress> <shipcity>Berlin</shipcity> <shippostalcode>12209</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10702</orderid> <productid>3</productid> <unitprice>10.0000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10702</orderid> <productid>76</productid> <unitprice>18.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10835</orderid> <customerid>ALFKI</customerid> <employeeid>1</employeeid> <orderdate>1998-01-15</orderdate> <requireddate>1998-02-12</requireddate> <shippeddate>1998-01-21</shippeddate> <shipvia>3</shipvia> <freight>69.5300</freight> <shipname>Alfred's Futterkiste</shipname> <shipaddress>Obere Str. 57</shipaddress> <shipcity>Berlin</shipcity> <shippostalcode>12209</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10835</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10835</orderid> <productid>77</productid> <unitprice>13.0000</unitprice> <quantity>2</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10952</orderid> <customerid>ALFKI</customerid> <employeeid>1</employeeid> <orderdate>1998-03-16</orderdate> <requireddate>1998-04-27</requireddate> <shippeddate>1998-03-24</shippeddate> <shipvia>1</shipvia> <freight>40.4200</freight> <shipname>Alfred's Futterkiste</shipname> <shipaddress>Obere Str. 57</shipaddress> <shipcity>Berlin</shipcity> <shippostalcode>12209</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10952</orderid> <productid>6</productid> <unitprice>25.0000</unitprice> <quantity>16</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10952</orderid> <productid>28</productid> <unitprice>45.6000</unitprice> <quantity>2</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11011</orderid> <customerid>ALFKI</customerid> <employeeid>3</employeeid> <orderdate>1998-04-09</orderdate> <requireddate>1998-05-07</requireddate> <shippeddate>1998-04-13</shippeddate> <shipvia>1</shipvia> <freight>1.2100</freight> <shipname>Alfred's Futterkiste</shipname> <shipaddress>Obere Str. 57</shipaddress> <shipcity>Berlin</shipcity> <shippostalcode>12209</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>11011</orderid> <productid>58</productid> <unitprice>13.2500</unitprice> <quantity>40</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>11011</orderid> <productid>71</productid> <unitprice>21.5000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>ANATR</customerid> <companyname>Ana Trujillo Emparedados y helados</companyname> <contactname>Ana Trujillo</contactname> <contacttitle>Owner</contacttitle> <address>Avda. de la Constitución 2222</address> <city>México D.F.</city> <postalcode>05021</postalcode> <country>Mexico</country> <phone>(5) 555-4729</phone> <fax>(5) 555-3745</fax> <orders> <orderid>10308</orderid> <customerid>ANATR</customerid> <employeeid>7</employeeid> <orderdate>1996-09-18</orderdate> <requireddate>1996-10-16</requireddate> <shippeddate>1996-09-24</shippeddate> <shipvia>3</shipvia> <freight>1.6100</freight> <shipname>Ana Trujillo Emparedados y helados</shipname> <shipaddress>Avda. de la Constitución 2222</shipaddress> <shipcity>México D.F.</shipcity> <shippostalcode>05021</shippostalcode> <shipcountry>Mexico</shipcountry> <orderdetails> <orderid>10308</orderid> <productid>69</productid> <unitprice>28.8000</unitprice> <quantity>1</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10308</orderid> <productid>70</productid> <unitprice>12.0000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10625</orderid> <customerid>ANATR</customerid> <employeeid>3</employeeid> <orderdate>1997-08-08</orderdate> <requireddate>1997-09-05</requireddate> <shippeddate>1997-08-14</shippeddate> <shipvia>1</shipvia> <freight>43.9000</freight> <shipname>Ana Trujillo Emparedados y helados</shipname> <shipaddress>Avda. de la Constitución 2222</shipaddress> <shipcity>México D.F.</shipcity> <shippostalcode>05021</shippostalcode> <shipcountry>Mexico</shipcountry> <orderdetails> <orderid>10625</orderid> <productid>14</productid> <unitprice>23.2500</unitprice> <quantity>3</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10625</orderid> <productid>42</productid> <unitprice>14.0000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10625</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10759</orderid> <customerid>ANATR</customerid> <employeeid>3</employeeid> <orderdate>1997-11-28</orderdate> <requireddate>1997-12-26</requireddate> <shippeddate>1997-12-12</shippeddate> <shipvia>3</shipvia> <freight>11.9900</freight> <shipname>Ana Trujillo Emparedados y helados</shipname> <shipaddress>Avda. de la Constitución 2222</shipaddress> <shipcity>México D.F.</shipcity> <shippostalcode>05021</shippostalcode> <shipcountry>Mexico</shipcountry> <orderdetails> <orderid>10759</orderid> <productid>32</productid> <unitprice>32.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10926</orderid> <customerid>ANATR</customerid> <employeeid>4</employeeid> <orderdate>1998-03-04</orderdate> <requireddate>1998-04-01</requireddate> <shippeddate>1998-03-11</shippeddate> <shipvia>3</shipvia> <freight>39.9200</freight> <shipname>Ana Trujillo Emparedados y helados</shipname> <shipaddress>Avda. de la Constitución 2222</shipaddress> <shipcity>México D.F.</shipcity> <shippostalcode>05021</shippostalcode> <shipcountry>Mexico</shipcountry> <orderdetails> <orderid>10926</orderid> <productid>11</productid> <unitprice>21.0000</unitprice> <quantity>2</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10926</orderid> <productid>13</productid> <unitprice>6.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10926</orderid> <productid>19</productid> <unitprice>9.2000</unitprice> <quantity>7</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10926</orderid> <productid>72</productid> <unitprice>34.8000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>ANTON</customerid> <companyname>Antonio Moreno Taquería</companyname> <contactname>Antonio Moreno</contactname> <contacttitle>Owner</contacttitle> <address>Mataderos 2312</address> <city>México D.F.</city> <postalcode>05023</postalcode> <country>Mexico</country> <phone>(5) 555-3932</phone> <orders> <orderid>10365</orderid> <customerid>ANTON</customerid> <employeeid>3</employeeid> <orderdate>1996-11-27</orderdate> <requireddate>1996-12-25</requireddate> <shippeddate>1996-12-02</shippeddate> <shipvia>2</shipvia> <freight>22.0000</freight> <shipname>Antonio Moreno Taquería</shipname> <shipaddress>Mataderos 2312</shipaddress> <shipcity>México D.F.</shipcity> <shippostalcode>05023</shippostalcode> <shipcountry>Mexico</shipcountry> <orderdetails> <orderid>10365</orderid> <productid>11</productid> <unitprice>16.8000</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10507</orderid> <customerid>ANTON</customerid> <employeeid>7</employeeid> <orderdate>1997-04-15</orderdate> <requireddate>1997-05-13</requireddate> <shippeddate>1997-04-22</shippeddate> <shipvia>1</shipvia> <freight>47.4500</freight> <shipname>Antonio Moreno Taquería</shipname> <shipaddress>Mataderos 2312</shipaddress> <shipcity>México D.F.</shipcity> <shippostalcode>05023</shippostalcode> <shipcountry>Mexico</shipcountry> <orderdetails> <orderid>10507</orderid> <productid>43</productid> <unitprice>46.0000</unitprice> <quantity>15</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10507</orderid> <productid>48</productid> <unitprice>12.7500</unitprice> <quantity>15</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10535</orderid> <customerid>ANTON</customerid> <employeeid>4</employeeid> <orderdate>1997-05-13</orderdate> <requireddate>1997-06-10</requireddate> <shippeddate>1997-05-21</shippeddate> <shipvia>1</shipvia> <freight>15.6400</freight> <shipname>Antonio Moreno Taquería</shipname> <shipaddress>Mataderos 2312</shipaddress> <shipcity>México D.F.</shipcity> <shippostalcode>05023</shippostalcode> <shipcountry>Mexico</shipcountry> <orderdetails> <orderid>10535</orderid> <productid>11</productid> <unitprice>21.0000</unitprice> <quantity>50</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10535</orderid> <productid>40</productid> <unitprice>18.4000</unitprice> <quantity>10</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10535</orderid> <productid>57</productid> <unitprice>19.5000</unitprice> <quantity>5</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10535</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>15</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10573</orderid> <customerid>ANTON</customerid> <employeeid>7</employeeid> <orderdate>1997-06-19</orderdate> <requireddate>1997-07-17</requireddate> <shippeddate>1997-06-20</shippeddate> <shipvia>3</shipvia> <freight>84.8400</freight> <shipname>Antonio Moreno Taquería</shipname> <shipaddress>Mataderos 2312</shipaddress> <shipcity>México D.F.</shipcity> <shippostalcode>05023</shippostalcode> <shipcountry>Mexico</shipcountry> <orderdetails> <orderid>10573</orderid> <productid>17</productid> <unitprice>39.0000</unitprice> <quantity>18</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10573</orderid> <productid>34</productid> <unitprice>14.0000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10573</orderid> <productid>53</productid> <unitprice>32.8000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10677</orderid> <customerid>ANTON</customerid> <employeeid>1</employeeid> <orderdate>1997-09-22</orderdate> <requireddate>1997-10-20</requireddate> <shippeddate>1997-09-26</shippeddate> <shipvia>3</shipvia> <freight>4.0300</freight> <shipname>Antonio Moreno Taquería</shipname> <shipaddress>Mataderos 2312</shipaddress> <shipcity>México D.F.</shipcity> <shippostalcode>05023</shippostalcode> <shipcountry>Mexico</shipcountry> <orderdetails> <orderid>10677</orderid> <productid>26</productid> <unitprice>31.2300</unitprice> <quantity>30</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10677</orderid> <productid>33</productid> <unitprice>2.5000</unitprice> <quantity>8</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10682</orderid> <customerid>ANTON</customerid> <employeeid>3</employeeid> <orderdate>1997-09-25</orderdate> <requireddate>1997-10-23</requireddate> <shippeddate>1997-10-01</shippeddate> <shipvia>2</shipvia> <freight>36.1300</freight> <shipname>Antonio Moreno Taquería</shipname> <shipaddress>Mataderos 2312</shipaddress> <shipcity>México D.F.</shipcity> <shippostalcode>05023</shippostalcode> <shipcountry>Mexico</shipcountry> <orderdetails> <orderid>10682</orderid> <productid>33</productid> <unitprice>2.5000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10682</orderid> <productid>66</productid> <unitprice>17.0000</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10682</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10856</orderid> <customerid>ANTON</customerid> <employeeid>3</employeeid> <orderdate>1998-01-28</orderdate> <requireddate>1998-02-25</requireddate> <shippeddate>1998-02-10</shippeddate> <shipvia>2</shipvia> <freight>58.4300</freight> <shipname>Antonio Moreno Taquería</shipname> <shipaddress>Mataderos 2312</shipaddress> <shipcity>México D.F.</shipcity> <shippostalcode>05023</shippostalcode> <shipcountry>Mexico</shipcountry> <orderdetails> <orderid>10856</orderid> <productid>2</productid> <unitprice>19.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10856</orderid> <productid>42</productid> <unitprice>14.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>AROUT</customerid> <companyname>Around the Horn</companyname> <contactname>Thomas Hardy</contactname> <contacttitle>Sales Representative</contacttitle> <address>120 Hanover Sq.</address> <city>London</city> <postalcode>WA1 1DP</postalcode> <country>UK</country> <phone>(171) 555-7788</phone> <fax>(171) 555-6750</fax> <orders> <orderid>10355</orderid> <customerid>AROUT</customerid> <employeeid>6</employeeid> <orderdate>1996-11-15</orderdate> <requireddate>1996-12-13</requireddate> <shippeddate>1996-11-20</shippeddate> <shipvia>1</shipvia> <freight>41.9500</freight> <shipname>Around the Horn</shipname> <shipaddress>Brook Farm Stratford St. Mary</shipaddress> <shipcity>Colchester</shipcity> <shipregion>Essex</shipregion> <shippostalcode>CO7 6JX</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10355</orderid> <productid>24</productid> <unitprice>3.6000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10355</orderid> <productid>57</productid> <unitprice>15.6000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10383</orderid> <customerid>AROUT</customerid> <employeeid>8</employeeid> <orderdate>1996-12-16</orderdate> <requireddate>1997-01-13</requireddate> <shippeddate>1996-12-18</shippeddate> <shipvia>3</shipvia> <freight>34.2400</freight> <shipname>Around the Horn</shipname> <shipaddress>Brook Farm Stratford St. Mary</shipaddress> <shipcity>Colchester</shipcity> <shipregion>Essex</shipregion> <shippostalcode>CO7 6JX</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10383</orderid> <productid>13</productid> <unitprice>4.8000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10383</orderid> <productid>50</productid> <unitprice>13.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10383</orderid> <productid>56</productid> <unitprice>30.4000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10453</orderid> <customerid>AROUT</customerid> <employeeid>1</employeeid> <orderdate>1997-02-21</orderdate> <requireddate>1997-03-21</requireddate> <shippeddate>1997-02-26</shippeddate> <shipvia>2</shipvia> <freight>25.3600</freight> <shipname>Around the Horn</shipname> <shipaddress>Brook Farm Stratford St. Mary</shipaddress> <shipcity>Colchester</shipcity> <shipregion>Essex</shipregion> <shippostalcode>CO7 6JX</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10453</orderid> <productid>48</productid> <unitprice>10.2000</unitprice> <quantity>15</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10453</orderid> <productid>70</productid> <unitprice>12.0000</unitprice> <quantity>25</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10558</orderid> <customerid>AROUT</customerid> <employeeid>1</employeeid> <orderdate>1997-06-04</orderdate> <requireddate>1997-07-02</requireddate> <shippeddate>1997-06-10</shippeddate> <shipvia>2</shipvia> <freight>72.9700</freight> <shipname>Around the Horn</shipname> <shipaddress>Brook Farm Stratford St. Mary</shipaddress> <shipcity>Colchester</shipcity> <shipregion>Essex</shipregion> <shippostalcode>CO7 6JX</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10558</orderid> <productid>47</productid> <unitprice>9.5000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10558</orderid> <productid>51</productid> <unitprice>53.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10558</orderid> <productid>52</productid> <unitprice>7.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10558</orderid> <productid>53</productid> <unitprice>32.8000</unitprice> <quantity>18</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10558</orderid> <productid>73</productid> <unitprice>15.0000</unitprice> <quantity>3</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10707</orderid> <customerid>AROUT</customerid> <employeeid>4</employeeid> <orderdate>1997-10-16</orderdate> <requireddate>1997-10-30</requireddate> <shippeddate>1997-10-23</shippeddate> <shipvia>3</shipvia> <freight>21.7400</freight> <shipname>Around the Horn</shipname> <shipaddress>Brook Farm Stratford St. Mary</shipaddress> <shipcity>Colchester</shipcity> <shipregion>Essex</shipregion> <shippostalcode>CO7 6JX</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10707</orderid> <productid>55</productid> <unitprice>24.0000</unitprice> <quantity>21</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10707</orderid> <productid>57</productid> <unitprice>19.5000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10707</orderid> <productid>70</productid> <unitprice>15.0000</unitprice> <quantity>28</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10741</orderid> <customerid>AROUT</customerid> <employeeid>4</employeeid> <orderdate>1997-11-14</orderdate> <requireddate>1997-11-28</requireddate> <shippeddate>1997-11-18</shippeddate> <shipvia>3</shipvia> <freight>10.9600</freight> <shipname>Around the Horn</shipname> <shipaddress>Brook Farm Stratford St. Mary</shipaddress> <shipcity>Colchester</shipcity> <shipregion>Essex</shipregion> <shippostalcode>CO7 6JX</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10741</orderid> <productid>2</productid> <unitprice>19.0000</unitprice> <quantity>15</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10743</orderid> <customerid>AROUT</customerid> <employeeid>1</employeeid> <orderdate>1997-11-17</orderdate> <requireddate>1997-12-15</requireddate> <shippeddate>1997-11-21</shippeddate> <shipvia>2</shipvia> <freight>23.7200</freight> <shipname>Around the Horn</shipname> <shipaddress>Brook Farm Stratford St. Mary</shipaddress> <shipcity>Colchester</shipcity> <shipregion>Essex</shipregion> <shippostalcode>CO7 6JX</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10743</orderid> <productid>46</productid> <unitprice>12.0000</unitprice> <quantity>28</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10768</orderid> <customerid>AROUT</customerid> <employeeid>3</employeeid> <orderdate>1997-12-08</orderdate> <requireddate>1998-01-05</requireddate> <shippeddate>1997-12-15</shippeddate> <shipvia>2</shipvia> <freight>146.3200</freight> <shipname>Around the Horn</shipname> <shipaddress>Brook Farm Stratford St. Mary</shipaddress> <shipcity>Colchester</shipcity> <shipregion>Essex</shipregion> <shippostalcode>CO7 6JX</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10768</orderid> <productid>22</productid> <unitprice>21.0000</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10768</orderid> <productid>31</productid> <unitprice>12.5000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10768</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10768</orderid> <productid>71</productid> <unitprice>21.5000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10793</orderid> <customerid>AROUT</customerid> <employeeid>3</employeeid> <orderdate>1997-12-24</orderdate> <requireddate>1998-01-21</requireddate> <shippeddate>1998-01-08</shippeddate> <shipvia>3</shipvia> <freight>4.5200</freight> <shipname>Around the Horn</shipname> <shipaddress>Brook Farm Stratford St. Mary</shipaddress> <shipcity>Colchester</shipcity> <shipregion>Essex</shipregion> <shippostalcode>CO7 6JX</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10793</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>14</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10793</orderid> <productid>52</productid> <unitprice>7.0000</unitprice> <quantity>8</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10864</orderid> <customerid>AROUT</customerid> <employeeid>4</employeeid> <orderdate>1998-02-02</orderdate> <requireddate>1998-03-02</requireddate> <shippeddate>1998-02-09</shippeddate> <shipvia>2</shipvia> <freight>3.0400</freight> <shipname>Around the Horn</shipname> <shipaddress>Brook Farm Stratford St. Mary</shipaddress> <shipcity>Colchester</shipcity> <shipregion>Essex</shipregion> <shippostalcode>CO7 6JX</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10864</orderid> <productid>35</productid> <unitprice>18.0000</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10864</orderid> <productid>67</productid> <unitprice>14.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10920</orderid> <customerid>AROUT</customerid> <employeeid>4</employeeid> <orderdate>1998-03-03</orderdate> <requireddate>1998-03-31</requireddate> <shippeddate>1998-03-09</shippeddate> <shipvia>2</shipvia> <freight>29.6100</freight> <shipname>Around the Horn</shipname> <shipaddress>Brook Farm Stratford St. Mary</shipaddress> <shipcity>Colchester</shipcity> <shipregion>Essex</shipregion> <shippostalcode>CO7 6JX</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10920</orderid> <productid>50</productid> <unitprice>16.2500</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10953</orderid> <customerid>AROUT</customerid> <employeeid>9</employeeid> <orderdate>1998-03-16</orderdate> <requireddate>1998-03-30</requireddate> <shippeddate>1998-03-25</shippeddate> <shipvia>2</shipvia> <freight>23.7200</freight> <shipname>Around the Horn</shipname> <shipaddress>Brook Farm Stratford St. Mary</shipaddress> <shipcity>Colchester</shipcity> <shipregion>Essex</shipregion> <shippostalcode>CO7 6JX</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10953</orderid> <productid>20</productid> <unitprice>81.0000</unitprice> <quantity>50</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10953</orderid> <productid>31</productid> <unitprice>12.5000</unitprice> <quantity>50</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>11016</orderid> <customerid>AROUT</customerid> <employeeid>9</employeeid> <orderdate>1998-04-10</orderdate> <requireddate>1998-05-08</requireddate> <shippeddate>1998-04-13</shippeddate> <shipvia>2</shipvia> <freight>33.8000</freight> <shipname>Around the Horn</shipname> <shipaddress>Brook Farm Stratford St. Mary</shipaddress> <shipcity>Colchester</shipcity> <shipregion>Essex</shipregion> <shippostalcode>CO7 6JX</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>11016</orderid> <productid>31</productid> <unitprice>12.5000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11016</orderid> <productid>36</productid> <unitprice>19.0000</unitprice> <quantity>16</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>BERGS</customerid> <companyname>Berglunds snabbköp</companyname> <contactname>Christina Berglund</contactname> <contacttitle>Order Administrator</contacttitle> <address>Berguvsvägen 8</address> <city>Luleå</city> <postalcode>S-958 22</postalcode> <country>Sweden</country> <phone>0921-12 34 65</phone> <fax>0921-12 34 67</fax> <orders> <orderid>10278</orderid> <customerid>BERGS</customerid> <employeeid>8</employeeid> <orderdate>1996-08-12</orderdate> <requireddate>1996-09-09</requireddate> <shippeddate>1996-08-16</shippeddate> <shipvia>2</shipvia> <freight>92.6900</freight> <shipname>Berglunds snabbköp</shipname> <shipaddress>Berguvsvägen 8</shipaddress> <shipcity>Luleå</shipcity> <shippostalcode>S-958 22</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10278</orderid> <productid>44</productid> <unitprice>15.5000</unitprice> <quantity>16</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10278</orderid> <productid>59</productid> <unitprice>44.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10278</orderid> <productid>63</productid> <unitprice>35.1000</unitprice> <quantity>8</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10278</orderid> <productid>73</productid> <unitprice>12.0000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10280</orderid> <customerid>BERGS</customerid> <employeeid>2</employeeid> <orderdate>1996-08-14</orderdate> <requireddate>1996-09-11</requireddate> <shippeddate>1996-09-12</shippeddate> <shipvia>1</shipvia> <freight>8.9800</freight> <shipname>Berglunds snabbköp</shipname> <shipaddress>Berguvsvägen 8</shipaddress> <shipcity>Luleå</shipcity> <shippostalcode>S-958 22</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10280</orderid> <productid>24</productid> <unitprice>3.6000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10280</orderid> <productid>55</productid> <unitprice>19.2000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10280</orderid> <productid>75</productid> <unitprice>6.2000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10384</orderid> <customerid>BERGS</customerid> <employeeid>3</employeeid> <orderdate>1996-12-16</orderdate> <requireddate>1997-01-13</requireddate> <shippeddate>1996-12-20</shippeddate> <shipvia>3</shipvia> <freight>168.6400</freight> <shipname>Berglunds snabbköp</shipname> <shipaddress>Berguvsvägen 8</shipaddress> <shipcity>Luleå</shipcity> <shippostalcode>S-958 22</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10384</orderid> <productid>20</productid> <unitprice>64.8000</unitprice> <quantity>28</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10384</orderid> <productid>60</productid> <unitprice>27.2000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10444</orderid> <customerid>BERGS</customerid> <employeeid>3</employeeid> <orderdate>1997-02-12</orderdate> <requireddate>1997-03-12</requireddate> <shippeddate>1997-02-21</shippeddate> <shipvia>3</shipvia> <freight>3.5000</freight> <shipname>Berglunds snabbköp</shipname> <shipaddress>Berguvsvägen 8</shipaddress> <shipcity>Luleå</shipcity> <shippostalcode>S-958 22</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10444</orderid> <productid>17</productid> <unitprice>31.2000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10444</orderid> <productid>26</productid> <unitprice>24.9000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10444</orderid> <productid>35</productid> <unitprice>14.4000</unitprice> <quantity>8</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10444</orderid> <productid>41</productid> <unitprice>7.7000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10445</orderid> <customerid>BERGS</customerid> <employeeid>3</employeeid> <orderdate>1997-02-13</orderdate> <requireddate>1997-03-13</requireddate> <shippeddate>1997-02-20</shippeddate> <shipvia>1</shipvia> <freight>9.3000</freight> <shipname>Berglunds snabbköp</shipname> <shipaddress>Berguvsvägen 8</shipaddress> <shipcity>Luleå</shipcity> <shippostalcode>S-958 22</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10445</orderid> <productid>39</productid> <unitprice>14.4000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10445</orderid> <productid>54</productid> <unitprice>5.9000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10524</orderid> <customerid>BERGS</customerid> <employeeid>1</employeeid> <orderdate>1997-05-01</orderdate> <requireddate>1997-05-29</requireddate> <shippeddate>1997-05-07</shippeddate> <shipvia>2</shipvia> <freight>244.7900</freight> <shipname>Berglunds snabbköp</shipname> <shipaddress>Berguvsvägen 8</shipaddress> <shipcity>Luleå</shipcity> <shippostalcode>S-958 22</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10524</orderid> <productid>10</productid> <unitprice>31.0000</unitprice> <quantity>2</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10524</orderid> <productid>30</productid> <unitprice>25.8900</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10524</orderid> <productid>43</productid> <unitprice>46.0000</unitprice> <quantity>60</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10524</orderid> <productid>54</productid> <unitprice>7.4500</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10572</orderid> <customerid>BERGS</customerid> <employeeid>3</employeeid> <orderdate>1997-06-18</orderdate> <requireddate>1997-07-16</requireddate> <shippeddate>1997-06-25</shippeddate> <shipvia>2</shipvia> <freight>116.4300</freight> <shipname>Berglunds snabbköp</shipname> <shipaddress>Berguvsvägen 8</shipaddress> <shipcity>Luleå</shipcity> <shippostalcode>S-958 22</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10572</orderid> <productid>16</productid> <unitprice>17.4500</unitprice> <quantity>12</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10572</orderid> <productid>32</productid> <unitprice>32.0000</unitprice> <quantity>10</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10572</orderid> <productid>40</productid> <unitprice>18.4000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10572</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>15</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10626</orderid> <customerid>BERGS</customerid> <employeeid>1</employeeid> <orderdate>1997-08-11</orderdate> <requireddate>1997-09-08</requireddate> <shippeddate>1997-08-20</shippeddate> <shipvia>2</shipvia> <freight>138.6900</freight> <shipname>Berglunds snabbköp</shipname> <shipaddress>Berguvsvägen 8</shipaddress> <shipcity>Luleå</shipcity> <shippostalcode>S-958 22</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10626</orderid> <productid>53</productid> <unitprice>32.8000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10626</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10626</orderid> <productid>71</productid> <unitprice>21.5000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10654</orderid> <customerid>BERGS</customerid> <employeeid>5</employeeid> <orderdate>1997-09-02</orderdate> <requireddate>1997-09-30</requireddate> <shippeddate>1997-09-11</shippeddate> <shipvia>1</shipvia> <freight>55.2600</freight> <shipname>Berglunds snabbköp</shipname> <shipaddress>Berguvsvägen 8</shipaddress> <shipcity>Luleå</shipcity> <shippostalcode>S-958 22</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10654</orderid> <productid>4</productid> <unitprice>22.0000</unitprice> <quantity>12</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10654</orderid> <productid>39</productid> <unitprice>18.0000</unitprice> <quantity>20</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10654</orderid> <productid>54</productid> <unitprice>7.4500</unitprice> <quantity>6</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10672</orderid> <customerid>BERGS</customerid> <employeeid>9</employeeid> <orderdate>1997-09-17</orderdate> <requireddate>1997-10-01</requireddate> <shippeddate>1997-09-26</shippeddate> <shipvia>2</shipvia> <freight>95.7500</freight> <shipname>Berglunds snabbköp</shipname> <shipaddress>Berguvsvägen 8</shipaddress> <shipcity>Luleå</shipcity> <shippostalcode>S-958 22</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10672</orderid> <productid>38</productid> <unitprice>263.5000</unitprice> <quantity>15</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10672</orderid> <productid>71</productid> <unitprice>21.5000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10689</orderid> <customerid>BERGS</customerid> <employeeid>1</employeeid> <orderdate>1997-10-01</orderdate> <requireddate>1997-10-29</requireddate> <shippeddate>1997-10-07</shippeddate> <shipvia>2</shipvia> <freight>13.4200</freight> <shipname>Berglunds snabbköp</shipname> <shipaddress>Berguvsvägen 8</shipaddress> <shipcity>Luleå</shipcity> <shippostalcode>S-958 22</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10689</orderid> <productid>1</productid> <unitprice>18.0000</unitprice> <quantity>35</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10733</orderid> <customerid>BERGS</customerid> <employeeid>1</employeeid> <orderdate>1997-11-07</orderdate> <requireddate>1997-12-05</requireddate> <shippeddate>1997-11-10</shippeddate> <shipvia>3</shipvia> <freight>110.1100</freight> <shipname>Berglunds snabbköp</shipname> <shipaddress>Berguvsvägen 8</shipaddress> <shipcity>Luleå</shipcity> <shippostalcode>S-958 22</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10733</orderid> <productid>14</productid> <unitprice>23.2500</unitprice> <quantity>16</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10733</orderid> <productid>28</productid> <unitprice>45.6000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10733</orderid> <productid>52</productid> <unitprice>7.0000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10778</orderid> <customerid>BERGS</customerid> <employeeid>3</employeeid> <orderdate>1997-12-16</orderdate> <requireddate>1998-01-13</requireddate> <shippeddate>1997-12-24</shippeddate> <shipvia>1</shipvia> <freight>6.7900</freight> <shipname>Berglunds snabbköp</shipname> <shipaddress>Berguvsvägen 8</shipaddress> <shipcity>Luleå</shipcity> <shippostalcode>S-958 22</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10778</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10837</orderid> <customerid>BERGS</customerid> <employeeid>9</employeeid> <orderdate>1998-01-16</orderdate> <requireddate>1998-02-13</requireddate> <shippeddate>1998-01-23</shippeddate> <shipvia>3</shipvia> <freight>13.3200</freight> <shipname>Berglunds snabbköp</shipname> <shipaddress>Berguvsvägen 8</shipaddress> <shipcity>Luleå</shipcity> <shippostalcode>S-958 22</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10837</orderid> <productid>13</productid> <unitprice>6.0000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10837</orderid> <productid>40</productid> <unitprice>18.4000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10837</orderid> <productid>47</productid> <unitprice>9.5000</unitprice> <quantity>40</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10837</orderid> <productid>76</productid> <unitprice>18.0000</unitprice> <quantity>21</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10857</orderid> <customerid>BERGS</customerid> <employeeid>8</employeeid> <orderdate>1998-01-28</orderdate> <requireddate>1998-02-25</requireddate> <shippeddate>1998-02-06</shippeddate> <shipvia>2</shipvia> <freight>188.8500</freight> <shipname>Berglunds snabbköp</shipname> <shipaddress>Berguvsvägen 8</shipaddress> <shipcity>Luleå</shipcity> <shippostalcode>S-958 22</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10857</orderid> <productid>3</productid> <unitprice>10.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10857</orderid> <productid>26</productid> <unitprice>31.2300</unitprice> <quantity>35</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10857</orderid> <productid>29</productid> <unitprice>123.7900</unitprice> <quantity>10</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10866</orderid> <customerid>BERGS</customerid> <employeeid>5</employeeid> <orderdate>1998-02-03</orderdate> <requireddate>1998-03-03</requireddate> <shippeddate>1998-02-12</shippeddate> <shipvia>1</shipvia> <freight>109.1100</freight> <shipname>Berglunds snabbköp</shipname> <shipaddress>Berguvsvägen 8</shipaddress> <shipcity>Luleå</shipcity> <shippostalcode>S-958 22</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10866</orderid> <productid>2</productid> <unitprice>19.0000</unitprice> <quantity>21</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10866</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>6</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10866</orderid> <productid>30</productid> <unitprice>25.8900</unitprice> <quantity>40</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10875</orderid> <customerid>BERGS</customerid> <employeeid>4</employeeid> <orderdate>1998-02-06</orderdate> <requireddate>1998-03-06</requireddate> <shippeddate>1998-03-03</shippeddate> <shipvia>2</shipvia> <freight>32.3700</freight> <shipname>Berglunds snabbköp</shipname> <shipaddress>Berguvsvägen 8</shipaddress> <shipcity>Luleå</shipcity> <shippostalcode>S-958 22</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10875</orderid> <productid>19</productid> <unitprice>9.2000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10875</orderid> <productid>47</productid> <unitprice>9.5000</unitprice> <quantity>21</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10875</orderid> <productid>49</productid> <unitprice>20.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10924</orderid> <customerid>BERGS</customerid> <employeeid>3</employeeid> <orderdate>1998-03-04</orderdate> <requireddate>1998-04-01</requireddate> <shippeddate>1998-04-08</shippeddate> <shipvia>2</shipvia> <freight>151.5200</freight> <shipname>Berglunds snabbköp</shipname> <shipaddress>Berguvsvägen 8</shipaddress> <shipcity>Luleå</shipcity> <shippostalcode>S-958 22</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10924</orderid> <productid>10</productid> <unitprice>31.0000</unitprice> <quantity>20</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10924</orderid> <productid>28</productid> <unitprice>45.6000</unitprice> <quantity>30</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10924</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>BLAUS</customerid> <companyname>Blauer See Delikatessen</companyname> <contactname>Hanna Moos</contactname> <contacttitle>Sales Representative</contacttitle> <address>Forsterstr. 57</address> <city>Mannheim</city> <postalcode>68306</postalcode> <country>Germany</country> <phone>0621-08460</phone> <fax>0621-08924</fax> <orders> <orderid>10501</orderid> <customerid>BLAUS</customerid> <employeeid>9</employeeid> <orderdate>1997-04-09</orderdate> <requireddate>1997-05-07</requireddate> <shippeddate>1997-04-16</shippeddate> <shipvia>3</shipvia> <freight>8.8500</freight> <shipname>Blauer See Delikatessen</shipname> <shipaddress>Forsterstr. 57</shipaddress> <shipcity>Mannheim</shipcity> <shippostalcode>68306</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10501</orderid> <productid>54</productid> <unitprice>7.4500</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10509</orderid> <customerid>BLAUS</customerid> <employeeid>4</employeeid> <orderdate>1997-04-17</orderdate> <requireddate>1997-05-15</requireddate> <shippeddate>1997-04-29</shippeddate> <shipvia>1</shipvia> <freight>0.1500</freight> <shipname>Blauer See Delikatessen</shipname> <shipaddress>Forsterstr. 57</shipaddress> <shipcity>Mannheim</shipcity> <shippostalcode>68306</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10509</orderid> <productid>28</productid> <unitprice>45.6000</unitprice> <quantity>3</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10582</orderid> <customerid>BLAUS</customerid> <employeeid>3</employeeid> <orderdate>1997-06-27</orderdate> <requireddate>1997-07-25</requireddate> <shippeddate>1997-07-14</shippeddate> <shipvia>2</shipvia> <freight>27.7100</freight> <shipname>Blauer See Delikatessen</shipname> <shipaddress>Forsterstr. 57</shipaddress> <shipcity>Mannheim</shipcity> <shippostalcode>68306</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10582</orderid> <productid>57</productid> <unitprice>19.5000</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10582</orderid> <productid>76</productid> <unitprice>18.0000</unitprice> <quantity>14</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10614</orderid> <customerid>BLAUS</customerid> <employeeid>8</employeeid> <orderdate>1997-07-29</orderdate> <requireddate>1997-08-26</requireddate> <shippeddate>1997-08-01</shippeddate> <shipvia>3</shipvia> <freight>1.9300</freight> <shipname>Blauer See Delikatessen</shipname> <shipaddress>Forsterstr. 57</shipaddress> <shipcity>Mannheim</shipcity> <shippostalcode>68306</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10614</orderid> <productid>11</productid> <unitprice>21.0000</unitprice> <quantity>14</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10614</orderid> <productid>21</productid> <unitprice>10.0000</unitprice> <quantity>8</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10614</orderid> <productid>39</productid> <unitprice>18.0000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10853</orderid> <customerid>BLAUS</customerid> <employeeid>9</employeeid> <orderdate>1998-01-27</orderdate> <requireddate>1998-02-24</requireddate> <shippeddate>1998-02-03</shippeddate> <shipvia>2</shipvia> <freight>53.8300</freight> <shipname>Blauer See Delikatessen</shipname> <shipaddress>Forsterstr. 57</shipaddress> <shipcity>Mannheim</shipcity> <shippostalcode>68306</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10853</orderid> <productid>18</productid> <unitprice>62.5000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10956</orderid> <customerid>BLAUS</customerid> <employeeid>6</employeeid> <orderdate>1998-03-17</orderdate> <requireddate>1998-04-28</requireddate> <shippeddate>1998-03-20</shippeddate> <shipvia>2</shipvia> <freight>44.6500</freight> <shipname>Blauer See Delikatessen</shipname> <shipaddress>Forsterstr. 57</shipaddress> <shipcity>Mannheim</shipcity> <shippostalcode>68306</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10956</orderid> <productid>21</productid> <unitprice>10.0000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10956</orderid> <productid>47</productid> <unitprice>9.5000</unitprice> <quantity>14</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10956</orderid> <productid>51</productid> <unitprice>53.0000</unitprice> <quantity>8</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11058</orderid> <customerid>BLAUS</customerid> <employeeid>9</employeeid> <orderdate>1998-04-29</orderdate> <requireddate>1998-05-27</requireddate> <shipvia>3</shipvia> <freight>31.1400</freight> <shipname>Blauer See Delikatessen</shipname> <shipaddress>Forsterstr. 57</shipaddress> <shipcity>Mannheim</shipcity> <shippostalcode>68306</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>11058</orderid> <productid>21</productid> <unitprice>10.0000</unitprice> <quantity>3</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11058</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>21</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11058</orderid> <productid>61</productid> <unitprice>28.5000</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>BLONP</customerid> <companyname>Blondesddsl père et fils</companyname> <contactname>Frédérique Citeaux</contactname> <contacttitle>Marketing Manager</contacttitle> <address>24, place Kléber</address> <city>Strasbourg</city> <postalcode>67000</postalcode> <country>France</country> <phone>88.60.15.31</phone> <fax>88.60.15.32</fax> <orders> <orderid>10265</orderid> <customerid>BLONP</customerid> <employeeid>2</employeeid> <orderdate>1996-07-25</orderdate> <requireddate>1996-08-22</requireddate> <shippeddate>1996-08-12</shippeddate> <shipvia>1</shipvia> <freight>55.2800</freight> <shipname>Blondel père et fils</shipname> <shipaddress>24, place Kléber</shipaddress> <shipcity>Strasbourg</shipcity> <shippostalcode>67000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10265</orderid> <productid>17</productid> <unitprice>31.2000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10265</orderid> <productid>70</productid> <unitprice>12.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10297</orderid> <customerid>BLONP</customerid> <employeeid>5</employeeid> <orderdate>1996-09-04</orderdate> <requireddate>1996-10-16</requireddate> <shippeddate>1996-09-10</shippeddate> <shipvia>2</shipvia> <freight>5.7400</freight> <shipname>Blondel père et fils</shipname> <shipaddress>24, place Kléber</shipaddress> <shipcity>Strasbourg</shipcity> <shippostalcode>67000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10297</orderid> <productid>39</productid> <unitprice>14.4000</unitprice> <quantity>60</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10297</orderid> <productid>72</productid> <unitprice>27.8000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10360</orderid> <customerid>BLONP</customerid> <employeeid>4</employeeid> <orderdate>1996-11-22</orderdate> <requireddate>1996-12-20</requireddate> <shippeddate>1996-12-02</shippeddate> <shipvia>3</shipvia> <freight>131.7000</freight> <shipname>Blondel père et fils</shipname> <shipaddress>24, place Kléber</shipaddress> <shipcity>Strasbourg</shipcity> <shippostalcode>67000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10360</orderid> <productid>28</productid> <unitprice>36.4000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10360</orderid> <productid>29</productid> <unitprice>99.0000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10360</orderid> <productid>38</productid> <unitprice>210.8000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10360</orderid> <productid>49</productid> <unitprice>16.0000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10360</orderid> <productid>54</productid> <unitprice>5.9000</unitprice> <quantity>28</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10436</orderid> <customerid>BLONP</customerid> <employeeid>3</employeeid> <orderdate>1997-02-05</orderdate> <requireddate>1997-03-05</requireddate> <shippeddate>1997-02-11</shippeddate> <shipvia>2</shipvia> <freight>156.6600</freight> <shipname>Blondel père et fils</shipname> <shipaddress>24, place Kléber</shipaddress> <shipcity>Strasbourg</shipcity> <shippostalcode>67000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10436</orderid> <productid>46</productid> <unitprice>9.6000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10436</orderid> <productid>56</productid> <unitprice>30.4000</unitprice> <quantity>40</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10436</orderid> <productid>64</productid> <unitprice>26.6000</unitprice> <quantity>30</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10436</orderid> <productid>75</productid> <unitprice>6.2000</unitprice> <quantity>24</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10449</orderid> <customerid>BLONP</customerid> <employeeid>3</employeeid> <orderdate>1997-02-18</orderdate> <requireddate>1997-03-18</requireddate> <shippeddate>1997-02-27</shippeddate> <shipvia>2</shipvia> <freight>53.3000</freight> <shipname>Blondel père et fils</shipname> <shipaddress>24, place Kléber</shipaddress> <shipcity>Strasbourg</shipcity> <shippostalcode>67000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10449</orderid> <productid>10</productid> <unitprice>24.8000</unitprice> <quantity>14</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10449</orderid> <productid>52</productid> <unitprice>5.6000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10449</orderid> <productid>62</productid> <unitprice>39.4000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10559</orderid> <customerid>BLONP</customerid> <employeeid>6</employeeid> <orderdate>1997-06-05</orderdate> <requireddate>1997-07-03</requireddate> <shippeddate>1997-06-13</shippeddate> <shipvia>1</shipvia> <freight>8.0500</freight> <shipname>Blondel père et fils</shipname> <shipaddress>24, place Kléber</shipaddress> <shipcity>Strasbourg</shipcity> <shippostalcode>67000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10559</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>12</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10559</orderid> <productid>55</productid> <unitprice>24.0000</unitprice> <quantity>18</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10566</orderid> <customerid>BLONP</customerid> <employeeid>9</employeeid> <orderdate>1997-06-12</orderdate> <requireddate>1997-07-10</requireddate> <shippeddate>1997-06-18</shippeddate> <shipvia>1</shipvia> <freight>88.4000</freight> <shipname>Blondel père et fils</shipname> <shipaddress>24, place Kléber</shipaddress> <shipcity>Strasbourg</shipcity> <shippostalcode>67000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10566</orderid> <productid>11</productid> <unitprice>21.0000</unitprice> <quantity>35</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10566</orderid> <productid>18</productid> <unitprice>62.5000</unitprice> <quantity>18</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10566</orderid> <productid>76</productid> <unitprice>18.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10584</orderid> <customerid>BLONP</customerid> <employeeid>4</employeeid> <orderdate>1997-06-30</orderdate> <requireddate>1997-07-28</requireddate> <shippeddate>1997-07-04</shippeddate> <shipvia>1</shipvia> <freight>59.1400</freight> <shipname>Blondel père et fils</shipname> <shipaddress>24, place Kléber</shipaddress> <shipcity>Strasbourg</shipcity> <shippostalcode>67000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10584</orderid> <productid>31</productid> <unitprice>12.5000</unitprice> <quantity>50</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10628</orderid> <customerid>BLONP</customerid> <employeeid>4</employeeid> <orderdate>1997-08-12</orderdate> <requireddate>1997-09-09</requireddate> <shippeddate>1997-08-20</shippeddate> <shipvia>3</shipvia> <freight>30.3600</freight> <shipname>Blondel père et fils</shipname> <shipaddress>24, place Kléber</shipaddress> <shipcity>Strasbourg</shipcity> <shippostalcode>67000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10628</orderid> <productid>1</productid> <unitprice>18.0000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10679</orderid> <customerid>BLONP</customerid> <employeeid>8</employeeid> <orderdate>1997-09-23</orderdate> <requireddate>1997-10-21</requireddate> <shippeddate>1997-09-30</shippeddate> <shipvia>3</shipvia> <freight>27.9400</freight> <shipname>Blondel père et fils</shipname> <shipaddress>24, place Kléber</shipaddress> <shipcity>Strasbourg</shipcity> <shippostalcode>67000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10679</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10826</orderid> <customerid>BLONP</customerid> <employeeid>6</employeeid> <orderdate>1998-01-12</orderdate> <requireddate>1998-02-09</requireddate> <shippeddate>1998-02-06</shippeddate> <shipvia>1</shipvia> <freight>7.0900</freight> <shipname>Blondel père et fils</shipname> <shipaddress>24, place Kléber</shipaddress> <shipcity>Strasbourg</shipcity> <shippostalcode>67000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10826</orderid> <productid>31</productid> <unitprice>12.5000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10826</orderid> <productid>57</productid> <unitprice>19.5000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>BOLID</customerid> <companyname>Bólido Comidas preparadas</companyname> <contactname>Martín Sommer</contactname> <contacttitle>Owner</contacttitle> <address>C/ Araquil, 67</address> <city>Madrid</city> <postalcode>28023</postalcode> <country>Spain</country> <phone>(91) 555 22 82</phone> <fax>(91) 555 91 99</fax> <orders> <orderid>10326</orderid> <customerid>BOLID</customerid> <employeeid>4</employeeid> <orderdate>1996-10-10</orderdate> <requireddate>1996-11-07</requireddate> <shippeddate>1996-10-14</shippeddate> <shipvia>2</shipvia> <freight>77.9200</freight> <shipname>Bólido Comidas preparadas</shipname> <shipaddress>C/ Araquil, 67</shipaddress> <shipcity>Madrid</shipcity> <shippostalcode>28023</shippostalcode> <shipcountry>Spain</shipcountry> <orderdetails> <orderid>10326</orderid> <productid>4</productid> <unitprice>17.6000</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10326</orderid> <productid>57</productid> <unitprice>15.6000</unitprice> <quantity>16</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10326</orderid> <productid>75</productid> <unitprice>6.2000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10801</orderid> <customerid>BOLID</customerid> <employeeid>4</employeeid> <orderdate>1997-12-29</orderdate> <requireddate>1998-01-26</requireddate> <shippeddate>1997-12-31</shippeddate> <shipvia>2</shipvia> <freight>97.0900</freight> <shipname>Bólido Comidas preparadas</shipname> <shipaddress>C/ Araquil, 67</shipaddress> <shipcity>Madrid</shipcity> <shippostalcode>28023</shippostalcode> <shipcountry>Spain</shipcountry> <orderdetails> <orderid>10801</orderid> <productid>17</productid> <unitprice>39.0000</unitprice> <quantity>40</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10801</orderid> <productid>29</productid> <unitprice>123.7900</unitprice> <quantity>20</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10970</orderid> <customerid>BOLID</customerid> <employeeid>9</employeeid> <orderdate>1998-03-24</orderdate> <requireddate>1998-04-07</requireddate> <shippeddate>1998-04-24</shippeddate> <shipvia>1</shipvia> <freight>16.1600</freight> <shipname>Bólido Comidas preparadas</shipname> <shipaddress>C/ Araquil, 67</shipaddress> <shipcity>Madrid</shipcity> <shippostalcode>28023</shippostalcode> <shipcountry>Spain</shipcountry> <orderdetails> <orderid>10970</orderid> <productid>52</productid> <unitprice>7.0000</unitprice> <quantity>40</quantity> <discount>0.20000</discount> </orderdetails> </orders> </customers> <customers> <customerid>BONAP</customerid> <companyname>Bon app'</companyname> <contactname>Laurence Lebihan</contactname> <contacttitle>Owner</contacttitle> <address>12, rue des Bouchers</address> <city>Marseille</city> <postalcode>13008</postalcode> <country>France</country> <phone>91.24.45.40</phone> <fax>91.24.45.41</fax> <orders> <orderid>10331</orderid> <customerid>BONAP</customerid> <employeeid>9</employeeid> <orderdate>1996-10-16</orderdate> <requireddate>1996-11-27</requireddate> <shippeddate>1996-10-21</shippeddate> <shipvia>1</shipvia> <freight>10.1900</freight> <shipname>Bon app'</shipname> <shipaddress>12, rue des Bouchers</shipaddress> <shipcity>Marseille</shipcity> <shippostalcode>13008</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10331</orderid> <productid>54</productid> <unitprice>5.9000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10340</orderid> <customerid>BONAP</customerid> <employeeid>1</employeeid> <orderdate>1996-10-29</orderdate> <requireddate>1996-11-26</requireddate> <shippeddate>1996-11-08</shippeddate> <shipvia>3</shipvia> <freight>166.3100</freight> <shipname>Bon app'</shipname> <shipaddress>12, rue des Bouchers</shipaddress> <shipcity>Marseille</shipcity> <shippostalcode>13008</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10340</orderid> <productid>18</productid> <unitprice>50.0000</unitprice> <quantity>20</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10340</orderid> <productid>41</productid> <unitprice>7.7000</unitprice> <quantity>12</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10340</orderid> <productid>43</productid> <unitprice>36.8000</unitprice> <quantity>40</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10362</orderid> <customerid>BONAP</customerid> <employeeid>3</employeeid> <orderdate>1996-11-25</orderdate> <requireddate>1996-12-23</requireddate> <shippeddate>1996-11-28</shippeddate> <shipvia>1</shipvia> <freight>96.0400</freight> <shipname>Bon app'</shipname> <shipaddress>12, rue des Bouchers</shipaddress> <shipcity>Marseille</shipcity> <shippostalcode>13008</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10362</orderid> <productid>25</productid> <unitprice>11.2000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10362</orderid> <productid>51</productid> <unitprice>42.4000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10362</orderid> <productid>54</productid> <unitprice>5.9000</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10470</orderid> <customerid>BONAP</customerid> <employeeid>4</employeeid> <orderdate>1997-03-11</orderdate> <requireddate>1997-04-08</requireddate> <shippeddate>1997-03-14</shippeddate> <shipvia>2</shipvia> <freight>64.5600</freight> <shipname>Bon app'</shipname> <shipaddress>12, rue des Bouchers</shipaddress> <shipcity>Marseille</shipcity> <shippostalcode>13008</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10470</orderid> <productid>18</productid> <unitprice>50.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10470</orderid> <productid>23</productid> <unitprice>7.2000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10470</orderid> <productid>64</productid> <unitprice>26.6000</unitprice> <quantity>8</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10511</orderid> <customerid>BONAP</customerid> <employeeid>4</employeeid> <orderdate>1997-04-18</orderdate> <requireddate>1997-05-16</requireddate> <shippeddate>1997-04-21</shippeddate> <shipvia>3</shipvia> <freight>350.6400</freight> <shipname>Bon app'</shipname> <shipaddress>12, rue des Bouchers</shipaddress> <shipcity>Marseille</shipcity> <shippostalcode>13008</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10511</orderid> <productid>4</productid> <unitprice>22.0000</unitprice> <quantity>50</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10511</orderid> <productid>7</productid> <unitprice>30.0000</unitprice> <quantity>50</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10511</orderid> <productid>8</productid> <unitprice>40.0000</unitprice> <quantity>10</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10525</orderid> <customerid>BONAP</customerid> <employeeid>1</employeeid> <orderdate>1997-05-02</orderdate> <requireddate>1997-05-30</requireddate> <shippeddate>1997-05-23</shippeddate> <shipvia>2</shipvia> <freight>11.0600</freight> <shipname>Bon app'</shipname> <shipaddress>12, rue des Bouchers</shipaddress> <shipcity>Marseille</shipcity> <shippostalcode>13008</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10525</orderid> <productid>36</productid> <unitprice>19.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10525</orderid> <productid>40</productid> <unitprice>18.4000</unitprice> <quantity>15</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10663</orderid> <customerid>BONAP</customerid> <employeeid>2</employeeid> <orderdate>1997-09-10</orderdate> <requireddate>1997-09-24</requireddate> <shippeddate>1997-10-03</shippeddate> <shipvia>2</shipvia> <freight>113.1500</freight> <shipname>Bon app'</shipname> <shipaddress>12, rue des Bouchers</shipaddress> <shipcity>Marseille</shipcity> <shippostalcode>13008</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10663</orderid> <productid>40</productid> <unitprice>18.4000</unitprice> <quantity>30</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10663</orderid> <productid>42</productid> <unitprice>14.0000</unitprice> <quantity>30</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10663</orderid> <productid>51</productid> <unitprice>53.0000</unitprice> <quantity>20</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10715</orderid> <customerid>BONAP</customerid> <employeeid>3</employeeid> <orderdate>1997-10-23</orderdate> <requireddate>1997-11-06</requireddate> <shippeddate>1997-10-29</shippeddate> <shipvia>1</shipvia> <freight>63.2000</freight> <shipname>Bon app'</shipname> <shipaddress>12, rue des Bouchers</shipaddress> <shipcity>Marseille</shipcity> <shippostalcode>13008</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10715</orderid> <productid>10</productid> <unitprice>31.0000</unitprice> <quantity>21</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10715</orderid> <productid>71</productid> <unitprice>21.5000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10730</orderid> <customerid>BONAP</customerid> <employeeid>5</employeeid> <orderdate>1997-11-05</orderdate> <requireddate>1997-12-03</requireddate> <shippeddate>1997-11-14</shippeddate> <shipvia>1</shipvia> <freight>20.1200</freight> <shipname>Bon app'</shipname> <shipaddress>12, rue des Bouchers</shipaddress> <shipcity>Marseille</shipcity> <shippostalcode>13008</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10730</orderid> <productid>16</productid> <unitprice>17.4500</unitprice> <quantity>15</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10730</orderid> <productid>31</productid> <unitprice>12.5000</unitprice> <quantity>3</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10730</orderid> <productid>65</productid> <unitprice>21.0500</unitprice> <quantity>10</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10732</orderid> <customerid>BONAP</customerid> <employeeid>3</employeeid> <orderdate>1997-11-06</orderdate> <requireddate>1997-12-04</requireddate> <shippeddate>1997-11-07</shippeddate> <shipvia>1</shipvia> <freight>16.9700</freight> <shipname>Bon app'</shipname> <shipaddress>12, rue des Bouchers</shipaddress> <shipcity>Marseille</shipcity> <shippostalcode>13008</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10732</orderid> <productid>76</productid> <unitprice>18.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10755</orderid> <customerid>BONAP</customerid> <employeeid>4</employeeid> <orderdate>1997-11-26</orderdate> <requireddate>1997-12-24</requireddate> <shippeddate>1997-11-28</shippeddate> <shipvia>2</shipvia> <freight>16.7100</freight> <shipname>Bon app'</shipname> <shipaddress>12, rue des Bouchers</shipaddress> <shipcity>Marseille</shipcity> <shippostalcode>13008</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10755</orderid> <productid>47</productid> <unitprice>9.5000</unitprice> <quantity>30</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10755</orderid> <productid>56</productid> <unitprice>38.0000</unitprice> <quantity>30</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10755</orderid> <productid>57</productid> <unitprice>19.5000</unitprice> <quantity>14</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10755</orderid> <productid>69</productid> <unitprice>36.0000</unitprice> <quantity>25</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10827</orderid> <customerid>BONAP</customerid> <employeeid>1</employeeid> <orderdate>1998-01-12</orderdate> <requireddate>1998-01-26</requireddate> <shippeddate>1998-02-06</shippeddate> <shipvia>2</shipvia> <freight>63.5400</freight> <shipname>Bon app'</shipname> <shipaddress>12, rue des Bouchers</shipaddress> <shipcity>Marseille</shipcity> <shippostalcode>13008</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10827</orderid> <productid>10</productid> <unitprice>31.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10827</orderid> <productid>39</productid> <unitprice>18.0000</unitprice> <quantity>21</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10871</orderid> <customerid>BONAP</customerid> <employeeid>9</employeeid> <orderdate>1998-02-05</orderdate> <requireddate>1998-03-05</requireddate> <shippeddate>1998-02-10</shippeddate> <shipvia>2</shipvia> <freight>112.2700</freight> <shipname>Bon app'</shipname> <shipaddress>12, rue des Bouchers</shipaddress> <shipcity>Marseille</shipcity> <shippostalcode>13008</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10871</orderid> <productid>6</productid> <unitprice>25.0000</unitprice> <quantity>50</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10871</orderid> <productid>16</productid> <unitprice>17.4500</unitprice> <quantity>12</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10871</orderid> <productid>17</productid> <unitprice>39.0000</unitprice> <quantity>16</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10876</orderid> <customerid>BONAP</customerid> <employeeid>7</employeeid> <orderdate>1998-02-09</orderdate> <requireddate>1998-03-09</requireddate> <shippeddate>1998-02-12</shippeddate> <shipvia>3</shipvia> <freight>60.4200</freight> <shipname>Bon app'</shipname> <shipaddress>12, rue des Bouchers</shipaddress> <shipcity>Marseille</shipcity> <shippostalcode>13008</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10876</orderid> <productid>46</productid> <unitprice>12.0000</unitprice> <quantity>21</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10876</orderid> <productid>64</productid> <unitprice>33.2500</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10932</orderid> <customerid>BONAP</customerid> <employeeid>8</employeeid> <orderdate>1998-03-06</orderdate> <requireddate>1998-04-03</requireddate> <shippeddate>1998-03-24</shippeddate> <shipvia>1</shipvia> <freight>134.6400</freight> <shipname>Bon app'</shipname> <shipaddress>12, rue des Bouchers</shipaddress> <shipcity>Marseille</shipcity> <shippostalcode>13008</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10932</orderid> <productid>16</productid> <unitprice>17.4500</unitprice> <quantity>30</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10932</orderid> <productid>62</productid> <unitprice>49.3000</unitprice> <quantity>14</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10932</orderid> <productid>72</productid> <unitprice>34.8000</unitprice> <quantity>16</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10932</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>20</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10940</orderid> <customerid>BONAP</customerid> <employeeid>8</employeeid> <orderdate>1998-03-11</orderdate> <requireddate>1998-04-08</requireddate> <shippeddate>1998-03-23</shippeddate> <shipvia>3</shipvia> <freight>19.7700</freight> <shipname>Bon app'</shipname> <shipaddress>12, rue des Bouchers</shipaddress> <shipcity>Marseille</shipcity> <shippostalcode>13008</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10940</orderid> <productid>7</productid> <unitprice>30.0000</unitprice> <quantity>8</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10940</orderid> <productid>13</productid> <unitprice>6.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11076</orderid> <customerid>BONAP</customerid> <employeeid>4</employeeid> <orderdate>1998-05-06</orderdate> <requireddate>1998-06-03</requireddate> <shipvia>2</shipvia> <freight>38.2800</freight> <shipname>Bon app'</shipname> <shipaddress>12, rue des Bouchers</shipaddress> <shipcity>Marseille</shipcity> <shippostalcode>13008</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>11076</orderid> <productid>6</productid> <unitprice>25.0000</unitprice> <quantity>20</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>11076</orderid> <productid>14</productid> <unitprice>23.2500</unitprice> <quantity>20</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>11076</orderid> <productid>19</productid> <unitprice>9.2000</unitprice> <quantity>10</quantity> <discount>0.25000</discount> </orderdetails> </orders> </customers> <customers> <customerid>BOTTM</customerid> <companyname>Bottom-Dollar Markets</companyname> <contactname>Elizabeth Lincoln</contactname> <contacttitle>Accounting Manager</contacttitle> <address>23 Tsawassen Blvd.</address> <city>Tsawassen</city> <region>BC</region> <postalcode>T2F 8M4</postalcode> <country>Canada</country> <phone>(604) 555-4729</phone> <fax>(604) 555-3745</fax> <orders> <orderid>10389</orderid> <customerid>BOTTM</customerid> <employeeid>4</employeeid> <orderdate>1996-12-20</orderdate> <requireddate>1997-01-17</requireddate> <shippeddate>1996-12-24</shippeddate> <shipvia>2</shipvia> <freight>47.4200</freight> <shipname>Bottom-Dollar Markets</shipname> <shipaddress>23 Tsawassen Blvd.</shipaddress> <shipcity>Tsawassen</shipcity> <shipregion>BC</shipregion> <shippostalcode>T2F 8M4</shippostalcode> <shipcountry>Canada</shipcountry> <orderdetails> <orderid>10389</orderid> <productid>10</productid> <unitprice>24.8000</unitprice> <quantity>16</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10389</orderid> <productid>55</productid> <unitprice>19.2000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10389</orderid> <productid>62</productid> <unitprice>39.4000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10389</orderid> <productid>70</productid> <unitprice>12.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10410</orderid> <customerid>BOTTM</customerid> <employeeid>3</employeeid> <orderdate>1997-01-10</orderdate> <requireddate>1997-02-07</requireddate> <shippeddate>1997-01-15</shippeddate> <shipvia>3</shipvia> <freight>2.4000</freight> <shipname>Bottom-Dollar Markets</shipname> <shipaddress>23 Tsawassen Blvd.</shipaddress> <shipcity>Tsawassen</shipcity> <shipregion>BC</shipregion> <shippostalcode>T2F 8M4</shippostalcode> <shipcountry>Canada</shipcountry> <orderdetails> <orderid>10410</orderid> <productid>33</productid> <unitprice>2.0000</unitprice> <quantity>49</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10410</orderid> <productid>59</productid> <unitprice>44.0000</unitprice> <quantity>16</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10411</orderid> <customerid>BOTTM</customerid> <employeeid>9</employeeid> <orderdate>1997-01-10</orderdate> <requireddate>1997-02-07</requireddate> <shippeddate>1997-01-21</shippeddate> <shipvia>3</shipvia> <freight>23.6500</freight> <shipname>Bottom-Dollar Markets</shipname> <shipaddress>23 Tsawassen Blvd.</shipaddress> <shipcity>Tsawassen</shipcity> <shipregion>BC</shipregion> <shippostalcode>T2F 8M4</shippostalcode> <shipcountry>Canada</shipcountry> <orderdetails> <orderid>10411</orderid> <productid>41</productid> <unitprice>7.7000</unitprice> <quantity>25</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10411</orderid> <productid>44</productid> <unitprice>15.5000</unitprice> <quantity>40</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10411</orderid> <productid>59</productid> <unitprice>44.0000</unitprice> <quantity>9</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10431</orderid> <customerid>BOTTM</customerid> <employeeid>4</employeeid> <orderdate>1997-01-30</orderdate> <requireddate>1997-02-13</requireddate> <shippeddate>1997-02-07</shippeddate> <shipvia>2</shipvia> <freight>44.1700</freight> <shipname>Bottom-Dollar Markets</shipname> <shipaddress>23 Tsawassen Blvd.</shipaddress> <shipcity>Tsawassen</shipcity> <shipregion>BC</shipregion> <shippostalcode>T2F 8M4</shippostalcode> <shipcountry>Canada</shipcountry> <orderdetails> <orderid>10431</orderid> <productid>17</productid> <unitprice>31.2000</unitprice> <quantity>50</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10431</orderid> <productid>40</productid> <unitprice>14.7000</unitprice> <quantity>50</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10431</orderid> <productid>47</productid> <unitprice>7.6000</unitprice> <quantity>30</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10492</orderid> <customerid>BOTTM</customerid> <employeeid>3</employeeid> <orderdate>1997-04-01</orderdate> <requireddate>1997-04-29</requireddate> <shippeddate>1997-04-11</shippeddate> <shipvia>1</shipvia> <freight>62.8900</freight> <shipname>Bottom-Dollar Markets</shipname> <shipaddress>23 Tsawassen Blvd.</shipaddress> <shipcity>Tsawassen</shipcity> <shipregion>BC</shipregion> <shippostalcode>T2F 8M4</shippostalcode> <shipcountry>Canada</shipcountry> <orderdetails> <orderid>10492</orderid> <productid>25</productid> <unitprice>11.2000</unitprice> <quantity>60</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10492</orderid> <productid>42</productid> <unitprice>11.2000</unitprice> <quantity>20</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10742</orderid> <customerid>BOTTM</customerid> <employeeid>3</employeeid> <orderdate>1997-11-14</orderdate> <requireddate>1997-12-12</requireddate> <shippeddate>1997-11-18</shippeddate> <shipvia>3</shipvia> <freight>243.7300</freight> <shipname>Bottom-Dollar Markets</shipname> <shipaddress>23 Tsawassen Blvd.</shipaddress> <shipcity>Tsawassen</shipcity> <shipregion>BC</shipregion> <shippostalcode>T2F 8M4</shippostalcode> <shipcountry>Canada</shipcountry> <orderdetails> <orderid>10742</orderid> <productid>3</productid> <unitprice>10.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10742</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10742</orderid> <productid>72</productid> <unitprice>34.8000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10918</orderid> <customerid>BOTTM</customerid> <employeeid>3</employeeid> <orderdate>1998-03-02</orderdate> <requireddate>1998-03-30</requireddate> <shippeddate>1998-03-11</shippeddate> <shipvia>3</shipvia> <freight>48.8300</freight> <shipname>Bottom-Dollar Markets</shipname> <shipaddress>23 Tsawassen Blvd.</shipaddress> <shipcity>Tsawassen</shipcity> <shipregion>BC</shipregion> <shippostalcode>T2F 8M4</shippostalcode> <shipcountry>Canada</shipcountry> <orderdetails> <orderid>10918</orderid> <productid>1</productid> <unitprice>18.0000</unitprice> <quantity>60</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10918</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>25</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10944</orderid> <customerid>BOTTM</customerid> <employeeid>6</employeeid> <orderdate>1998-03-12</orderdate> <requireddate>1998-03-26</requireddate> <shippeddate>1998-03-13</shippeddate> <shipvia>3</shipvia> <freight>52.9200</freight> <shipname>Bottom-Dollar Markets</shipname> <shipaddress>23 Tsawassen Blvd.</shipaddress> <shipcity>Tsawassen</shipcity> <shipregion>BC</shipregion> <shippostalcode>T2F 8M4</shippostalcode> <shipcountry>Canada</shipcountry> <orderdetails> <orderid>10944</orderid> <productid>11</productid> <unitprice>21.0000</unitprice> <quantity>5</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10944</orderid> <productid>44</productid> <unitprice>19.4500</unitprice> <quantity>18</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10944</orderid> <productid>56</productid> <unitprice>38.0000</unitprice> <quantity>18</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10949</orderid> <customerid>BOTTM</customerid> <employeeid>2</employeeid> <orderdate>1998-03-13</orderdate> <requireddate>1998-04-10</requireddate> <shippeddate>1998-03-17</shippeddate> <shipvia>3</shipvia> <freight>74.4400</freight> <shipname>Bottom-Dollar Markets</shipname> <shipaddress>23 Tsawassen Blvd.</shipaddress> <shipcity>Tsawassen</shipcity> <shipregion>BC</shipregion> <shippostalcode>T2F 8M4</shippostalcode> <shipcountry>Canada</shipcountry> <orderdetails> <orderid>10949</orderid> <productid>6</productid> <unitprice>25.0000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10949</orderid> <productid>10</productid> <unitprice>31.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10949</orderid> <productid>17</productid> <unitprice>39.0000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10949</orderid> <productid>62</productid> <unitprice>49.3000</unitprice> <quantity>60</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10975</orderid> <customerid>BOTTM</customerid> <employeeid>1</employeeid> <orderdate>1998-03-25</orderdate> <requireddate>1998-04-22</requireddate> <shippeddate>1998-03-27</shippeddate> <shipvia>3</shipvia> <freight>32.2700</freight> <shipname>Bottom-Dollar Markets</shipname> <shipaddress>23 Tsawassen Blvd.</shipaddress> <shipcity>Tsawassen</shipcity> <shipregion>BC</shipregion> <shippostalcode>T2F 8M4</shippostalcode> <shipcountry>Canada</shipcountry> <orderdetails> <orderid>10975</orderid> <productid>8</productid> <unitprice>40.0000</unitprice> <quantity>16</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10975</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10982</orderid> <customerid>BOTTM</customerid> <employeeid>2</employeeid> <orderdate>1998-03-27</orderdate> <requireddate>1998-04-24</requireddate> <shippeddate>1998-04-08</shippeddate> <shipvia>1</shipvia> <freight>14.0100</freight> <shipname>Bottom-Dollar Markets</shipname> <shipaddress>23 Tsawassen Blvd.</shipaddress> <shipcity>Tsawassen</shipcity> <shipregion>BC</shipregion> <shippostalcode>T2F 8M4</shippostalcode> <shipcountry>Canada</shipcountry> <orderdetails> <orderid>10982</orderid> <productid>7</productid> <unitprice>30.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10982</orderid> <productid>43</productid> <unitprice>46.0000</unitprice> <quantity>9</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11027</orderid> <customerid>BOTTM</customerid> <employeeid>1</employeeid> <orderdate>1998-04-16</orderdate> <requireddate>1998-05-14</requireddate> <shippeddate>1998-04-20</shippeddate> <shipvia>1</shipvia> <freight>52.5200</freight> <shipname>Bottom-Dollar Markets</shipname> <shipaddress>23 Tsawassen Blvd.</shipaddress> <shipcity>Tsawassen</shipcity> <shipregion>BC</shipregion> <shippostalcode>T2F 8M4</shippostalcode> <shipcountry>Canada</shipcountry> <orderdetails> <orderid>11027</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>30</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>11027</orderid> <productid>62</productid> <unitprice>49.3000</unitprice> <quantity>21</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>11045</orderid> <customerid>BOTTM</customerid> <employeeid>6</employeeid> <orderdate>1998-04-23</orderdate> <requireddate>1998-05-21</requireddate> <shipvia>2</shipvia> <freight>70.5800</freight> <shipname>Bottom-Dollar Markets</shipname> <shipaddress>23 Tsawassen Blvd.</shipaddress> <shipcity>Tsawassen</shipcity> <shipregion>BC</shipregion> <shippostalcode>T2F 8M4</shippostalcode> <shipcountry>Canada</shipcountry> <orderdetails> <orderid>11045</orderid> <productid>33</productid> <unitprice>2.5000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11045</orderid> <productid>51</productid> <unitprice>53.0000</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11048</orderid> <customerid>BOTTM</customerid> <employeeid>7</employeeid> <orderdate>1998-04-24</orderdate> <requireddate>1998-05-22</requireddate> <shippeddate>1998-04-30</shippeddate> <shipvia>3</shipvia> <freight>24.1200</freight> <shipname>Bottom-Dollar Markets</shipname> <shipaddress>23 Tsawassen Blvd.</shipaddress> <shipcity>Tsawassen</shipcity> <shipregion>BC</shipregion> <shippostalcode>T2F 8M4</shippostalcode> <shipcountry>Canada</shipcountry> <orderdetails> <orderid>11048</orderid> <productid>68</productid> <unitprice>12.5000</unitprice> <quantity>42</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>BSBEV</customerid> <companyname>B's Beverages</companyname> <contactname>Victoria Ashworth</contactname> <contacttitle>Sales Representative</contacttitle> <address>Fauntleroy Circus</address> <city>London</city> <postalcode>EC2 5NT</postalcode> <country>UK</country> <phone>(171) 555-1212</phone> <orders> <orderid>10289</orderid> <customerid>BSBEV</customerid> <employeeid>7</employeeid> <orderdate>1996-08-26</orderdate> <requireddate>1996-09-23</requireddate> <shippeddate>1996-08-28</shippeddate> <shipvia>3</shipvia> <freight>22.7700</freight> <shipname>B's Beverages</shipname> <shipaddress>Fauntleroy Circus</shipaddress> <shipcity>London</shipcity> <shippostalcode>EC2 5NT</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10289</orderid> <productid>3</productid> <unitprice>8.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10289</orderid> <productid>64</productid> <unitprice>26.6000</unitprice> <quantity>9</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10471</orderid> <customerid>BSBEV</customerid> <employeeid>2</employeeid> <orderdate>1997-03-11</orderdate> <requireddate>1997-04-08</requireddate> <shippeddate>1997-03-18</shippeddate> <shipvia>3</shipvia> <freight>45.5900</freight> <shipname>B's Beverages</shipname> <shipaddress>Fauntleroy Circus</shipaddress> <shipcity>London</shipcity> <shippostalcode>EC2 5NT</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10471</orderid> <productid>7</productid> <unitprice>24.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10471</orderid> <productid>56</productid> <unitprice>30.4000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10484</orderid> <customerid>BSBEV</customerid> <employeeid>3</employeeid> <orderdate>1997-03-24</orderdate> <requireddate>1997-04-21</requireddate> <shippeddate>1997-04-01</shippeddate> <shipvia>3</shipvia> <freight>6.8800</freight> <shipname>B's Beverages</shipname> <shipaddress>Fauntleroy Circus</shipaddress> <shipcity>London</shipcity> <shippostalcode>EC2 5NT</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10484</orderid> <productid>21</productid> <unitprice>8.0000</unitprice> <quantity>14</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10484</orderid> <productid>40</productid> <unitprice>14.7000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10484</orderid> <productid>51</productid> <unitprice>42.4000</unitprice> <quantity>3</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10538</orderid> <customerid>BSBEV</customerid> <employeeid>9</employeeid> <orderdate>1997-05-15</orderdate> <requireddate>1997-06-12</requireddate> <shippeddate>1997-05-16</shippeddate> <shipvia>3</shipvia> <freight>4.8700</freight> <shipname>B's Beverages</shipname> <shipaddress>Fauntleroy Circus</shipaddress> <shipcity>London</shipcity> <shippostalcode>EC2 5NT</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10538</orderid> <productid>70</productid> <unitprice>15.0000</unitprice> <quantity>7</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10538</orderid> <productid>72</productid> <unitprice>34.8000</unitprice> <quantity>1</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10539</orderid> <customerid>BSBEV</customerid> <employeeid>6</employeeid> <orderdate>1997-05-16</orderdate> <requireddate>1997-06-13</requireddate> <shippeddate>1997-05-23</shippeddate> <shipvia>3</shipvia> <freight>12.3600</freight> <shipname>B's Beverages</shipname> <shipaddress>Fauntleroy Circus</shipaddress> <shipcity>London</shipcity> <shippostalcode>EC2 5NT</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10539</orderid> <productid>13</productid> <unitprice>6.0000</unitprice> <quantity>8</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10539</orderid> <productid>21</productid> <unitprice>10.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10539</orderid> <productid>33</productid> <unitprice>2.5000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10539</orderid> <productid>49</productid> <unitprice>20.0000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10578</orderid> <customerid>BSBEV</customerid> <employeeid>4</employeeid> <orderdate>1997-06-24</orderdate> <requireddate>1997-07-22</requireddate> <shippeddate>1997-07-25</shippeddate> <shipvia>3</shipvia> <freight>29.6000</freight> <shipname>B's Beverages</shipname> <shipaddress>Fauntleroy Circus</shipaddress> <shipcity>London</shipcity> <shippostalcode>EC2 5NT</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10578</orderid> <productid>35</productid> <unitprice>18.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10578</orderid> <productid>57</productid> <unitprice>19.5000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10599</orderid> <customerid>BSBEV</customerid> <employeeid>6</employeeid> <orderdate>1997-07-15</orderdate> <requireddate>1997-08-26</requireddate> <shippeddate>1997-07-21</shippeddate> <shipvia>3</shipvia> <freight>29.9800</freight> <shipname>B's Beverages</shipname> <shipaddress>Fauntleroy Circus</shipaddress> <shipcity>London</shipcity> <shippostalcode>EC2 5NT</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10599</orderid> <productid>62</productid> <unitprice>49.3000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10943</orderid> <customerid>BSBEV</customerid> <employeeid>4</employeeid> <orderdate>1998-03-11</orderdate> <requireddate>1998-04-08</requireddate> <shippeddate>1998-03-19</shippeddate> <shipvia>2</shipvia> <freight>2.1700</freight> <shipname>B's Beverages</shipname> <shipaddress>Fauntleroy Circus</shipaddress> <shipcity>London</shipcity> <shippostalcode>EC2 5NT</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10943</orderid> <productid>13</productid> <unitprice>6.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10943</orderid> <productid>22</productid> <unitprice>21.0000</unitprice> <quantity>21</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10943</orderid> <productid>46</productid> <unitprice>12.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10947</orderid> <customerid>BSBEV</customerid> <employeeid>3</employeeid> <orderdate>1998-03-13</orderdate> <requireddate>1998-04-10</requireddate> <shippeddate>1998-03-16</shippeddate> <shipvia>2</shipvia> <freight>3.2600</freight> <shipname>B's Beverages</shipname> <shipaddress>Fauntleroy Circus</shipaddress> <shipcity>London</shipcity> <shippostalcode>EC2 5NT</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10947</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11023</orderid> <customerid>BSBEV</customerid> <employeeid>1</employeeid> <orderdate>1998-04-14</orderdate> <requireddate>1998-04-28</requireddate> <shippeddate>1998-04-24</shippeddate> <shipvia>2</shipvia> <freight>123.8300</freight> <shipname>B's Beverages</shipname> <shipaddress>Fauntleroy Circus</shipaddress> <shipcity>London</shipcity> <shippostalcode>EC2 5NT</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>11023</orderid> <productid>7</productid> <unitprice>30.0000</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11023</orderid> <productid>43</productid> <unitprice>46.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>CACTU</customerid> <companyname>Cactus Comidas para llevar</companyname> <contactname>Patricio Simpson</contactname> <contacttitle>Sales Agent</contacttitle> <address>Cerrito 333</address> <city>Buenos Aires</city> <postalcode>1010</postalcode> <country>Argentina</country> <phone>(1) 135-5555</phone> <fax>(1) 135-4892</fax> <orders> <orderid>10521</orderid> <customerid>CACTU</customerid> <employeeid>8</employeeid> <orderdate>1997-04-29</orderdate> <requireddate>1997-05-27</requireddate> <shippeddate>1997-05-02</shippeddate> <shipvia>2</shipvia> <freight>17.2200</freight> <shipname>Cactus Comidas para llevar</shipname> <shipaddress>Cerrito 333</shipaddress> <shipcity>Buenos Aires</shipcity> <shippostalcode>1010</shippostalcode> <shipcountry>Argentina</shipcountry> <orderdetails> <orderid>10521</orderid> <productid>35</productid> <unitprice>18.0000</unitprice> <quantity>3</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10521</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10521</orderid> <productid>68</productid> <unitprice>12.5000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10782</orderid> <customerid>CACTU</customerid> <employeeid>9</employeeid> <orderdate>1997-12-17</orderdate> <requireddate>1998-01-14</requireddate> <shippeddate>1997-12-22</shippeddate> <shipvia>3</shipvia> <freight>1.1000</freight> <shipname>Cactus Comidas para llevar</shipname> <shipaddress>Cerrito 333</shipaddress> <shipcity>Buenos Aires</shipcity> <shippostalcode>1010</shippostalcode> <shipcountry>Argentina</shipcountry> <orderdetails> <orderid>10782</orderid> <productid>31</productid> <unitprice>12.5000</unitprice> <quantity>1</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10819</orderid> <customerid>CACTU</customerid> <employeeid>2</employeeid> <orderdate>1998-01-07</orderdate> <requireddate>1998-02-04</requireddate> <shippeddate>1998-01-16</shippeddate> <shipvia>3</shipvia> <freight>19.7600</freight> <shipname>Cactus Comidas para llevar</shipname> <shipaddress>Cerrito 333</shipaddress> <shipcity>Buenos Aires</shipcity> <shippostalcode>1010</shippostalcode> <shipcountry>Argentina</shipcountry> <orderdetails> <orderid>10819</orderid> <productid>43</productid> <unitprice>46.0000</unitprice> <quantity>7</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10819</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10881</orderid> <customerid>CACTU</customerid> <employeeid>4</employeeid> <orderdate>1998-02-11</orderdate> <requireddate>1998-03-11</requireddate> <shippeddate>1998-02-18</shippeddate> <shipvia>1</shipvia> <freight>2.8400</freight> <shipname>Cactus Comidas para llevar</shipname> <shipaddress>Cerrito 333</shipaddress> <shipcity>Buenos Aires</shipcity> <shippostalcode>1010</shippostalcode> <shipcountry>Argentina</shipcountry> <orderdetails> <orderid>10881</orderid> <productid>73</productid> <unitprice>15.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10937</orderid> <customerid>CACTU</customerid> <employeeid>7</employeeid> <orderdate>1998-03-10</orderdate> <requireddate>1998-03-24</requireddate> <shippeddate>1998-03-13</shippeddate> <shipvia>3</shipvia> <freight>31.5100</freight> <shipname>Cactus Comidas para llevar</shipname> <shipaddress>Cerrito 333</shipaddress> <shipcity>Buenos Aires</shipcity> <shippostalcode>1010</shippostalcode> <shipcountry>Argentina</shipcountry> <orderdetails> <orderid>10937</orderid> <productid>28</productid> <unitprice>45.6000</unitprice> <quantity>8</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10937</orderid> <productid>34</productid> <unitprice>14.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11054</orderid> <customerid>CACTU</customerid> <employeeid>8</employeeid> <orderdate>1998-04-28</orderdate> <requireddate>1998-05-26</requireddate> <shipvia>1</shipvia> <freight>0.3300</freight> <shipname>Cactus Comidas para llevar</shipname> <shipaddress>Cerrito 333</shipaddress> <shipcity>Buenos Aires</shipcity> <shippostalcode>1010</shippostalcode> <shipcountry>Argentina</shipcountry> <orderdetails> <orderid>11054</orderid> <productid>33</productid> <unitprice>2.5000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11054</orderid> <productid>67</productid> <unitprice>14.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>CENTC</customerid> <companyname>Centro comercial Moctezuma</companyname> <contactname>Francisco Chang</contactname> <contacttitle>Marketing Manager</contacttitle> <address>Sierras de Granada 9993</address> <city>México D.F.</city> <postalcode>05022</postalcode> <country>Mexico</country> <phone>(5) 555-3392</phone> <fax>(5) 555-7293</fax> <orders> <orderid>10259</orderid> <customerid>CENTC</customerid> <employeeid>4</employeeid> <orderdate>1996-07-18</orderdate> <requireddate>1996-08-15</requireddate> <shippeddate>1996-07-25</shippeddate> <shipvia>3</shipvia> <freight>3.2500</freight> <shipname>Centro comercial Moctezuma</shipname> <shipaddress>Sierras de Granada 9993</shipaddress> <shipcity>México D.F.</shipcity> <shippostalcode>05022</shippostalcode> <shipcountry>Mexico</shipcountry> <orderdetails> <orderid>10259</orderid> <productid>21</productid> <unitprice>8.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10259</orderid> <productid>37</productid> <unitprice>20.8000</unitprice> <quantity>1</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>CHOPS</customerid> <companyname>Chop-suey Chinese</companyname> <contactname>Yang Wang</contactname> <contacttitle>Owner</contacttitle> <address>Hauptstr. 29</address> <city>Bern</city> <postalcode>3012</postalcode> <country>Switzerland</country> <phone>0452-076545</phone> <orders> <orderid>10254</orderid> <customerid>CHOPS</customerid> <employeeid>5</employeeid> <orderdate>1996-07-11</orderdate> <requireddate>1996-08-08</requireddate> <shippeddate>1996-07-23</shippeddate> <shipvia>2</shipvia> <freight>22.9800</freight> <shipname>Chop-suey Chinese</shipname> <shipaddress>Hauptstr. 31</shipaddress> <shipcity>Bern</shipcity> <shippostalcode>3012</shippostalcode> <shipcountry>Switzerland</shipcountry> <orderdetails> <orderid>10254</orderid> <productid>24</productid> <unitprice>3.6000</unitprice> <quantity>15</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10254</orderid> <productid>55</productid> <unitprice>19.2000</unitprice> <quantity>21</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10254</orderid> <productid>74</productid> <unitprice>8.0000</unitprice> <quantity>21</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10370</orderid> <customerid>CHOPS</customerid> <employeeid>6</employeeid> <orderdate>1996-12-03</orderdate> <requireddate>1996-12-31</requireddate> <shippeddate>1996-12-27</shippeddate> <shipvia>2</shipvia> <freight>1.1700</freight> <shipname>Chop-suey Chinese</shipname> <shipaddress>Hauptstr. 31</shipaddress> <shipcity>Bern</shipcity> <shippostalcode>3012</shippostalcode> <shipcountry>Switzerland</shipcountry> <orderdetails> <orderid>10370</orderid> <productid>1</productid> <unitprice>14.4000</unitprice> <quantity>15</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10370</orderid> <productid>64</productid> <unitprice>26.6000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10370</orderid> <productid>74</productid> <unitprice>8.0000</unitprice> <quantity>20</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10519</orderid> <customerid>CHOPS</customerid> <employeeid>6</employeeid> <orderdate>1997-04-28</orderdate> <requireddate>1997-05-26</requireddate> <shippeddate>1997-05-01</shippeddate> <shipvia>3</shipvia> <freight>91.7600</freight> <shipname>Chop-suey Chinese</shipname> <shipaddress>Hauptstr. 31</shipaddress> <shipcity>Bern</shipcity> <shippostalcode>3012</shippostalcode> <shipcountry>Switzerland</shipcountry> <orderdetails> <orderid>10519</orderid> <productid>10</productid> <unitprice>31.0000</unitprice> <quantity>16</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10519</orderid> <productid>56</productid> <unitprice>38.0000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10519</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>10</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10731</orderid> <customerid>CHOPS</customerid> <employeeid>7</employeeid> <orderdate>1997-11-06</orderdate> <requireddate>1997-12-04</requireddate> <shippeddate>1997-11-14</shippeddate> <shipvia>1</shipvia> <freight>96.6500</freight> <shipname>Chop-suey Chinese</shipname> <shipaddress>Hauptstr. 31</shipaddress> <shipcity>Bern</shipcity> <shippostalcode>3012</shippostalcode> <shipcountry>Switzerland</shipcountry> <orderdetails> <orderid>10731</orderid> <productid>21</productid> <unitprice>10.0000</unitprice> <quantity>40</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10731</orderid> <productid>51</productid> <unitprice>53.0000</unitprice> <quantity>30</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10746</orderid> <customerid>CHOPS</customerid> <employeeid>1</employeeid> <orderdate>1997-11-19</orderdate> <requireddate>1997-12-17</requireddate> <shippeddate>1997-11-21</shippeddate> <shipvia>3</shipvia> <freight>31.4300</freight> <shipname>Chop-suey Chinese</shipname> <shipaddress>Hauptstr. 31</shipaddress> <shipcity>Bern</shipcity> <shippostalcode>3012</shippostalcode> <shipcountry>Switzerland</shipcountry> <orderdetails> <orderid>10746</orderid> <productid>13</productid> <unitprice>6.0000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10746</orderid> <productid>42</productid> <unitprice>14.0000</unitprice> <quantity>28</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10746</orderid> <productid>62</productid> <unitprice>49.3000</unitprice> <quantity>9</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10746</orderid> <productid>69</productid> <unitprice>36.0000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10966</orderid> <customerid>CHOPS</customerid> <employeeid>4</employeeid> <orderdate>1998-03-20</orderdate> <requireddate>1998-04-17</requireddate> <shippeddate>1998-04-08</shippeddate> <shipvia>1</shipvia> <freight>27.1900</freight> <shipname>Chop-suey Chinese</shipname> <shipaddress>Hauptstr. 31</shipaddress> <shipcity>Bern</shipcity> <shippostalcode>3012</shippostalcode> <shipcountry>Switzerland</shipcountry> <orderdetails> <orderid>10966</orderid> <productid>37</productid> <unitprice>26.0000</unitprice> <quantity>8</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10966</orderid> <productid>56</productid> <unitprice>38.0000</unitprice> <quantity>12</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10966</orderid> <productid>62</productid> <unitprice>49.3000</unitprice> <quantity>12</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>11029</orderid> <customerid>CHOPS</customerid> <employeeid>4</employeeid> <orderdate>1998-04-16</orderdate> <requireddate>1998-05-14</requireddate> <shippeddate>1998-04-27</shippeddate> <shipvia>1</shipvia> <freight>47.8400</freight> <shipname>Chop-suey Chinese</shipname> <shipaddress>Hauptstr. 31</shipaddress> <shipcity>Bern</shipcity> <shippostalcode>3012</shippostalcode> <shipcountry>Switzerland</shipcountry> <orderdetails> <orderid>11029</orderid> <productid>56</productid> <unitprice>38.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11029</orderid> <productid>63</productid> <unitprice>43.9000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11041</orderid> <customerid>CHOPS</customerid> <employeeid>3</employeeid> <orderdate>1998-04-22</orderdate> <requireddate>1998-05-20</requireddate> <shippeddate>1998-04-28</shippeddate> <shipvia>2</shipvia> <freight>48.2200</freight> <shipname>Chop-suey Chinese</shipname> <shipaddress>Hauptstr. 31</shipaddress> <shipcity>Bern</shipcity> <shippostalcode>3012</shippostalcode> <shipcountry>Switzerland</shipcountry> <orderdetails> <orderid>11041</orderid> <productid>2</productid> <unitprice>19.0000</unitprice> <quantity>30</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>11041</orderid> <productid>63</productid> <unitprice>43.9000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>COMMI</customerid> <companyname>Comércio Mineiro</companyname> <contactname>Pedro Afonso</contactname> <contacttitle>Sales Associate</contacttitle> <address>Av. dos Lusíadas, 23</address> <city>Sao Paulo</city> <region>SP</region> <postalcode>05432-043</postalcode> <country>Brazil</country> <phone>(11) 555-7647</phone> <orders> <orderid>10290</orderid> <customerid>COMMI</customerid> <employeeid>8</employeeid> <orderdate>1996-08-27</orderdate> <requireddate>1996-09-24</requireddate> <shippeddate>1996-09-03</shippeddate> <shipvia>1</shipvia> <freight>79.7000</freight> <shipname>Comércio Mineiro</shipname> <shipaddress>Av. dos Lusíadas, 23</shipaddress> <shipcity>Sao Paulo</shipcity> <shipregion>SP</shipregion> <shippostalcode>05432-043</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10290</orderid> <productid>5</productid> <unitprice>17.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10290</orderid> <productid>29</productid> <unitprice>99.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10290</orderid> <productid>49</productid> <unitprice>16.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10290</orderid> <productid>77</productid> <unitprice>10.4000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10466</orderid> <customerid>COMMI</customerid> <employeeid>4</employeeid> <orderdate>1997-03-06</orderdate> <requireddate>1997-04-03</requireddate> <shippeddate>1997-03-13</shippeddate> <shipvia>1</shipvia> <freight>11.9300</freight> <shipname>Comércio Mineiro</shipname> <shipaddress>Av. dos Lusíadas, 23</shipaddress> <shipcity>Sao Paulo</shipcity> <shipregion>SP</shipregion> <shippostalcode>05432-043</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10466</orderid> <productid>11</productid> <unitprice>16.8000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10466</orderid> <productid>46</productid> <unitprice>9.6000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10494</orderid> <customerid>COMMI</customerid> <employeeid>4</employeeid> <orderdate>1997-04-02</orderdate> <requireddate>1997-04-30</requireddate> <shippeddate>1997-04-09</shippeddate> <shipvia>2</shipvia> <freight>65.9900</freight> <shipname>Comércio Mineiro</shipname> <shipaddress>Av. dos Lusíadas, 23</shipaddress> <shipcity>Sao Paulo</shipcity> <shipregion>SP</shipregion> <shippostalcode>05432-043</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10494</orderid> <productid>56</productid> <unitprice>30.4000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10969</orderid> <customerid>COMMI</customerid> <employeeid>1</employeeid> <orderdate>1998-03-23</orderdate> <requireddate>1998-04-20</requireddate> <shippeddate>1998-03-30</shippeddate> <shipvia>2</shipvia> <freight>0.2100</freight> <shipname>Comércio Mineiro</shipname> <shipaddress>Av. dos Lusíadas, 23</shipaddress> <shipcity>Sao Paulo</shipcity> <shipregion>SP</shipregion> <shippostalcode>05432-043</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10969</orderid> <productid>46</productid> <unitprice>12.0000</unitprice> <quantity>9</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11042</orderid> <customerid>COMMI</customerid> <employeeid>2</employeeid> <orderdate>1998-04-22</orderdate> <requireddate>1998-05-06</requireddate> <shippeddate>1998-05-01</shippeddate> <shipvia>1</shipvia> <freight>29.9900</freight> <shipname>Comércio Mineiro</shipname> <shipaddress>Av. dos Lusíadas, 23</shipaddress> <shipcity>Sao Paulo</shipcity> <shipregion>SP</shipregion> <shippostalcode>05432-043</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>11042</orderid> <productid>44</productid> <unitprice>19.4500</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11042</orderid> <productid>61</productid> <unitprice>28.5000</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>CONSH</customerid> <companyname>Consolidated Holdings</companyname> <contactname>Elizabeth Brown</contactname> <contacttitle>Sales Representative</contacttitle> <address>Berkeley Gardens 12 Brewery</address> <city>London</city> <postalcode>WX1 6LT</postalcode> <country>UK</country> <phone>(171) 555-2282</phone> <fax>(171) 555-9199</fax> <orders> <orderid>10435</orderid> <customerid>CONSH</customerid> <employeeid>8</employeeid> <orderdate>1997-02-04</orderdate> <requireddate>1997-03-18</requireddate> <shippeddate>1997-02-07</shippeddate> <shipvia>2</shipvia> <freight>9.2100</freight> <shipname>Consolidated Holdings</shipname> <shipaddress>Berkeley Gardens 12 Brewery</shipaddress> <shipcity>London</shipcity> <shippostalcode>WX1 6LT</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10435</orderid> <productid>2</productid> <unitprice>15.2000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10435</orderid> <productid>22</productid> <unitprice>16.8000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10435</orderid> <productid>72</productid> <unitprice>27.8000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10462</orderid> <customerid>CONSH</customerid> <employeeid>2</employeeid> <orderdate>1997-03-03</orderdate> <requireddate>1997-03-31</requireddate> <shippeddate>1997-03-18</shippeddate> <shipvia>1</shipvia> <freight>6.1700</freight> <shipname>Consolidated Holdings</shipname> <shipaddress>Berkeley Gardens 12 Brewery</shipaddress> <shipcity>London</shipcity> <shippostalcode>WX1 6LT</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10462</orderid> <productid>13</productid> <unitprice>4.8000</unitprice> <quantity>1</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10462</orderid> <productid>23</productid> <unitprice>7.2000</unitprice> <quantity>21</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10848</orderid> <customerid>CONSH</customerid> <employeeid>7</employeeid> <orderdate>1998-01-23</orderdate> <requireddate>1998-02-20</requireddate> <shippeddate>1998-01-29</shippeddate> <shipvia>2</shipvia> <freight>38.2400</freight> <shipname>Consolidated Holdings</shipname> <shipaddress>Berkeley Gardens 12 Brewery</shipaddress> <shipcity>London</shipcity> <shippostalcode>WX1 6LT</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10848</orderid> <productid>5</productid> <unitprice>21.3500</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10848</orderid> <productid>9</productid> <unitprice>97.0000</unitprice> <quantity>3</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>DRACD</customerid> <companyname>Drachenblut Delikatessen</companyname> <contactname>Sven Ottlieb</contactname> <contacttitle>Order Administrator</contacttitle> <address>Walserweg 21</address> <city>Aachen</city> <postalcode>52066</postalcode> <country>Germany</country> <phone>0241-039123</phone> <fax>0241-059428</fax> <orders> <orderid>10363</orderid> <customerid>DRACD</customerid> <employeeid>4</employeeid> <orderdate>1996-11-26</orderdate> <requireddate>1996-12-24</requireddate> <shippeddate>1996-12-04</shippeddate> <shipvia>3</shipvia> <freight>30.5400</freight> <shipname>Drachenblut Delikatessen</shipname> <shipaddress>Walserweg 21</shipaddress> <shipcity>Aachen</shipcity> <shippostalcode>52066</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10363</orderid> <productid>31</productid> <unitprice>10.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10363</orderid> <productid>75</productid> <unitprice>6.2000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10363</orderid> <productid>76</productid> <unitprice>14.4000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10391</orderid> <customerid>DRACD</customerid> <employeeid>3</employeeid> <orderdate>1996-12-23</orderdate> <requireddate>1997-01-20</requireddate> <shippeddate>1996-12-31</shippeddate> <shipvia>3</shipvia> <freight>5.4500</freight> <shipname>Drachenblut Delikatessen</shipname> <shipaddress>Walserweg 21</shipaddress> <shipcity>Aachen</shipcity> <shippostalcode>52066</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10391</orderid> <productid>13</productid> <unitprice>4.8000</unitprice> <quantity>18</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10797</orderid> <customerid>DRACD</customerid> <employeeid>7</employeeid> <orderdate>1997-12-25</orderdate> <requireddate>1998-01-22</requireddate> <shippeddate>1998-01-05</shippeddate> <shipvia>2</shipvia> <freight>33.3500</freight> <shipname>Drachenblut Delikatessen</shipname> <shipaddress>Walserweg 21</shipaddress> <shipcity>Aachen</shipcity> <shippostalcode>52066</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10797</orderid> <productid>11</productid> <unitprice>21.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10825</orderid> <customerid>DRACD</customerid> <employeeid>1</employeeid> <orderdate>1998-01-09</orderdate> <requireddate>1998-02-06</requireddate> <shippeddate>1998-01-14</shippeddate> <shipvia>1</shipvia> <freight>79.2500</freight> <shipname>Drachenblut Delikatessen</shipname> <shipaddress>Walserweg 21</shipaddress> <shipcity>Aachen</shipcity> <shippostalcode>52066</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10825</orderid> <productid>26</productid> <unitprice>31.2300</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10825</orderid> <productid>53</productid> <unitprice>32.8000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11036</orderid> <customerid>DRACD</customerid> <employeeid>8</employeeid> <orderdate>1998-04-20</orderdate> <requireddate>1998-05-18</requireddate> <shippeddate>1998-04-22</shippeddate> <shipvia>3</shipvia> <freight>149.4700</freight> <shipname>Drachenblut Delikatessen</shipname> <shipaddress>Walserweg 21</shipaddress> <shipcity>Aachen</shipcity> <shippostalcode>52066</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>11036</orderid> <productid>13</productid> <unitprice>6.0000</unitprice> <quantity>7</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11036</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11067</orderid> <customerid>DRACD</customerid> <employeeid>1</employeeid> <orderdate>1998-05-04</orderdate> <requireddate>1998-05-18</requireddate> <shippeddate>1998-05-06</shippeddate> <shipvia>2</shipvia> <freight>7.9800</freight> <shipname>Drachenblut Delikatessen</shipname> <shipaddress>Walserweg 21</shipaddress> <shipcity>Aachen</shipcity> <shippostalcode>52066</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>11067</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>9</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>DUMON</customerid> <companyname>Du monde entier</companyname> <contactname>Janine Labrune</contactname> <contacttitle>Owner</contacttitle> <address>67, rue des Cinquante Otages</address> <city>Nantes</city> <postalcode>44000</postalcode> <country>France</country> <phone>40.67.88.88</phone> <fax>40.67.89.89</fax> <orders> <orderid>10311</orderid> <customerid>DUMON</customerid> <employeeid>1</employeeid> <orderdate>1996-09-20</orderdate> <requireddate>1996-10-04</requireddate> <shippeddate>1996-09-26</shippeddate> <shipvia>3</shipvia> <freight>24.6900</freight> <shipname>Du monde entier</shipname> <shipaddress>67, rue des Cinquante Otages</shipaddress> <shipcity>Nantes</shipcity> <shippostalcode>44000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10311</orderid> <productid>42</productid> <unitprice>11.2000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10311</orderid> <productid>69</productid> <unitprice>28.8000</unitprice> <quantity>7</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10609</orderid> <customerid>DUMON</customerid> <employeeid>7</employeeid> <orderdate>1997-07-24</orderdate> <requireddate>1997-08-21</requireddate> <shippeddate>1997-07-30</shippeddate> <shipvia>2</shipvia> <freight>1.8500</freight> <shipname>Du monde entier</shipname> <shipaddress>67, rue des Cinquante Otages</shipaddress> <shipcity>Nantes</shipcity> <shippostalcode>44000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10609</orderid> <productid>1</productid> <unitprice>18.0000</unitprice> <quantity>3</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10609</orderid> <productid>10</productid> <unitprice>31.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10609</orderid> <productid>21</productid> <unitprice>10.0000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10683</orderid> <customerid>DUMON</customerid> <employeeid>2</employeeid> <orderdate>1997-09-26</orderdate> <requireddate>1997-10-24</requireddate> <shippeddate>1997-10-01</shippeddate> <shipvia>1</shipvia> <freight>4.4000</freight> <shipname>Du monde entier</shipname> <shipaddress>67, rue des Cinquante Otages</shipaddress> <shipcity>Nantes</shipcity> <shippostalcode>44000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10683</orderid> <productid>52</productid> <unitprice>7.0000</unitprice> <quantity>9</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10890</orderid> <customerid>DUMON</customerid> <employeeid>7</employeeid> <orderdate>1998-02-16</orderdate> <requireddate>1998-03-16</requireddate> <shippeddate>1998-02-18</shippeddate> <shipvia>1</shipvia> <freight>32.7600</freight> <shipname>Du monde entier</shipname> <shipaddress>67, rue des Cinquante Otages</shipaddress> <shipcity>Nantes</shipcity> <shippostalcode>44000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10890</orderid> <productid>17</productid> <unitprice>39.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10890</orderid> <productid>34</productid> <unitprice>14.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10890</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>14</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>EASTC</customerid> <companyname>Eastern Connection</companyname> <contactname>Ann Devon</contactname> <contacttitle>Sales Agent</contacttitle> <address>35 King George</address> <city>London</city> <postalcode>WX3 6FW</postalcode> <country>UK</country> <phone>(171) 555-0297</phone> <fax>(171) 555-3373</fax> <orders> <orderid>10364</orderid> <customerid>EASTC</customerid> <employeeid>1</employeeid> <orderdate>1996-11-26</orderdate> <requireddate>1997-01-07</requireddate> <shippeddate>1996-12-04</shippeddate> <shipvia>1</shipvia> <freight>71.9700</freight> <shipname>Eastern Connection</shipname> <shipaddress>35 King George</shipaddress> <shipcity>London</shipcity> <shippostalcode>WX3 6FW</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10364</orderid> <productid>69</productid> <unitprice>28.8000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10364</orderid> <productid>71</productid> <unitprice>17.2000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10400</orderid> <customerid>EASTC</customerid> <employeeid>1</employeeid> <orderdate>1997-01-01</orderdate> <requireddate>1997-01-29</requireddate> <shippeddate>1997-01-16</shippeddate> <shipvia>3</shipvia> <freight>83.9300</freight> <shipname>Eastern Connection</shipname> <shipaddress>35 King George</shipaddress> <shipcity>London</shipcity> <shippostalcode>WX3 6FW</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10400</orderid> <productid>29</productid> <unitprice>99.0000</unitprice> <quantity>21</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10400</orderid> <productid>35</productid> <unitprice>14.4000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10400</orderid> <productid>49</productid> <unitprice>16.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10532</orderid> <customerid>EASTC</customerid> <employeeid>7</employeeid> <orderdate>1997-05-09</orderdate> <requireddate>1997-06-06</requireddate> <shippeddate>1997-05-12</shippeddate> <shipvia>3</shipvia> <freight>74.4600</freight> <shipname>Eastern Connection</shipname> <shipaddress>35 King George</shipaddress> <shipcity>London</shipcity> <shippostalcode>WX3 6FW</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10532</orderid> <productid>30</productid> <unitprice>25.8900</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10532</orderid> <productid>66</productid> <unitprice>17.0000</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10726</orderid> <customerid>EASTC</customerid> <employeeid>4</employeeid> <orderdate>1997-11-03</orderdate> <requireddate>1997-11-17</requireddate> <shippeddate>1997-12-05</shippeddate> <shipvia>1</shipvia> <freight>16.5600</freight> <shipname>Eastern Connection</shipname> <shipaddress>35 King George</shipaddress> <shipcity>London</shipcity> <shippostalcode>WX3 6FW</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10726</orderid> <productid>4</productid> <unitprice>22.0000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10726</orderid> <productid>11</productid> <unitprice>21.0000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10987</orderid> <customerid>EASTC</customerid> <employeeid>8</employeeid> <orderdate>1998-03-31</orderdate> <requireddate>1998-04-28</requireddate> <shippeddate>1998-04-06</shippeddate> <shipvia>1</shipvia> <freight>185.4800</freight> <shipname>Eastern Connection</shipname> <shipaddress>35 King George</shipaddress> <shipcity>London</shipcity> <shippostalcode>WX3 6FW</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10987</orderid> <productid>7</productid> <unitprice>30.0000</unitprice> <quantity>60</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10987</orderid> <productid>43</productid> <unitprice>46.0000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10987</orderid> <productid>72</productid> <unitprice>34.8000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11024</orderid> <customerid>EASTC</customerid> <employeeid>4</employeeid> <orderdate>1998-04-15</orderdate> <requireddate>1998-05-13</requireddate> <shippeddate>1998-04-20</shippeddate> <shipvia>1</shipvia> <freight>74.3600</freight> <shipname>Eastern Connection</shipname> <shipaddress>35 King George</shipaddress> <shipcity>London</shipcity> <shippostalcode>WX3 6FW</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>11024</orderid> <productid>26</productid> <unitprice>31.2300</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11024</orderid> <productid>33</productid> <unitprice>2.5000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11024</orderid> <productid>65</productid> <unitprice>21.0500</unitprice> <quantity>21</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11024</orderid> <productid>71</productid> <unitprice>21.5000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11047</orderid> <customerid>EASTC</customerid> <employeeid>7</employeeid> <orderdate>1998-04-24</orderdate> <requireddate>1998-05-22</requireddate> <shippeddate>1998-05-01</shippeddate> <shipvia>3</shipvia> <freight>46.6200</freight> <shipname>Eastern Connection</shipname> <shipaddress>35 King George</shipaddress> <shipcity>London</shipcity> <shippostalcode>WX3 6FW</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>11047</orderid> <productid>1</productid> <unitprice>18.0000</unitprice> <quantity>25</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>11047</orderid> <productid>5</productid> <unitprice>21.3500</unitprice> <quantity>30</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>11056</orderid> <customerid>EASTC</customerid> <employeeid>8</employeeid> <orderdate>1998-04-28</orderdate> <requireddate>1998-05-12</requireddate> <shippeddate>1998-05-01</shippeddate> <shipvia>2</shipvia> <freight>278.9600</freight> <shipname>Eastern Connection</shipname> <shipaddress>35 King George</shipaddress> <shipcity>London</shipcity> <shippostalcode>WX3 6FW</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>11056</orderid> <productid>7</productid> <unitprice>30.0000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11056</orderid> <productid>55</productid> <unitprice>24.0000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11056</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>ERNSH</customerid> <companyname>Ernst Handel</companyname> <contactname>Roland Mendel</contactname> <contacttitle>Sales Manager</contacttitle> <address>Kirchgasse 6</address> <city>Graz</city> <postalcode>8010</postalcode> <country>Austria</country> <phone>7675-3425</phone> <fax>7675-3426</fax> <orders> <orderid>10258</orderid> <customerid>ERNSH</customerid> <employeeid>1</employeeid> <orderdate>1996-07-17</orderdate> <requireddate>1996-08-14</requireddate> <shippeddate>1996-07-23</shippeddate> <shipvia>1</shipvia> <freight>140.5100</freight> <shipname>Ernst Handel</shipname> <shipaddress>Kirchgasse 6</shipaddress> <shipcity>Graz</shipcity> <shippostalcode>8010</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10258</orderid> <productid>2</productid> <unitprice>15.2000</unitprice> <quantity>50</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10258</orderid> <productid>5</productid> <unitprice>17.0000</unitprice> <quantity>65</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10258</orderid> <productid>32</productid> <unitprice>25.6000</unitprice> <quantity>6</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10263</orderid> <customerid>ERNSH</customerid> <employeeid>9</employeeid> <orderdate>1996-07-23</orderdate> <requireddate>1996-08-20</requireddate> <shippeddate>1996-07-31</shippeddate> <shipvia>3</shipvia> <freight>146.0600</freight> <shipname>Ernst Handel</shipname> <shipaddress>Kirchgasse 6</shipaddress> <shipcity>Graz</shipcity> <shippostalcode>8010</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10263</orderid> <productid>16</productid> <unitprice>13.9000</unitprice> <quantity>60</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10263</orderid> <productid>24</productid> <unitprice>3.6000</unitprice> <quantity>28</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10263</orderid> <productid>30</productid> <unitprice>20.7000</unitprice> <quantity>60</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10263</orderid> <productid>74</productid> <unitprice>8.0000</unitprice> <quantity>36</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10351</orderid> <customerid>ERNSH</customerid> <employeeid>1</employeeid> <orderdate>1996-11-11</orderdate> <requireddate>1996-12-09</requireddate> <shippeddate>1996-11-20</shippeddate> <shipvia>1</shipvia> <freight>162.3300</freight> <shipname>Ernst Handel</shipname> <shipaddress>Kirchgasse 6</shipaddress> <shipcity>Graz</shipcity> <shippostalcode>8010</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10351</orderid> <productid>38</productid> <unitprice>210.8000</unitprice> <quantity>20</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10351</orderid> <productid>41</productid> <unitprice>7.7000</unitprice> <quantity>13</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10351</orderid> <productid>44</productid> <unitprice>15.5000</unitprice> <quantity>77</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10351</orderid> <productid>65</productid> <unitprice>16.8000</unitprice> <quantity>10</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10368</orderid> <customerid>ERNSH</customerid> <employeeid>2</employeeid> <orderdate>1996-11-29</orderdate> <requireddate>1996-12-27</requireddate> <shippeddate>1996-12-02</shippeddate> <shipvia>2</shipvia> <freight>101.9500</freight> <shipname>Ernst Handel</shipname> <shipaddress>Kirchgasse 6</shipaddress> <shipcity>Graz</shipcity> <shippostalcode>8010</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10368</orderid> <productid>21</productid> <unitprice>8.0000</unitprice> <quantity>5</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10368</orderid> <productid>28</productid> <unitprice>36.4000</unitprice> <quantity>13</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10368</orderid> <productid>57</productid> <unitprice>15.6000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10368</orderid> <productid>64</productid> <unitprice>26.6000</unitprice> <quantity>35</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10382</orderid> <customerid>ERNSH</customerid> <employeeid>4</employeeid> <orderdate>1996-12-13</orderdate> <requireddate>1997-01-10</requireddate> <shippeddate>1996-12-16</shippeddate> <shipvia>1</shipvia> <freight>94.7700</freight> <shipname>Ernst Handel</shipname> <shipaddress>Kirchgasse 6</shipaddress> <shipcity>Graz</shipcity> <shippostalcode>8010</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10382</orderid> <productid>5</productid> <unitprice>17.0000</unitprice> <quantity>32</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10382</orderid> <productid>18</productid> <unitprice>50.0000</unitprice> <quantity>9</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10382</orderid> <productid>29</productid> <unitprice>99.0000</unitprice> <quantity>14</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10382</orderid> <productid>33</productid> <unitprice>2.0000</unitprice> <quantity>60</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10382</orderid> <productid>74</productid> <unitprice>8.0000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10390</orderid> <customerid>ERNSH</customerid> <employeeid>6</employeeid> <orderdate>1996-12-23</orderdate> <requireddate>1997-01-20</requireddate> <shippeddate>1996-12-26</shippeddate> <shipvia>1</shipvia> <freight>126.3800</freight> <shipname>Ernst Handel</shipname> <shipaddress>Kirchgasse 6</shipaddress> <shipcity>Graz</shipcity> <shippostalcode>8010</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10390</orderid> <productid>31</productid> <unitprice>10.0000</unitprice> <quantity>60</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10390</orderid> <productid>35</productid> <unitprice>14.4000</unitprice> <quantity>40</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10390</orderid> <productid>46</productid> <unitprice>9.6000</unitprice> <quantity>45</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10390</orderid> <productid>72</productid> <unitprice>27.8000</unitprice> <quantity>24</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10402</orderid> <customerid>ERNSH</customerid> <employeeid>8</employeeid> <orderdate>1997-01-02</orderdate> <requireddate>1997-02-13</requireddate> <shippeddate>1997-01-10</shippeddate> <shipvia>2</shipvia> <freight>67.8800</freight> <shipname>Ernst Handel</shipname> <shipaddress>Kirchgasse 6</shipaddress> <shipcity>Graz</shipcity> <shippostalcode>8010</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10402</orderid> <productid>23</productid> <unitprice>7.2000</unitprice> <quantity>60</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10402</orderid> <productid>63</productid> <unitprice>35.1000</unitprice> <quantity>65</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10403</orderid> <customerid>ERNSH</customerid> <employeeid>4</employeeid> <orderdate>1997-01-03</orderdate> <requireddate>1997-01-31</requireddate> <shippeddate>1997-01-09</shippeddate> <shipvia>3</shipvia> <freight>73.7900</freight> <shipname>Ernst Handel</shipname> <shipaddress>Kirchgasse 6</shipaddress> <shipcity>Graz</shipcity> <shippostalcode>8010</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10403</orderid> <productid>16</productid> <unitprice>13.9000</unitprice> <quantity>21</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10403</orderid> <productid>48</productid> <unitprice>10.2000</unitprice> <quantity>70</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10430</orderid> <customerid>ERNSH</customerid> <employeeid>4</employeeid> <orderdate>1997-01-30</orderdate> <requireddate>1997-02-13</requireddate> <shippeddate>1997-02-03</shippeddate> <shipvia>1</shipvia> <freight>458.7800</freight> <shipname>Ernst Handel</shipname> <shipaddress>Kirchgasse 6</shipaddress> <shipcity>Graz</shipcity> <shippostalcode>8010</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10430</orderid> <productid>17</productid> <unitprice>31.2000</unitprice> <quantity>45</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10430</orderid> <productid>21</productid> <unitprice>8.0000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10430</orderid> <productid>56</productid> <unitprice>30.4000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10430</orderid> <productid>59</productid> <unitprice>44.0000</unitprice> <quantity>70</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10442</orderid> <customerid>ERNSH</customerid> <employeeid>3</employeeid> <orderdate>1997-02-11</orderdate> <requireddate>1997-03-11</requireddate> <shippeddate>1997-02-18</shippeddate> <shipvia>2</shipvia> <freight>47.9400</freight> <shipname>Ernst Handel</shipname> <shipaddress>Kirchgasse 6</shipaddress> <shipcity>Graz</shipcity> <shippostalcode>8010</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10442</orderid> <productid>11</productid> <unitprice>16.8000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10442</orderid> <productid>54</productid> <unitprice>5.9000</unitprice> <quantity>80</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10442</orderid> <productid>66</productid> <unitprice>13.6000</unitprice> <quantity>60</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10514</orderid> <customerid>ERNSH</customerid> <employeeid>3</employeeid> <orderdate>1997-04-22</orderdate> <requireddate>1997-05-20</requireddate> <shippeddate>1997-05-16</shippeddate> <shipvia>2</shipvia> <freight>789.9500</freight> <shipname>Ernst Handel</shipname> <shipaddress>Kirchgasse 6</shipaddress> <shipcity>Graz</shipcity> <shippostalcode>8010</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10514</orderid> <productid>20</productid> <unitprice>81.0000</unitprice> <quantity>39</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10514</orderid> <productid>28</productid> <unitprice>45.6000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10514</orderid> <productid>56</productid> <unitprice>38.0000</unitprice> <quantity>70</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10514</orderid> <productid>65</productid> <unitprice>21.0500</unitprice> <quantity>39</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10514</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10571</orderid> <customerid>ERNSH</customerid> <employeeid>8</employeeid> <orderdate>1997-06-17</orderdate> <requireddate>1997-07-29</requireddate> <shippeddate>1997-07-04</shippeddate> <shipvia>3</shipvia> <freight>26.0600</freight> <shipname>Ernst Handel</shipname> <shipaddress>Kirchgasse 6</shipaddress> <shipcity>Graz</shipcity> <shippostalcode>8010</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10571</orderid> <productid>14</productid> <unitprice>23.2500</unitprice> <quantity>11</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10571</orderid> <productid>42</productid> <unitprice>14.0000</unitprice> <quantity>28</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10595</orderid> <customerid>ERNSH</customerid> <employeeid>2</employeeid> <orderdate>1997-07-10</orderdate> <requireddate>1997-08-07</requireddate> <shippeddate>1997-07-14</shippeddate> <shipvia>1</shipvia> <freight>96.7800</freight> <shipname>Ernst Handel</shipname> <shipaddress>Kirchgasse 6</shipaddress> <shipcity>Graz</shipcity> <shippostalcode>8010</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10595</orderid> <productid>35</productid> <unitprice>18.0000</unitprice> <quantity>30</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10595</orderid> <productid>61</productid> <unitprice>28.5000</unitprice> <quantity>120</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10595</orderid> <productid>69</productid> <unitprice>36.0000</unitprice> <quantity>65</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10633</orderid> <customerid>ERNSH</customerid> <employeeid>7</employeeid> <orderdate>1997-08-15</orderdate> <requireddate>1997-09-12</requireddate> <shippeddate>1997-08-18</shippeddate> <shipvia>3</shipvia> <freight>477.9000</freight> <shipname>Ernst Handel</shipname> <shipaddress>Kirchgasse 6</shipaddress> <shipcity>Graz</shipcity> <shippostalcode>8010</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10633</orderid> <productid>12</productid> <unitprice>38.0000</unitprice> <quantity>36</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10633</orderid> <productid>13</productid> <unitprice>6.0000</unitprice> <quantity>13</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10633</orderid> <productid>26</productid> <unitprice>31.2300</unitprice> <quantity>35</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10633</orderid> <productid>62</productid> <unitprice>49.3000</unitprice> <quantity>80</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10667</orderid> <customerid>ERNSH</customerid> <employeeid>7</employeeid> <orderdate>1997-09-12</orderdate> <requireddate>1997-10-10</requireddate> <shippeddate>1997-09-19</shippeddate> <shipvia>1</shipvia> <freight>78.0900</freight> <shipname>Ernst Handel</shipname> <shipaddress>Kirchgasse 6</shipaddress> <shipcity>Graz</shipcity> <shippostalcode>8010</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10667</orderid> <productid>69</productid> <unitprice>36.0000</unitprice> <quantity>45</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10667</orderid> <productid>71</productid> <unitprice>21.5000</unitprice> <quantity>14</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10698</orderid> <customerid>ERNSH</customerid> <employeeid>4</employeeid> <orderdate>1997-10-09</orderdate> <requireddate>1997-11-06</requireddate> <shippeddate>1997-10-17</shippeddate> <shipvia>1</shipvia> <freight>272.4700</freight> <shipname>Ernst Handel</shipname> <shipaddress>Kirchgasse 6</shipaddress> <shipcity>Graz</shipcity> <shippostalcode>8010</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10698</orderid> <productid>11</productid> <unitprice>21.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10698</orderid> <productid>17</productid> <unitprice>39.0000</unitprice> <quantity>8</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10698</orderid> <productid>29</productid> <unitprice>123.7900</unitprice> <quantity>12</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10698</orderid> <productid>65</productid> <unitprice>21.0500</unitprice> <quantity>65</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10698</orderid> <productid>70</productid> <unitprice>15.0000</unitprice> <quantity>8</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10764</orderid> <customerid>ERNSH</customerid> <employeeid>6</employeeid> <orderdate>1997-12-03</orderdate> <requireddate>1997-12-31</requireddate> <shippeddate>1997-12-08</shippeddate> <shipvia>3</shipvia> <freight>145.4500</freight> <shipname>Ernst Handel</shipname> <shipaddress>Kirchgasse 6</shipaddress> <shipcity>Graz</shipcity> <shippostalcode>8010</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10764</orderid> <productid>3</productid> <unitprice>10.0000</unitprice> <quantity>20</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10764</orderid> <productid>39</productid> <unitprice>18.0000</unitprice> <quantity>130</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10771</orderid> <customerid>ERNSH</customerid> <employeeid>9</employeeid> <orderdate>1997-12-10</orderdate> <requireddate>1998-01-07</requireddate> <shippeddate>1998-01-02</shippeddate> <shipvia>2</shipvia> <freight>11.1900</freight> <shipname>Ernst Handel</shipname> <shipaddress>Kirchgasse 6</shipaddress> <shipcity>Graz</shipcity> <shippostalcode>8010</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10771</orderid> <productid>71</productid> <unitprice>21.5000</unitprice> <quantity>16</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10773</orderid> <customerid>ERNSH</customerid> <employeeid>1</employeeid> <orderdate>1997-12-11</orderdate> <requireddate>1998-01-08</requireddate> <shippeddate>1997-12-16</shippeddate> <shipvia>3</shipvia> <freight>96.4300</freight> <shipname>Ernst Handel</shipname> <shipaddress>Kirchgasse 6</shipaddress> <shipcity>Graz</shipcity> <shippostalcode>8010</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10773</orderid> <productid>17</productid> <unitprice>39.0000</unitprice> <quantity>33</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10773</orderid> <productid>31</productid> <unitprice>12.5000</unitprice> <quantity>70</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10773</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>7</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10776</orderid> <customerid>ERNSH</customerid> <employeeid>1</employeeid> <orderdate>1997-12-15</orderdate> <requireddate>1998-01-12</requireddate> <shippeddate>1997-12-18</shippeddate> <shipvia>3</shipvia> <freight>351.5300</freight> <shipname>Ernst Handel</shipname> <shipaddress>Kirchgasse 6</shipaddress> <shipcity>Graz</shipcity> <shippostalcode>8010</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10776</orderid> <productid>31</productid> <unitprice>12.5000</unitprice> <quantity>16</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10776</orderid> <productid>42</productid> <unitprice>14.0000</unitprice> <quantity>12</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10776</orderid> <productid>45</productid> <unitprice>9.5000</unitprice> <quantity>27</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10776</orderid> <productid>51</productid> <unitprice>53.0000</unitprice> <quantity>120</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10795</orderid> <customerid>ERNSH</customerid> <employeeid>8</employeeid> <orderdate>1997-12-24</orderdate> <requireddate>1998-01-21</requireddate> <shippeddate>1998-01-20</shippeddate> <shipvia>2</shipvia> <freight>126.6600</freight> <shipname>Ernst Handel</shipname> <shipaddress>Kirchgasse 6</shipaddress> <shipcity>Graz</shipcity> <shippostalcode>8010</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10795</orderid> <productid>16</productid> <unitprice>17.4500</unitprice> <quantity>65</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10795</orderid> <productid>17</productid> <unitprice>39.0000</unitprice> <quantity>35</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10836</orderid> <customerid>ERNSH</customerid> <employeeid>7</employeeid> <orderdate>1998-01-16</orderdate> <requireddate>1998-02-13</requireddate> <shippeddate>1998-01-21</shippeddate> <shipvia>1</shipvia> <freight>411.8800</freight> <shipname>Ernst Handel</shipname> <shipaddress>Kirchgasse 6</shipaddress> <shipcity>Graz</shipcity> <shippostalcode>8010</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10836</orderid> <productid>22</productid> <unitprice>21.0000</unitprice> <quantity>52</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10836</orderid> <productid>35</productid> <unitprice>18.0000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10836</orderid> <productid>57</productid> <unitprice>19.5000</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10836</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>60</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10836</orderid> <productid>64</productid> <unitprice>33.2500</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10854</orderid> <customerid>ERNSH</customerid> <employeeid>3</employeeid> <orderdate>1998-01-27</orderdate> <requireddate>1998-02-24</requireddate> <shippeddate>1998-02-05</shippeddate> <shipvia>2</shipvia> <freight>100.2200</freight> <shipname>Ernst Handel</shipname> <shipaddress>Kirchgasse 6</shipaddress> <shipcity>Graz</shipcity> <shippostalcode>8010</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10854</orderid> <productid>10</productid> <unitprice>31.0000</unitprice> <quantity>100</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10854</orderid> <productid>13</productid> <unitprice>6.0000</unitprice> <quantity>65</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10895</orderid> <customerid>ERNSH</customerid> <employeeid>3</employeeid> <orderdate>1998-02-18</orderdate> <requireddate>1998-03-18</requireddate> <shippeddate>1998-02-23</shippeddate> <shipvia>1</shipvia> <freight>162.7500</freight> <shipname>Ernst Handel</shipname> <shipaddress>Kirchgasse 6</shipaddress> <shipcity>Graz</shipcity> <shippostalcode>8010</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10895</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>110</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10895</orderid> <productid>39</productid> <unitprice>18.0000</unitprice> <quantity>45</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10895</orderid> <productid>40</productid> <unitprice>18.4000</unitprice> <quantity>91</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10895</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>100</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10968</orderid> <customerid>ERNSH</customerid> <employeeid>1</employeeid> <orderdate>1998-03-23</orderdate> <requireddate>1998-04-20</requireddate> <shippeddate>1998-04-01</shippeddate> <shipvia>3</shipvia> <freight>74.6000</freight> <shipname>Ernst Handel</shipname> <shipaddress>Kirchgasse 6</shipaddress> <shipcity>Graz</shipcity> <shippostalcode>8010</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10968</orderid> <productid>12</productid> <unitprice>38.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10968</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10968</orderid> <productid>64</productid> <unitprice>33.2500</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10979</orderid> <customerid>ERNSH</customerid> <employeeid>8</employeeid> <orderdate>1998-03-26</orderdate> <requireddate>1998-04-23</requireddate> <shippeddate>1998-03-31</shippeddate> <shipvia>2</shipvia> <freight>353.0700</freight> <shipname>Ernst Handel</shipname> <shipaddress>Kirchgasse 6</shipaddress> <shipcity>Graz</shipcity> <shippostalcode>8010</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10979</orderid> <productid>7</productid> <unitprice>30.0000</unitprice> <quantity>18</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10979</orderid> <productid>12</productid> <unitprice>38.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10979</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>80</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10979</orderid> <productid>27</productid> <unitprice>43.9000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10979</orderid> <productid>31</productid> <unitprice>12.5000</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10979</orderid> <productid>63</productid> <unitprice>43.9000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10990</orderid> <customerid>ERNSH</customerid> <employeeid>2</employeeid> <orderdate>1998-04-01</orderdate> <requireddate>1998-05-13</requireddate> <shippeddate>1998-04-07</shippeddate> <shipvia>3</shipvia> <freight>117.6100</freight> <shipname>Ernst Handel</shipname> <shipaddress>Kirchgasse 6</shipaddress> <shipcity>Graz</shipcity> <shippostalcode>8010</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10990</orderid> <productid>21</productid> <unitprice>10.0000</unitprice> <quantity>65</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10990</orderid> <productid>34</productid> <unitprice>14.0000</unitprice> <quantity>60</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10990</orderid> <productid>55</productid> <unitprice>24.0000</unitprice> <quantity>65</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10990</orderid> <productid>61</productid> <unitprice>28.5000</unitprice> <quantity>66</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>11008</orderid> <customerid>ERNSH</customerid> <employeeid>7</employeeid> <orderdate>1998-04-08</orderdate> <requireddate>1998-05-06</requireddate> <shipvia>3</shipvia> <freight>79.4600</freight> <shipname>Ernst Handel</shipname> <shipaddress>Kirchgasse 6</shipaddress> <shipcity>Graz</shipcity> <shippostalcode>8010</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>11008</orderid> <productid>28</productid> <unitprice>45.6000</unitprice> <quantity>70</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>11008</orderid> <productid>34</productid> <unitprice>14.0000</unitprice> <quantity>90</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>11008</orderid> <productid>71</productid> <unitprice>21.5000</unitprice> <quantity>21</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11017</orderid> <customerid>ERNSH</customerid> <employeeid>9</employeeid> <orderdate>1998-04-13</orderdate> <requireddate>1998-05-11</requireddate> <shippeddate>1998-04-20</shippeddate> <shipvia>2</shipvia> <freight>754.2600</freight> <shipname>Ernst Handel</shipname> <shipaddress>Kirchgasse 6</shipaddress> <shipcity>Graz</shipcity> <shippostalcode>8010</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>11017</orderid> <productid>3</productid> <unitprice>10.0000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11017</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>110</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11017</orderid> <productid>70</productid> <unitprice>15.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11072</orderid> <customerid>ERNSH</customerid> <employeeid>4</employeeid> <orderdate>1998-05-05</orderdate> <requireddate>1998-06-02</requireddate> <shipvia>2</shipvia> <freight>258.6400</freight> <shipname>Ernst Handel</shipname> <shipaddress>Kirchgasse 6</shipaddress> <shipcity>Graz</shipcity> <shippostalcode>8010</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>11072</orderid> <productid>2</productid> <unitprice>19.0000</unitprice> <quantity>8</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11072</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11072</orderid> <productid>50</productid> <unitprice>16.2500</unitprice> <quantity>22</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11072</orderid> <productid>64</productid> <unitprice>33.2500</unitprice> <quantity>130</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>FAMIA</customerid> <companyname>Familia Arquibaldo</companyname> <contactname>Aria Cruz</contactname> <contacttitle>Marketing Assistant</contacttitle> <address>Rua Orós, 92</address> <city>Sao Paulo</city> <region>SP</region> <postalcode>05442-030</postalcode> <country>Brazil</country> <phone>(11) 555-9857</phone> <orders> <orderid>10347</orderid> <customerid>FAMIA</customerid> <employeeid>4</employeeid> <orderdate>1996-11-06</orderdate> <requireddate>1996-12-04</requireddate> <shippeddate>1996-11-08</shippeddate> <shipvia>3</shipvia> <freight>3.1000</freight> <shipname>Familia Arquibaldo</shipname> <shipaddress>Rua Orós, 92</shipaddress> <shipcity>Sao Paulo</shipcity> <shipregion>SP</shipregion> <shippostalcode>05442-030</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10347</orderid> <productid>25</productid> <unitprice>11.2000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10347</orderid> <productid>39</productid> <unitprice>14.4000</unitprice> <quantity>50</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10347</orderid> <productid>40</productid> <unitprice>14.7000</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10347</orderid> <productid>75</productid> <unitprice>6.2000</unitprice> <quantity>6</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10386</orderid> <customerid>FAMIA</customerid> <employeeid>9</employeeid> <orderdate>1996-12-18</orderdate> <requireddate>1997-01-01</requireddate> <shippeddate>1996-12-25</shippeddate> <shipvia>3</shipvia> <freight>13.9900</freight> <shipname>Familia Arquibaldo</shipname> <shipaddress>Rua Orós, 92</shipaddress> <shipcity>Sao Paulo</shipcity> <shipregion>SP</shipregion> <shippostalcode>05442-030</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10386</orderid> <productid>24</productid> <unitprice>3.6000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10386</orderid> <productid>34</productid> <unitprice>11.2000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10414</orderid> <customerid>FAMIA</customerid> <employeeid>2</employeeid> <orderdate>1997-01-14</orderdate> <requireddate>1997-02-11</requireddate> <shippeddate>1997-01-17</shippeddate> <shipvia>3</shipvia> <freight>21.4800</freight> <shipname>Familia Arquibaldo</shipname> <shipaddress>Rua Orós, 92</shipaddress> <shipcity>Sao Paulo</shipcity> <shipregion>SP</shipregion> <shippostalcode>05442-030</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10414</orderid> <productid>19</productid> <unitprice>7.3000</unitprice> <quantity>18</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10414</orderid> <productid>33</productid> <unitprice>2.0000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10512</orderid> <customerid>FAMIA</customerid> <employeeid>7</employeeid> <orderdate>1997-04-21</orderdate> <requireddate>1997-05-19</requireddate> <shippeddate>1997-04-24</shippeddate> <shipvia>2</shipvia> <freight>3.5300</freight> <shipname>Familia Arquibaldo</shipname> <shipaddress>Rua Orós, 92</shipaddress> <shipcity>Sao Paulo</shipcity> <shipregion>SP</shipregion> <shippostalcode>05442-030</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10512</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>10</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10512</orderid> <productid>46</productid> <unitprice>12.0000</unitprice> <quantity>9</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10512</orderid> <productid>47</productid> <unitprice>9.5000</unitprice> <quantity>6</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10512</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>12</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10581</orderid> <customerid>FAMIA</customerid> <employeeid>3</employeeid> <orderdate>1997-06-26</orderdate> <requireddate>1997-07-24</requireddate> <shippeddate>1997-07-02</shippeddate> <shipvia>1</shipvia> <freight>3.0100</freight> <shipname>Familia Arquibaldo</shipname> <shipaddress>Rua Orós, 92</shipaddress> <shipcity>Sao Paulo</shipcity> <shipregion>SP</shipregion> <shippostalcode>05442-030</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10581</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>50</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10650</orderid> <customerid>FAMIA</customerid> <employeeid>5</employeeid> <orderdate>1997-08-29</orderdate> <requireddate>1997-09-26</requireddate> <shippeddate>1997-09-03</shippeddate> <shipvia>3</shipvia> <freight>176.8100</freight> <shipname>Familia Arquibaldo</shipname> <shipaddress>Rua Orós, 92</shipaddress> <shipcity>Sao Paulo</shipcity> <shipregion>SP</shipregion> <shippostalcode>05442-030</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10650</orderid> <productid>30</productid> <unitprice>25.8900</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10650</orderid> <productid>53</productid> <unitprice>32.8000</unitprice> <quantity>25</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10650</orderid> <productid>54</productid> <unitprice>7.4500</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10725</orderid> <customerid>FAMIA</customerid> <employeeid>4</employeeid> <orderdate>1997-10-31</orderdate> <requireddate>1997-11-28</requireddate> <shippeddate>1997-11-05</shippeddate> <shipvia>3</shipvia> <freight>10.8300</freight> <shipname>Familia Arquibaldo</shipname> <shipaddress>Rua Orós, 92</shipaddress> <shipcity>Sao Paulo</shipcity> <shipregion>SP</shipregion> <shippostalcode>05442-030</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10725</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10725</orderid> <productid>52</productid> <unitprice>7.0000</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10725</orderid> <productid>55</productid> <unitprice>24.0000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>FISSA</customerid> <companyname>FISSA Fabrica Inter. Salchichas S.A.</companyname> <contactname>Diego Roel</contactname> <contacttitle>Accounting Manager</contacttitle> <address>C/ Moralzarzal, 86</address> <city>Madrid</city> <postalcode>28034</postalcode> <country>Spain</country> <phone>(91) 555 94 44</phone> <fax>(91) 555 55 93</fax> </customers> <customers> <customerid>FOLIG</customerid> <companyname>Folies gourmandes</companyname> <contactname>Martine Rancé</contactname> <contacttitle>Assistant Sales Agent</contacttitle> <address>184, chaussée de Tournai</address> <city>Lille</city> <postalcode>59000</postalcode> <country>France</country> <phone>20.16.10.16</phone> <fax>20.16.10.17</fax> <orders> <orderid>10408</orderid> <customerid>FOLIG</customerid> <employeeid>8</employeeid> <orderdate>1997-01-08</orderdate> <requireddate>1997-02-05</requireddate> <shippeddate>1997-01-14</shippeddate> <shipvia>1</shipvia> <freight>11.2600</freight> <shipname>Folies gourmandes</shipname> <shipaddress>184, chaussée de Tournai</shipaddress> <shipcity>Lille</shipcity> <shippostalcode>59000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10408</orderid> <productid>37</productid> <unitprice>20.8000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10408</orderid> <productid>54</productid> <unitprice>5.9000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10408</orderid> <productid>62</productid> <unitprice>39.4000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10480</orderid> <customerid>FOLIG</customerid> <employeeid>6</employeeid> <orderdate>1997-03-20</orderdate> <requireddate>1997-04-17</requireddate> <shippeddate>1997-03-24</shippeddate> <shipvia>2</shipvia> <freight>1.3500</freight> <shipname>Folies gourmandes</shipname> <shipaddress>184, chaussée de Tournai</shipaddress> <shipcity>Lille</shipcity> <shippostalcode>59000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10480</orderid> <productid>47</productid> <unitprice>7.6000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10480</orderid> <productid>59</productid> <unitprice>44.0000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10634</orderid> <customerid>FOLIG</customerid> <employeeid>4</employeeid> <orderdate>1997-08-15</orderdate> <requireddate>1997-09-12</requireddate> <shippeddate>1997-08-21</shippeddate> <shipvia>3</shipvia> <freight>487.3800</freight> <shipname>Folies gourmandes</shipname> <shipaddress>184, chaussée de Tournai</shipaddress> <shipcity>Lille</shipcity> <shippostalcode>59000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10634</orderid> <productid>7</productid> <unitprice>30.0000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10634</orderid> <productid>18</productid> <unitprice>62.5000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10634</orderid> <productid>51</productid> <unitprice>53.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10634</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>2</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10763</orderid> <customerid>FOLIG</customerid> <employeeid>3</employeeid> <orderdate>1997-12-03</orderdate> <requireddate>1997-12-31</requireddate> <shippeddate>1997-12-08</shippeddate> <shipvia>3</shipvia> <freight>37.3500</freight> <shipname>Folies gourmandes</shipname> <shipaddress>184, chaussée de Tournai</shipaddress> <shipcity>Lille</shipcity> <shippostalcode>59000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10763</orderid> <productid>21</productid> <unitprice>10.0000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10763</orderid> <productid>22</productid> <unitprice>21.0000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10763</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10789</orderid> <customerid>FOLIG</customerid> <employeeid>1</employeeid> <orderdate>1997-12-22</orderdate> <requireddate>1998-01-19</requireddate> <shippeddate>1997-12-31</shippeddate> <shipvia>2</shipvia> <freight>100.6000</freight> <shipname>Folies gourmandes</shipname> <shipaddress>184, chaussée de Tournai</shipaddress> <shipcity>Lille</shipcity> <shippostalcode>59000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10789</orderid> <productid>18</productid> <unitprice>62.5000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10789</orderid> <productid>35</productid> <unitprice>18.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10789</orderid> <productid>63</productid> <unitprice>43.9000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10789</orderid> <productid>68</productid> <unitprice>12.5000</unitprice> <quantity>18</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>FOLKO</customerid> <companyname>Folk och fä HB</companyname> <contactname>Maria Larsson</contactname> <contacttitle>Owner</contacttitle> <address>Åkergatan 24</address> <city>Bräcke</city> <postalcode>S-844 67</postalcode> <country>Sweden</country> <phone>0695-34 67 21</phone> <orders> <orderid>10264</orderid> <customerid>FOLKO</customerid> <employeeid>6</employeeid> <orderdate>1996-07-24</orderdate> <requireddate>1996-08-21</requireddate> <shippeddate>1996-08-23</shippeddate> <shipvia>3</shipvia> <freight>3.6700</freight> <shipname>Folk och fä HB</shipname> <shipaddress>Åkergatan 24</shipaddress> <shipcity>Bräcke</shipcity> <shippostalcode>S-844 67</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10264</orderid> <productid>2</productid> <unitprice>15.2000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10264</orderid> <productid>41</productid> <unitprice>7.7000</unitprice> <quantity>25</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10327</orderid> <customerid>FOLKO</customerid> <employeeid>2</employeeid> <orderdate>1996-10-11</orderdate> <requireddate>1996-11-08</requireddate> <shippeddate>1996-10-14</shippeddate> <shipvia>1</shipvia> <freight>63.3600</freight> <shipname>Folk och fä HB</shipname> <shipaddress>Åkergatan 24</shipaddress> <shipcity>Bräcke</shipcity> <shippostalcode>S-844 67</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10327</orderid> <productid>2</productid> <unitprice>15.2000</unitprice> <quantity>25</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10327</orderid> <productid>11</productid> <unitprice>16.8000</unitprice> <quantity>50</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10327</orderid> <productid>30</productid> <unitprice>20.7000</unitprice> <quantity>35</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10327</orderid> <productid>58</productid> <unitprice>10.6000</unitprice> <quantity>30</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10378</orderid> <customerid>FOLKO</customerid> <employeeid>5</employeeid> <orderdate>1996-12-10</orderdate> <requireddate>1997-01-07</requireddate> <shippeddate>1996-12-19</shippeddate> <shipvia>3</shipvia> <freight>5.4400</freight> <shipname>Folk och fä HB</shipname> <shipaddress>Åkergatan 24</shipaddress> <shipcity>Bräcke</shipcity> <shippostalcode>S-844 67</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10378</orderid> <productid>71</productid> <unitprice>17.2000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10434</orderid> <customerid>FOLKO</customerid> <employeeid>3</employeeid> <orderdate>1997-02-03</orderdate> <requireddate>1997-03-03</requireddate> <shippeddate>1997-02-13</shippeddate> <shipvia>2</shipvia> <freight>17.9200</freight> <shipname>Folk och fä HB</shipname> <shipaddress>Åkergatan 24</shipaddress> <shipcity>Bräcke</shipcity> <shippostalcode>S-844 67</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10434</orderid> <productid>11</productid> <unitprice>16.8000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10434</orderid> <productid>76</productid> <unitprice>14.4000</unitprice> <quantity>18</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10460</orderid> <customerid>FOLKO</customerid> <employeeid>8</employeeid> <orderdate>1997-02-28</orderdate> <requireddate>1997-03-28</requireddate> <shippeddate>1997-03-03</shippeddate> <shipvia>1</shipvia> <freight>16.2700</freight> <shipname>Folk och fä HB</shipname> <shipaddress>Åkergatan 24</shipaddress> <shipcity>Bräcke</shipcity> <shippostalcode>S-844 67</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10460</orderid> <productid>68</productid> <unitprice>10.0000</unitprice> <quantity>21</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10460</orderid> <productid>75</productid> <unitprice>6.2000</unitprice> <quantity>4</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10533</orderid> <customerid>FOLKO</customerid> <employeeid>8</employeeid> <orderdate>1997-05-12</orderdate> <requireddate>1997-06-09</requireddate> <shippeddate>1997-05-22</shippeddate> <shipvia>1</shipvia> <freight>188.0400</freight> <shipname>Folk och fä HB</shipname> <shipaddress>Åkergatan 24</shipaddress> <shipcity>Bräcke</shipcity> <shippostalcode>S-844 67</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10533</orderid> <productid>4</productid> <unitprice>22.0000</unitprice> <quantity>50</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10533</orderid> <productid>72</productid> <unitprice>34.8000</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10533</orderid> <productid>73</productid> <unitprice>15.0000</unitprice> <quantity>24</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10561</orderid> <customerid>FOLKO</customerid> <employeeid>2</employeeid> <orderdate>1997-06-06</orderdate> <requireddate>1997-07-04</requireddate> <shippeddate>1997-06-09</shippeddate> <shipvia>2</shipvia> <freight>242.2100</freight> <shipname>Folk och fä HB</shipname> <shipaddress>Åkergatan 24</shipaddress> <shipcity>Bräcke</shipcity> <shippostalcode>S-844 67</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10561</orderid> <productid>44</productid> <unitprice>19.4500</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10561</orderid> <productid>51</productid> <unitprice>53.0000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10703</orderid> <customerid>FOLKO</customerid> <employeeid>6</employeeid> <orderdate>1997-10-14</orderdate> <requireddate>1997-11-11</requireddate> <shippeddate>1997-10-20</shippeddate> <shipvia>2</shipvia> <freight>152.3000</freight> <shipname>Folk och fä HB</shipname> <shipaddress>Åkergatan 24</shipaddress> <shipcity>Bräcke</shipcity> <shippostalcode>S-844 67</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10703</orderid> <productid>2</productid> <unitprice>19.0000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10703</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10703</orderid> <productid>73</productid> <unitprice>15.0000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10762</orderid> <customerid>FOLKO</customerid> <employeeid>3</employeeid> <orderdate>1997-12-02</orderdate> <requireddate>1997-12-30</requireddate> <shippeddate>1997-12-09</shippeddate> <shipvia>1</shipvia> <freight>328.7400</freight> <shipname>Folk och fä HB</shipname> <shipaddress>Åkergatan 24</shipaddress> <shipcity>Bräcke</shipcity> <shippostalcode>S-844 67</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10762</orderid> <productid>39</productid> <unitprice>18.0000</unitprice> <quantity>16</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10762</orderid> <productid>47</productid> <unitprice>9.5000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10762</orderid> <productid>51</productid> <unitprice>53.0000</unitprice> <quantity>28</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10762</orderid> <productid>56</productid> <unitprice>38.0000</unitprice> <quantity>60</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10774</orderid> <customerid>FOLKO</customerid> <employeeid>4</employeeid> <orderdate>1997-12-11</orderdate> <requireddate>1997-12-25</requireddate> <shippeddate>1997-12-12</shippeddate> <shipvia>1</shipvia> <freight>48.2000</freight> <shipname>Folk och fä HB</shipname> <shipaddress>Åkergatan 24</shipaddress> <shipcity>Bräcke</shipcity> <shippostalcode>S-844 67</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10774</orderid> <productid>31</productid> <unitprice>12.5000</unitprice> <quantity>2</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10774</orderid> <productid>66</productid> <unitprice>17.0000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10824</orderid> <customerid>FOLKO</customerid> <employeeid>8</employeeid> <orderdate>1998-01-09</orderdate> <requireddate>1998-02-06</requireddate> <shippeddate>1998-01-30</shippeddate> <shipvia>1</shipvia> <freight>1.2300</freight> <shipname>Folk och fä HB</shipname> <shipaddress>Åkergatan 24</shipaddress> <shipcity>Bräcke</shipcity> <shippostalcode>S-844 67</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10824</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10824</orderid> <productid>70</productid> <unitprice>15.0000</unitprice> <quantity>9</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10880</orderid> <customerid>FOLKO</customerid> <employeeid>7</employeeid> <orderdate>1998-02-10</orderdate> <requireddate>1998-03-24</requireddate> <shippeddate>1998-02-18</shippeddate> <shipvia>1</shipvia> <freight>88.0100</freight> <shipname>Folk och fä HB</shipname> <shipaddress>Åkergatan 24</shipaddress> <shipcity>Bräcke</shipcity> <shippostalcode>S-844 67</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10880</orderid> <productid>23</productid> <unitprice>9.0000</unitprice> <quantity>30</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10880</orderid> <productid>61</productid> <unitprice>28.5000</unitprice> <quantity>30</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10880</orderid> <productid>70</productid> <unitprice>15.0000</unitprice> <quantity>50</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10902</orderid> <customerid>FOLKO</customerid> <employeeid>1</employeeid> <orderdate>1998-02-23</orderdate> <requireddate>1998-03-23</requireddate> <shippeddate>1998-03-03</shippeddate> <shipvia>1</shipvia> <freight>44.1500</freight> <shipname>Folk och fä HB</shipname> <shipaddress>Åkergatan 24</shipaddress> <shipcity>Bräcke</shipcity> <shippostalcode>S-844 67</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10902</orderid> <productid>55</productid> <unitprice>24.0000</unitprice> <quantity>30</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10902</orderid> <productid>62</productid> <unitprice>49.3000</unitprice> <quantity>6</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10955</orderid> <customerid>FOLKO</customerid> <employeeid>8</employeeid> <orderdate>1998-03-17</orderdate> <requireddate>1998-04-14</requireddate> <shippeddate>1998-03-20</shippeddate> <shipvia>2</shipvia> <freight>3.2600</freight> <shipname>Folk och fä HB</shipname> <shipaddress>Åkergatan 24</shipaddress> <shipcity>Bräcke</shipcity> <shippostalcode>S-844 67</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10955</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>12</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10977</orderid> <customerid>FOLKO</customerid> <employeeid>8</employeeid> <orderdate>1998-03-26</orderdate> <requireddate>1998-04-23</requireddate> <shippeddate>1998-04-10</shippeddate> <shipvia>3</shipvia> <freight>208.5000</freight> <shipname>Folk och fä HB</shipname> <shipaddress>Åkergatan 24</shipaddress> <shipcity>Bräcke</shipcity> <shippostalcode>S-844 67</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10977</orderid> <productid>39</productid> <unitprice>18.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10977</orderid> <productid>47</productid> <unitprice>9.5000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10977</orderid> <productid>51</productid> <unitprice>53.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10977</orderid> <productid>63</productid> <unitprice>43.9000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10980</orderid> <customerid>FOLKO</customerid> <employeeid>4</employeeid> <orderdate>1998-03-27</orderdate> <requireddate>1998-05-08</requireddate> <shippeddate>1998-04-17</shippeddate> <shipvia>1</shipvia> <freight>1.2600</freight> <shipname>Folk och fä HB</shipname> <shipaddress>Åkergatan 24</shipaddress> <shipcity>Bräcke</shipcity> <shippostalcode>S-844 67</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10980</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>40</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10993</orderid> <customerid>FOLKO</customerid> <employeeid>7</employeeid> <orderdate>1998-04-01</orderdate> <requireddate>1998-04-29</requireddate> <shippeddate>1998-04-10</shippeddate> <shipvia>3</shipvia> <freight>8.8100</freight> <shipname>Folk och fä HB</shipname> <shipaddress>Åkergatan 24</shipaddress> <shipcity>Bräcke</shipcity> <shippostalcode>S-844 67</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>10993</orderid> <productid>29</productid> <unitprice>123.7900</unitprice> <quantity>50</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10993</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>35</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>11001</orderid> <customerid>FOLKO</customerid> <employeeid>2</employeeid> <orderdate>1998-04-06</orderdate> <requireddate>1998-05-04</requireddate> <shippeddate>1998-04-14</shippeddate> <shipvia>2</shipvia> <freight>197.3000</freight> <shipname>Folk och fä HB</shipname> <shipaddress>Åkergatan 24</shipaddress> <shipcity>Bräcke</shipcity> <shippostalcode>S-844 67</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>11001</orderid> <productid>7</productid> <unitprice>30.0000</unitprice> <quantity>60</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11001</orderid> <productid>22</productid> <unitprice>21.0000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11001</orderid> <productid>46</productid> <unitprice>12.0000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11001</orderid> <productid>55</productid> <unitprice>24.0000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11050</orderid> <customerid>FOLKO</customerid> <employeeid>8</employeeid> <orderdate>1998-04-27</orderdate> <requireddate>1998-05-25</requireddate> <shippeddate>1998-05-05</shippeddate> <shipvia>2</shipvia> <freight>59.4100</freight> <shipname>Folk och fä HB</shipname> <shipaddress>Åkergatan 24</shipaddress> <shipcity>Bräcke</shipcity> <shippostalcode>S-844 67</shippostalcode> <shipcountry>Sweden</shipcountry> <orderdetails> <orderid>11050</orderid> <productid>76</productid> <unitprice>18.0000</unitprice> <quantity>50</quantity> <discount>0.10000</discount> </orderdetails> </orders> </customers> <customers> <customerid>FRANK</customerid> <companyname>Frankenversand</companyname> <contactname>Peter Franken</contactname> <contacttitle>Marketing Manager</contacttitle> <address>Berliner Platz 43</address> <city>München</city> <postalcode>80805</postalcode> <country>Germany</country> <phone>089-0877310</phone> <fax>089-0877451</fax> <orders> <orderid>10267</orderid> <customerid>FRANK</customerid> <employeeid>4</employeeid> <orderdate>1996-07-29</orderdate> <requireddate>1996-08-26</requireddate> <shippeddate>1996-08-06</shippeddate> <shipvia>1</shipvia> <freight>208.5800</freight> <shipname>Frankenversand</shipname> <shipaddress>Berliner Platz 43</shipaddress> <shipcity>München</shipcity> <shippostalcode>80805</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10267</orderid> <productid>40</productid> <unitprice>14.7000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10267</orderid> <productid>59</productid> <unitprice>44.0000</unitprice> <quantity>70</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10267</orderid> <productid>76</productid> <unitprice>14.4000</unitprice> <quantity>15</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10337</orderid> <customerid>FRANK</customerid> <employeeid>4</employeeid> <orderdate>1996-10-24</orderdate> <requireddate>1996-11-21</requireddate> <shippeddate>1996-10-29</shippeddate> <shipvia>3</shipvia> <freight>108.2600</freight> <shipname>Frankenversand</shipname> <shipaddress>Berliner Platz 43</shipaddress> <shipcity>München</shipcity> <shippostalcode>80805</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10337</orderid> <productid>23</productid> <unitprice>7.2000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10337</orderid> <productid>26</productid> <unitprice>24.9000</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10337</orderid> <productid>36</productid> <unitprice>15.2000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10337</orderid> <productid>37</productid> <unitprice>20.8000</unitprice> <quantity>28</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10337</orderid> <productid>72</productid> <unitprice>27.8000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10342</orderid> <customerid>FRANK</customerid> <employeeid>4</employeeid> <orderdate>1996-10-30</orderdate> <requireddate>1996-11-13</requireddate> <shippeddate>1996-11-04</shippeddate> <shipvia>2</shipvia> <freight>54.8300</freight> <shipname>Frankenversand</shipname> <shipaddress>Berliner Platz 43</shipaddress> <shipcity>München</shipcity> <shippostalcode>80805</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10342</orderid> <productid>2</productid> <unitprice>15.2000</unitprice> <quantity>24</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10342</orderid> <productid>31</productid> <unitprice>10.0000</unitprice> <quantity>56</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10342</orderid> <productid>36</productid> <unitprice>15.2000</unitprice> <quantity>40</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10342</orderid> <productid>55</productid> <unitprice>19.2000</unitprice> <quantity>40</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10396</orderid> <customerid>FRANK</customerid> <employeeid>1</employeeid> <orderdate>1996-12-27</orderdate> <requireddate>1997-01-10</requireddate> <shippeddate>1997-01-06</shippeddate> <shipvia>3</shipvia> <freight>135.3500</freight> <shipname>Frankenversand</shipname> <shipaddress>Berliner Platz 43</shipaddress> <shipcity>München</shipcity> <shippostalcode>80805</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10396</orderid> <productid>23</productid> <unitprice>7.2000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10396</orderid> <productid>71</productid> <unitprice>17.2000</unitprice> <quantity>60</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10396</orderid> <productid>72</productid> <unitprice>27.8000</unitprice> <quantity>21</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10488</orderid> <customerid>FRANK</customerid> <employeeid>8</employeeid> <orderdate>1997-03-27</orderdate> <requireddate>1997-04-24</requireddate> <shippeddate>1997-04-02</shippeddate> <shipvia>2</shipvia> <freight>4.9300</freight> <shipname>Frankenversand</shipname> <shipaddress>Berliner Platz 43</shipaddress> <shipcity>München</shipcity> <shippostalcode>80805</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10488</orderid> <productid>59</productid> <unitprice>44.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10488</orderid> <productid>73</productid> <unitprice>12.0000</unitprice> <quantity>20</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10560</orderid> <customerid>FRANK</customerid> <employeeid>8</employeeid> <orderdate>1997-06-06</orderdate> <requireddate>1997-07-04</requireddate> <shippeddate>1997-06-09</shippeddate> <shipvia>1</shipvia> <freight>36.6500</freight> <shipname>Frankenversand</shipname> <shipaddress>Berliner Platz 43</shipaddress> <shipcity>München</shipcity> <shippostalcode>80805</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10560</orderid> <productid>30</productid> <unitprice>25.8900</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10560</orderid> <productid>62</productid> <unitprice>49.3000</unitprice> <quantity>15</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10623</orderid> <customerid>FRANK</customerid> <employeeid>8</employeeid> <orderdate>1997-08-07</orderdate> <requireddate>1997-09-04</requireddate> <shippeddate>1997-08-12</shippeddate> <shipvia>2</shipvia> <freight>97.1800</freight> <shipname>Frankenversand</shipname> <shipaddress>Berliner Platz 43</shipaddress> <shipcity>München</shipcity> <shippostalcode>80805</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10623</orderid> <productid>14</productid> <unitprice>23.2500</unitprice> <quantity>21</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10623</orderid> <productid>19</productid> <unitprice>9.2000</unitprice> <quantity>15</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10623</orderid> <productid>21</productid> <unitprice>10.0000</unitprice> <quantity>25</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10623</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>3</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10623</orderid> <productid>35</productid> <unitprice>18.0000</unitprice> <quantity>30</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10653</orderid> <customerid>FRANK</customerid> <employeeid>1</employeeid> <orderdate>1997-09-02</orderdate> <requireddate>1997-09-30</requireddate> <shippeddate>1997-09-19</shippeddate> <shipvia>1</shipvia> <freight>93.2500</freight> <shipname>Frankenversand</shipname> <shipaddress>Berliner Platz 43</shipaddress> <shipcity>München</shipcity> <shippostalcode>80805</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10653</orderid> <productid>16</productid> <unitprice>17.4500</unitprice> <quantity>30</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10653</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>20</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10670</orderid> <customerid>FRANK</customerid> <employeeid>4</employeeid> <orderdate>1997-09-16</orderdate> <requireddate>1997-10-14</requireddate> <shippeddate>1997-09-18</shippeddate> <shipvia>1</shipvia> <freight>203.4800</freight> <shipname>Frankenversand</shipname> <shipaddress>Berliner Platz 43</shipaddress> <shipcity>München</shipcity> <shippostalcode>80805</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10670</orderid> <productid>23</productid> <unitprice>9.0000</unitprice> <quantity>32</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10670</orderid> <productid>46</productid> <unitprice>12.0000</unitprice> <quantity>60</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10670</orderid> <productid>67</productid> <unitprice>14.0000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10670</orderid> <productid>73</productid> <unitprice>15.0000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10670</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10675</orderid> <customerid>FRANK</customerid> <employeeid>5</employeeid> <orderdate>1997-09-19</orderdate> <requireddate>1997-10-17</requireddate> <shippeddate>1997-09-23</shippeddate> <shipvia>2</shipvia> <freight>31.8500</freight> <shipname>Frankenversand</shipname> <shipaddress>Berliner Platz 43</shipaddress> <shipcity>München</shipcity> <shippostalcode>80805</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10675</orderid> <productid>14</productid> <unitprice>23.2500</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10675</orderid> <productid>53</productid> <unitprice>32.8000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10675</orderid> <productid>58</productid> <unitprice>13.2500</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10717</orderid> <customerid>FRANK</customerid> <employeeid>1</employeeid> <orderdate>1997-10-24</orderdate> <requireddate>1997-11-21</requireddate> <shippeddate>1997-10-29</shippeddate> <shipvia>2</shipvia> <freight>59.2500</freight> <shipname>Frankenversand</shipname> <shipaddress>Berliner Platz 43</shipaddress> <shipcity>München</shipcity> <shippostalcode>80805</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10717</orderid> <productid>21</productid> <unitprice>10.0000</unitprice> <quantity>32</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10717</orderid> <productid>54</productid> <unitprice>7.4500</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10717</orderid> <productid>69</productid> <unitprice>36.0000</unitprice> <quantity>25</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10791</orderid> <customerid>FRANK</customerid> <employeeid>6</employeeid> <orderdate>1997-12-23</orderdate> <requireddate>1998-01-20</requireddate> <shippeddate>1998-01-01</shippeddate> <shipvia>2</shipvia> <freight>16.8500</freight> <shipname>Frankenversand</shipname> <shipaddress>Berliner Platz 43</shipaddress> <shipcity>München</shipcity> <shippostalcode>80805</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10791</orderid> <productid>29</productid> <unitprice>123.7900</unitprice> <quantity>14</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10791</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>20</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10859</orderid> <customerid>FRANK</customerid> <employeeid>1</employeeid> <orderdate>1998-01-29</orderdate> <requireddate>1998-02-26</requireddate> <shippeddate>1998-02-02</shippeddate> <shipvia>2</shipvia> <freight>76.1000</freight> <shipname>Frankenversand</shipname> <shipaddress>Berliner Platz 43</shipaddress> <shipcity>München</shipcity> <shippostalcode>80805</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10859</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>40</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10859</orderid> <productid>54</productid> <unitprice>7.4500</unitprice> <quantity>35</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10859</orderid> <productid>64</productid> <unitprice>33.2500</unitprice> <quantity>30</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10929</orderid> <customerid>FRANK</customerid> <employeeid>6</employeeid> <orderdate>1998-03-05</orderdate> <requireddate>1998-04-02</requireddate> <shippeddate>1998-03-12</shippeddate> <shipvia>1</shipvia> <freight>33.9300</freight> <shipname>Frankenversand</shipname> <shipaddress>Berliner Platz 43</shipaddress> <shipcity>München</shipcity> <shippostalcode>80805</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10929</orderid> <productid>21</productid> <unitprice>10.0000</unitprice> <quantity>60</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10929</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>49</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10929</orderid> <productid>77</productid> <unitprice>13.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11012</orderid> <customerid>FRANK</customerid> <employeeid>1</employeeid> <orderdate>1998-04-09</orderdate> <requireddate>1998-04-23</requireddate> <shippeddate>1998-04-17</shippeddate> <shipvia>3</shipvia> <freight>242.9500</freight> <shipname>Frankenversand</shipname> <shipaddress>Berliner Platz 43</shipaddress> <shipcity>München</shipcity> <shippostalcode>80805</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>11012</orderid> <productid>19</productid> <unitprice>9.2000</unitprice> <quantity>50</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>11012</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>36</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>11012</orderid> <productid>71</productid> <unitprice>21.5000</unitprice> <quantity>60</quantity> <discount>0.05000</discount> </orderdetails> </orders> </customers> <customers> <customerid>FRANR</customerid> <companyname>France restauration</companyname> <contactname>Carine Schmitt</contactname> <contacttitle>Marketing Manager</contacttitle> <address>54, rue Royale</address> <city>Nantes</city> <postalcode>44000</postalcode> <country>France</country> <phone>40.32.21.21</phone> <fax>40.32.21.20</fax> <orders> <orderid>10671</orderid> <customerid>FRANR</customerid> <employeeid>1</employeeid> <orderdate>1997-09-17</orderdate> <requireddate>1997-10-15</requireddate> <shippeddate>1997-09-24</shippeddate> <shipvia>1</shipvia> <freight>30.3400</freight> <shipname>France restauration</shipname> <shipaddress>54, rue Royale</shipaddress> <shipcity>Nantes</shipcity> <shippostalcode>44000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10671</orderid> <productid>16</productid> <unitprice>17.4500</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10671</orderid> <productid>62</productid> <unitprice>49.3000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10671</orderid> <productid>65</productid> <unitprice>21.0500</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10860</orderid> <customerid>FRANR</customerid> <employeeid>3</employeeid> <orderdate>1998-01-29</orderdate> <requireddate>1998-02-26</requireddate> <shippeddate>1998-02-04</shippeddate> <shipvia>3</shipvia> <freight>19.2600</freight> <shipname>France restauration</shipname> <shipaddress>54, rue Royale</shipaddress> <shipcity>Nantes</shipcity> <shippostalcode>44000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10860</orderid> <productid>51</productid> <unitprice>53.0000</unitprice> <quantity>3</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10860</orderid> <productid>76</productid> <unitprice>18.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10971</orderid> <customerid>FRANR</customerid> <employeeid>2</employeeid> <orderdate>1998-03-24</orderdate> <requireddate>1998-04-21</requireddate> <shippeddate>1998-04-02</shippeddate> <shipvia>2</shipvia> <freight>121.8200</freight> <shipname>France restauration</shipname> <shipaddress>54, rue Royale</shipaddress> <shipcity>Nantes</shipcity> <shippostalcode>44000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10971</orderid> <productid>29</productid> <unitprice>123.7900</unitprice> <quantity>14</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>FRANS</customerid> <companyname>Franchi S.p.A.</companyname> <contactname>Paolo Accorti</contactname> <contacttitle>Sales Representative</contacttitle> <address>Via Monte Bianco 34</address> <city>Torino</city> <postalcode>10100</postalcode> <country>Italy</country> <phone>011-4988260</phone> <fax>011-4988261</fax> <orders> <orderid>10422</orderid> <customerid>FRANS</customerid> <employeeid>2</employeeid> <orderdate>1997-01-22</orderdate> <requireddate>1997-02-19</requireddate> <shippeddate>1997-01-31</shippeddate> <shipvia>1</shipvia> <freight>3.0200</freight> <shipname>Franchi S.p.A.</shipname> <shipaddress>Via Monte Bianco 34</shipaddress> <shipcity>Torino</shipcity> <shippostalcode>10100</shippostalcode> <shipcountry>Italy</shipcountry> <orderdetails> <orderid>10422</orderid> <productid>26</productid> <unitprice>24.9000</unitprice> <quantity>2</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10710</orderid> <customerid>FRANS</customerid> <employeeid>1</employeeid> <orderdate>1997-10-20</orderdate> <requireddate>1997-11-17</requireddate> <shippeddate>1997-10-23</shippeddate> <shipvia>1</shipvia> <freight>4.9800</freight> <shipname>Franchi S.p.A.</shipname> <shipaddress>Via Monte Bianco 34</shipaddress> <shipcity>Torino</shipcity> <shippostalcode>10100</shippostalcode> <shipcountry>Italy</shipcountry> <orderdetails> <orderid>10710</orderid> <productid>19</productid> <unitprice>9.2000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10710</orderid> <productid>47</productid> <unitprice>9.5000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10753</orderid> <customerid>FRANS</customerid> <employeeid>3</employeeid> <orderdate>1997-11-25</orderdate> <requireddate>1997-12-23</requireddate> <shippeddate>1997-11-27</shippeddate> <shipvia>1</shipvia> <freight>7.7000</freight> <shipname>Franchi S.p.A.</shipname> <shipaddress>Via Monte Bianco 34</shipaddress> <shipcity>Torino</shipcity> <shippostalcode>10100</shippostalcode> <shipcountry>Italy</shipcountry> <orderdetails> <orderid>10753</orderid> <productid>45</productid> <unitprice>9.5000</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10753</orderid> <productid>74</productid> <unitprice>10.0000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10807</orderid> <customerid>FRANS</customerid> <employeeid>4</employeeid> <orderdate>1997-12-31</orderdate> <requireddate>1998-01-28</requireddate> <shippeddate>1998-01-30</shippeddate> <shipvia>1</shipvia> <freight>1.3600</freight> <shipname>Franchi S.p.A.</shipname> <shipaddress>Via Monte Bianco 34</shipaddress> <shipcity>Torino</shipcity> <shippostalcode>10100</shippostalcode> <shipcountry>Italy</shipcountry> <orderdetails> <orderid>10807</orderid> <productid>40</productid> <unitprice>18.4000</unitprice> <quantity>1</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11026</orderid> <customerid>FRANS</customerid> <employeeid>4</employeeid> <orderdate>1998-04-15</orderdate> <requireddate>1998-05-13</requireddate> <shippeddate>1998-04-28</shippeddate> <shipvia>1</shipvia> <freight>47.0900</freight> <shipname>Franchi S.p.A.</shipname> <shipaddress>Via Monte Bianco 34</shipaddress> <shipcity>Torino</shipcity> <shippostalcode>10100</shippostalcode> <shipcountry>Italy</shipcountry> <orderdetails> <orderid>11026</orderid> <productid>18</productid> <unitprice>62.5000</unitprice> <quantity>8</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11026</orderid> <productid>51</productid> <unitprice>53.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11060</orderid> <customerid>FRANS</customerid> <employeeid>2</employeeid> <orderdate>1998-04-30</orderdate> <requireddate>1998-05-28</requireddate> <shippeddate>1998-05-04</shippeddate> <shipvia>2</shipvia> <freight>10.9800</freight> <shipname>Franchi S.p.A.</shipname> <shipaddress>Via Monte Bianco 34</shipaddress> <shipcity>Torino</shipcity> <shippostalcode>10100</shippostalcode> <shipcountry>Italy</shipcountry> <orderdetails> <orderid>11060</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11060</orderid> <productid>77</productid> <unitprice>13.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>FURIB</customerid> <companyname>Furia Bacalhau e Frutos do Mar</companyname> <contactname>Lino Rodriguez</contactname> <contacttitle>Sales Manager</contacttitle> <address>Jardim das rosas n. 32</address> <city>Lisboa</city> <postalcode>1675</postalcode> <country>Portugal</country> <phone>(1) 354-2534</phone> <fax>(1) 354-2535</fax> <orders> <orderid>10328</orderid> <customerid>FURIB</customerid> <employeeid>4</employeeid> <orderdate>1996-10-14</orderdate> <requireddate>1996-11-11</requireddate> <shippeddate>1996-10-17</shippeddate> <shipvia>3</shipvia> <freight>87.0300</freight> <shipname>Furia Bacalhau e Frutos do Mar</shipname> <shipaddress>Jardim das rosas n. 32</shipaddress> <shipcity>Lisboa</shipcity> <shippostalcode>1675</shippostalcode> <shipcountry>Portugal</shipcountry> <orderdetails> <orderid>10328</orderid> <productid>59</productid> <unitprice>44.0000</unitprice> <quantity>9</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10328</orderid> <productid>65</productid> <unitprice>16.8000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10328</orderid> <productid>68</productid> <unitprice>10.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10352</orderid> <customerid>FURIB</customerid> <employeeid>3</employeeid> <orderdate>1996-11-12</orderdate> <requireddate>1996-11-26</requireddate> <shippeddate>1996-11-18</shippeddate> <shipvia>3</shipvia> <freight>1.3000</freight> <shipname>Furia Bacalhau e Frutos do Mar</shipname> <shipaddress>Jardim das rosas n. 32</shipaddress> <shipcity>Lisboa</shipcity> <shippostalcode>1675</shippostalcode> <shipcountry>Portugal</shipcountry> <orderdetails> <orderid>10352</orderid> <productid>24</productid> <unitprice>3.6000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10352</orderid> <productid>54</productid> <unitprice>5.9000</unitprice> <quantity>20</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10464</orderid> <customerid>FURIB</customerid> <employeeid>4</employeeid> <orderdate>1997-03-04</orderdate> <requireddate>1997-04-01</requireddate> <shippeddate>1997-03-14</shippeddate> <shipvia>2</shipvia> <freight>89.0000</freight> <shipname>Furia Bacalhau e Frutos do Mar</shipname> <shipaddress>Jardim das rosas n. 32</shipaddress> <shipcity>Lisboa</shipcity> <shippostalcode>1675</shippostalcode> <shipcountry>Portugal</shipcountry> <orderdetails> <orderid>10464</orderid> <productid>4</productid> <unitprice>17.6000</unitprice> <quantity>16</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10464</orderid> <productid>43</productid> <unitprice>36.8000</unitprice> <quantity>3</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10464</orderid> <productid>56</productid> <unitprice>30.4000</unitprice> <quantity>30</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10464</orderid> <productid>60</productid> <unitprice>27.2000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10491</orderid> <customerid>FURIB</customerid> <employeeid>8</employeeid> <orderdate>1997-03-31</orderdate> <requireddate>1997-04-28</requireddate> <shippeddate>1997-04-08</shippeddate> <shipvia>3</shipvia> <freight>16.9600</freight> <shipname>Furia Bacalhau e Frutos do Mar</shipname> <shipaddress>Jardim das rosas n. 32</shipaddress> <shipcity>Lisboa</shipcity> <shippostalcode>1675</shippostalcode> <shipcountry>Portugal</shipcountry> <orderdetails> <orderid>10491</orderid> <productid>44</productid> <unitprice>15.5000</unitprice> <quantity>15</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10491</orderid> <productid>77</productid> <unitprice>10.4000</unitprice> <quantity>7</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10551</orderid> <customerid>FURIB</customerid> <employeeid>4</employeeid> <orderdate>1997-05-28</orderdate> <requireddate>1997-07-09</requireddate> <shippeddate>1997-06-06</shippeddate> <shipvia>3</shipvia> <freight>72.9500</freight> <shipname>Furia Bacalhau e Frutos do Mar</shipname> <shipaddress>Jardim das rosas n. 32</shipaddress> <shipcity>Lisboa</shipcity> <shippostalcode>1675</shippostalcode> <shipcountry>Portugal</shipcountry> <orderdetails> <orderid>10551</orderid> <productid>16</productid> <unitprice>17.4500</unitprice> <quantity>40</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10551</orderid> <productid>35</productid> <unitprice>18.0000</unitprice> <quantity>20</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10551</orderid> <productid>44</productid> <unitprice>19.4500</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10604</orderid> <customerid>FURIB</customerid> <employeeid>1</employeeid> <orderdate>1997-07-18</orderdate> <requireddate>1997-08-15</requireddate> <shippeddate>1997-07-29</shippeddate> <shipvia>1</shipvia> <freight>7.4600</freight> <shipname>Furia Bacalhau e Frutos do Mar</shipname> <shipaddress>Jardim das rosas n. 32</shipaddress> <shipcity>Lisboa</shipcity> <shippostalcode>1675</shippostalcode> <shipcountry>Portugal</shipcountry> <orderdetails> <orderid>10604</orderid> <productid>48</productid> <unitprice>12.7500</unitprice> <quantity>6</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10604</orderid> <productid>76</productid> <unitprice>18.0000</unitprice> <quantity>10</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10664</orderid> <customerid>FURIB</customerid> <employeeid>1</employeeid> <orderdate>1997-09-10</orderdate> <requireddate>1997-10-08</requireddate> <shippeddate>1997-09-19</shippeddate> <shipvia>3</shipvia> <freight>1.2700</freight> <shipname>Furia Bacalhau e Frutos do Mar</shipname> <shipaddress>Jardim das rosas n. 32</shipaddress> <shipcity>Lisboa</shipcity> <shippostalcode>1675</shippostalcode> <shipcountry>Portugal</shipcountry> <orderdetails> <orderid>10664</orderid> <productid>10</productid> <unitprice>31.0000</unitprice> <quantity>24</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10664</orderid> <productid>56</productid> <unitprice>38.0000</unitprice> <quantity>12</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10664</orderid> <productid>65</productid> <unitprice>21.0500</unitprice> <quantity>15</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10963</orderid> <customerid>FURIB</customerid> <employeeid>9</employeeid> <orderdate>1998-03-19</orderdate> <requireddate>1998-04-16</requireddate> <shippeddate>1998-03-26</shippeddate> <shipvia>3</shipvia> <freight>2.7000</freight> <shipname>Furia Bacalhau e Frutos do Mar</shipname> <shipaddress>Jardim das rosas n. 32</shipaddress> <shipcity>Lisboa</shipcity> <shippostalcode>1675</shippostalcode> <shipcountry>Portugal</shipcountry> <orderdetails> <orderid>10963</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>2</quantity> <discount>0.15000</discount> </orderdetails> </orders> </customers> <customers> <customerid>GALED</customerid> <companyname>Galería del gastrónomo</companyname> <contactname>Eduardo Saavedra</contactname> <contacttitle>Marketing Manager</contacttitle> <address>Rambla de Cataluña, 23</address> <city>Barcelona</city> <postalcode>08022</postalcode> <country>Spain</country> <phone>(93) 203 4560</phone> <fax>(93) 203 4561</fax> <orders> <orderid>10366</orderid> <customerid>GALED</customerid> <employeeid>8</employeeid> <orderdate>1996-11-28</orderdate> <requireddate>1997-01-09</requireddate> <shippeddate>1996-12-30</shippeddate> <shipvia>2</shipvia> <freight>10.1400</freight> <shipname>Galería del gastronómo</shipname> <shipaddress>Rambla de Cataluña, 23</shipaddress> <shipcity>Barcelona</shipcity> <shippostalcode>8022</shippostalcode> <shipcountry>Spain</shipcountry> <orderdetails> <orderid>10366</orderid> <productid>65</productid> <unitprice>16.8000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10366</orderid> <productid>77</productid> <unitprice>10.4000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10426</orderid> <customerid>GALED</customerid> <employeeid>4</employeeid> <orderdate>1997-01-27</orderdate> <requireddate>1997-02-24</requireddate> <shippeddate>1997-02-06</shippeddate> <shipvia>1</shipvia> <freight>18.6900</freight> <shipname>Galería del gastronómo</shipname> <shipaddress>Rambla de Cataluña, 23</shipaddress> <shipcity>Barcelona</shipcity> <shippostalcode>8022</shippostalcode> <shipcountry>Spain</shipcountry> <orderdetails> <orderid>10426</orderid> <productid>56</productid> <unitprice>30.4000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10426</orderid> <productid>64</productid> <unitprice>26.6000</unitprice> <quantity>7</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10568</orderid> <customerid>GALED</customerid> <employeeid>3</employeeid> <orderdate>1997-06-13</orderdate> <requireddate>1997-07-11</requireddate> <shippeddate>1997-07-09</shippeddate> <shipvia>3</shipvia> <freight>6.5400</freight> <shipname>Galería del gastronómo</shipname> <shipaddress>Rambla de Cataluña, 23</shipaddress> <shipcity>Barcelona</shipcity> <shippostalcode>8022</shippostalcode> <shipcountry>Spain</shipcountry> <orderdetails> <orderid>10568</orderid> <productid>10</productid> <unitprice>31.0000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10887</orderid> <customerid>GALED</customerid> <employeeid>8</employeeid> <orderdate>1998-02-13</orderdate> <requireddate>1998-03-13</requireddate> <shippeddate>1998-02-16</shippeddate> <shipvia>3</shipvia> <freight>1.2500</freight> <shipname>Galería del gastronómo</shipname> <shipaddress>Rambla de Cataluña, 23</shipaddress> <shipcity>Barcelona</shipcity> <shippostalcode>8022</shippostalcode> <shipcountry>Spain</shipcountry> <orderdetails> <orderid>10887</orderid> <productid>25</productid> <unitprice>14.0000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10928</orderid> <customerid>GALED</customerid> <employeeid>1</employeeid> <orderdate>1998-03-05</orderdate> <requireddate>1998-04-02</requireddate> <shippeddate>1998-03-18</shippeddate> <shipvia>1</shipvia> <freight>1.3600</freight> <shipname>Galería del gastronómo</shipname> <shipaddress>Rambla de Cataluña, 23</shipaddress> <shipcity>Barcelona</shipcity> <shippostalcode>8022</shippostalcode> <shipcountry>Spain</shipcountry> <orderdetails> <orderid>10928</orderid> <productid>47</productid> <unitprice>9.5000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10928</orderid> <productid>76</productid> <unitprice>18.0000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>GODOS</customerid> <companyname>Godos Cocina Típica</companyname> <contactname>José Pedro Freyre</contactname> <contacttitle>Sales Manager</contacttitle> <address>C/ Romero, 33</address> <city>Sevilla</city> <postalcode>41101</postalcode> <country>Spain</country> <phone>(95) 555 82 82</phone> <orders> <orderid>10303</orderid> <customerid>GODOS</customerid> <employeeid>7</employeeid> <orderdate>1996-09-11</orderdate> <requireddate>1996-10-09</requireddate> <shippeddate>1996-09-18</shippeddate> <shipvia>2</shipvia> <freight>107.8300</freight> <shipname>Godos Cocina Típica</shipname> <shipaddress>C/ Romero, 33</shipaddress> <shipcity>Sevilla</shipcity> <shippostalcode>41101</shippostalcode> <shipcountry>Spain</shipcountry> <orderdetails> <orderid>10303</orderid> <productid>40</productid> <unitprice>14.7000</unitprice> <quantity>40</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10303</orderid> <productid>65</productid> <unitprice>16.8000</unitprice> <quantity>30</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10303</orderid> <productid>68</productid> <unitprice>10.0000</unitprice> <quantity>15</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10550</orderid> <customerid>GODOS</customerid> <employeeid>7</employeeid> <orderdate>1997-05-28</orderdate> <requireddate>1997-06-25</requireddate> <shippeddate>1997-06-06</shippeddate> <shipvia>3</shipvia> <freight>4.3200</freight> <shipname>Godos Cocina Típica</shipname> <shipaddress>C/ Romero, 33</shipaddress> <shipcity>Sevilla</shipcity> <shippostalcode>41101</shippostalcode> <shipcountry>Spain</shipcountry> <orderdetails> <orderid>10550</orderid> <productid>17</productid> <unitprice>39.0000</unitprice> <quantity>8</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10550</orderid> <productid>19</productid> <unitprice>9.2000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10550</orderid> <productid>21</productid> <unitprice>10.0000</unitprice> <quantity>6</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10550</orderid> <productid>61</productid> <unitprice>28.5000</unitprice> <quantity>10</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10629</orderid> <customerid>GODOS</customerid> <employeeid>4</employeeid> <orderdate>1997-08-12</orderdate> <requireddate>1997-09-09</requireddate> <shippeddate>1997-08-20</shippeddate> <shipvia>3</shipvia> <freight>85.4600</freight> <shipname>Godos Cocina Típica</shipname> <shipaddress>C/ Romero, 33</shipaddress> <shipcity>Sevilla</shipcity> <shippostalcode>41101</shippostalcode> <shipcountry>Spain</shipcountry> <orderdetails> <orderid>10629</orderid> <productid>29</productid> <unitprice>123.7900</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10629</orderid> <productid>64</productid> <unitprice>33.2500</unitprice> <quantity>9</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10872</orderid> <customerid>GODOS</customerid> <employeeid>5</employeeid> <orderdate>1998-02-05</orderdate> <requireddate>1998-03-05</requireddate> <shippeddate>1998-02-09</shippeddate> <shipvia>2</shipvia> <freight>175.3200</freight> <shipname>Godos Cocina Típica</shipname> <shipaddress>C/ Romero, 33</shipaddress> <shipcity>Sevilla</shipcity> <shippostalcode>41101</shippostalcode> <shipcountry>Spain</shipcountry> <orderdetails> <orderid>10872</orderid> <productid>55</productid> <unitprice>24.0000</unitprice> <quantity>10</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10872</orderid> <productid>62</productid> <unitprice>49.3000</unitprice> <quantity>20</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10872</orderid> <productid>64</productid> <unitprice>33.2500</unitprice> <quantity>15</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10872</orderid> <productid>65</productid> <unitprice>21.0500</unitprice> <quantity>21</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10874</orderid> <customerid>GODOS</customerid> <employeeid>5</employeeid> <orderdate>1998-02-06</orderdate> <requireddate>1998-03-06</requireddate> <shippeddate>1998-02-11</shippeddate> <shipvia>2</shipvia> <freight>19.5800</freight> <shipname>Godos Cocina Típica</shipname> <shipaddress>C/ Romero, 33</shipaddress> <shipcity>Sevilla</shipcity> <shippostalcode>41101</shippostalcode> <shipcountry>Spain</shipcountry> <orderdetails> <orderid>10874</orderid> <productid>10</productid> <unitprice>31.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10888</orderid> <customerid>GODOS</customerid> <employeeid>1</employeeid> <orderdate>1998-02-16</orderdate> <requireddate>1998-03-16</requireddate> <shippeddate>1998-02-23</shippeddate> <shipvia>2</shipvia> <freight>51.8700</freight> <shipname>Godos Cocina Típica</shipname> <shipaddress>C/ Romero, 33</shipaddress> <shipcity>Sevilla</shipcity> <shippostalcode>41101</shippostalcode> <shipcountry>Spain</shipcountry> <orderdetails> <orderid>10888</orderid> <productid>2</productid> <unitprice>19.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10888</orderid> <productid>68</productid> <unitprice>12.5000</unitprice> <quantity>18</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10911</orderid> <customerid>GODOS</customerid> <employeeid>3</employeeid> <orderdate>1998-02-26</orderdate> <requireddate>1998-03-26</requireddate> <shippeddate>1998-03-05</shippeddate> <shipvia>1</shipvia> <freight>38.1900</freight> <shipname>Godos Cocina Típica</shipname> <shipaddress>C/ Romero, 33</shipaddress> <shipcity>Sevilla</shipcity> <shippostalcode>41101</shippostalcode> <shipcountry>Spain</shipcountry> <orderdetails> <orderid>10911</orderid> <productid>1</productid> <unitprice>18.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10911</orderid> <productid>17</productid> <unitprice>39.0000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10911</orderid> <productid>67</productid> <unitprice>14.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10948</orderid> <customerid>GODOS</customerid> <employeeid>3</employeeid> <orderdate>1998-03-13</orderdate> <requireddate>1998-04-10</requireddate> <shippeddate>1998-03-19</shippeddate> <shipvia>3</shipvia> <freight>23.3900</freight> <shipname>Godos Cocina Típica</shipname> <shipaddress>C/ Romero, 33</shipaddress> <shipcity>Sevilla</shipcity> <shippostalcode>41101</shippostalcode> <shipcountry>Spain</shipcountry> <orderdetails> <orderid>10948</orderid> <productid>50</productid> <unitprice>16.2500</unitprice> <quantity>9</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10948</orderid> <productid>51</productid> <unitprice>53.0000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10948</orderid> <productid>55</productid> <unitprice>24.0000</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11009</orderid> <customerid>GODOS</customerid> <employeeid>2</employeeid> <orderdate>1998-04-08</orderdate> <requireddate>1998-05-06</requireddate> <shippeddate>1998-04-10</shippeddate> <shipvia>1</shipvia> <freight>59.1100</freight> <shipname>Godos Cocina Típica</shipname> <shipaddress>C/ Romero, 33</shipaddress> <shipcity>Sevilla</shipcity> <shippostalcode>41101</shippostalcode> <shipcountry>Spain</shipcountry> <orderdetails> <orderid>11009</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11009</orderid> <productid>36</productid> <unitprice>19.0000</unitprice> <quantity>18</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>11009</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>9</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11037</orderid> <customerid>GODOS</customerid> <employeeid>7</employeeid> <orderdate>1998-04-21</orderdate> <requireddate>1998-05-19</requireddate> <shippeddate>1998-04-27</shippeddate> <shipvia>1</shipvia> <freight>3.2000</freight> <shipname>Godos Cocina Típica</shipname> <shipaddress>C/ Romero, 33</shipaddress> <shipcity>Sevilla</shipcity> <shippostalcode>41101</shippostalcode> <shipcountry>Spain</shipcountry> <orderdetails> <orderid>11037</orderid> <productid>70</productid> <unitprice>15.0000</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>GOURL</customerid> <companyname>Gourmet Lanchonetes</companyname> <contactname>André Fonseca</contactname> <contacttitle>Sales Associate</contacttitle> <address>Av. Brasil, 442</address> <city>Campinas</city> <region>SP</region> <postalcode>04876-786</postalcode> <country>Brazil</country> <phone>(11) 555-9482</phone> <orders> <orderid>10423</orderid> <customerid>GOURL</customerid> <employeeid>6</employeeid> <orderdate>1997-01-23</orderdate> <requireddate>1997-02-06</requireddate> <shippeddate>1997-02-24</shippeddate> <shipvia>3</shipvia> <freight>24.5000</freight> <shipname>Gourmet Lanchonetes</shipname> <shipaddress>Av. Brasil, 442</shipaddress> <shipcity>Campinas</shipcity> <shipregion>SP</shipregion> <shippostalcode>04876-786</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10423</orderid> <productid>31</productid> <unitprice>10.0000</unitprice> <quantity>14</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10423</orderid> <productid>59</productid> <unitprice>44.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10652</orderid> <customerid>GOURL</customerid> <employeeid>4</employeeid> <orderdate>1997-09-01</orderdate> <requireddate>1997-09-29</requireddate> <shippeddate>1997-09-08</shippeddate> <shipvia>2</shipvia> <freight>7.1400</freight> <shipname>Gourmet Lanchonetes</shipname> <shipaddress>Av. Brasil, 442</shipaddress> <shipcity>Campinas</shipcity> <shipregion>SP</shipregion> <shippostalcode>04876-786</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10652</orderid> <productid>30</productid> <unitprice>25.8900</unitprice> <quantity>2</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10652</orderid> <productid>42</productid> <unitprice>14.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10685</orderid> <customerid>GOURL</customerid> <employeeid>4</employeeid> <orderdate>1997-09-29</orderdate> <requireddate>1997-10-13</requireddate> <shippeddate>1997-10-03</shippeddate> <shipvia>2</shipvia> <freight>33.7500</freight> <shipname>Gourmet Lanchonetes</shipname> <shipaddress>Av. Brasil, 442</shipaddress> <shipcity>Campinas</shipcity> <shipregion>SP</shipregion> <shippostalcode>04876-786</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10685</orderid> <productid>10</productid> <unitprice>31.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10685</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10685</orderid> <productid>47</productid> <unitprice>9.5000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10709</orderid> <customerid>GOURL</customerid> <employeeid>1</employeeid> <orderdate>1997-10-17</orderdate> <requireddate>1997-11-14</requireddate> <shippeddate>1997-11-20</shippeddate> <shipvia>3</shipvia> <freight>210.8000</freight> <shipname>Gourmet Lanchonetes</shipname> <shipaddress>Av. Brasil, 442</shipaddress> <shipcity>Campinas</shipcity> <shipregion>SP</shipregion> <shippostalcode>04876-786</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10709</orderid> <productid>8</productid> <unitprice>40.0000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10709</orderid> <productid>51</productid> <unitprice>53.0000</unitprice> <quantity>28</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10709</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10734</orderid> <customerid>GOURL</customerid> <employeeid>2</employeeid> <orderdate>1997-11-07</orderdate> <requireddate>1997-12-05</requireddate> <shippeddate>1997-11-12</shippeddate> <shipvia>3</shipvia> <freight>1.6300</freight> <shipname>Gourmet Lanchonetes</shipname> <shipaddress>Av. Brasil, 442</shipaddress> <shipcity>Campinas</shipcity> <shipregion>SP</shipregion> <shippostalcode>04876-786</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10734</orderid> <productid>6</productid> <unitprice>25.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10734</orderid> <productid>30</productid> <unitprice>25.8900</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10734</orderid> <productid>76</productid> <unitprice>18.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10777</orderid> <customerid>GOURL</customerid> <employeeid>7</employeeid> <orderdate>1997-12-15</orderdate> <requireddate>1997-12-29</requireddate> <shippeddate>1998-01-21</shippeddate> <shipvia>2</shipvia> <freight>3.0100</freight> <shipname>Gourmet Lanchonetes</shipname> <shipaddress>Av. Brasil, 442</shipaddress> <shipcity>Campinas</shipcity> <shipregion>SP</shipregion> <shippostalcode>04876-786</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10777</orderid> <productid>42</productid> <unitprice>14.0000</unitprice> <quantity>20</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10790</orderid> <customerid>GOURL</customerid> <employeeid>6</employeeid> <orderdate>1997-12-22</orderdate> <requireddate>1998-01-19</requireddate> <shippeddate>1997-12-26</shippeddate> <shipvia>1</shipvia> <freight>28.2300</freight> <shipname>Gourmet Lanchonetes</shipname> <shipaddress>Av. Brasil, 442</shipaddress> <shipcity>Campinas</shipcity> <shipregion>SP</shipregion> <shippostalcode>04876-786</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10790</orderid> <productid>7</productid> <unitprice>30.0000</unitprice> <quantity>3</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10790</orderid> <productid>56</productid> <unitprice>38.0000</unitprice> <quantity>20</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10959</orderid> <customerid>GOURL</customerid> <employeeid>6</employeeid> <orderdate>1998-03-18</orderdate> <requireddate>1998-04-29</requireddate> <shippeddate>1998-03-23</shippeddate> <shipvia>2</shipvia> <freight>4.9800</freight> <shipname>Gourmet Lanchonetes</shipname> <shipaddress>Av. Brasil, 442</shipaddress> <shipcity>Campinas</shipcity> <shipregion>SP</shipregion> <shippostalcode>04876-786</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10959</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>20</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>11049</orderid> <customerid>GOURL</customerid> <employeeid>3</employeeid> <orderdate>1998-04-24</orderdate> <requireddate>1998-05-22</requireddate> <shippeddate>1998-05-04</shippeddate> <shipvia>1</shipvia> <freight>8.3400</freight> <shipname>Gourmet Lanchonetes</shipname> <shipaddress>Av. Brasil, 442</shipaddress> <shipcity>Campinas</shipcity> <shipregion>SP</shipregion> <shippostalcode>04876-786</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>11049</orderid> <productid>2</productid> <unitprice>19.0000</unitprice> <quantity>10</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>11049</orderid> <productid>12</productid> <unitprice>38.0000</unitprice> <quantity>4</quantity> <discount>0.20000</discount> </orderdetails> </orders> </customers> <customers> <customerid>GREAL</customerid> <companyname>Great Lakes Food Market</companyname> <contactname>Howard Snyder</contactname> <contacttitle>Marketing Manager</contacttitle> <address>2732 Baker Blvd.</address> <city>Eugene</city> <region>OR</region> <postalcode>97403</postalcode> <country>USA</country> <phone>(503) 555-7555</phone> <orders> <orderid>10528</orderid> <customerid>GREAL</customerid> <employeeid>6</employeeid> <orderdate>1997-05-06</orderdate> <requireddate>1997-05-20</requireddate> <shippeddate>1997-05-09</shippeddate> <shipvia>2</shipvia> <freight>3.3500</freight> <shipname>Great Lakes Food Market</shipname> <shipaddress>2732 Baker Blvd.</shipaddress> <shipcity>Eugene</shipcity> <shipregion>OR</shipregion> <shippostalcode>97403</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10528</orderid> <productid>11</productid> <unitprice>21.0000</unitprice> <quantity>3</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10528</orderid> <productid>33</productid> <unitprice>2.5000</unitprice> <quantity>8</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10528</orderid> <productid>72</productid> <unitprice>34.8000</unitprice> <quantity>9</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10589</orderid> <customerid>GREAL</customerid> <employeeid>8</employeeid> <orderdate>1997-07-04</orderdate> <requireddate>1997-08-01</requireddate> <shippeddate>1997-07-14</shippeddate> <shipvia>2</shipvia> <freight>4.4200</freight> <shipname>Great Lakes Food Market</shipname> <shipaddress>2732 Baker Blvd.</shipaddress> <shipcity>Eugene</shipcity> <shipregion>OR</shipregion> <shippostalcode>97403</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10589</orderid> <productid>35</productid> <unitprice>18.0000</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10616</orderid> <customerid>GREAL</customerid> <employeeid>1</employeeid> <orderdate>1997-07-31</orderdate> <requireddate>1997-08-28</requireddate> <shippeddate>1997-08-05</shippeddate> <shipvia>2</shipvia> <freight>116.5300</freight> <shipname>Great Lakes Food Market</shipname> <shipaddress>2732 Baker Blvd.</shipaddress> <shipcity>Eugene</shipcity> <shipregion>OR</shipregion> <shippostalcode>97403</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10616</orderid> <productid>38</productid> <unitprice>263.5000</unitprice> <quantity>15</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10616</orderid> <productid>56</productid> <unitprice>38.0000</unitprice> <quantity>14</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10616</orderid> <productid>70</productid> <unitprice>15.0000</unitprice> <quantity>15</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10616</orderid> <productid>71</productid> <unitprice>21.5000</unitprice> <quantity>15</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10617</orderid> <customerid>GREAL</customerid> <employeeid>4</employeeid> <orderdate>1997-07-31</orderdate> <requireddate>1997-08-28</requireddate> <shippeddate>1997-08-04</shippeddate> <shipvia>2</shipvia> <freight>18.5300</freight> <shipname>Great Lakes Food Market</shipname> <shipaddress>2732 Baker Blvd.</shipaddress> <shipcity>Eugene</shipcity> <shipregion>OR</shipregion> <shippostalcode>97403</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10617</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>30</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10656</orderid> <customerid>GREAL</customerid> <employeeid>6</employeeid> <orderdate>1997-09-04</orderdate> <requireddate>1997-10-02</requireddate> <shippeddate>1997-09-10</shippeddate> <shipvia>1</shipvia> <freight>57.1500</freight> <shipname>Great Lakes Food Market</shipname> <shipaddress>2732 Baker Blvd.</shipaddress> <shipcity>Eugene</shipcity> <shipregion>OR</shipregion> <shippostalcode>97403</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10656</orderid> <productid>14</productid> <unitprice>23.2500</unitprice> <quantity>3</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10656</orderid> <productid>44</productid> <unitprice>19.4500</unitprice> <quantity>28</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10656</orderid> <productid>47</productid> <unitprice>9.5000</unitprice> <quantity>6</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10681</orderid> <customerid>GREAL</customerid> <employeeid>3</employeeid> <orderdate>1997-09-25</orderdate> <requireddate>1997-10-23</requireddate> <shippeddate>1997-09-30</shippeddate> <shipvia>3</shipvia> <freight>76.1300</freight> <shipname>Great Lakes Food Market</shipname> <shipaddress>2732 Baker Blvd.</shipaddress> <shipcity>Eugene</shipcity> <shipregion>OR</shipregion> <shippostalcode>97403</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10681</orderid> <productid>19</productid> <unitprice>9.2000</unitprice> <quantity>30</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10681</orderid> <productid>21</productid> <unitprice>10.0000</unitprice> <quantity>12</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10681</orderid> <productid>64</productid> <unitprice>33.2500</unitprice> <quantity>28</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10816</orderid> <customerid>GREAL</customerid> <employeeid>4</employeeid> <orderdate>1998-01-06</orderdate> <requireddate>1998-02-03</requireddate> <shippeddate>1998-02-04</shippeddate> <shipvia>2</shipvia> <freight>719.7800</freight> <shipname>Great Lakes Food Market</shipname> <shipaddress>2732 Baker Blvd.</shipaddress> <shipcity>Eugene</shipcity> <shipregion>OR</shipregion> <shippostalcode>97403</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10816</orderid> <productid>38</productid> <unitprice>263.5000</unitprice> <quantity>30</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10816</orderid> <productid>62</productid> <unitprice>49.3000</unitprice> <quantity>20</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10936</orderid> <customerid>GREAL</customerid> <employeeid>3</employeeid> <orderdate>1998-03-09</orderdate> <requireddate>1998-04-06</requireddate> <shippeddate>1998-03-18</shippeddate> <shipvia>2</shipvia> <freight>33.6800</freight> <shipname>Great Lakes Food Market</shipname> <shipaddress>2732 Baker Blvd.</shipaddress> <shipcity>Eugene</shipcity> <shipregion>OR</shipregion> <shippostalcode>97403</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10936</orderid> <productid>36</productid> <unitprice>19.0000</unitprice> <quantity>30</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>11006</orderid> <customerid>GREAL</customerid> <employeeid>3</employeeid> <orderdate>1998-04-07</orderdate> <requireddate>1998-05-05</requireddate> <shippeddate>1998-04-15</shippeddate> <shipvia>2</shipvia> <freight>25.1900</freight> <shipname>Great Lakes Food Market</shipname> <shipaddress>2732 Baker Blvd.</shipaddress> <shipcity>Eugene</shipcity> <shipregion>OR</shipregion> <shippostalcode>97403</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>11006</orderid> <productid>1</productid> <unitprice>18.0000</unitprice> <quantity>8</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11006</orderid> <productid>29</productid> <unitprice>123.7900</unitprice> <quantity>2</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>11040</orderid> <customerid>GREAL</customerid> <employeeid>4</employeeid> <orderdate>1998-04-22</orderdate> <requireddate>1998-05-20</requireddate> <shipvia>3</shipvia> <freight>18.8400</freight> <shipname>Great Lakes Food Market</shipname> <shipaddress>2732 Baker Blvd.</shipaddress> <shipcity>Eugene</shipcity> <shipregion>OR</shipregion> <shippostalcode>97403</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>11040</orderid> <productid>21</productid> <unitprice>10.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11061</orderid> <customerid>GREAL</customerid> <employeeid>4</employeeid> <orderdate>1998-04-30</orderdate> <requireddate>1998-06-11</requireddate> <shipvia>3</shipvia> <freight>14.0100</freight> <shipname>Great Lakes Food Market</shipname> <shipaddress>2732 Baker Blvd.</shipaddress> <shipcity>Eugene</shipcity> <shipregion>OR</shipregion> <shippostalcode>97403</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>11061</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>GROSR</customerid> <companyname>GROSELLA-Restaurante</companyname> <contactname>Manuel Pereira</contactname> <contacttitle>Owner</contacttitle> <address>5ª Ave. Los Palos Grandes</address> <city>Caracas</city> <region>DF</region> <postalcode>1081</postalcode> <country>Venezuela</country> <phone>(2) 283-2951</phone> <fax>(2) 283-3397</fax> <orders> <orderid>10268</orderid> <customerid>GROSR</customerid> <employeeid>8</employeeid> <orderdate>1996-07-30</orderdate> <requireddate>1996-08-27</requireddate> <shippeddate>1996-08-02</shippeddate> <shipvia>3</shipvia> <freight>66.2900</freight> <shipname>GROSELLA-Restaurante</shipname> <shipaddress>5ª Ave. Los Palos Grandes</shipaddress> <shipcity>Caracas</shipcity> <shipregion>DF</shipregion> <shippostalcode>1081</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10268</orderid> <productid>29</productid> <unitprice>99.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10268</orderid> <productid>72</productid> <unitprice>27.8000</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10785</orderid> <customerid>GROSR</customerid> <employeeid>1</employeeid> <orderdate>1997-12-18</orderdate> <requireddate>1998-01-15</requireddate> <shippeddate>1997-12-24</shippeddate> <shipvia>3</shipvia> <freight>1.5100</freight> <shipname>GROSELLA-Restaurante</shipname> <shipaddress>5ª Ave. Los Palos Grandes</shipaddress> <shipcity>Caracas</shipcity> <shipregion>DF</shipregion> <shippostalcode>1081</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10785</orderid> <productid>10</productid> <unitprice>31.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10785</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>HANAR</customerid> <companyname>Hanari Carnes</companyname> <contactname>Mario Pontes</contactname> <contacttitle>Accounting Manager</contacttitle> <address>Rua do Paço, 67</address> <city>Rio de Janeiro</city> <region>RJ</region> <postalcode>05454-876</postalcode> <country>Brazil</country> <phone>(21) 555-0091</phone> <fax>(21) 555-8765</fax> <orders> <orderid>10250</orderid> <customerid>HANAR</customerid> <employeeid>4</employeeid> <orderdate>1996-07-08</orderdate> <requireddate>1996-08-05</requireddate> <shippeddate>1996-07-12</shippeddate> <shipvia>2</shipvia> <freight>65.8300</freight> <shipname>Hanari Carnes</shipname> <shipaddress>Rua do Paço, 67</shipaddress> <shipcity>Rio de Janeiro</shipcity> <shipregion>RJ</shipregion> <shippostalcode>05454-876</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10250</orderid> <productid>41</productid> <unitprice>7.7000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10250</orderid> <productid>51</productid> <unitprice>42.4000</unitprice> <quantity>35</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10250</orderid> <productid>65</productid> <unitprice>16.8000</unitprice> <quantity>15</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10253</orderid> <customerid>HANAR</customerid> <employeeid>3</employeeid> <orderdate>1996-07-10</orderdate> <requireddate>1996-07-24</requireddate> <shippeddate>1996-07-16</shippeddate> <shipvia>2</shipvia> <freight>58.1700</freight> <shipname>Hanari Carnes</shipname> <shipaddress>Rua do Paço, 67</shipaddress> <shipcity>Rio de Janeiro</shipcity> <shipregion>RJ</shipregion> <shippostalcode>05454-876</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10253</orderid> <productid>31</productid> <unitprice>10.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10253</orderid> <productid>39</productid> <unitprice>14.4000</unitprice> <quantity>42</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10253</orderid> <productid>49</productid> <unitprice>16.0000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10541</orderid> <customerid>HANAR</customerid> <employeeid>2</employeeid> <orderdate>1997-05-19</orderdate> <requireddate>1997-06-16</requireddate> <shippeddate>1997-05-29</shippeddate> <shipvia>1</shipvia> <freight>68.6500</freight> <shipname>Hanari Carnes</shipname> <shipaddress>Rua do Paço, 67</shipaddress> <shipcity>Rio de Janeiro</shipcity> <shipregion>RJ</shipregion> <shippostalcode>05454-876</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10541</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>35</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10541</orderid> <productid>38</productid> <unitprice>263.5000</unitprice> <quantity>4</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10541</orderid> <productid>65</productid> <unitprice>21.0500</unitprice> <quantity>36</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10541</orderid> <productid>71</productid> <unitprice>21.5000</unitprice> <quantity>9</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10645</orderid> <customerid>HANAR</customerid> <employeeid>4</employeeid> <orderdate>1997-08-26</orderdate> <requireddate>1997-09-23</requireddate> <shippeddate>1997-09-02</shippeddate> <shipvia>1</shipvia> <freight>12.4100</freight> <shipname>Hanari Carnes</shipname> <shipaddress>Rua do Paço, 67</shipaddress> <shipcity>Rio de Janeiro</shipcity> <shipregion>RJ</shipregion> <shippostalcode>05454-876</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10645</orderid> <productid>18</productid> <unitprice>62.5000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10645</orderid> <productid>36</productid> <unitprice>19.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10690</orderid> <customerid>HANAR</customerid> <employeeid>1</employeeid> <orderdate>1997-10-02</orderdate> <requireddate>1997-10-30</requireddate> <shippeddate>1997-10-03</shippeddate> <shipvia>1</shipvia> <freight>15.8000</freight> <shipname>Hanari Carnes</shipname> <shipaddress>Rua do Paço, 67</shipaddress> <shipcity>Rio de Janeiro</shipcity> <shipregion>RJ</shipregion> <shippostalcode>05454-876</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10690</orderid> <productid>56</productid> <unitprice>38.0000</unitprice> <quantity>20</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10690</orderid> <productid>77</productid> <unitprice>13.0000</unitprice> <quantity>30</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10770</orderid> <customerid>HANAR</customerid> <employeeid>8</employeeid> <orderdate>1997-12-09</orderdate> <requireddate>1998-01-06</requireddate> <shippeddate>1997-12-17</shippeddate> <shipvia>3</shipvia> <freight>5.3200</freight> <shipname>Hanari Carnes</shipname> <shipaddress>Rua do Paço, 67</shipaddress> <shipcity>Rio de Janeiro</shipcity> <shipregion>RJ</shipregion> <shippostalcode>05454-876</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10770</orderid> <productid>11</productid> <unitprice>21.0000</unitprice> <quantity>15</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10783</orderid> <customerid>HANAR</customerid> <employeeid>4</employeeid> <orderdate>1997-12-18</orderdate> <requireddate>1998-01-15</requireddate> <shippeddate>1997-12-19</shippeddate> <shipvia>2</shipvia> <freight>124.9800</freight> <shipname>Hanari Carnes</shipname> <shipaddress>Rua do Paço, 67</shipaddress> <shipcity>Rio de Janeiro</shipcity> <shipregion>RJ</shipregion> <shippostalcode>05454-876</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10783</orderid> <productid>31</productid> <unitprice>12.5000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10783</orderid> <productid>38</productid> <unitprice>263.5000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10886</orderid> <customerid>HANAR</customerid> <employeeid>1</employeeid> <orderdate>1998-02-13</orderdate> <requireddate>1998-03-13</requireddate> <shippeddate>1998-03-02</shippeddate> <shipvia>1</shipvia> <freight>4.9900</freight> <shipname>Hanari Carnes</shipname> <shipaddress>Rua do Paço, 67</shipaddress> <shipcity>Rio de Janeiro</shipcity> <shipregion>RJ</shipregion> <shippostalcode>05454-876</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10886</orderid> <productid>10</productid> <unitprice>31.0000</unitprice> <quantity>70</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10886</orderid> <productid>31</productid> <unitprice>12.5000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10886</orderid> <productid>77</productid> <unitprice>13.0000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10903</orderid> <customerid>HANAR</customerid> <employeeid>3</employeeid> <orderdate>1998-02-24</orderdate> <requireddate>1998-03-24</requireddate> <shippeddate>1998-03-04</shippeddate> <shipvia>3</shipvia> <freight>36.7100</freight> <shipname>Hanari Carnes</shipname> <shipaddress>Rua do Paço, 67</shipaddress> <shipcity>Rio de Janeiro</shipcity> <shipregion>RJ</shipregion> <shippostalcode>05454-876</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10903</orderid> <productid>13</productid> <unitprice>6.0000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10903</orderid> <productid>65</productid> <unitprice>21.0500</unitprice> <quantity>21</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10903</orderid> <productid>68</productid> <unitprice>12.5000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10922</orderid> <customerid>HANAR</customerid> <employeeid>5</employeeid> <orderdate>1998-03-03</orderdate> <requireddate>1998-03-31</requireddate> <shippeddate>1998-03-05</shippeddate> <shipvia>3</shipvia> <freight>62.7400</freight> <shipname>Hanari Carnes</shipname> <shipaddress>Rua do Paço, 67</shipaddress> <shipcity>Rio de Janeiro</shipcity> <shipregion>RJ</shipregion> <shippostalcode>05454-876</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10922</orderid> <productid>17</productid> <unitprice>39.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10922</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10925</orderid> <customerid>HANAR</customerid> <employeeid>3</employeeid> <orderdate>1998-03-04</orderdate> <requireddate>1998-04-01</requireddate> <shippeddate>1998-03-13</shippeddate> <shipvia>1</shipvia> <freight>2.2700</freight> <shipname>Hanari Carnes</shipname> <shipaddress>Rua do Paço, 67</shipaddress> <shipcity>Rio de Janeiro</shipcity> <shipregion>RJ</shipregion> <shippostalcode>05454-876</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10925</orderid> <productid>36</productid> <unitprice>19.0000</unitprice> <quantity>25</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10925</orderid> <productid>52</productid> <unitprice>7.0000</unitprice> <quantity>12</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10981</orderid> <customerid>HANAR</customerid> <employeeid>1</employeeid> <orderdate>1998-03-27</orderdate> <requireddate>1998-04-24</requireddate> <shippeddate>1998-04-02</shippeddate> <shipvia>2</shipvia> <freight>193.3700</freight> <shipname>Hanari Carnes</shipname> <shipaddress>Rua do Paço, 67</shipaddress> <shipcity>Rio de Janeiro</shipcity> <shipregion>RJ</shipregion> <shippostalcode>05454-876</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10981</orderid> <productid>38</productid> <unitprice>263.5000</unitprice> <quantity>60</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11022</orderid> <customerid>HANAR</customerid> <employeeid>9</employeeid> <orderdate>1998-04-14</orderdate> <requireddate>1998-05-12</requireddate> <shippeddate>1998-05-04</shippeddate> <shipvia>2</shipvia> <freight>6.2700</freight> <shipname>Hanari Carnes</shipname> <shipaddress>Rua do Paço, 67</shipaddress> <shipcity>Rio de Janeiro</shipcity> <shipregion>RJ</shipregion> <shippostalcode>05454-876</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>11022</orderid> <productid>19</productid> <unitprice>9.2000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11022</orderid> <productid>69</productid> <unitprice>36.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11052</orderid> <customerid>HANAR</customerid> <employeeid>3</employeeid> <orderdate>1998-04-27</orderdate> <requireddate>1998-05-25</requireddate> <shippeddate>1998-05-01</shippeddate> <shipvia>1</shipvia> <freight>67.2600</freight> <shipname>Hanari Carnes</shipname> <shipaddress>Rua do Paço, 67</shipaddress> <shipcity>Rio de Janeiro</shipcity> <shipregion>RJ</shipregion> <shippostalcode>05454-876</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>11052</orderid> <productid>43</productid> <unitprice>46.0000</unitprice> <quantity>30</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>11052</orderid> <productid>61</productid> <unitprice>28.5000</unitprice> <quantity>10</quantity> <discount>0.20000</discount> </orderdetails> </orders> </customers> <customers> <customerid>HILAA</customerid> <companyname>HILARION-Abastos</companyname> <contactname>Carlos Hernández</contactname> <contacttitle>Sales Representative</contacttitle> <address>Carrera 22 con Ave. Carlos Soublette #8-35</address> <city>San Cristóbal</city> <region>Táchira</region> <postalcode>5022</postalcode> <country>Venezuela</country> <phone>(5) 555-1340</phone> <fax>(5) 555-1948</fax> <orders> <orderid>10257</orderid> <customerid>HILAA</customerid> <employeeid>4</employeeid> <orderdate>1996-07-16</orderdate> <requireddate>1996-08-13</requireddate> <shippeddate>1996-07-22</shippeddate> <shipvia>3</shipvia> <freight>81.9100</freight> <shipname>HILARION-Abastos</shipname> <shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress> <shipcity>San Cristóbal</shipcity> <shipregion>Táchira</shipregion> <shippostalcode>5022</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10257</orderid> <productid>27</productid> <unitprice>35.1000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10257</orderid> <productid>39</productid> <unitprice>14.4000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10257</orderid> <productid>77</productid> <unitprice>10.4000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10395</orderid> <customerid>HILAA</customerid> <employeeid>6</employeeid> <orderdate>1996-12-26</orderdate> <requireddate>1997-01-23</requireddate> <shippeddate>1997-01-03</shippeddate> <shipvia>1</shipvia> <freight>184.4100</freight> <shipname>HILARION-Abastos</shipname> <shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress> <shipcity>San Cristóbal</shipcity> <shipregion>Táchira</shipregion> <shippostalcode>5022</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10395</orderid> <productid>46</productid> <unitprice>9.6000</unitprice> <quantity>28</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10395</orderid> <productid>53</productid> <unitprice>26.2000</unitprice> <quantity>70</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10395</orderid> <productid>69</productid> <unitprice>28.8000</unitprice> <quantity>8</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10476</orderid> <customerid>HILAA</customerid> <employeeid>8</employeeid> <orderdate>1997-03-17</orderdate> <requireddate>1997-04-14</requireddate> <shippeddate>1997-03-24</shippeddate> <shipvia>3</shipvia> <freight>4.4100</freight> <shipname>HILARION-Abastos</shipname> <shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress> <shipcity>San Cristóbal</shipcity> <shipregion>Táchira</shipregion> <shippostalcode>5022</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10476</orderid> <productid>55</productid> <unitprice>19.2000</unitprice> <quantity>2</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10476</orderid> <productid>70</productid> <unitprice>12.0000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10486</orderid> <customerid>HILAA</customerid> <employeeid>1</employeeid> <orderdate>1997-03-26</orderdate> <requireddate>1997-04-23</requireddate> <shippeddate>1997-04-02</shippeddate> <shipvia>2</shipvia> <freight>30.5300</freight> <shipname>HILARION-Abastos</shipname> <shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress> <shipcity>San Cristóbal</shipcity> <shipregion>Táchira</shipregion> <shippostalcode>5022</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10486</orderid> <productid>11</productid> <unitprice>16.8000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10486</orderid> <productid>51</productid> <unitprice>42.4000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10486</orderid> <productid>74</productid> <unitprice>8.0000</unitprice> <quantity>16</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10490</orderid> <customerid>HILAA</customerid> <employeeid>7</employeeid> <orderdate>1997-03-31</orderdate> <requireddate>1997-04-28</requireddate> <shippeddate>1997-04-03</shippeddate> <shipvia>2</shipvia> <freight>210.1900</freight> <shipname>HILARION-Abastos</shipname> <shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress> <shipcity>San Cristóbal</shipcity> <shipregion>Táchira</shipregion> <shippostalcode>5022</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10490</orderid> <productid>59</productid> <unitprice>44.0000</unitprice> <quantity>60</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10490</orderid> <productid>68</productid> <unitprice>10.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10490</orderid> <productid>75</productid> <unitprice>6.2000</unitprice> <quantity>36</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10498</orderid> <customerid>HILAA</customerid> <employeeid>8</employeeid> <orderdate>1997-04-07</orderdate> <requireddate>1997-05-05</requireddate> <shippeddate>1997-04-11</shippeddate> <shipvia>2</shipvia> <freight>29.7500</freight> <shipname>HILARION-Abastos</shipname> <shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress> <shipcity>San Cristóbal</shipcity> <shipregion>Táchira</shipregion> <shippostalcode>5022</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10498</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>14</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10498</orderid> <productid>40</productid> <unitprice>18.4000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10498</orderid> <productid>42</productid> <unitprice>14.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10552</orderid> <customerid>HILAA</customerid> <employeeid>2</employeeid> <orderdate>1997-05-29</orderdate> <requireddate>1997-06-26</requireddate> <shippeddate>1997-06-05</shippeddate> <shipvia>1</shipvia> <freight>83.2200</freight> <shipname>HILARION-Abastos</shipname> <shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress> <shipcity>San Cristóbal</shipcity> <shipregion>Táchira</shipregion> <shippostalcode>5022</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10552</orderid> <productid>69</productid> <unitprice>36.0000</unitprice> <quantity>18</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10552</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10601</orderid> <customerid>HILAA</customerid> <employeeid>7</employeeid> <orderdate>1997-07-16</orderdate> <requireddate>1997-08-27</requireddate> <shippeddate>1997-07-22</shippeddate> <shipvia>1</shipvia> <freight>58.3000</freight> <shipname>HILARION-Abastos</shipname> <shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress> <shipcity>San Cristóbal</shipcity> <shipregion>Táchira</shipregion> <shippostalcode>5022</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10601</orderid> <productid>13</productid> <unitprice>6.0000</unitprice> <quantity>60</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10601</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10613</orderid> <customerid>HILAA</customerid> <employeeid>4</employeeid> <orderdate>1997-07-29</orderdate> <requireddate>1997-08-26</requireddate> <shippeddate>1997-08-01</shippeddate> <shipvia>2</shipvia> <freight>8.1100</freight> <shipname>HILARION-Abastos</shipname> <shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress> <shipcity>San Cristóbal</shipcity> <shipregion>Táchira</shipregion> <shippostalcode>5022</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10613</orderid> <productid>13</productid> <unitprice>6.0000</unitprice> <quantity>8</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10613</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10641</orderid> <customerid>HILAA</customerid> <employeeid>4</employeeid> <orderdate>1997-08-22</orderdate> <requireddate>1997-09-19</requireddate> <shippeddate>1997-08-26</shippeddate> <shipvia>2</shipvia> <freight>179.6100</freight> <shipname>HILARION-Abastos</shipname> <shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress> <shipcity>San Cristóbal</shipcity> <shipregion>Táchira</shipregion> <shippostalcode>5022</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10641</orderid> <productid>2</productid> <unitprice>19.0000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10641</orderid> <productid>40</productid> <unitprice>18.4000</unitprice> <quantity>60</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10705</orderid> <customerid>HILAA</customerid> <employeeid>9</employeeid> <orderdate>1997-10-15</orderdate> <requireddate>1997-11-12</requireddate> <shippeddate>1997-11-18</shippeddate> <shipvia>2</shipvia> <freight>3.5200</freight> <shipname>HILARION-Abastos</shipname> <shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress> <shipcity>San Cristóbal</shipcity> <shipregion>Táchira</shipregion> <shippostalcode>5022</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10705</orderid> <productid>31</productid> <unitprice>12.5000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10705</orderid> <productid>32</productid> <unitprice>32.0000</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10796</orderid> <customerid>HILAA</customerid> <employeeid>3</employeeid> <orderdate>1997-12-25</orderdate> <requireddate>1998-01-22</requireddate> <shippeddate>1998-01-14</shippeddate> <shipvia>1</shipvia> <freight>26.5200</freight> <shipname>HILARION-Abastos</shipname> <shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress> <shipcity>San Cristóbal</shipcity> <shipregion>Táchira</shipregion> <shippostalcode>5022</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10796</orderid> <productid>26</productid> <unitprice>31.2300</unitprice> <quantity>21</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10796</orderid> <productid>44</productid> <unitprice>19.4500</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10796</orderid> <productid>64</productid> <unitprice>33.2500</unitprice> <quantity>35</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10796</orderid> <productid>69</productid> <unitprice>36.0000</unitprice> <quantity>24</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10863</orderid> <customerid>HILAA</customerid> <employeeid>4</employeeid> <orderdate>1998-02-02</orderdate> <requireddate>1998-03-02</requireddate> <shippeddate>1998-02-17</shippeddate> <shipvia>2</shipvia> <freight>30.2600</freight> <shipname>HILARION-Abastos</shipname> <shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress> <shipcity>San Cristóbal</shipcity> <shipregion>Táchira</shipregion> <shippostalcode>5022</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10863</orderid> <productid>1</productid> <unitprice>18.0000</unitprice> <quantity>20</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10863</orderid> <productid>58</productid> <unitprice>13.2500</unitprice> <quantity>12</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10901</orderid> <customerid>HILAA</customerid> <employeeid>4</employeeid> <orderdate>1998-02-23</orderdate> <requireddate>1998-03-23</requireddate> <shippeddate>1998-02-26</shippeddate> <shipvia>1</shipvia> <freight>62.0900</freight> <shipname>HILARION-Abastos</shipname> <shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress> <shipcity>San Cristóbal</shipcity> <shipregion>Táchira</shipregion> <shippostalcode>5022</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10901</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10901</orderid> <productid>71</productid> <unitprice>21.5000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10957</orderid> <customerid>HILAA</customerid> <employeeid>8</employeeid> <orderdate>1998-03-18</orderdate> <requireddate>1998-04-15</requireddate> <shippeddate>1998-03-27</shippeddate> <shipvia>3</shipvia> <freight>105.3600</freight> <shipname>HILARION-Abastos</shipname> <shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress> <shipcity>San Cristóbal</shipcity> <shipregion>Táchira</shipregion> <shippostalcode>5022</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10957</orderid> <productid>30</productid> <unitprice>25.8900</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10957</orderid> <productid>35</productid> <unitprice>18.0000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10957</orderid> <productid>64</productid> <unitprice>33.2500</unitprice> <quantity>8</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10960</orderid> <customerid>HILAA</customerid> <employeeid>3</employeeid> <orderdate>1998-03-19</orderdate> <requireddate>1998-04-02</requireddate> <shippeddate>1998-04-08</shippeddate> <shipvia>1</shipvia> <freight>2.0800</freight> <shipname>HILARION-Abastos</shipname> <shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress> <shipcity>San Cristóbal</shipcity> <shipregion>Táchira</shipregion> <shippostalcode>5022</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10960</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>10</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10960</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10976</orderid> <customerid>HILAA</customerid> <employeeid>1</employeeid> <orderdate>1998-03-25</orderdate> <requireddate>1998-05-06</requireddate> <shippeddate>1998-04-03</shippeddate> <shipvia>1</shipvia> <freight>37.9700</freight> <shipname>HILARION-Abastos</shipname> <shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress> <shipcity>San Cristóbal</shipcity> <shipregion>Táchira</shipregion> <shippostalcode>5022</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10976</orderid> <productid>28</productid> <unitprice>45.6000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11055</orderid> <customerid>HILAA</customerid> <employeeid>7</employeeid> <orderdate>1998-04-28</orderdate> <requireddate>1998-05-26</requireddate> <shippeddate>1998-05-05</shippeddate> <shipvia>2</shipvia> <freight>120.9200</freight> <shipname>HILARION-Abastos</shipname> <shipaddress>Carrera 22 con Ave. Carlos Soublette #8-35</shipaddress> <shipcity>San Cristóbal</shipcity> <shipregion>Táchira</shipregion> <shippostalcode>5022</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>11055</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11055</orderid> <productid>25</productid> <unitprice>14.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11055</orderid> <productid>51</productid> <unitprice>53.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11055</orderid> <productid>57</productid> <unitprice>19.5000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>HUNGC</customerid> <companyname>Hungry Coyote Import Store</companyname> <contactname>Yoshi Latimer</contactname> <contacttitle>Sales Representative</contacttitle> <address>City Center Plaza 516 Main St.</address> <city>Elgin</city> <region>OR</region> <postalcode>97827</postalcode> <country>USA</country> <phone>(503) 555-6874</phone> <fax>(503) 555-2376</fax> <orders> <orderid>10375</orderid> <customerid>HUNGC</customerid> <employeeid>3</employeeid> <orderdate>1996-12-06</orderdate> <requireddate>1997-01-03</requireddate> <shippeddate>1996-12-09</shippeddate> <shipvia>2</shipvia> <freight>20.1200</freight> <shipname>Hungry Coyote Import Store</shipname> <shipaddress>City Center Plaza 516 Main St.</shipaddress> <shipcity>Elgin</shipcity> <shipregion>OR</shipregion> <shippostalcode>97827</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10375</orderid> <productid>14</productid> <unitprice>18.6000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10375</orderid> <productid>54</productid> <unitprice>5.9000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10394</orderid> <customerid>HUNGC</customerid> <employeeid>1</employeeid> <orderdate>1996-12-25</orderdate> <requireddate>1997-01-22</requireddate> <shippeddate>1997-01-03</shippeddate> <shipvia>3</shipvia> <freight>30.3400</freight> <shipname>Hungry Coyote Import Store</shipname> <shipaddress>City Center Plaza 516 Main St.</shipaddress> <shipcity>Elgin</shipcity> <shipregion>OR</shipregion> <shippostalcode>97827</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10394</orderid> <productid>13</productid> <unitprice>4.8000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10394</orderid> <productid>62</productid> <unitprice>39.4000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10415</orderid> <customerid>HUNGC</customerid> <employeeid>3</employeeid> <orderdate>1997-01-15</orderdate> <requireddate>1997-02-12</requireddate> <shippeddate>1997-01-24</shippeddate> <shipvia>1</shipvia> <freight>0.2000</freight> <shipname>Hungry Coyote Import Store</shipname> <shipaddress>City Center Plaza 516 Main St.</shipaddress> <shipcity>Elgin</shipcity> <shipregion>OR</shipregion> <shippostalcode>97827</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10415</orderid> <productid>17</productid> <unitprice>31.2000</unitprice> <quantity>2</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10415</orderid> <productid>33</productid> <unitprice>2.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10600</orderid> <customerid>HUNGC</customerid> <employeeid>4</employeeid> <orderdate>1997-07-16</orderdate> <requireddate>1997-08-13</requireddate> <shippeddate>1997-07-21</shippeddate> <shipvia>1</shipvia> <freight>45.1300</freight> <shipname>Hungry Coyote Import Store</shipname> <shipaddress>City Center Plaza 516 Main St.</shipaddress> <shipcity>Elgin</shipcity> <shipregion>OR</shipregion> <shippostalcode>97827</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10600</orderid> <productid>54</productid> <unitprice>7.4500</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10600</orderid> <productid>73</productid> <unitprice>15.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10660</orderid> <customerid>HUNGC</customerid> <employeeid>8</employeeid> <orderdate>1997-09-08</orderdate> <requireddate>1997-10-06</requireddate> <shippeddate>1997-10-15</shippeddate> <shipvia>1</shipvia> <freight>111.2900</freight> <shipname>Hungry Coyote Import Store</shipname> <shipaddress>City Center Plaza 516 Main St.</shipaddress> <shipcity>Elgin</shipcity> <shipregion>OR</shipregion> <shippostalcode>97827</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10660</orderid> <productid>20</productid> <unitprice>81.0000</unitprice> <quantity>21</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>HUNGO</customerid> <companyname>Hungry Owl All-Night Grocers</companyname> <contactname>Patricia McKenna</contactname> <contacttitle>Sales Associate</contacttitle> <address>8 Johnstown Road</address> <city>Cork</city> <region>Co. Cork</region> <country>Ireland</country> <phone>2967 542</phone> <fax>2967 3333</fax> <orders> <orderid>10298</orderid> <customerid>HUNGO</customerid> <employeeid>6</employeeid> <orderdate>1996-09-05</orderdate> <requireddate>1996-10-03</requireddate> <shippeddate>1996-09-11</shippeddate> <shipvia>2</shipvia> <freight>168.2200</freight> <shipname>Hungry Owl All-Night Grocers</shipname> <shipaddress>8 Johnstown Road</shipaddress> <shipcity>Cork</shipcity> <shipregion>Co. Cork</shipregion> <shipcountry>Ireland</shipcountry> <orderdetails> <orderid>10298</orderid> <productid>2</productid> <unitprice>15.2000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10298</orderid> <productid>36</productid> <unitprice>15.2000</unitprice> <quantity>40</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10298</orderid> <productid>59</productid> <unitprice>44.0000</unitprice> <quantity>30</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10298</orderid> <productid>62</productid> <unitprice>39.4000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10309</orderid> <customerid>HUNGO</customerid> <employeeid>3</employeeid> <orderdate>1996-09-19</orderdate> <requireddate>1996-10-17</requireddate> <shippeddate>1996-10-23</shippeddate> <shipvia>1</shipvia> <freight>47.3000</freight> <shipname>Hungry Owl All-Night Grocers</shipname> <shipaddress>8 Johnstown Road</shipaddress> <shipcity>Cork</shipcity> <shipregion>Co. Cork</shipregion> <shipcountry>Ireland</shipcountry> <orderdetails> <orderid>10309</orderid> <productid>4</productid> <unitprice>17.6000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10309</orderid> <productid>6</productid> <unitprice>20.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10309</orderid> <productid>42</productid> <unitprice>11.2000</unitprice> <quantity>2</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10309</orderid> <productid>43</productid> <unitprice>36.8000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10309</orderid> <productid>71</productid> <unitprice>17.2000</unitprice> <quantity>3</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10335</orderid> <customerid>HUNGO</customerid> <employeeid>7</employeeid> <orderdate>1996-10-22</orderdate> <requireddate>1996-11-19</requireddate> <shippeddate>1996-10-24</shippeddate> <shipvia>2</shipvia> <freight>42.1100</freight> <shipname>Hungry Owl All-Night Grocers</shipname> <shipaddress>8 Johnstown Road</shipaddress> <shipcity>Cork</shipcity> <shipregion>Co. Cork</shipregion> <shipcountry>Ireland</shipcountry> <orderdetails> <orderid>10335</orderid> <productid>2</productid> <unitprice>15.2000</unitprice> <quantity>7</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10335</orderid> <productid>31</productid> <unitprice>10.0000</unitprice> <quantity>25</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10335</orderid> <productid>32</productid> <unitprice>25.6000</unitprice> <quantity>6</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10335</orderid> <productid>51</productid> <unitprice>42.4000</unitprice> <quantity>48</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10373</orderid> <customerid>HUNGO</customerid> <employeeid>4</employeeid> <orderdate>1996-12-05</orderdate> <requireddate>1997-01-02</requireddate> <shippeddate>1996-12-11</shippeddate> <shipvia>3</shipvia> <freight>124.1200</freight> <shipname>Hungry Owl All-Night Grocers</shipname> <shipaddress>8 Johnstown Road</shipaddress> <shipcity>Cork</shipcity> <shipregion>Co. Cork</shipregion> <shipcountry>Ireland</shipcountry> <orderdetails> <orderid>10373</orderid> <productid>58</productid> <unitprice>10.6000</unitprice> <quantity>80</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10373</orderid> <productid>71</productid> <unitprice>17.2000</unitprice> <quantity>50</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10380</orderid> <customerid>HUNGO</customerid> <employeeid>8</employeeid> <orderdate>1996-12-12</orderdate> <requireddate>1997-01-09</requireddate> <shippeddate>1997-01-16</shippeddate> <shipvia>3</shipvia> <freight>35.0300</freight> <shipname>Hungry Owl All-Night Grocers</shipname> <shipaddress>8 Johnstown Road</shipaddress> <shipcity>Cork</shipcity> <shipregion>Co. Cork</shipregion> <shipcountry>Ireland</shipcountry> <orderdetails> <orderid>10380</orderid> <productid>30</productid> <unitprice>20.7000</unitprice> <quantity>18</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10380</orderid> <productid>53</productid> <unitprice>26.2000</unitprice> <quantity>20</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10380</orderid> <productid>60</productid> <unitprice>27.2000</unitprice> <quantity>6</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10380</orderid> <productid>70</productid> <unitprice>12.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10429</orderid> <customerid>HUNGO</customerid> <employeeid>3</employeeid> <orderdate>1997-01-29</orderdate> <requireddate>1997-03-12</requireddate> <shippeddate>1997-02-07</shippeddate> <shipvia>2</shipvia> <freight>56.6300</freight> <shipname>Hungry Owl All-Night Grocers</shipname> <shipaddress>8 Johnstown Road</shipaddress> <shipcity>Cork</shipcity> <shipregion>Co. Cork</shipregion> <shipcountry>Ireland</shipcountry> <orderdetails> <orderid>10429</orderid> <productid>50</productid> <unitprice>13.0000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10429</orderid> <productid>63</productid> <unitprice>35.1000</unitprice> <quantity>35</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10503</orderid> <customerid>HUNGO</customerid> <employeeid>6</employeeid> <orderdate>1997-04-11</orderdate> <requireddate>1997-05-09</requireddate> <shippeddate>1997-04-16</shippeddate> <shipvia>2</shipvia> <freight>16.7400</freight> <shipname>Hungry Owl All-Night Grocers</shipname> <shipaddress>8 Johnstown Road</shipaddress> <shipcity>Cork</shipcity> <shipregion>Co. Cork</shipregion> <shipcountry>Ireland</shipcountry> <orderdetails> <orderid>10503</orderid> <productid>14</productid> <unitprice>23.2500</unitprice> <quantity>70</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10503</orderid> <productid>65</productid> <unitprice>21.0500</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10516</orderid> <customerid>HUNGO</customerid> <employeeid>2</employeeid> <orderdate>1997-04-24</orderdate> <requireddate>1997-05-22</requireddate> <shippeddate>1997-05-01</shippeddate> <shipvia>3</shipvia> <freight>62.7800</freight> <shipname>Hungry Owl All-Night Grocers</shipname> <shipaddress>8 Johnstown Road</shipaddress> <shipcity>Cork</shipcity> <shipregion>Co. Cork</shipregion> <shipcountry>Ireland</shipcountry> <orderdetails> <orderid>10516</orderid> <productid>18</productid> <unitprice>62.5000</unitprice> <quantity>25</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10516</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>80</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10516</orderid> <productid>42</productid> <unitprice>14.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10567</orderid> <customerid>HUNGO</customerid> <employeeid>1</employeeid> <orderdate>1997-06-12</orderdate> <requireddate>1997-07-10</requireddate> <shippeddate>1997-06-17</shippeddate> <shipvia>1</shipvia> <freight>33.9700</freight> <shipname>Hungry Owl All-Night Grocers</shipname> <shipaddress>8 Johnstown Road</shipaddress> <shipcity>Cork</shipcity> <shipregion>Co. Cork</shipregion> <shipcountry>Ireland</shipcountry> <orderdetails> <orderid>10567</orderid> <productid>31</productid> <unitprice>12.5000</unitprice> <quantity>60</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10567</orderid> <productid>51</productid> <unitprice>53.0000</unitprice> <quantity>3</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10567</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>40</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10646</orderid> <customerid>HUNGO</customerid> <employeeid>9</employeeid> <orderdate>1997-08-27</orderdate> <requireddate>1997-10-08</requireddate> <shippeddate>1997-09-03</shippeddate> <shipvia>3</shipvia> <freight>142.3300</freight> <shipname>Hungry Owl All-Night Grocers</shipname> <shipaddress>8 Johnstown Road</shipaddress> <shipcity>Cork</shipcity> <shipregion>Co. Cork</shipregion> <shipcountry>Ireland</shipcountry> <orderdetails> <orderid>10646</orderid> <productid>1</productid> <unitprice>18.0000</unitprice> <quantity>15</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10646</orderid> <productid>10</productid> <unitprice>31.0000</unitprice> <quantity>18</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10646</orderid> <productid>71</productid> <unitprice>21.5000</unitprice> <quantity>30</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10646</orderid> <productid>77</productid> <unitprice>13.0000</unitprice> <quantity>35</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10661</orderid> <customerid>HUNGO</customerid> <employeeid>7</employeeid> <orderdate>1997-09-09</orderdate> <requireddate>1997-10-07</requireddate> <shippeddate>1997-09-15</shippeddate> <shipvia>3</shipvia> <freight>17.5500</freight> <shipname>Hungry Owl All-Night Grocers</shipname> <shipaddress>8 Johnstown Road</shipaddress> <shipcity>Cork</shipcity> <shipregion>Co. Cork</shipregion> <shipcountry>Ireland</shipcountry> <orderdetails> <orderid>10661</orderid> <productid>39</productid> <unitprice>18.0000</unitprice> <quantity>3</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10661</orderid> <productid>58</productid> <unitprice>13.2500</unitprice> <quantity>49</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10687</orderid> <customerid>HUNGO</customerid> <employeeid>9</employeeid> <orderdate>1997-09-30</orderdate> <requireddate>1997-10-28</requireddate> <shippeddate>1997-10-30</shippeddate> <shipvia>2</shipvia> <freight>296.4300</freight> <shipname>Hungry Owl All-Night Grocers</shipname> <shipaddress>8 Johnstown Road</shipaddress> <shipcity>Cork</shipcity> <shipregion>Co. Cork</shipregion> <shipcountry>Ireland</shipcountry> <orderdetails> <orderid>10687</orderid> <productid>9</productid> <unitprice>97.0000</unitprice> <quantity>50</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10687</orderid> <productid>29</productid> <unitprice>123.7900</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10687</orderid> <productid>36</productid> <unitprice>19.0000</unitprice> <quantity>6</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10701</orderid> <customerid>HUNGO</customerid> <employeeid>6</employeeid> <orderdate>1997-10-13</orderdate> <requireddate>1997-10-27</requireddate> <shippeddate>1997-10-15</shippeddate> <shipvia>3</shipvia> <freight>220.3100</freight> <shipname>Hungry Owl All-Night Grocers</shipname> <shipaddress>8 Johnstown Road</shipaddress> <shipcity>Cork</shipcity> <shipregion>Co. Cork</shipregion> <shipcountry>Ireland</shipcountry> <orderdetails> <orderid>10701</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>42</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10701</orderid> <productid>71</productid> <unitprice>21.5000</unitprice> <quantity>20</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10701</orderid> <productid>76</productid> <unitprice>18.0000</unitprice> <quantity>35</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10712</orderid> <customerid>HUNGO</customerid> <employeeid>3</employeeid> <orderdate>1997-10-21</orderdate> <requireddate>1997-11-18</requireddate> <shippeddate>1997-10-31</shippeddate> <shipvia>1</shipvia> <freight>89.9300</freight> <shipname>Hungry Owl All-Night Grocers</shipname> <shipaddress>8 Johnstown Road</shipaddress> <shipcity>Cork</shipcity> <shipregion>Co. Cork</shipregion> <shipcountry>Ireland</shipcountry> <orderdetails> <orderid>10712</orderid> <productid>53</productid> <unitprice>32.8000</unitprice> <quantity>3</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10712</orderid> <productid>56</productid> <unitprice>38.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10736</orderid> <customerid>HUNGO</customerid> <employeeid>9</employeeid> <orderdate>1997-11-11</orderdate> <requireddate>1997-12-09</requireddate> <shippeddate>1997-11-21</shippeddate> <shipvia>2</shipvia> <freight>44.1000</freight> <shipname>Hungry Owl All-Night Grocers</shipname> <shipaddress>8 Johnstown Road</shipaddress> <shipcity>Cork</shipcity> <shipregion>Co. Cork</shipregion> <shipcountry>Ireland</shipcountry> <orderdetails> <orderid>10736</orderid> <productid>65</productid> <unitprice>21.0500</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10736</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10897</orderid> <customerid>HUNGO</customerid> <employeeid>3</employeeid> <orderdate>1998-02-19</orderdate> <requireddate>1998-03-19</requireddate> <shippeddate>1998-02-25</shippeddate> <shipvia>2</shipvia> <freight>603.5400</freight> <shipname>Hungry Owl All-Night Grocers</shipname> <shipaddress>8 Johnstown Road</shipaddress> <shipcity>Cork</shipcity> <shipregion>Co. Cork</shipregion> <shipcountry>Ireland</shipcountry> <orderdetails> <orderid>10897</orderid> <productid>29</productid> <unitprice>123.7900</unitprice> <quantity>80</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10897</orderid> <productid>30</productid> <unitprice>25.8900</unitprice> <quantity>36</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10912</orderid> <customerid>HUNGO</customerid> <employeeid>2</employeeid> <orderdate>1998-02-26</orderdate> <requireddate>1998-03-26</requireddate> <shippeddate>1998-03-18</shippeddate> <shipvia>2</shipvia> <freight>580.9100</freight> <shipname>Hungry Owl All-Night Grocers</shipname> <shipaddress>8 Johnstown Road</shipaddress> <shipcity>Cork</shipcity> <shipregion>Co. Cork</shipregion> <shipcountry>Ireland</shipcountry> <orderdetails> <orderid>10912</orderid> <productid>11</productid> <unitprice>21.0000</unitprice> <quantity>40</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10912</orderid> <productid>29</productid> <unitprice>123.7900</unitprice> <quantity>60</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10985</orderid> <customerid>HUNGO</customerid> <employeeid>2</employeeid> <orderdate>1998-03-30</orderdate> <requireddate>1998-04-27</requireddate> <shippeddate>1998-04-02</shippeddate> <shipvia>1</shipvia> <freight>91.5100</freight> <shipname>Hungry Owl All-Night Grocers</shipname> <shipaddress>8 Johnstown Road</shipaddress> <shipcity>Cork</shipcity> <shipregion>Co. Cork</shipregion> <shipcountry>Ireland</shipcountry> <orderdetails> <orderid>10985</orderid> <productid>16</productid> <unitprice>17.4500</unitprice> <quantity>36</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10985</orderid> <productid>18</productid> <unitprice>62.5000</unitprice> <quantity>8</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10985</orderid> <productid>32</productid> <unitprice>32.0000</unitprice> <quantity>35</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>11063</orderid> <customerid>HUNGO</customerid> <employeeid>3</employeeid> <orderdate>1998-04-30</orderdate> <requireddate>1998-05-28</requireddate> <shippeddate>1998-05-06</shippeddate> <shipvia>2</shipvia> <freight>81.7300</freight> <shipname>Hungry Owl All-Night Grocers</shipname> <shipaddress>8 Johnstown Road</shipaddress> <shipcity>Cork</shipcity> <shipregion>Co. Cork</shipregion> <shipcountry>Ireland</shipcountry> <orderdetails> <orderid>11063</orderid> <productid>34</productid> <unitprice>14.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11063</orderid> <productid>40</productid> <unitprice>18.4000</unitprice> <quantity>40</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>11063</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>30</quantity> <discount>0.10000</discount> </orderdetails> </orders> </customers> <customers> <customerid>ISLAT</customerid> <companyname>Island Trading</companyname> <contactname>Helen Bennett</contactname> <contacttitle>Marketing Manager</contacttitle> <address>Garden House Crowther Way</address> <city>Cowes</city> <region>Isle of Wight</region> <postalcode>PO31 7PJ</postalcode> <country>UK</country> <phone>(198) 555-8888</phone> <orders> <orderid>10315</orderid> <customerid>ISLAT</customerid> <employeeid>4</employeeid> <orderdate>1996-09-26</orderdate> <requireddate>1996-10-24</requireddate> <shippeddate>1996-10-03</shippeddate> <shipvia>2</shipvia> <freight>41.7600</freight> <shipname>Island Trading</shipname> <shipaddress>Garden House Crowther Way</shipaddress> <shipcity>Cowes</shipcity> <shipregion>Isle of Wight</shipregion> <shippostalcode>PO31 7PJ</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10315</orderid> <productid>34</productid> <unitprice>11.2000</unitprice> <quantity>14</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10315</orderid> <productid>70</productid> <unitprice>12.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10318</orderid> <customerid>ISLAT</customerid> <employeeid>8</employeeid> <orderdate>1996-10-01</orderdate> <requireddate>1996-10-29</requireddate> <shippeddate>1996-10-04</shippeddate> <shipvia>2</shipvia> <freight>4.7300</freight> <shipname>Island Trading</shipname> <shipaddress>Garden House Crowther Way</shipaddress> <shipcity>Cowes</shipcity> <shipregion>Isle of Wight</shipregion> <shippostalcode>PO31 7PJ</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10318</orderid> <productid>41</productid> <unitprice>7.7000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10318</orderid> <productid>76</productid> <unitprice>14.4000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10321</orderid> <customerid>ISLAT</customerid> <employeeid>3</employeeid> <orderdate>1996-10-03</orderdate> <requireddate>1996-10-31</requireddate> <shippeddate>1996-10-11</shippeddate> <shipvia>2</shipvia> <freight>3.4300</freight> <shipname>Island Trading</shipname> <shipaddress>Garden House Crowther Way</shipaddress> <shipcity>Cowes</shipcity> <shipregion>Isle of Wight</shipregion> <shippostalcode>PO31 7PJ</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10321</orderid> <productid>35</productid> <unitprice>14.4000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10473</orderid> <customerid>ISLAT</customerid> <employeeid>1</employeeid> <orderdate>1997-03-13</orderdate> <requireddate>1997-03-27</requireddate> <shippeddate>1997-03-21</shippeddate> <shipvia>3</shipvia> <freight>16.3700</freight> <shipname>Island Trading</shipname> <shipaddress>Garden House Crowther Way</shipaddress> <shipcity>Cowes</shipcity> <shipregion>Isle of Wight</shipregion> <shippostalcode>PO31 7PJ</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10473</orderid> <productid>33</productid> <unitprice>2.0000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10473</orderid> <productid>71</productid> <unitprice>17.2000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10621</orderid> <customerid>ISLAT</customerid> <employeeid>4</employeeid> <orderdate>1997-08-05</orderdate> <requireddate>1997-09-02</requireddate> <shippeddate>1997-08-11</shippeddate> <shipvia>2</shipvia> <freight>23.7300</freight> <shipname>Island Trading</shipname> <shipaddress>Garden House Crowther Way</shipaddress> <shipcity>Cowes</shipcity> <shipregion>Isle of Wight</shipregion> <shippostalcode>PO31 7PJ</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10621</orderid> <productid>19</productid> <unitprice>9.2000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10621</orderid> <productid>23</productid> <unitprice>9.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10621</orderid> <productid>70</productid> <unitprice>15.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10621</orderid> <productid>71</productid> <unitprice>21.5000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10674</orderid> <customerid>ISLAT</customerid> <employeeid>4</employeeid> <orderdate>1997-09-18</orderdate> <requireddate>1997-10-16</requireddate> <shippeddate>1997-09-30</shippeddate> <shipvia>2</shipvia> <freight>0.9000</freight> <shipname>Island Trading</shipname> <shipaddress>Garden House Crowther Way</shipaddress> <shipcity>Cowes</shipcity> <shipregion>Isle of Wight</shipregion> <shippostalcode>PO31 7PJ</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10674</orderid> <productid>23</productid> <unitprice>9.0000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10749</orderid> <customerid>ISLAT</customerid> <employeeid>4</employeeid> <orderdate>1997-11-20</orderdate> <requireddate>1997-12-18</requireddate> <shippeddate>1997-12-19</shippeddate> <shipvia>2</shipvia> <freight>61.5300</freight> <shipname>Island Trading</shipname> <shipaddress>Garden House Crowther Way</shipaddress> <shipcity>Cowes</shipcity> <shipregion>Isle of Wight</shipregion> <shippostalcode>PO31 7PJ</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10749</orderid> <productid>56</productid> <unitprice>38.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10749</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10749</orderid> <productid>76</productid> <unitprice>18.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10798</orderid> <customerid>ISLAT</customerid> <employeeid>2</employeeid> <orderdate>1997-12-26</orderdate> <requireddate>1998-01-23</requireddate> <shippeddate>1998-01-05</shippeddate> <shipvia>1</shipvia> <freight>2.3300</freight> <shipname>Island Trading</shipname> <shipaddress>Garden House Crowther Way</shipaddress> <shipcity>Cowes</shipcity> <shipregion>Isle of Wight</shipregion> <shippostalcode>PO31 7PJ</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10798</orderid> <productid>62</productid> <unitprice>49.3000</unitprice> <quantity>2</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10798</orderid> <productid>72</productid> <unitprice>34.8000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10829</orderid> <customerid>ISLAT</customerid> <employeeid>9</employeeid> <orderdate>1998-01-13</orderdate> <requireddate>1998-02-10</requireddate> <shippeddate>1998-01-23</shippeddate> <shipvia>1</shipvia> <freight>154.7200</freight> <shipname>Island Trading</shipname> <shipaddress>Garden House Crowther Way</shipaddress> <shipcity>Cowes</shipcity> <shipregion>Isle of Wight</shipregion> <shippostalcode>PO31 7PJ</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10829</orderid> <productid>2</productid> <unitprice>19.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10829</orderid> <productid>8</productid> <unitprice>40.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10829</orderid> <productid>13</productid> <unitprice>6.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10829</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>21</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10933</orderid> <customerid>ISLAT</customerid> <employeeid>6</employeeid> <orderdate>1998-03-06</orderdate> <requireddate>1998-04-03</requireddate> <shippeddate>1998-03-16</shippeddate> <shipvia>3</shipvia> <freight>54.1500</freight> <shipname>Island Trading</shipname> <shipaddress>Garden House Crowther Way</shipaddress> <shipcity>Cowes</shipcity> <shipregion>Isle of Wight</shipregion> <shippostalcode>PO31 7PJ</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10933</orderid> <productid>53</productid> <unitprice>32.8000</unitprice> <quantity>2</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10933</orderid> <productid>61</productid> <unitprice>28.5000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>KOENE</customerid> <companyname>Königlich Essen</companyname> <contactname>Philip Cramer</contactname> <contacttitle>Sales Associate</contacttitle> <address>Maubelstr. 90</address> <city>Brandenburg</city> <postalcode>14776</postalcode> <country>Germany</country> <phone>0555-09876</phone> <orders> <orderid>10323</orderid> <customerid>KOENE</customerid> <employeeid>4</employeeid> <orderdate>1996-10-07</orderdate> <requireddate>1996-11-04</requireddate> <shippeddate>1996-10-14</shippeddate> <shipvia>1</shipvia> <freight>4.8800</freight> <shipname>Königlich Essen</shipname> <shipaddress>Maubelstr. 90</shipaddress> <shipcity>Brandenburg</shipcity> <shippostalcode>14776</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10323</orderid> <productid>15</productid> <unitprice>12.4000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10323</orderid> <productid>25</productid> <unitprice>11.2000</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10323</orderid> <productid>39</productid> <unitprice>14.4000</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10325</orderid> <customerid>KOENE</customerid> <employeeid>1</employeeid> <orderdate>1996-10-09</orderdate> <requireddate>1996-10-23</requireddate> <shippeddate>1996-10-14</shippeddate> <shipvia>3</shipvia> <freight>64.8600</freight> <shipname>Königlich Essen</shipname> <shipaddress>Maubelstr. 90</shipaddress> <shipcity>Brandenburg</shipcity> <shippostalcode>14776</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10325</orderid> <productid>6</productid> <unitprice>20.0000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10325</orderid> <productid>13</productid> <unitprice>4.8000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10325</orderid> <productid>14</productid> <unitprice>18.6000</unitprice> <quantity>9</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10325</orderid> <productid>31</productid> <unitprice>10.0000</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10325</orderid> <productid>72</productid> <unitprice>27.8000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10456</orderid> <customerid>KOENE</customerid> <employeeid>8</employeeid> <orderdate>1997-02-25</orderdate> <requireddate>1997-04-08</requireddate> <shippeddate>1997-02-28</shippeddate> <shipvia>2</shipvia> <freight>8.1200</freight> <shipname>Königlich Essen</shipname> <shipaddress>Maubelstr. 90</shipaddress> <shipcity>Brandenburg</shipcity> <shippostalcode>14776</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10456</orderid> <productid>21</productid> <unitprice>8.0000</unitprice> <quantity>40</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10456</orderid> <productid>49</productid> <unitprice>16.0000</unitprice> <quantity>21</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10457</orderid> <customerid>KOENE</customerid> <employeeid>2</employeeid> <orderdate>1997-02-25</orderdate> <requireddate>1997-03-25</requireddate> <shippeddate>1997-03-03</shippeddate> <shipvia>1</shipvia> <freight>11.5700</freight> <shipname>Königlich Essen</shipname> <shipaddress>Maubelstr. 90</shipaddress> <shipcity>Brandenburg</shipcity> <shippostalcode>14776</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10457</orderid> <productid>59</productid> <unitprice>44.0000</unitprice> <quantity>36</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10468</orderid> <customerid>KOENE</customerid> <employeeid>3</employeeid> <orderdate>1997-03-07</orderdate> <requireddate>1997-04-04</requireddate> <shippeddate>1997-03-12</shippeddate> <shipvia>3</shipvia> <freight>44.1200</freight> <shipname>Königlich Essen</shipname> <shipaddress>Maubelstr. 90</shipaddress> <shipcity>Brandenburg</shipcity> <shippostalcode>14776</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10468</orderid> <productid>30</productid> <unitprice>20.7000</unitprice> <quantity>8</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10468</orderid> <productid>43</productid> <unitprice>36.8000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10506</orderid> <customerid>KOENE</customerid> <employeeid>9</employeeid> <orderdate>1997-04-15</orderdate> <requireddate>1997-05-13</requireddate> <shippeddate>1997-05-02</shippeddate> <shipvia>2</shipvia> <freight>21.1900</freight> <shipname>Königlich Essen</shipname> <shipaddress>Maubelstr. 90</shipaddress> <shipcity>Brandenburg</shipcity> <shippostalcode>14776</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10506</orderid> <productid>25</productid> <unitprice>14.0000</unitprice> <quantity>18</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10506</orderid> <productid>70</productid> <unitprice>15.0000</unitprice> <quantity>14</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10542</orderid> <customerid>KOENE</customerid> <employeeid>1</employeeid> <orderdate>1997-05-20</orderdate> <requireddate>1997-06-17</requireddate> <shippeddate>1997-05-26</shippeddate> <shipvia>3</shipvia> <freight>10.9500</freight> <shipname>Königlich Essen</shipname> <shipaddress>Maubelstr. 90</shipaddress> <shipcity>Brandenburg</shipcity> <shippostalcode>14776</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10542</orderid> <productid>11</productid> <unitprice>21.0000</unitprice> <quantity>15</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10542</orderid> <productid>54</productid> <unitprice>7.4500</unitprice> <quantity>24</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10630</orderid> <customerid>KOENE</customerid> <employeeid>1</employeeid> <orderdate>1997-08-13</orderdate> <requireddate>1997-09-10</requireddate> <shippeddate>1997-08-19</shippeddate> <shipvia>2</shipvia> <freight>32.3500</freight> <shipname>Königlich Essen</shipname> <shipaddress>Maubelstr. 90</shipaddress> <shipcity>Brandenburg</shipcity> <shippostalcode>14776</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10630</orderid> <productid>55</productid> <unitprice>24.0000</unitprice> <quantity>12</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10630</orderid> <productid>76</productid> <unitprice>18.0000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10718</orderid> <customerid>KOENE</customerid> <employeeid>1</employeeid> <orderdate>1997-10-27</orderdate> <requireddate>1997-11-24</requireddate> <shippeddate>1997-10-29</shippeddate> <shipvia>3</shipvia> <freight>170.8800</freight> <shipname>Königlich Essen</shipname> <shipaddress>Maubelstr. 90</shipaddress> <shipcity>Brandenburg</shipcity> <shippostalcode>14776</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10718</orderid> <productid>12</productid> <unitprice>38.0000</unitprice> <quantity>36</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10718</orderid> <productid>16</productid> <unitprice>17.4500</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10718</orderid> <productid>36</productid> <unitprice>19.0000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10718</orderid> <productid>62</productid> <unitprice>49.3000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10799</orderid> <customerid>KOENE</customerid> <employeeid>9</employeeid> <orderdate>1997-12-26</orderdate> <requireddate>1998-02-06</requireddate> <shippeddate>1998-01-05</shippeddate> <shipvia>3</shipvia> <freight>30.7600</freight> <shipname>Königlich Essen</shipname> <shipaddress>Maubelstr. 90</shipaddress> <shipcity>Brandenburg</shipcity> <shippostalcode>14776</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10799</orderid> <productid>13</productid> <unitprice>6.0000</unitprice> <quantity>20</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10799</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>20</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10799</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10817</orderid> <customerid>KOENE</customerid> <employeeid>3</employeeid> <orderdate>1998-01-06</orderdate> <requireddate>1998-01-20</requireddate> <shippeddate>1998-01-13</shippeddate> <shipvia>2</shipvia> <freight>306.0700</freight> <shipname>Königlich Essen</shipname> <shipaddress>Maubelstr. 90</shipaddress> <shipcity>Brandenburg</shipcity> <shippostalcode>14776</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10817</orderid> <productid>26</productid> <unitprice>31.2300</unitprice> <quantity>40</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10817</orderid> <productid>38</productid> <unitprice>263.5000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10817</orderid> <productid>40</productid> <unitprice>18.4000</unitprice> <quantity>60</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10817</orderid> <productid>62</productid> <unitprice>49.3000</unitprice> <quantity>25</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10849</orderid> <customerid>KOENE</customerid> <employeeid>9</employeeid> <orderdate>1998-01-23</orderdate> <requireddate>1998-02-20</requireddate> <shippeddate>1998-01-30</shippeddate> <shipvia>2</shipvia> <freight>0.5600</freight> <shipname>Königlich Essen</shipname> <shipaddress>Maubelstr. 90</shipaddress> <shipcity>Brandenburg</shipcity> <shippostalcode>14776</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10849</orderid> <productid>3</productid> <unitprice>10.0000</unitprice> <quantity>49</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10849</orderid> <productid>26</productid> <unitprice>31.2300</unitprice> <quantity>18</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10893</orderid> <customerid>KOENE</customerid> <employeeid>9</employeeid> <orderdate>1998-02-18</orderdate> <requireddate>1998-03-18</requireddate> <shippeddate>1998-02-20</shippeddate> <shipvia>2</shipvia> <freight>77.7800</freight> <shipname>Königlich Essen</shipname> <shipaddress>Maubelstr. 90</shipaddress> <shipcity>Brandenburg</shipcity> <shippostalcode>14776</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10893</orderid> <productid>8</productid> <unitprice>40.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10893</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10893</orderid> <productid>29</productid> <unitprice>123.7900</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10893</orderid> <productid>30</productid> <unitprice>25.8900</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10893</orderid> <productid>36</productid> <unitprice>19.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11028</orderid> <customerid>KOENE</customerid> <employeeid>2</employeeid> <orderdate>1998-04-16</orderdate> <requireddate>1998-05-14</requireddate> <shippeddate>1998-04-22</shippeddate> <shipvia>1</shipvia> <freight>29.5900</freight> <shipname>Königlich Essen</shipname> <shipaddress>Maubelstr. 90</shipaddress> <shipcity>Brandenburg</shipcity> <shippostalcode>14776</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>11028</orderid> <productid>55</productid> <unitprice>24.0000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11028</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>LACOR</customerid> <companyname>La corne d'abondance</companyname> <contactname>Daniel Tonini</contactname> <contacttitle>Sales Representative</contacttitle> <address>67, avenue de l'Europe</address> <city>Versailles</city> <postalcode>78000</postalcode> <country>France</country> <phone>30.59.84.10</phone> <fax>30.59.85.11</fax> <orders> <orderid>10858</orderid> <customerid>LACOR</customerid> <employeeid>2</employeeid> <orderdate>1998-01-29</orderdate> <requireddate>1998-02-26</requireddate> <shippeddate>1998-02-03</shippeddate> <shipvia>1</shipvia> <freight>52.5100</freight> <shipname>La corne d'abondance</shipname> <shipaddress>67, avenue de l'Europe</shipaddress> <shipcity>Versailles</shipcity> <shippostalcode>78000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10858</orderid> <productid>7</productid> <unitprice>30.0000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10858</orderid> <productid>27</productid> <unitprice>43.9000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10858</orderid> <productid>70</productid> <unitprice>15.0000</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10927</orderid> <customerid>LACOR</customerid> <employeeid>4</employeeid> <orderdate>1998-03-05</orderdate> <requireddate>1998-04-02</requireddate> <shippeddate>1998-04-08</shippeddate> <shipvia>1</shipvia> <freight>19.7900</freight> <shipname>La corne d'abondance</shipname> <shipaddress>67, avenue de l'Europe</shipaddress> <shipcity>Versailles</shipcity> <shippostalcode>78000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10927</orderid> <productid>20</productid> <unitprice>81.0000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10927</orderid> <productid>52</productid> <unitprice>7.0000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10927</orderid> <productid>76</productid> <unitprice>18.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10972</orderid> <customerid>LACOR</customerid> <employeeid>4</employeeid> <orderdate>1998-03-24</orderdate> <requireddate>1998-04-21</requireddate> <shippeddate>1998-03-26</shippeddate> <shipvia>2</shipvia> <freight>0.0200</freight> <shipname>La corne d'abondance</shipname> <shipaddress>67, avenue de l'Europe</shipaddress> <shipcity>Versailles</shipcity> <shippostalcode>78000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10972</orderid> <productid>17</productid> <unitprice>39.0000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10972</orderid> <productid>33</productid> <unitprice>2.5000</unitprice> <quantity>7</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10973</orderid> <customerid>LACOR</customerid> <employeeid>6</employeeid> <orderdate>1998-03-24</orderdate> <requireddate>1998-04-21</requireddate> <shippeddate>1998-03-27</shippeddate> <shipvia>2</shipvia> <freight>15.1700</freight> <shipname>La corne d'abondance</shipname> <shipaddress>67, avenue de l'Europe</shipaddress> <shipcity>Versailles</shipcity> <shippostalcode>78000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10973</orderid> <productid>26</productid> <unitprice>31.2300</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10973</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10973</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>LAMAI</customerid> <companyname>La maison d'Asie</companyname> <contactname>Annette Roulet</contactname> <contacttitle>Sales Manager</contacttitle> <address>1 rue Alsace-Lorraine</address> <city>Toulouse</city> <postalcode>31000</postalcode> <country>France</country> <phone>61.77.61.10</phone> <fax>61.77.61.11</fax> <orders> <orderid>10350</orderid> <customerid>LAMAI</customerid> <employeeid>6</employeeid> <orderdate>1996-11-11</orderdate> <requireddate>1996-12-09</requireddate> <shippeddate>1996-12-03</shippeddate> <shipvia>2</shipvia> <freight>64.1900</freight> <shipname>La maison d'Asie</shipname> <shipaddress>1 rue Alsace-Lorraine</shipaddress> <shipcity>Toulouse</shipcity> <shippostalcode>31000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10350</orderid> <productid>50</productid> <unitprice>13.0000</unitprice> <quantity>15</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10350</orderid> <productid>69</productid> <unitprice>28.8000</unitprice> <quantity>18</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10358</orderid> <customerid>LAMAI</customerid> <employeeid>5</employeeid> <orderdate>1996-11-20</orderdate> <requireddate>1996-12-18</requireddate> <shippeddate>1996-11-27</shippeddate> <shipvia>1</shipvia> <freight>19.6400</freight> <shipname>La maison d'Asie</shipname> <shipaddress>1 rue Alsace-Lorraine</shipaddress> <shipcity>Toulouse</shipcity> <shippostalcode>31000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10358</orderid> <productid>24</productid> <unitprice>3.6000</unitprice> <quantity>10</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10358</orderid> <productid>34</productid> <unitprice>11.2000</unitprice> <quantity>10</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10358</orderid> <productid>36</productid> <unitprice>15.2000</unitprice> <quantity>20</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10371</orderid> <customerid>LAMAI</customerid> <employeeid>1</employeeid> <orderdate>1996-12-03</orderdate> <requireddate>1996-12-31</requireddate> <shippeddate>1996-12-24</shippeddate> <shipvia>1</shipvia> <freight>0.4500</freight> <shipname>La maison d'Asie</shipname> <shipaddress>1 rue Alsace-Lorraine</shipaddress> <shipcity>Toulouse</shipcity> <shippostalcode>31000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10371</orderid> <productid>36</productid> <unitprice>15.2000</unitprice> <quantity>6</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10413</orderid> <customerid>LAMAI</customerid> <employeeid>3</employeeid> <orderdate>1997-01-14</orderdate> <requireddate>1997-02-11</requireddate> <shippeddate>1997-01-16</shippeddate> <shipvia>2</shipvia> <freight>95.6600</freight> <shipname>La maison d'Asie</shipname> <shipaddress>1 rue Alsace-Lorraine</shipaddress> <shipcity>Toulouse</shipcity> <shippostalcode>31000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10413</orderid> <productid>1</productid> <unitprice>14.4000</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10413</orderid> <productid>62</productid> <unitprice>39.4000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10413</orderid> <productid>76</productid> <unitprice>14.4000</unitprice> <quantity>14</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10425</orderid> <customerid>LAMAI</customerid> <employeeid>6</employeeid> <orderdate>1997-01-24</orderdate> <requireddate>1997-02-21</requireddate> <shippeddate>1997-02-14</shippeddate> <shipvia>2</shipvia> <freight>7.9300</freight> <shipname>La maison d'Asie</shipname> <shipaddress>1 rue Alsace-Lorraine</shipaddress> <shipcity>Toulouse</shipcity> <shippostalcode>31000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10425</orderid> <productid>55</productid> <unitprice>19.2000</unitprice> <quantity>10</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10425</orderid> <productid>76</productid> <unitprice>14.4000</unitprice> <quantity>20</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10454</orderid> <customerid>LAMAI</customerid> <employeeid>4</employeeid> <orderdate>1997-02-21</orderdate> <requireddate>1997-03-21</requireddate> <shippeddate>1997-02-25</shippeddate> <shipvia>3</shipvia> <freight>2.7400</freight> <shipname>La maison d'Asie</shipname> <shipaddress>1 rue Alsace-Lorraine</shipaddress> <shipcity>Toulouse</shipcity> <shippostalcode>31000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10454</orderid> <productid>16</productid> <unitprice>13.9000</unitprice> <quantity>20</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10454</orderid> <productid>33</productid> <unitprice>2.0000</unitprice> <quantity>20</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10454</orderid> <productid>46</productid> <unitprice>9.6000</unitprice> <quantity>10</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10493</orderid> <customerid>LAMAI</customerid> <employeeid>4</employeeid> <orderdate>1997-04-02</orderdate> <requireddate>1997-04-30</requireddate> <shippeddate>1997-04-10</shippeddate> <shipvia>3</shipvia> <freight>10.6400</freight> <shipname>La maison d'Asie</shipname> <shipaddress>1 rue Alsace-Lorraine</shipaddress> <shipcity>Toulouse</shipcity> <shippostalcode>31000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10493</orderid> <productid>65</productid> <unitprice>16.8000</unitprice> <quantity>15</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10493</orderid> <productid>66</productid> <unitprice>13.6000</unitprice> <quantity>10</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10493</orderid> <productid>69</productid> <unitprice>28.8000</unitprice> <quantity>10</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10500</orderid> <customerid>LAMAI</customerid> <employeeid>6</employeeid> <orderdate>1997-04-09</orderdate> <requireddate>1997-05-07</requireddate> <shippeddate>1997-04-17</shippeddate> <shipvia>1</shipvia> <freight>42.6800</freight> <shipname>La maison d'Asie</shipname> <shipaddress>1 rue Alsace-Lorraine</shipaddress> <shipcity>Toulouse</shipcity> <shippostalcode>31000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10500</orderid> <productid>15</productid> <unitprice>15.5000</unitprice> <quantity>12</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10500</orderid> <productid>28</productid> <unitprice>45.6000</unitprice> <quantity>8</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10610</orderid> <customerid>LAMAI</customerid> <employeeid>8</employeeid> <orderdate>1997-07-25</orderdate> <requireddate>1997-08-22</requireddate> <shippeddate>1997-08-06</shippeddate> <shipvia>1</shipvia> <freight>26.7800</freight> <shipname>La maison d'Asie</shipname> <shipaddress>1 rue Alsace-Lorraine</shipaddress> <shipcity>Toulouse</shipcity> <shippostalcode>31000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10610</orderid> <productid>36</productid> <unitprice>19.0000</unitprice> <quantity>21</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10631</orderid> <customerid>LAMAI</customerid> <employeeid>8</employeeid> <orderdate>1997-08-14</orderdate> <requireddate>1997-09-11</requireddate> <shippeddate>1997-08-15</shippeddate> <shipvia>1</shipvia> <freight>0.8700</freight> <shipname>La maison d'Asie</shipname> <shipaddress>1 rue Alsace-Lorraine</shipaddress> <shipcity>Toulouse</shipcity> <shippostalcode>31000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10631</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>8</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10787</orderid> <customerid>LAMAI</customerid> <employeeid>2</employeeid> <orderdate>1997-12-19</orderdate> <requireddate>1998-01-02</requireddate> <shippeddate>1997-12-26</shippeddate> <shipvia>1</shipvia> <freight>249.9300</freight> <shipname>La maison d'Asie</shipname> <shipaddress>1 rue Alsace-Lorraine</shipaddress> <shipcity>Toulouse</shipcity> <shippostalcode>31000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10787</orderid> <productid>2</productid> <unitprice>19.0000</unitprice> <quantity>15</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10787</orderid> <productid>29</productid> <unitprice>123.7900</unitprice> <quantity>20</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10832</orderid> <customerid>LAMAI</customerid> <employeeid>2</employeeid> <orderdate>1998-01-14</orderdate> <requireddate>1998-02-11</requireddate> <shippeddate>1998-01-19</shippeddate> <shipvia>2</shipvia> <freight>43.2600</freight> <shipname>La maison d'Asie</shipname> <shipaddress>1 rue Alsace-Lorraine</shipaddress> <shipcity>Toulouse</shipcity> <shippostalcode>31000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10832</orderid> <productid>13</productid> <unitprice>6.0000</unitprice> <quantity>3</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10832</orderid> <productid>25</productid> <unitprice>14.0000</unitprice> <quantity>10</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10832</orderid> <productid>44</productid> <unitprice>19.4500</unitprice> <quantity>16</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10832</orderid> <productid>64</productid> <unitprice>33.2500</unitprice> <quantity>3</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10923</orderid> <customerid>LAMAI</customerid> <employeeid>7</employeeid> <orderdate>1998-03-03</orderdate> <requireddate>1998-04-14</requireddate> <shippeddate>1998-03-13</shippeddate> <shipvia>3</shipvia> <freight>68.2600</freight> <shipname>La maison d'Asie</shipname> <shipaddress>1 rue Alsace-Lorraine</shipaddress> <shipcity>Toulouse</shipcity> <shippostalcode>31000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10923</orderid> <productid>42</productid> <unitprice>14.0000</unitprice> <quantity>10</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10923</orderid> <productid>43</productid> <unitprice>46.0000</unitprice> <quantity>10</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10923</orderid> <productid>67</productid> <unitprice>14.0000</unitprice> <quantity>24</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>11051</orderid> <customerid>LAMAI</customerid> <employeeid>7</employeeid> <orderdate>1998-04-27</orderdate> <requireddate>1998-05-25</requireddate> <shipvia>3</shipvia> <freight>2.7900</freight> <shipname>La maison d'Asie</shipname> <shipaddress>1 rue Alsace-Lorraine</shipaddress> <shipcity>Toulouse</shipcity> <shippostalcode>31000</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>11051</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>10</quantity> <discount>0.20000</discount> </orderdetails> </orders> </customers> <customers> <customerid>LAUGB</customerid> <companyname>Laughing Bacchus Wine Cellars</companyname> <contactname>Yoshi Tannamuri</contactname> <contacttitle>Marketing Assistant</contacttitle> <address>1900 Oak St.</address> <city>Vancouver</city> <region>BC</region> <postalcode>V3F 2K1</postalcode> <country>Canada</country> <phone>(604) 555-3392</phone> <fax>(604) 555-7293</fax> <orders> <orderid>10495</orderid> <customerid>LAUGB</customerid> <employeeid>3</employeeid> <orderdate>1997-04-03</orderdate> <requireddate>1997-05-01</requireddate> <shippeddate>1997-04-11</shippeddate> <shipvia>3</shipvia> <freight>4.6500</freight> <shipname>Laughing Bacchus Wine Cellars</shipname> <shipaddress>2319 Elm St.</shipaddress> <shipcity>Vancouver</shipcity> <shipregion>BC</shipregion> <shippostalcode>V3F 2K1</shippostalcode> <shipcountry>Canada</shipcountry> <orderdetails> <orderid>10495</orderid> <productid>23</productid> <unitprice>7.2000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10495</orderid> <productid>41</productid> <unitprice>7.7000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10495</orderid> <productid>77</productid> <unitprice>10.4000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10620</orderid> <customerid>LAUGB</customerid> <employeeid>2</employeeid> <orderdate>1997-08-05</orderdate> <requireddate>1997-09-02</requireddate> <shippeddate>1997-08-14</shippeddate> <shipvia>3</shipvia> <freight>0.9400</freight> <shipname>Laughing Bacchus Wine Cellars</shipname> <shipaddress>2319 Elm St.</shipaddress> <shipcity>Vancouver</shipcity> <shipregion>BC</shipregion> <shippostalcode>V3F 2K1</shippostalcode> <shipcountry>Canada</shipcountry> <orderdetails> <orderid>10620</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10620</orderid> <productid>52</productid> <unitprice>7.0000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10810</orderid> <customerid>LAUGB</customerid> <employeeid>2</employeeid> <orderdate>1998-01-01</orderdate> <requireddate>1998-01-29</requireddate> <shippeddate>1998-01-07</shippeddate> <shipvia>3</shipvia> <freight>4.3300</freight> <shipname>Laughing Bacchus Wine Cellars</shipname> <shipaddress>2319 Elm St.</shipaddress> <shipcity>Vancouver</shipcity> <shipregion>BC</shipregion> <shippostalcode>V3F 2K1</shippostalcode> <shipcountry>Canada</shipcountry> <orderdetails> <orderid>10810</orderid> <productid>13</productid> <unitprice>6.0000</unitprice> <quantity>7</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10810</orderid> <productid>25</productid> <unitprice>14.0000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10810</orderid> <productid>70</productid> <unitprice>15.0000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>LAZYK</customerid> <companyname>Lazy K Kountry Store</companyname> <contactname>John Steel</contactname> <contacttitle>Marketing Manager</contacttitle> <address>12 Orchestra Terrace</address> <city>Walla Walla</city> <region>WA</region> <postalcode>99362</postalcode> <country>USA</country> <phone>(509) 555-7969</phone> <fax>(509) 555-6221</fax> <orders> <orderid>10482</orderid> <customerid>LAZYK</customerid> <employeeid>1</employeeid> <orderdate>1997-03-21</orderdate> <requireddate>1997-04-18</requireddate> <shippeddate>1997-04-10</shippeddate> <shipvia>3</shipvia> <freight>7.4800</freight> <shipname>Lazy K Kountry Store</shipname> <shipaddress>12 Orchestra Terrace</shipaddress> <shipcity>Walla Walla</shipcity> <shipregion>WA</shipregion> <shippostalcode>99362</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10482</orderid> <productid>40</productid> <unitprice>14.7000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10545</orderid> <customerid>LAZYK</customerid> <employeeid>8</employeeid> <orderdate>1997-05-22</orderdate> <requireddate>1997-06-19</requireddate> <shippeddate>1997-06-26</shippeddate> <shipvia>2</shipvia> <freight>11.9200</freight> <shipname>Lazy K Kountry Store</shipname> <shipaddress>12 Orchestra Terrace</shipaddress> <shipcity>Walla Walla</shipcity> <shipregion>WA</shipregion> <shippostalcode>99362</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10545</orderid> <productid>11</productid> <unitprice>21.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>LEHMS</customerid> <companyname>Lehmanns Marktstand</companyname> <contactname>Renate Messner</contactname> <contacttitle>Sales Representative</contacttitle> <address>Magazinweg 7</address> <city>Frankfurt a.M.</city> <postalcode>60528</postalcode> <country>Germany</country> <phone>069-0245984</phone> <fax>069-0245874</fax> <orders> <orderid>10279</orderid> <customerid>LEHMS</customerid> <employeeid>8</employeeid> <orderdate>1996-08-13</orderdate> <requireddate>1996-09-10</requireddate> <shippeddate>1996-08-16</shippeddate> <shipvia>2</shipvia> <freight>25.8300</freight> <shipname>Lehmanns Marktstand</shipname> <shipaddress>Magazinweg 7</shipaddress> <shipcity>Frankfurt a.M.</shipcity> <shippostalcode>60528</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10279</orderid> <productid>17</productid> <unitprice>31.2000</unitprice> <quantity>15</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10284</orderid> <customerid>LEHMS</customerid> <employeeid>4</employeeid> <orderdate>1996-08-19</orderdate> <requireddate>1996-09-16</requireddate> <shippeddate>1996-08-27</shippeddate> <shipvia>1</shipvia> <freight>76.5600</freight> <shipname>Lehmanns Marktstand</shipname> <shipaddress>Magazinweg 7</shipaddress> <shipcity>Frankfurt a.M.</shipcity> <shippostalcode>60528</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10284</orderid> <productid>27</productid> <unitprice>35.1000</unitprice> <quantity>15</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10284</orderid> <productid>44</productid> <unitprice>15.5000</unitprice> <quantity>21</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10284</orderid> <productid>60</productid> <unitprice>27.2000</unitprice> <quantity>20</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10284</orderid> <productid>67</productid> <unitprice>11.2000</unitprice> <quantity>5</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10343</orderid> <customerid>LEHMS</customerid> <employeeid>4</employeeid> <orderdate>1996-10-31</orderdate> <requireddate>1996-11-28</requireddate> <shippeddate>1996-11-06</shippeddate> <shipvia>1</shipvia> <freight>110.3700</freight> <shipname>Lehmanns Marktstand</shipname> <shipaddress>Magazinweg 7</shipaddress> <shipcity>Frankfurt a.M.</shipcity> <shippostalcode>60528</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10343</orderid> <productid>64</productid> <unitprice>26.6000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10343</orderid> <productid>68</productid> <unitprice>10.0000</unitprice> <quantity>4</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10343</orderid> <productid>76</productid> <unitprice>14.4000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10497</orderid> <customerid>LEHMS</customerid> <employeeid>7</employeeid> <orderdate>1997-04-04</orderdate> <requireddate>1997-05-02</requireddate> <shippeddate>1997-04-07</shippeddate> <shipvia>1</shipvia> <freight>36.2100</freight> <shipname>Lehmanns Marktstand</shipname> <shipaddress>Magazinweg 7</shipaddress> <shipcity>Frankfurt a.M.</shipcity> <shippostalcode>60528</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10497</orderid> <productid>56</productid> <unitprice>30.4000</unitprice> <quantity>14</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10497</orderid> <productid>72</productid> <unitprice>27.8000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10497</orderid> <productid>77</productid> <unitprice>10.4000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10522</orderid> <customerid>LEHMS</customerid> <employeeid>4</employeeid> <orderdate>1997-04-30</orderdate> <requireddate>1997-05-28</requireddate> <shippeddate>1997-05-06</shippeddate> <shipvia>1</shipvia> <freight>45.3300</freight> <shipname>Lehmanns Marktstand</shipname> <shipaddress>Magazinweg 7</shipaddress> <shipcity>Frankfurt a.M.</shipcity> <shippostalcode>60528</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10522</orderid> <productid>1</productid> <unitprice>18.0000</unitprice> <quantity>40</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10522</orderid> <productid>8</productid> <unitprice>40.0000</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10522</orderid> <productid>30</productid> <unitprice>25.8900</unitprice> <quantity>20</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10522</orderid> <productid>40</productid> <unitprice>18.4000</unitprice> <quantity>25</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10534</orderid> <customerid>LEHMS</customerid> <employeeid>8</employeeid> <orderdate>1997-05-12</orderdate> <requireddate>1997-06-09</requireddate> <shippeddate>1997-05-14</shippeddate> <shipvia>2</shipvia> <freight>27.9400</freight> <shipname>Lehmanns Marktstand</shipname> <shipaddress>Magazinweg 7</shipaddress> <shipcity>Frankfurt a.M.</shipcity> <shippostalcode>60528</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10534</orderid> <productid>30</productid> <unitprice>25.8900</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10534</orderid> <productid>40</productid> <unitprice>18.4000</unitprice> <quantity>10</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10534</orderid> <productid>54</productid> <unitprice>7.4500</unitprice> <quantity>10</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10536</orderid> <customerid>LEHMS</customerid> <employeeid>3</employeeid> <orderdate>1997-05-14</orderdate> <requireddate>1997-06-11</requireddate> <shippeddate>1997-06-06</shippeddate> <shipvia>2</shipvia> <freight>58.8800</freight> <shipname>Lehmanns Marktstand</shipname> <shipaddress>Magazinweg 7</shipaddress> <shipcity>Frankfurt a.M.</shipcity> <shippostalcode>60528</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10536</orderid> <productid>12</productid> <unitprice>38.0000</unitprice> <quantity>15</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10536</orderid> <productid>31</productid> <unitprice>12.5000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10536</orderid> <productid>33</productid> <unitprice>2.5000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10536</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>35</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10557</orderid> <customerid>LEHMS</customerid> <employeeid>9</employeeid> <orderdate>1997-06-03</orderdate> <requireddate>1997-06-17</requireddate> <shippeddate>1997-06-06</shippeddate> <shipvia>2</shipvia> <freight>96.7200</freight> <shipname>Lehmanns Marktstand</shipname> <shipaddress>Magazinweg 7</shipaddress> <shipcity>Frankfurt a.M.</shipcity> <shippostalcode>60528</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10557</orderid> <productid>64</productid> <unitprice>33.2500</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10557</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10592</orderid> <customerid>LEHMS</customerid> <employeeid>3</employeeid> <orderdate>1997-07-08</orderdate> <requireddate>1997-08-05</requireddate> <shippeddate>1997-07-16</shippeddate> <shipvia>1</shipvia> <freight>32.1000</freight> <shipname>Lehmanns Marktstand</shipname> <shipaddress>Magazinweg 7</shipaddress> <shipcity>Frankfurt a.M.</shipcity> <shippostalcode>60528</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10592</orderid> <productid>15</productid> <unitprice>15.5000</unitprice> <quantity>25</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10592</orderid> <productid>26</productid> <unitprice>31.2300</unitprice> <quantity>5</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10593</orderid> <customerid>LEHMS</customerid> <employeeid>7</employeeid> <orderdate>1997-07-09</orderdate> <requireddate>1997-08-06</requireddate> <shippeddate>1997-08-13</shippeddate> <shipvia>2</shipvia> <freight>174.2000</freight> <shipname>Lehmanns Marktstand</shipname> <shipaddress>Magazinweg 7</shipaddress> <shipcity>Frankfurt a.M.</shipcity> <shippostalcode>60528</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10593</orderid> <productid>20</productid> <unitprice>81.0000</unitprice> <quantity>21</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10593</orderid> <productid>69</productid> <unitprice>36.0000</unitprice> <quantity>20</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10593</orderid> <productid>76</productid> <unitprice>18.0000</unitprice> <quantity>4</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10772</orderid> <customerid>LEHMS</customerid> <employeeid>3</employeeid> <orderdate>1997-12-10</orderdate> <requireddate>1998-01-07</requireddate> <shippeddate>1997-12-19</shippeddate> <shipvia>2</shipvia> <freight>91.2800</freight> <shipname>Lehmanns Marktstand</shipname> <shipaddress>Magazinweg 7</shipaddress> <shipcity>Frankfurt a.M.</shipcity> <shippostalcode>60528</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10772</orderid> <productid>29</productid> <unitprice>123.7900</unitprice> <quantity>18</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10772</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10862</orderid> <customerid>LEHMS</customerid> <employeeid>8</employeeid> <orderdate>1998-01-30</orderdate> <requireddate>1998-03-13</requireddate> <shippeddate>1998-02-02</shippeddate> <shipvia>2</shipvia> <freight>53.2300</freight> <shipname>Lehmanns Marktstand</shipname> <shipaddress>Magazinweg 7</shipaddress> <shipcity>Frankfurt a.M.</shipcity> <shippostalcode>60528</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10862</orderid> <productid>11</productid> <unitprice>21.0000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10862</orderid> <productid>52</productid> <unitprice>7.0000</unitprice> <quantity>8</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10891</orderid> <customerid>LEHMS</customerid> <employeeid>7</employeeid> <orderdate>1998-02-17</orderdate> <requireddate>1998-03-17</requireddate> <shippeddate>1998-02-19</shippeddate> <shipvia>2</shipvia> <freight>20.3700</freight> <shipname>Lehmanns Marktstand</shipname> <shipaddress>Magazinweg 7</shipaddress> <shipcity>Frankfurt a.M.</shipcity> <shippostalcode>60528</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10891</orderid> <productid>30</productid> <unitprice>25.8900</unitprice> <quantity>15</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10934</orderid> <customerid>LEHMS</customerid> <employeeid>3</employeeid> <orderdate>1998-03-09</orderdate> <requireddate>1998-04-06</requireddate> <shippeddate>1998-03-12</shippeddate> <shipvia>3</shipvia> <freight>32.0100</freight> <shipname>Lehmanns Marktstand</shipname> <shipaddress>Magazinweg 7</shipaddress> <shipcity>Frankfurt a.M.</shipcity> <shippostalcode>60528</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10934</orderid> <productid>6</productid> <unitprice>25.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11070</orderid> <customerid>LEHMS</customerid> <employeeid>2</employeeid> <orderdate>1998-05-05</orderdate> <requireddate>1998-06-02</requireddate> <shipvia>1</shipvia> <freight>136.0000</freight> <shipname>Lehmanns Marktstand</shipname> <shipaddress>Magazinweg 7</shipaddress> <shipcity>Frankfurt a.M.</shipcity> <shippostalcode>60528</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>11070</orderid> <productid>1</productid> <unitprice>18.0000</unitprice> <quantity>40</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>11070</orderid> <productid>2</productid> <unitprice>19.0000</unitprice> <quantity>20</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>11070</orderid> <productid>16</productid> <unitprice>17.4500</unitprice> <quantity>30</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>11070</orderid> <productid>31</productid> <unitprice>12.5000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>LETSS</customerid> <companyname>Let's Stop N Shop</companyname> <contactname>Jaime Yorres</contactname> <contacttitle>Owner</contacttitle> <address>87 Polk St. Suite 5</address> <city>San Francisco</city> <region>CA</region> <postalcode>94117</postalcode> <country>USA</country> <phone>(415) 555-5938</phone> <orders> <orderid>10579</orderid> <customerid>LETSS</customerid> <employeeid>1</employeeid> <orderdate>1997-06-25</orderdate> <requireddate>1997-07-23</requireddate> <shippeddate>1997-07-04</shippeddate> <shipvia>2</shipvia> <freight>13.7300</freight> <shipname>Let's Stop N Shop</shipname> <shipaddress>87 Polk St. Suite 5</shipaddress> <shipcity>San Francisco</shipcity> <shipregion>CA</shipregion> <shippostalcode>94117</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10579</orderid> <productid>15</productid> <unitprice>15.5000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10579</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>21</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10719</orderid> <customerid>LETSS</customerid> <employeeid>8</employeeid> <orderdate>1997-10-27</orderdate> <requireddate>1997-11-24</requireddate> <shippeddate>1997-11-05</shippeddate> <shipvia>2</shipvia> <freight>51.4400</freight> <shipname>Let's Stop N Shop</shipname> <shipaddress>87 Polk St. Suite 5</shipaddress> <shipcity>San Francisco</shipcity> <shipregion>CA</shipregion> <shippostalcode>94117</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10719</orderid> <productid>18</productid> <unitprice>62.5000</unitprice> <quantity>12</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10719</orderid> <productid>30</productid> <unitprice>25.8900</unitprice> <quantity>3</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10719</orderid> <productid>54</productid> <unitprice>7.4500</unitprice> <quantity>40</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10735</orderid> <customerid>LETSS</customerid> <employeeid>6</employeeid> <orderdate>1997-11-10</orderdate> <requireddate>1997-12-08</requireddate> <shippeddate>1997-11-21</shippeddate> <shipvia>2</shipvia> <freight>45.9700</freight> <shipname>Let's Stop N Shop</shipname> <shipaddress>87 Polk St. Suite 5</shipaddress> <shipcity>San Francisco</shipcity> <shipregion>CA</shipregion> <shippostalcode>94117</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10735</orderid> <productid>61</productid> <unitprice>28.5000</unitprice> <quantity>20</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10735</orderid> <productid>77</productid> <unitprice>13.0000</unitprice> <quantity>2</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10884</orderid> <customerid>LETSS</customerid> <employeeid>4</employeeid> <orderdate>1998-02-12</orderdate> <requireddate>1998-03-12</requireddate> <shippeddate>1998-02-13</shippeddate> <shipvia>2</shipvia> <freight>90.9700</freight> <shipname>Let's Stop N Shop</shipname> <shipaddress>87 Polk St. Suite 5</shipaddress> <shipcity>San Francisco</shipcity> <shipregion>CA</shipregion> <shippostalcode>94117</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10884</orderid> <productid>21</productid> <unitprice>10.0000</unitprice> <quantity>40</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10884</orderid> <productid>56</productid> <unitprice>38.0000</unitprice> <quantity>21</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10884</orderid> <productid>65</productid> <unitprice>21.0500</unitprice> <quantity>12</quantity> <discount>0.05000</discount> </orderdetails> </orders> </customers> <customers> <customerid>LILAS</customerid> <companyname>LILA-Supermercado</companyname> <contactname>Carlos González</contactname> <contacttitle>Accounting Manager</contacttitle> <address>Carrera 52 con Ave. Bolívar #65-98 Llano Largo</address> <city>Barquisimeto</city> <region>Lara</region> <postalcode>3508</postalcode> <country>Venezuela</country> <phone>(9) 331-6954</phone> <fax>(9) 331-7256</fax> <orders> <orderid>10283</orderid> <customerid>LILAS</customerid> <employeeid>3</employeeid> <orderdate>1996-08-16</orderdate> <requireddate>1996-09-13</requireddate> <shippeddate>1996-08-23</shippeddate> <shipvia>3</shipvia> <freight>84.8100</freight> <shipname>LILA-Supermercado</shipname> <shipaddress>Carrera 52 con Ave. Bolívar #65-98 Llano Largo</shipaddress> <shipcity>Barquisimeto</shipcity> <shipregion>Lara</shipregion> <shippostalcode>3508</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10283</orderid> <productid>15</productid> <unitprice>12.4000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10283</orderid> <productid>19</productid> <unitprice>7.3000</unitprice> <quantity>18</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10283</orderid> <productid>60</productid> <unitprice>27.2000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10283</orderid> <productid>72</productid> <unitprice>27.8000</unitprice> <quantity>3</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10296</orderid> <customerid>LILAS</customerid> <employeeid>6</employeeid> <orderdate>1996-09-03</orderdate> <requireddate>1996-10-01</requireddate> <shippeddate>1996-09-11</shippeddate> <shipvia>1</shipvia> <freight>0.1200</freight> <shipname>LILA-Supermercado</shipname> <shipaddress>Carrera 52 con Ave. Bolívar #65-98 Llano Largo</shipaddress> <shipcity>Barquisimeto</shipcity> <shipregion>Lara</shipregion> <shippostalcode>3508</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10296</orderid> <productid>11</productid> <unitprice>16.8000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10296</orderid> <productid>16</productid> <unitprice>13.9000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10296</orderid> <productid>69</productid> <unitprice>28.8000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10330</orderid> <customerid>LILAS</customerid> <employeeid>3</employeeid> <orderdate>1996-10-16</orderdate> <requireddate>1996-11-13</requireddate> <shippeddate>1996-10-28</shippeddate> <shipvia>1</shipvia> <freight>12.7500</freight> <shipname>LILA-Supermercado</shipname> <shipaddress>Carrera 52 con Ave. Bolívar #65-98 Llano Largo</shipaddress> <shipcity>Barquisimeto</shipcity> <shipregion>Lara</shipregion> <shippostalcode>3508</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10330</orderid> <productid>26</productid> <unitprice>24.9000</unitprice> <quantity>50</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10330</orderid> <productid>72</productid> <unitprice>27.8000</unitprice> <quantity>25</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10357</orderid> <customerid>LILAS</customerid> <employeeid>1</employeeid> <orderdate>1996-11-19</orderdate> <requireddate>1996-12-17</requireddate> <shippeddate>1996-12-02</shippeddate> <shipvia>3</shipvia> <freight>34.8800</freight> <shipname>LILA-Supermercado</shipname> <shipaddress>Carrera 52 con Ave. Bolívar #65-98 Llano Largo</shipaddress> <shipcity>Barquisimeto</shipcity> <shipregion>Lara</shipregion> <shippostalcode>3508</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10357</orderid> <productid>10</productid> <unitprice>24.8000</unitprice> <quantity>30</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10357</orderid> <productid>26</productid> <unitprice>24.9000</unitprice> <quantity>16</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10357</orderid> <productid>60</productid> <unitprice>27.2000</unitprice> <quantity>8</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10381</orderid> <customerid>LILAS</customerid> <employeeid>3</employeeid> <orderdate>1996-12-12</orderdate> <requireddate>1997-01-09</requireddate> <shippeddate>1996-12-13</shippeddate> <shipvia>3</shipvia> <freight>7.9900</freight> <shipname>LILA-Supermercado</shipname> <shipaddress>Carrera 52 con Ave. Bolívar #65-98 Llano Largo</shipaddress> <shipcity>Barquisimeto</shipcity> <shipregion>Lara</shipregion> <shippostalcode>3508</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10381</orderid> <productid>74</productid> <unitprice>8.0000</unitprice> <quantity>14</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10461</orderid> <customerid>LILAS</customerid> <employeeid>1</employeeid> <orderdate>1997-02-28</orderdate> <requireddate>1997-03-28</requireddate> <shippeddate>1997-03-05</shippeddate> <shipvia>3</shipvia> <freight>148.6100</freight> <shipname>LILA-Supermercado</shipname> <shipaddress>Carrera 52 con Ave. Bolívar #65-98 Llano Largo</shipaddress> <shipcity>Barquisimeto</shipcity> <shipregion>Lara</shipregion> <shippostalcode>3508</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10461</orderid> <productid>21</productid> <unitprice>8.0000</unitprice> <quantity>40</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10461</orderid> <productid>30</productid> <unitprice>20.7000</unitprice> <quantity>28</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10461</orderid> <productid>55</productid> <unitprice>19.2000</unitprice> <quantity>60</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10499</orderid> <customerid>LILAS</customerid> <employeeid>4</employeeid> <orderdate>1997-04-08</orderdate> <requireddate>1997-05-06</requireddate> <shippeddate>1997-04-16</shippeddate> <shipvia>2</shipvia> <freight>102.0200</freight> <shipname>LILA-Supermercado</shipname> <shipaddress>Carrera 52 con Ave. Bolívar #65-98 Llano Largo</shipaddress> <shipcity>Barquisimeto</shipcity> <shipregion>Lara</shipregion> <shippostalcode>3508</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10499</orderid> <productid>28</productid> <unitprice>45.6000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10499</orderid> <productid>49</productid> <unitprice>20.0000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10543</orderid> <customerid>LILAS</customerid> <employeeid>8</employeeid> <orderdate>1997-05-21</orderdate> <requireddate>1997-06-18</requireddate> <shippeddate>1997-05-23</shippeddate> <shipvia>2</shipvia> <freight>48.1700</freight> <shipname>LILA-Supermercado</shipname> <shipaddress>Carrera 52 con Ave. Bolívar #65-98 Llano Largo</shipaddress> <shipcity>Barquisimeto</shipcity> <shipregion>Lara</shipregion> <shippostalcode>3508</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10543</orderid> <productid>12</productid> <unitprice>38.0000</unitprice> <quantity>30</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10543</orderid> <productid>23</productid> <unitprice>9.0000</unitprice> <quantity>70</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10780</orderid> <customerid>LILAS</customerid> <employeeid>2</employeeid> <orderdate>1997-12-16</orderdate> <requireddate>1997-12-30</requireddate> <shippeddate>1997-12-25</shippeddate> <shipvia>1</shipvia> <freight>42.1300</freight> <shipname>LILA-Supermercado</shipname> <shipaddress>Carrera 52 con Ave. Bolívar #65-98 Llano Largo</shipaddress> <shipcity>Barquisimeto</shipcity> <shipregion>Lara</shipregion> <shippostalcode>3508</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10780</orderid> <productid>70</productid> <unitprice>15.0000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10780</orderid> <productid>77</productid> <unitprice>13.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10823</orderid> <customerid>LILAS</customerid> <employeeid>5</employeeid> <orderdate>1998-01-09</orderdate> <requireddate>1998-02-06</requireddate> <shippeddate>1998-01-13</shippeddate> <shipvia>2</shipvia> <freight>163.9700</freight> <shipname>LILA-Supermercado</shipname> <shipaddress>Carrera 52 con Ave. Bolívar #65-98 Llano Largo</shipaddress> <shipcity>Barquisimeto</shipcity> <shipregion>Lara</shipregion> <shippostalcode>3508</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10823</orderid> <productid>11</productid> <unitprice>21.0000</unitprice> <quantity>20</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10823</orderid> <productid>57</productid> <unitprice>19.5000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10823</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>40</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10823</orderid> <productid>77</productid> <unitprice>13.0000</unitprice> <quantity>15</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10899</orderid> <customerid>LILAS</customerid> <employeeid>5</employeeid> <orderdate>1998-02-20</orderdate> <requireddate>1998-03-20</requireddate> <shippeddate>1998-02-26</shippeddate> <shipvia>3</shipvia> <freight>1.2100</freight> <shipname>LILA-Supermercado</shipname> <shipaddress>Carrera 52 con Ave. Bolívar #65-98 Llano Largo</shipaddress> <shipcity>Barquisimeto</shipcity> <shipregion>Lara</shipregion> <shippostalcode>3508</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10899</orderid> <productid>39</productid> <unitprice>18.0000</unitprice> <quantity>8</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10997</orderid> <customerid>LILAS</customerid> <employeeid>8</employeeid> <orderdate>1998-04-03</orderdate> <requireddate>1998-05-15</requireddate> <shippeddate>1998-04-13</shippeddate> <shipvia>2</shipvia> <freight>73.9100</freight> <shipname>LILA-Supermercado</shipname> <shipaddress>Carrera 52 con Ave. Bolívar #65-98 Llano Largo</shipaddress> <shipcity>Barquisimeto</shipcity> <shipregion>Lara</shipregion> <shippostalcode>3508</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10997</orderid> <productid>32</productid> <unitprice>32.0000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10997</orderid> <productid>46</productid> <unitprice>12.0000</unitprice> <quantity>20</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10997</orderid> <productid>52</productid> <unitprice>7.0000</unitprice> <quantity>20</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>11065</orderid> <customerid>LILAS</customerid> <employeeid>8</employeeid> <orderdate>1998-05-01</orderdate> <requireddate>1998-05-29</requireddate> <shipvia>1</shipvia> <freight>12.9100</freight> <shipname>LILA-Supermercado</shipname> <shipaddress>Carrera 52 con Ave. Bolívar #65-98 Llano Largo</shipaddress> <shipcity>Barquisimeto</shipcity> <shipregion>Lara</shipregion> <shippostalcode>3508</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>11065</orderid> <productid>30</productid> <unitprice>25.8900</unitprice> <quantity>4</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>11065</orderid> <productid>54</productid> <unitprice>7.4500</unitprice> <quantity>20</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>11071</orderid> <customerid>LILAS</customerid> <employeeid>1</employeeid> <orderdate>1998-05-05</orderdate> <requireddate>1998-06-02</requireddate> <shipvia>1</shipvia> <freight>0.9300</freight> <shipname>LILA-Supermercado</shipname> <shipaddress>Carrera 52 con Ave. Bolívar #65-98 Llano Largo</shipaddress> <shipcity>Barquisimeto</shipcity> <shipregion>Lara</shipregion> <shippostalcode>3508</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>11071</orderid> <productid>7</productid> <unitprice>30.0000</unitprice> <quantity>15</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>11071</orderid> <productid>13</productid> <unitprice>6.0000</unitprice> <quantity>10</quantity> <discount>0.05000</discount> </orderdetails> </orders> </customers> <customers> <customerid>LINOD</customerid> <companyname>LINO-Delicateses</companyname> <contactname>Felipe Izquierdo</contactname> <contacttitle>Owner</contacttitle> <address>Ave. 5 de Mayo Porlamar</address> <city>I. de Margarita</city> <region>Nueva Esparta</region> <postalcode>4980</postalcode> <country>Venezuela</country> <phone>(8) 34-56-12</phone> <fax>(8) 34-93-93</fax> <orders> <orderid>10405</orderid> <customerid>LINOD</customerid> <employeeid>1</employeeid> <orderdate>1997-01-06</orderdate> <requireddate>1997-02-03</requireddate> <shippeddate>1997-01-22</shippeddate> <shipvia>1</shipvia> <freight>34.8200</freight> <shipname>LINO-Delicateses</shipname> <shipaddress>Ave. 5 de Mayo Porlamar</shipaddress> <shipcity>I. de Margarita</shipcity> <shipregion>Nueva Esparta</shipregion> <shippostalcode>4980</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10405</orderid> <productid>3</productid> <unitprice>8.0000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10485</orderid> <customerid>LINOD</customerid> <employeeid>4</employeeid> <orderdate>1997-03-25</orderdate> <requireddate>1997-04-08</requireddate> <shippeddate>1997-03-31</shippeddate> <shipvia>2</shipvia> <freight>64.4500</freight> <shipname>LINO-Delicateses</shipname> <shipaddress>Ave. 5 de Mayo Porlamar</shipaddress> <shipcity>I. de Margarita</shipcity> <shipregion>Nueva Esparta</shipregion> <shippostalcode>4980</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10485</orderid> <productid>2</productid> <unitprice>15.2000</unitprice> <quantity>20</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10485</orderid> <productid>3</productid> <unitprice>8.0000</unitprice> <quantity>20</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10485</orderid> <productid>55</productid> <unitprice>19.2000</unitprice> <quantity>30</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10485</orderid> <productid>70</productid> <unitprice>12.0000</unitprice> <quantity>60</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10638</orderid> <customerid>LINOD</customerid> <employeeid>3</employeeid> <orderdate>1997-08-20</orderdate> <requireddate>1997-09-17</requireddate> <shippeddate>1997-09-01</shippeddate> <shipvia>1</shipvia> <freight>158.4400</freight> <shipname>LINO-Delicateses</shipname> <shipaddress>Ave. 5 de Mayo Porlamar</shipaddress> <shipcity>I. de Margarita</shipcity> <shipregion>Nueva Esparta</shipregion> <shippostalcode>4980</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10638</orderid> <productid>45</productid> <unitprice>9.5000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10638</orderid> <productid>65</productid> <unitprice>21.0500</unitprice> <quantity>21</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10638</orderid> <productid>72</productid> <unitprice>34.8000</unitprice> <quantity>60</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10697</orderid> <customerid>LINOD</customerid> <employeeid>3</employeeid> <orderdate>1997-10-08</orderdate> <requireddate>1997-11-05</requireddate> <shippeddate>1997-10-14</shippeddate> <shipvia>1</shipvia> <freight>45.5200</freight> <shipname>LINO-Delicateses</shipname> <shipaddress>Ave. 5 de Mayo Porlamar</shipaddress> <shipcity>I. de Margarita</shipcity> <shipregion>Nueva Esparta</shipregion> <shippostalcode>4980</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10697</orderid> <productid>19</productid> <unitprice>9.2000</unitprice> <quantity>7</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10697</orderid> <productid>35</productid> <unitprice>18.0000</unitprice> <quantity>9</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10697</orderid> <productid>58</productid> <unitprice>13.2500</unitprice> <quantity>30</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10697</orderid> <productid>70</productid> <unitprice>15.0000</unitprice> <quantity>30</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10729</orderid> <customerid>LINOD</customerid> <employeeid>8</employeeid> <orderdate>1997-11-04</orderdate> <requireddate>1997-12-16</requireddate> <shippeddate>1997-11-14</shippeddate> <shipvia>3</shipvia> <freight>141.0600</freight> <shipname>LINO-Delicateses</shipname> <shipaddress>Ave. 5 de Mayo Porlamar</shipaddress> <shipcity>I. de Margarita</shipcity> <shipregion>Nueva Esparta</shipregion> <shippostalcode>4980</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10729</orderid> <productid>1</productid> <unitprice>18.0000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10729</orderid> <productid>21</productid> <unitprice>10.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10729</orderid> <productid>50</productid> <unitprice>16.2500</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10811</orderid> <customerid>LINOD</customerid> <employeeid>8</employeeid> <orderdate>1998-01-02</orderdate> <requireddate>1998-01-30</requireddate> <shippeddate>1998-01-08</shippeddate> <shipvia>1</shipvia> <freight>31.2200</freight> <shipname>LINO-Delicateses</shipname> <shipaddress>Ave. 5 de Mayo Porlamar</shipaddress> <shipcity>I. de Margarita</shipcity> <shipregion>Nueva Esparta</shipregion> <shippostalcode>4980</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10811</orderid> <productid>19</productid> <unitprice>9.2000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10811</orderid> <productid>23</productid> <unitprice>9.0000</unitprice> <quantity>18</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10811</orderid> <productid>40</productid> <unitprice>18.4000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10838</orderid> <customerid>LINOD</customerid> <employeeid>3</employeeid> <orderdate>1998-01-19</orderdate> <requireddate>1998-02-16</requireddate> <shippeddate>1998-01-23</shippeddate> <shipvia>3</shipvia> <freight>59.2800</freight> <shipname>LINO-Delicateses</shipname> <shipaddress>Ave. 5 de Mayo Porlamar</shipaddress> <shipcity>I. de Margarita</shipcity> <shipregion>Nueva Esparta</shipregion> <shippostalcode>4980</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10838</orderid> <productid>1</productid> <unitprice>18.0000</unitprice> <quantity>4</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10838</orderid> <productid>18</productid> <unitprice>62.5000</unitprice> <quantity>25</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10838</orderid> <productid>36</productid> <unitprice>19.0000</unitprice> <quantity>50</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10840</orderid> <customerid>LINOD</customerid> <employeeid>4</employeeid> <orderdate>1998-01-19</orderdate> <requireddate>1998-03-02</requireddate> <shippeddate>1998-02-16</shippeddate> <shipvia>2</shipvia> <freight>2.7100</freight> <shipname>LINO-Delicateses</shipname> <shipaddress>Ave. 5 de Mayo Porlamar</shipaddress> <shipcity>I. de Margarita</shipcity> <shipregion>Nueva Esparta</shipregion> <shippostalcode>4980</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10840</orderid> <productid>25</productid> <unitprice>14.0000</unitprice> <quantity>6</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10840</orderid> <productid>39</productid> <unitprice>18.0000</unitprice> <quantity>10</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10919</orderid> <customerid>LINOD</customerid> <employeeid>2</employeeid> <orderdate>1998-03-02</orderdate> <requireddate>1998-03-30</requireddate> <shippeddate>1998-03-04</shippeddate> <shipvia>2</shipvia> <freight>19.8000</freight> <shipname>LINO-Delicateses</shipname> <shipaddress>Ave. 5 de Mayo Porlamar</shipaddress> <shipcity>I. de Margarita</shipcity> <shipregion>Nueva Esparta</shipregion> <shippostalcode>4980</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10919</orderid> <productid>16</productid> <unitprice>17.4500</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10919</orderid> <productid>25</productid> <unitprice>14.0000</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10919</orderid> <productid>40</productid> <unitprice>18.4000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10954</orderid> <customerid>LINOD</customerid> <employeeid>5</employeeid> <orderdate>1998-03-17</orderdate> <requireddate>1998-04-28</requireddate> <shippeddate>1998-03-20</shippeddate> <shipvia>1</shipvia> <freight>27.9100</freight> <shipname>LINO-Delicateses</shipname> <shipaddress>Ave. 5 de Mayo Porlamar</shipaddress> <shipcity>I. de Margarita</shipcity> <shipregion>Nueva Esparta</shipregion> <shippostalcode>4980</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>10954</orderid> <productid>16</productid> <unitprice>17.4500</unitprice> <quantity>28</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10954</orderid> <productid>31</productid> <unitprice>12.5000</unitprice> <quantity>25</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10954</orderid> <productid>45</productid> <unitprice>9.5000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10954</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>24</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>11014</orderid> <customerid>LINOD</customerid> <employeeid>2</employeeid> <orderdate>1998-04-10</orderdate> <requireddate>1998-05-08</requireddate> <shippeddate>1998-04-15</shippeddate> <shipvia>3</shipvia> <freight>23.6000</freight> <shipname>LINO-Delicateses</shipname> <shipaddress>Ave. 5 de Mayo Porlamar</shipaddress> <shipcity>I. de Margarita</shipcity> <shipregion>Nueva Esparta</shipregion> <shippostalcode>4980</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>11014</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>28</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>11039</orderid> <customerid>LINOD</customerid> <employeeid>1</employeeid> <orderdate>1998-04-21</orderdate> <requireddate>1998-05-19</requireddate> <shipvia>2</shipvia> <freight>65.0000</freight> <shipname>LINO-Delicateses</shipname> <shipaddress>Ave. 5 de Mayo Porlamar</shipaddress> <shipcity>I. de Margarita</shipcity> <shipregion>Nueva Esparta</shipregion> <shippostalcode>4980</shippostalcode> <shipcountry>Venezuela</shipcountry> <orderdetails> <orderid>11039</orderid> <productid>28</productid> <unitprice>45.6000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11039</orderid> <productid>35</productid> <unitprice>18.0000</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11039</orderid> <productid>49</productid> <unitprice>20.0000</unitprice> <quantity>60</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11039</orderid> <productid>57</productid> <unitprice>19.5000</unitprice> <quantity>28</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>LONEP</customerid> <companyname>Lonesome Pine Restaurant</companyname> <contactname>Fran Wilson</contactname> <contacttitle>Sales Manager</contacttitle> <address>89 Chiaroscuro Rd.</address> <city>Portland</city> <region>OR</region> <postalcode>97219</postalcode> <country>USA</country> <phone>(503) 555-9573</phone> <fax>(503) 555-9646</fax> <orders> <orderid>10307</orderid> <customerid>LONEP</customerid> <employeeid>2</employeeid> <orderdate>1996-09-17</orderdate> <requireddate>1996-10-15</requireddate> <shippeddate>1996-09-25</shippeddate> <shipvia>2</shipvia> <freight>0.5600</freight> <shipname>Lonesome Pine Restaurant</shipname> <shipaddress>89 Chiaroscuro Rd.</shipaddress> <shipcity>Portland</shipcity> <shipregion>OR</shipregion> <shippostalcode>97219</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10307</orderid> <productid>62</productid> <unitprice>39.4000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10307</orderid> <productid>68</productid> <unitprice>10.0000</unitprice> <quantity>3</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10317</orderid> <customerid>LONEP</customerid> <employeeid>6</employeeid> <orderdate>1996-09-30</orderdate> <requireddate>1996-10-28</requireddate> <shippeddate>1996-10-10</shippeddate> <shipvia>1</shipvia> <freight>12.6900</freight> <shipname>Lonesome Pine Restaurant</shipname> <shipaddress>89 Chiaroscuro Rd.</shipaddress> <shipcity>Portland</shipcity> <shipregion>OR</shipregion> <shippostalcode>97219</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10317</orderid> <productid>1</productid> <unitprice>14.4000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10544</orderid> <customerid>LONEP</customerid> <employeeid>4</employeeid> <orderdate>1997-05-21</orderdate> <requireddate>1997-06-18</requireddate> <shippeddate>1997-05-30</shippeddate> <shipvia>1</shipvia> <freight>24.9100</freight> <shipname>Lonesome Pine Restaurant</shipname> <shipaddress>89 Chiaroscuro Rd.</shipaddress> <shipcity>Portland</shipcity> <shipregion>OR</shipregion> <shippostalcode>97219</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10544</orderid> <productid>28</productid> <unitprice>45.6000</unitprice> <quantity>7</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10544</orderid> <productid>67</productid> <unitprice>14.0000</unitprice> <quantity>7</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10662</orderid> <customerid>LONEP</customerid> <employeeid>3</employeeid> <orderdate>1997-09-09</orderdate> <requireddate>1997-10-07</requireddate> <shippeddate>1997-09-18</shippeddate> <shipvia>2</shipvia> <freight>1.2800</freight> <shipname>Lonesome Pine Restaurant</shipname> <shipaddress>89 Chiaroscuro Rd.</shipaddress> <shipcity>Portland</shipcity> <shipregion>OR</shipregion> <shippostalcode>97219</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10662</orderid> <productid>68</productid> <unitprice>12.5000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10665</orderid> <customerid>LONEP</customerid> <employeeid>1</employeeid> <orderdate>1997-09-11</orderdate> <requireddate>1997-10-09</requireddate> <shippeddate>1997-09-17</shippeddate> <shipvia>2</shipvia> <freight>26.3100</freight> <shipname>Lonesome Pine Restaurant</shipname> <shipaddress>89 Chiaroscuro Rd.</shipaddress> <shipcity>Portland</shipcity> <shipregion>OR</shipregion> <shippostalcode>97219</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10665</orderid> <productid>51</productid> <unitprice>53.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10665</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>1</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10665</orderid> <productid>76</productid> <unitprice>18.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10867</orderid> <customerid>LONEP</customerid> <employeeid>6</employeeid> <orderdate>1998-02-03</orderdate> <requireddate>1998-03-17</requireddate> <shippeddate>1998-02-11</shippeddate> <shipvia>1</shipvia> <freight>1.9300</freight> <shipname>Lonesome Pine Restaurant</shipname> <shipaddress>89 Chiaroscuro Rd.</shipaddress> <shipcity>Portland</shipcity> <shipregion>OR</shipregion> <shippostalcode>97219</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10867</orderid> <productid>53</productid> <unitprice>32.8000</unitprice> <quantity>3</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10883</orderid> <customerid>LONEP</customerid> <employeeid>8</employeeid> <orderdate>1998-02-12</orderdate> <requireddate>1998-03-12</requireddate> <shippeddate>1998-02-20</shippeddate> <shipvia>3</shipvia> <freight>0.5300</freight> <shipname>Lonesome Pine Restaurant</shipname> <shipaddress>89 Chiaroscuro Rd.</shipaddress> <shipcity>Portland</shipcity> <shipregion>OR</shipregion> <shippostalcode>97219</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10883</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>8</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11018</orderid> <customerid>LONEP</customerid> <employeeid>4</employeeid> <orderdate>1998-04-13</orderdate> <requireddate>1998-05-11</requireddate> <shippeddate>1998-04-16</shippeddate> <shipvia>2</shipvia> <freight>11.6500</freight> <shipname>Lonesome Pine Restaurant</shipname> <shipaddress>89 Chiaroscuro Rd.</shipaddress> <shipcity>Portland</shipcity> <shipregion>OR</shipregion> <shippostalcode>97219</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>11018</orderid> <productid>12</productid> <unitprice>38.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11018</orderid> <productid>18</productid> <unitprice>62.5000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11018</orderid> <productid>56</productid> <unitprice>38.0000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>MAGAA</customerid> <companyname>Magazzini Alimentari Riuniti</companyname> <contactname>Giovanni Rovelli</contactname> <contacttitle>Marketing Manager</contacttitle> <address>Via Ludovico il Moro 22</address> <city>Bergamo</city> <postalcode>24100</postalcode> <country>Italy</country> <phone>035-640230</phone> <fax>035-640231</fax> <orders> <orderid>10275</orderid> <customerid>MAGAA</customerid> <employeeid>1</employeeid> <orderdate>1996-08-07</orderdate> <requireddate>1996-09-04</requireddate> <shippeddate>1996-08-09</shippeddate> <shipvia>1</shipvia> <freight>26.9300</freight> <shipname>Magazzini Alimentari Riuniti</shipname> <shipaddress>Via Ludovico il Moro 22</shipaddress> <shipcity>Bergamo</shipcity> <shippostalcode>24100</shippostalcode> <shipcountry>Italy</shipcountry> <orderdetails> <orderid>10275</orderid> <productid>24</productid> <unitprice>3.6000</unitprice> <quantity>12</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10275</orderid> <productid>59</productid> <unitprice>44.0000</unitprice> <quantity>6</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10300</orderid> <customerid>MAGAA</customerid> <employeeid>2</employeeid> <orderdate>1996-09-09</orderdate> <requireddate>1996-10-07</requireddate> <shippeddate>1996-09-18</shippeddate> <shipvia>2</shipvia> <freight>17.6800</freight> <shipname>Magazzini Alimentari Riuniti</shipname> <shipaddress>Via Ludovico il Moro 22</shipaddress> <shipcity>Bergamo</shipcity> <shippostalcode>24100</shippostalcode> <shipcountry>Italy</shipcountry> <orderdetails> <orderid>10300</orderid> <productid>66</productid> <unitprice>13.6000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10300</orderid> <productid>68</productid> <unitprice>10.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10404</orderid> <customerid>MAGAA</customerid> <employeeid>2</employeeid> <orderdate>1997-01-03</orderdate> <requireddate>1997-01-31</requireddate> <shippeddate>1997-01-08</shippeddate> <shipvia>1</shipvia> <freight>155.9700</freight> <shipname>Magazzini Alimentari Riuniti</shipname> <shipaddress>Via Ludovico il Moro 22</shipaddress> <shipcity>Bergamo</shipcity> <shippostalcode>24100</shippostalcode> <shipcountry>Italy</shipcountry> <orderdetails> <orderid>10404</orderid> <productid>26</productid> <unitprice>24.9000</unitprice> <quantity>30</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10404</orderid> <productid>42</productid> <unitprice>11.2000</unitprice> <quantity>40</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10404</orderid> <productid>49</productid> <unitprice>16.0000</unitprice> <quantity>30</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10467</orderid> <customerid>MAGAA</customerid> <employeeid>8</employeeid> <orderdate>1997-03-06</orderdate> <requireddate>1997-04-03</requireddate> <shippeddate>1997-03-11</shippeddate> <shipvia>2</shipvia> <freight>4.9300</freight> <shipname>Magazzini Alimentari Riuniti</shipname> <shipaddress>Via Ludovico il Moro 22</shipaddress> <shipcity>Bergamo</shipcity> <shippostalcode>24100</shippostalcode> <shipcountry>Italy</shipcountry> <orderdetails> <orderid>10467</orderid> <productid>24</productid> <unitprice>3.6000</unitprice> <quantity>28</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10467</orderid> <productid>25</productid> <unitprice>11.2000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10635</orderid> <customerid>MAGAA</customerid> <employeeid>8</employeeid> <orderdate>1997-08-18</orderdate> <requireddate>1997-09-15</requireddate> <shippeddate>1997-08-21</shippeddate> <shipvia>3</shipvia> <freight>47.4600</freight> <shipname>Magazzini Alimentari Riuniti</shipname> <shipaddress>Via Ludovico il Moro 22</shipaddress> <shipcity>Bergamo</shipcity> <shippostalcode>24100</shippostalcode> <shipcountry>Italy</shipcountry> <orderdetails> <orderid>10635</orderid> <productid>4</productid> <unitprice>22.0000</unitprice> <quantity>10</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10635</orderid> <productid>5</productid> <unitprice>21.3500</unitprice> <quantity>15</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10635</orderid> <productid>22</productid> <unitprice>21.0000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10754</orderid> <customerid>MAGAA</customerid> <employeeid>6</employeeid> <orderdate>1997-11-25</orderdate> <requireddate>1997-12-23</requireddate> <shippeddate>1997-11-27</shippeddate> <shipvia>3</shipvia> <freight>2.3800</freight> <shipname>Magazzini Alimentari Riuniti</shipname> <shipaddress>Via Ludovico il Moro 22</shipaddress> <shipcity>Bergamo</shipcity> <shippostalcode>24100</shippostalcode> <shipcountry>Italy</shipcountry> <orderdetails> <orderid>10754</orderid> <productid>40</productid> <unitprice>18.4000</unitprice> <quantity>3</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10784</orderid> <customerid>MAGAA</customerid> <employeeid>4</employeeid> <orderdate>1997-12-18</orderdate> <requireddate>1998-01-15</requireddate> <shippeddate>1997-12-22</shippeddate> <shipvia>3</shipvia> <freight>70.0900</freight> <shipname>Magazzini Alimentari Riuniti</shipname> <shipaddress>Via Ludovico il Moro 22</shipaddress> <shipcity>Bergamo</shipcity> <shippostalcode>24100</shippostalcode> <shipcountry>Italy</shipcountry> <orderdetails> <orderid>10784</orderid> <productid>36</productid> <unitprice>19.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10784</orderid> <productid>39</productid> <unitprice>18.0000</unitprice> <quantity>2</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10784</orderid> <productid>72</productid> <unitprice>34.8000</unitprice> <quantity>30</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10818</orderid> <customerid>MAGAA</customerid> <employeeid>7</employeeid> <orderdate>1998-01-07</orderdate> <requireddate>1998-02-04</requireddate> <shippeddate>1998-01-12</shippeddate> <shipvia>3</shipvia> <freight>65.4800</freight> <shipname>Magazzini Alimentari Riuniti</shipname> <shipaddress>Via Ludovico il Moro 22</shipaddress> <shipcity>Bergamo</shipcity> <shippostalcode>24100</shippostalcode> <shipcountry>Italy</shipcountry> <orderdetails> <orderid>10818</orderid> <productid>32</productid> <unitprice>32.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10818</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10939</orderid> <customerid>MAGAA</customerid> <employeeid>2</employeeid> <orderdate>1998-03-10</orderdate> <requireddate>1998-04-07</requireddate> <shippeddate>1998-03-13</shippeddate> <shipvia>2</shipvia> <freight>76.3300</freight> <shipname>Magazzini Alimentari Riuniti</shipname> <shipaddress>Via Ludovico il Moro 22</shipaddress> <shipcity>Bergamo</shipcity> <shippostalcode>24100</shippostalcode> <shipcountry>Italy</shipcountry> <orderdetails> <orderid>10939</orderid> <productid>2</productid> <unitprice>19.0000</unitprice> <quantity>10</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10939</orderid> <productid>67</productid> <unitprice>14.0000</unitprice> <quantity>40</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10950</orderid> <customerid>MAGAA</customerid> <employeeid>1</employeeid> <orderdate>1998-03-16</orderdate> <requireddate>1998-04-13</requireddate> <shippeddate>1998-03-23</shippeddate> <shipvia>2</shipvia> <freight>2.5000</freight> <shipname>Magazzini Alimentari Riuniti</shipname> <shipaddress>Via Ludovico il Moro 22</shipaddress> <shipcity>Bergamo</shipcity> <shippostalcode>24100</shippostalcode> <shipcountry>Italy</shipcountry> <orderdetails> <orderid>10950</orderid> <productid>4</productid> <unitprice>22.0000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>MAISD</customerid> <companyname>Maison Dewey</companyname> <contactname>Catherine Dewey</contactname> <contacttitle>Sales Agent</contacttitle> <address>Rue Joseph-Bens 532</address> <city>Bruxelles</city> <postalcode>B-1180</postalcode> <country>Belgium</country> <phone>(02) 201 24 67</phone> <fax>(02) 201 24 68</fax> <orders> <orderid>10529</orderid> <customerid>MAISD</customerid> <employeeid>5</employeeid> <orderdate>1997-05-07</orderdate> <requireddate>1997-06-04</requireddate> <shippeddate>1997-05-09</shippeddate> <shipvia>2</shipvia> <freight>66.6900</freight> <shipname>Maison Dewey</shipname> <shipaddress>Rue Joseph-Bens 532</shipaddress> <shipcity>Bruxelles</shipcity> <shippostalcode>B-1180</shippostalcode> <shipcountry>Belgium</shipcountry> <orderdetails> <orderid>10529</orderid> <productid>55</productid> <unitprice>24.0000</unitprice> <quantity>14</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10529</orderid> <productid>68</productid> <unitprice>12.5000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10529</orderid> <productid>69</productid> <unitprice>36.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10649</orderid> <customerid>MAISD</customerid> <employeeid>5</employeeid> <orderdate>1997-08-28</orderdate> <requireddate>1997-09-25</requireddate> <shippeddate>1997-08-29</shippeddate> <shipvia>3</shipvia> <freight>6.2000</freight> <shipname>Maison Dewey</shipname> <shipaddress>Rue Joseph-Bens 532</shipaddress> <shipcity>Bruxelles</shipcity> <shippostalcode>B-1180</shippostalcode> <shipcountry>Belgium</shipcountry> <orderdetails> <orderid>10649</orderid> <productid>28</productid> <unitprice>45.6000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10649</orderid> <productid>72</productid> <unitprice>34.8000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10760</orderid> <customerid>MAISD</customerid> <employeeid>4</employeeid> <orderdate>1997-12-01</orderdate> <requireddate>1997-12-29</requireddate> <shippeddate>1997-12-10</shippeddate> <shipvia>1</shipvia> <freight>155.6400</freight> <shipname>Maison Dewey</shipname> <shipaddress>Rue Joseph-Bens 532</shipaddress> <shipcity>Bruxelles</shipcity> <shippostalcode>B-1180</shippostalcode> <shipcountry>Belgium</shipcountry> <orderdetails> <orderid>10760</orderid> <productid>25</productid> <unitprice>14.0000</unitprice> <quantity>12</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10760</orderid> <productid>27</productid> <unitprice>43.9000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10760</orderid> <productid>43</productid> <unitprice>46.0000</unitprice> <quantity>30</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10892</orderid> <customerid>MAISD</customerid> <employeeid>4</employeeid> <orderdate>1998-02-17</orderdate> <requireddate>1998-03-17</requireddate> <shippeddate>1998-02-19</shippeddate> <shipvia>2</shipvia> <freight>120.2700</freight> <shipname>Maison Dewey</shipname> <shipaddress>Rue Joseph-Bens 532</shipaddress> <shipcity>Bruxelles</shipcity> <shippostalcode>B-1180</shippostalcode> <shipcountry>Belgium</shipcountry> <orderdetails> <orderid>10892</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>40</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10896</orderid> <customerid>MAISD</customerid> <employeeid>7</employeeid> <orderdate>1998-02-19</orderdate> <requireddate>1998-03-19</requireddate> <shippeddate>1998-02-27</shippeddate> <shipvia>3</shipvia> <freight>32.4500</freight> <shipname>Maison Dewey</shipname> <shipaddress>Rue Joseph-Bens 532</shipaddress> <shipcity>Bruxelles</shipcity> <shippostalcode>B-1180</shippostalcode> <shipcountry>Belgium</shipcountry> <orderdetails> <orderid>10896</orderid> <productid>45</productid> <unitprice>9.5000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10896</orderid> <productid>56</productid> <unitprice>38.0000</unitprice> <quantity>16</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10978</orderid> <customerid>MAISD</customerid> <employeeid>9</employeeid> <orderdate>1998-03-26</orderdate> <requireddate>1998-04-23</requireddate> <shippeddate>1998-04-23</shippeddate> <shipvia>2</shipvia> <freight>32.8200</freight> <shipname>Maison Dewey</shipname> <shipaddress>Rue Joseph-Bens 532</shipaddress> <shipcity>Bruxelles</shipcity> <shippostalcode>B-1180</shippostalcode> <shipcountry>Belgium</shipcountry> <orderdetails> <orderid>10978</orderid> <productid>8</productid> <unitprice>40.0000</unitprice> <quantity>20</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10978</orderid> <productid>21</productid> <unitprice>10.0000</unitprice> <quantity>40</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10978</orderid> <productid>40</productid> <unitprice>18.4000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10978</orderid> <productid>44</productid> <unitprice>19.4500</unitprice> <quantity>6</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>11004</orderid> <customerid>MAISD</customerid> <employeeid>3</employeeid> <orderdate>1998-04-07</orderdate> <requireddate>1998-05-05</requireddate> <shippeddate>1998-04-20</shippeddate> <shipvia>1</shipvia> <freight>44.8400</freight> <shipname>Maison Dewey</shipname> <shipaddress>Rue Joseph-Bens 532</shipaddress> <shipcity>Bruxelles</shipcity> <shippostalcode>B-1180</shippostalcode> <shipcountry>Belgium</shipcountry> <orderdetails> <orderid>11004</orderid> <productid>26</productid> <unitprice>31.2300</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11004</orderid> <productid>76</productid> <unitprice>18.0000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>MEREP</customerid> <companyname>Mère Paillarde</companyname> <contactname>Jean Fresnière</contactname> <contacttitle>Marketing Assistant</contacttitle> <address>43 rue St. Laurent</address> <city>Montréal</city> <region>Québec</region> <postalcode>H1J 1C3</postalcode> <country>Canada</country> <phone>(514) 555-8054</phone> <fax>(514) 555-8055</fax> <orders> <orderid>10332</orderid> <customerid>MEREP</customerid> <employeeid>3</employeeid> <orderdate>1996-10-17</orderdate> <requireddate>1996-11-28</requireddate> <shippeddate>1996-10-21</shippeddate> <shipvia>2</shipvia> <freight>52.8400</freight> <shipname>Mère Paillarde</shipname> <shipaddress>43 rue St. Laurent</shipaddress> <shipcity>Montréal</shipcity> <shipregion>Québec</shipregion> <shippostalcode>H1J 1C3</shippostalcode> <shipcountry>Canada</shipcountry> <orderdetails> <orderid>10332</orderid> <productid>18</productid> <unitprice>50.0000</unitprice> <quantity>40</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10332</orderid> <productid>42</productid> <unitprice>11.2000</unitprice> <quantity>10</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10332</orderid> <productid>47</productid> <unitprice>7.6000</unitprice> <quantity>16</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10339</orderid> <customerid>MEREP</customerid> <employeeid>2</employeeid> <orderdate>1996-10-28</orderdate> <requireddate>1996-11-25</requireddate> <shippeddate>1996-11-04</shippeddate> <shipvia>2</shipvia> <freight>15.6600</freight> <shipname>Mère Paillarde</shipname> <shipaddress>43 rue St. Laurent</shipaddress> <shipcity>Montréal</shipcity> <shipregion>Québec</shipregion> <shippostalcode>H1J 1C3</shippostalcode> <shipcountry>Canada</shipcountry> <orderdetails> <orderid>10339</orderid> <productid>4</productid> <unitprice>17.6000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10339</orderid> <productid>17</productid> <unitprice>31.2000</unitprice> <quantity>70</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10339</orderid> <productid>62</productid> <unitprice>39.4000</unitprice> <quantity>28</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10376</orderid> <customerid>MEREP</customerid> <employeeid>1</employeeid> <orderdate>1996-12-09</orderdate> <requireddate>1997-01-06</requireddate> <shippeddate>1996-12-13</shippeddate> <shipvia>2</shipvia> <freight>20.3900</freight> <shipname>Mère Paillarde</shipname> <shipaddress>43 rue St. Laurent</shipaddress> <shipcity>Montréal</shipcity> <shipregion>Québec</shipregion> <shippostalcode>H1J 1C3</shippostalcode> <shipcountry>Canada</shipcountry> <orderdetails> <orderid>10376</orderid> <productid>31</productid> <unitprice>10.0000</unitprice> <quantity>42</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10424</orderid> <customerid>MEREP</customerid> <employeeid>7</employeeid> <orderdate>1997-01-23</orderdate> <requireddate>1997-02-20</requireddate> <shippeddate>1997-01-27</shippeddate> <shipvia>2</shipvia> <freight>370.6100</freight> <shipname>Mère Paillarde</shipname> <shipaddress>43 rue St. Laurent</shipaddress> <shipcity>Montréal</shipcity> <shipregion>Québec</shipregion> <shippostalcode>H1J 1C3</shippostalcode> <shipcountry>Canada</shipcountry> <orderdetails> <orderid>10424</orderid> <productid>35</productid> <unitprice>14.4000</unitprice> <quantity>60</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10424</orderid> <productid>38</productid> <unitprice>210.8000</unitprice> <quantity>49</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10424</orderid> <productid>68</productid> <unitprice>10.0000</unitprice> <quantity>30</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10439</orderid> <customerid>MEREP</customerid> <employeeid>6</employeeid> <orderdate>1997-02-07</orderdate> <requireddate>1997-03-07</requireddate> <shippeddate>1997-02-10</shippeddate> <shipvia>3</shipvia> <freight>4.0700</freight> <shipname>Mère Paillarde</shipname> <shipaddress>43 rue St. Laurent</shipaddress> <shipcity>Montréal</shipcity> <shipregion>Québec</shipregion> <shippostalcode>H1J 1C3</shippostalcode> <shipcountry>Canada</shipcountry> <orderdetails> <orderid>10439</orderid> <productid>12</productid> <unitprice>30.4000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10439</orderid> <productid>16</productid> <unitprice>13.9000</unitprice> <quantity>16</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10439</orderid> <productid>64</productid> <unitprice>26.6000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10439</orderid> <productid>74</productid> <unitprice>8.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10505</orderid> <customerid>MEREP</customerid> <employeeid>3</employeeid> <orderdate>1997-04-14</orderdate> <requireddate>1997-05-12</requireddate> <shippeddate>1997-04-21</shippeddate> <shipvia>3</shipvia> <freight>7.1300</freight> <shipname>Mère Paillarde</shipname> <shipaddress>43 rue St. Laurent</shipaddress> <shipcity>Montréal</shipcity> <shipregion>Québec</shipregion> <shippostalcode>H1J 1C3</shippostalcode> <shipcountry>Canada</shipcountry> <orderdetails> <orderid>10505</orderid> <productid>62</productid> <unitprice>49.3000</unitprice> <quantity>3</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10565</orderid> <customerid>MEREP</customerid> <employeeid>8</employeeid> <orderdate>1997-06-11</orderdate> <requireddate>1997-07-09</requireddate> <shippeddate>1997-06-18</shippeddate> <shipvia>2</shipvia> <freight>7.1500</freight> <shipname>Mère Paillarde</shipname> <shipaddress>43 rue St. Laurent</shipaddress> <shipcity>Montréal</shipcity> <shipregion>Québec</shipregion> <shippostalcode>H1J 1C3</shippostalcode> <shipcountry>Canada</shipcountry> <orderdetails> <orderid>10565</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>25</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10565</orderid> <productid>64</productid> <unitprice>33.2500</unitprice> <quantity>18</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10570</orderid> <customerid>MEREP</customerid> <employeeid>3</employeeid> <orderdate>1997-06-17</orderdate> <requireddate>1997-07-15</requireddate> <shippeddate>1997-06-19</shippeddate> <shipvia>3</shipvia> <freight>188.9900</freight> <shipname>Mère Paillarde</shipname> <shipaddress>43 rue St. Laurent</shipaddress> <shipcity>Montréal</shipcity> <shipregion>Québec</shipregion> <shippostalcode>H1J 1C3</shippostalcode> <shipcountry>Canada</shipcountry> <orderdetails> <orderid>10570</orderid> <productid>11</productid> <unitprice>21.0000</unitprice> <quantity>15</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10570</orderid> <productid>56</productid> <unitprice>38.0000</unitprice> <quantity>60</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10590</orderid> <customerid>MEREP</customerid> <employeeid>4</employeeid> <orderdate>1997-07-07</orderdate> <requireddate>1997-08-04</requireddate> <shippeddate>1997-07-14</shippeddate> <shipvia>3</shipvia> <freight>44.7700</freight> <shipname>Mère Paillarde</shipname> <shipaddress>43 rue St. Laurent</shipaddress> <shipcity>Montréal</shipcity> <shipregion>Québec</shipregion> <shippostalcode>H1J 1C3</shippostalcode> <shipcountry>Canada</shipcountry> <orderdetails> <orderid>10590</orderid> <productid>1</productid> <unitprice>18.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10590</orderid> <productid>77</productid> <unitprice>13.0000</unitprice> <quantity>60</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10605</orderid> <customerid>MEREP</customerid> <employeeid>1</employeeid> <orderdate>1997-07-21</orderdate> <requireddate>1997-08-18</requireddate> <shippeddate>1997-07-29</shippeddate> <shipvia>2</shipvia> <freight>379.1300</freight> <shipname>Mère Paillarde</shipname> <shipaddress>43 rue St. Laurent</shipaddress> <shipcity>Montréal</shipcity> <shipregion>Québec</shipregion> <shippostalcode>H1J 1C3</shippostalcode> <shipcountry>Canada</shipcountry> <orderdetails> <orderid>10605</orderid> <productid>16</productid> <unitprice>17.4500</unitprice> <quantity>30</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10605</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>20</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10605</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>70</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10605</orderid> <productid>71</productid> <unitprice>21.5000</unitprice> <quantity>15</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10618</orderid> <customerid>MEREP</customerid> <employeeid>1</employeeid> <orderdate>1997-08-01</orderdate> <requireddate>1997-09-12</requireddate> <shippeddate>1997-08-08</shippeddate> <shipvia>1</shipvia> <freight>154.6800</freight> <shipname>Mère Paillarde</shipname> <shipaddress>43 rue St. Laurent</shipaddress> <shipcity>Montréal</shipcity> <shipregion>Québec</shipregion> <shippostalcode>H1J 1C3</shippostalcode> <shipcountry>Canada</shipcountry> <orderdetails> <orderid>10618</orderid> <productid>6</productid> <unitprice>25.0000</unitprice> <quantity>70</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10618</orderid> <productid>56</productid> <unitprice>38.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10618</orderid> <productid>68</productid> <unitprice>12.5000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10619</orderid> <customerid>MEREP</customerid> <employeeid>3</employeeid> <orderdate>1997-08-04</orderdate> <requireddate>1997-09-01</requireddate> <shippeddate>1997-08-07</shippeddate> <shipvia>3</shipvia> <freight>91.0500</freight> <shipname>Mère Paillarde</shipname> <shipaddress>43 rue St. Laurent</shipaddress> <shipcity>Montréal</shipcity> <shipregion>Québec</shipregion> <shippostalcode>H1J 1C3</shippostalcode> <shipcountry>Canada</shipcountry> <orderdetails> <orderid>10619</orderid> <productid>21</productid> <unitprice>10.0000</unitprice> <quantity>42</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10619</orderid> <productid>22</productid> <unitprice>21.0000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10724</orderid> <customerid>MEREP</customerid> <employeeid>8</employeeid> <orderdate>1997-10-30</orderdate> <requireddate>1997-12-11</requireddate> <shippeddate>1997-11-05</shippeddate> <shipvia>2</shipvia> <freight>57.7500</freight> <shipname>Mère Paillarde</shipname> <shipaddress>43 rue St. Laurent</shipaddress> <shipcity>Montréal</shipcity> <shipregion>Québec</shipregion> <shippostalcode>H1J 1C3</shippostalcode> <shipcountry>Canada</shipcountry> <orderdetails> <orderid>10724</orderid> <productid>10</productid> <unitprice>31.0000</unitprice> <quantity>16</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10724</orderid> <productid>61</productid> <unitprice>28.5000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>MORGK</customerid> <companyname>Morgenstern Gesundkost</companyname> <contactname>Alexander Feuer</contactname> <contacttitle>Marketing Assistant</contacttitle> <address>Heerstr. 22</address> <city>Leipzig</city> <postalcode>04179</postalcode> <country>Germany</country> <phone>0342-023176</phone> <orders> <orderid>10277</orderid> <customerid>MORGK</customerid> <employeeid>2</employeeid> <orderdate>1996-08-09</orderdate> <requireddate>1996-09-06</requireddate> <shippeddate>1996-08-13</shippeddate> <shipvia>3</shipvia> <freight>125.7700</freight> <shipname>Morgenstern Gesundkost</shipname> <shipaddress>Heerstr. 22</shipaddress> <shipcity>Leipzig</shipcity> <shippostalcode>04179</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10277</orderid> <productid>28</productid> <unitprice>36.4000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10277</orderid> <productid>62</productid> <unitprice>39.4000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10575</orderid> <customerid>MORGK</customerid> <employeeid>5</employeeid> <orderdate>1997-06-20</orderdate> <requireddate>1997-07-04</requireddate> <shippeddate>1997-06-30</shippeddate> <shipvia>1</shipvia> <freight>127.3400</freight> <shipname>Morgenstern Gesundkost</shipname> <shipaddress>Heerstr. 22</shipaddress> <shipcity>Leipzig</shipcity> <shippostalcode>04179</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10575</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10575</orderid> <productid>63</productid> <unitprice>43.9000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10575</orderid> <productid>72</productid> <unitprice>34.8000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10575</orderid> <productid>76</productid> <unitprice>18.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10699</orderid> <customerid>MORGK</customerid> <employeeid>3</employeeid> <orderdate>1997-10-09</orderdate> <requireddate>1997-11-06</requireddate> <shippeddate>1997-10-13</shippeddate> <shipvia>3</shipvia> <freight>0.5800</freight> <shipname>Morgenstern Gesundkost</shipname> <shipaddress>Heerstr. 22</shipaddress> <shipcity>Leipzig</shipcity> <shippostalcode>04179</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10699</orderid> <productid>47</productid> <unitprice>9.5000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10779</orderid> <customerid>MORGK</customerid> <employeeid>3</employeeid> <orderdate>1997-12-16</orderdate> <requireddate>1998-01-13</requireddate> <shippeddate>1998-01-14</shippeddate> <shipvia>2</shipvia> <freight>58.1300</freight> <shipname>Morgenstern Gesundkost</shipname> <shipaddress>Heerstr. 22</shipaddress> <shipcity>Leipzig</shipcity> <shippostalcode>04179</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10779</orderid> <productid>16</productid> <unitprice>17.4500</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10779</orderid> <productid>62</productid> <unitprice>49.3000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10945</orderid> <customerid>MORGK</customerid> <employeeid>4</employeeid> <orderdate>1998-03-12</orderdate> <requireddate>1998-04-09</requireddate> <shippeddate>1998-03-18</shippeddate> <shipvia>1</shipvia> <freight>10.2200</freight> <shipname>Morgenstern Gesundkost</shipname> <shipaddress>Heerstr. 22</shipaddress> <shipcity>Leipzig</shipcity> <shippostalcode>04179</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10945</orderid> <productid>13</productid> <unitprice>6.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10945</orderid> <productid>31</productid> <unitprice>12.5000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>NORTS</customerid> <companyname>North/South</companyname> <contactname>Simon Crowther</contactname> <contacttitle>Sales Associate</contacttitle> <address>South House 300 Queensbridge</address> <city>London</city> <postalcode>SW7 1RZ</postalcode> <country>UK</country> <phone>(171) 555-7733</phone> <fax>(171) 555-2530</fax> <orders> <orderid>10517</orderid> <customerid>NORTS</customerid> <employeeid>3</employeeid> <orderdate>1997-04-24</orderdate> <requireddate>1997-05-22</requireddate> <shippeddate>1997-04-29</shippeddate> <shipvia>3</shipvia> <freight>32.0700</freight> <shipname>North/South</shipname> <shipaddress>South House 300 Queensbridge</shipaddress> <shipcity>London</shipcity> <shippostalcode>SW7 1RZ</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10517</orderid> <productid>52</productid> <unitprice>7.0000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10517</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10517</orderid> <productid>70</productid> <unitprice>15.0000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10752</orderid> <customerid>NORTS</customerid> <employeeid>2</employeeid> <orderdate>1997-11-24</orderdate> <requireddate>1997-12-22</requireddate> <shippeddate>1997-11-28</shippeddate> <shipvia>3</shipvia> <freight>1.3900</freight> <shipname>North/South</shipname> <shipaddress>South House 300 Queensbridge</shipaddress> <shipcity>London</shipcity> <shippostalcode>SW7 1RZ</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10752</orderid> <productid>1</productid> <unitprice>18.0000</unitprice> <quantity>8</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10752</orderid> <productid>69</productid> <unitprice>36.0000</unitprice> <quantity>3</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11057</orderid> <customerid>NORTS</customerid> <employeeid>3</employeeid> <orderdate>1998-04-29</orderdate> <requireddate>1998-05-27</requireddate> <shippeddate>1998-05-01</shippeddate> <shipvia>3</shipvia> <freight>4.1300</freight> <shipname>North/South</shipname> <shipaddress>South House 300 Queensbridge</shipaddress> <shipcity>London</shipcity> <shippostalcode>SW7 1RZ</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>11057</orderid> <productid>70</productid> <unitprice>15.0000</unitprice> <quantity>3</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>OCEAN</customerid> <companyname>Océano Atlántico Ltda.</companyname> <contactname>Yvonne Moncada</contactname> <contacttitle>Sales Agent</contacttitle> <address>Ing. Gustavo Moncada 8585 Piso 20-A</address> <city>Buenos Aires</city> <postalcode>1010</postalcode> <country>Argentina</country> <phone>(1) 135-5333</phone> <fax>(1) 135-5535</fax> <orders> <orderid>10409</orderid> <customerid>OCEAN</customerid> <employeeid>3</employeeid> <orderdate>1997-01-09</orderdate> <requireddate>1997-02-06</requireddate> <shippeddate>1997-01-14</shippeddate> <shipvia>1</shipvia> <freight>29.8300</freight> <shipname>Océano Atlántico Ltda.</shipname> <shipaddress>Ing. Gustavo Moncada 8585 Piso 20-A</shipaddress> <shipcity>Buenos Aires</shipcity> <shippostalcode>1010</shippostalcode> <shipcountry>Argentina</shipcountry> <orderdetails> <orderid>10409</orderid> <productid>14</productid> <unitprice>18.6000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10409</orderid> <productid>21</productid> <unitprice>8.0000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10531</orderid> <customerid>OCEAN</customerid> <employeeid>7</employeeid> <orderdate>1997-05-08</orderdate> <requireddate>1997-06-05</requireddate> <shippeddate>1997-05-19</shippeddate> <shipvia>1</shipvia> <freight>8.1200</freight> <shipname>Océano Atlántico Ltda.</shipname> <shipaddress>Ing. Gustavo Moncada 8585 Piso 20-A</shipaddress> <shipcity>Buenos Aires</shipcity> <shippostalcode>1010</shippostalcode> <shipcountry>Argentina</shipcountry> <orderdetails> <orderid>10531</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>2</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10898</orderid> <customerid>OCEAN</customerid> <employeeid>4</employeeid> <orderdate>1998-02-20</orderdate> <requireddate>1998-03-20</requireddate> <shippeddate>1998-03-06</shippeddate> <shipvia>2</shipvia> <freight>1.2700</freight> <shipname>Océano Atlántico Ltda.</shipname> <shipaddress>Ing. Gustavo Moncada 8585 Piso 20-A</shipaddress> <shipcity>Buenos Aires</shipcity> <shippostalcode>1010</shippostalcode> <shipcountry>Argentina</shipcountry> <orderdetails> <orderid>10898</orderid> <productid>13</productid> <unitprice>6.0000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10958</orderid> <customerid>OCEAN</customerid> <employeeid>7</employeeid> <orderdate>1998-03-18</orderdate> <requireddate>1998-04-15</requireddate> <shippeddate>1998-03-27</shippeddate> <shipvia>2</shipvia> <freight>49.5600</freight> <shipname>Océano Atlántico Ltda.</shipname> <shipaddress>Ing. Gustavo Moncada 8585 Piso 20-A</shipaddress> <shipcity>Buenos Aires</shipcity> <shippostalcode>1010</shippostalcode> <shipcountry>Argentina</shipcountry> <orderdetails> <orderid>10958</orderid> <productid>5</productid> <unitprice>21.3500</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10958</orderid> <productid>7</productid> <unitprice>30.0000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10958</orderid> <productid>72</productid> <unitprice>34.8000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10986</orderid> <customerid>OCEAN</customerid> <employeeid>8</employeeid> <orderdate>1998-03-30</orderdate> <requireddate>1998-04-27</requireddate> <shippeddate>1998-04-21</shippeddate> <shipvia>2</shipvia> <freight>217.8600</freight> <shipname>Océano Atlántico Ltda.</shipname> <shipaddress>Ing. Gustavo Moncada 8585 Piso 20-A</shipaddress> <shipcity>Buenos Aires</shipcity> <shippostalcode>1010</shippostalcode> <shipcountry>Argentina</shipcountry> <orderdetails> <orderid>10986</orderid> <productid>11</productid> <unitprice>21.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10986</orderid> <productid>20</productid> <unitprice>81.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10986</orderid> <productid>76</productid> <unitprice>18.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10986</orderid> <productid>77</productid> <unitprice>13.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>OLDWO</customerid> <companyname>Old World Delicatessen</companyname> <contactname>Rene Phillips</contactname> <contacttitle>Sales Representative</contacttitle> <address>2743 Bering St.</address> <city>Anchorage</city> <region>AK</region> <postalcode>99508</postalcode> <country>USA</country> <phone>(907) 555-7584</phone> <fax>(907) 555-2880</fax> <orders> <orderid>10305</orderid> <customerid>OLDWO</customerid> <employeeid>8</employeeid> <orderdate>1996-09-13</orderdate> <requireddate>1996-10-11</requireddate> <shippeddate>1996-10-09</shippeddate> <shipvia>3</shipvia> <freight>257.6200</freight> <shipname>Old World Delicatessen</shipname> <shipaddress>2743 Bering St.</shipaddress> <shipcity>Anchorage</shipcity> <shipregion>AK</shipregion> <shippostalcode>99508</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10305</orderid> <productid>18</productid> <unitprice>50.0000</unitprice> <quantity>25</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10305</orderid> <productid>29</productid> <unitprice>99.0000</unitprice> <quantity>25</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10305</orderid> <productid>39</productid> <unitprice>14.4000</unitprice> <quantity>30</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10338</orderid> <customerid>OLDWO</customerid> <employeeid>4</employeeid> <orderdate>1996-10-25</orderdate> <requireddate>1996-11-22</requireddate> <shippeddate>1996-10-29</shippeddate> <shipvia>3</shipvia> <freight>84.2100</freight> <shipname>Old World Delicatessen</shipname> <shipaddress>2743 Bering St.</shipaddress> <shipcity>Anchorage</shipcity> <shipregion>AK</shipregion> <shippostalcode>99508</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10338</orderid> <productid>17</productid> <unitprice>31.2000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10338</orderid> <productid>30</productid> <unitprice>20.7000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10441</orderid> <customerid>OLDWO</customerid> <employeeid>3</employeeid> <orderdate>1997-02-10</orderdate> <requireddate>1997-03-24</requireddate> <shippeddate>1997-03-14</shippeddate> <shipvia>2</shipvia> <freight>73.0200</freight> <shipname>Old World Delicatessen</shipname> <shipaddress>2743 Bering St.</shipaddress> <shipcity>Anchorage</shipcity> <shipregion>AK</shipregion> <shippostalcode>99508</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10441</orderid> <productid>27</productid> <unitprice>35.1000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10594</orderid> <customerid>OLDWO</customerid> <employeeid>3</employeeid> <orderdate>1997-07-09</orderdate> <requireddate>1997-08-06</requireddate> <shippeddate>1997-07-16</shippeddate> <shipvia>2</shipvia> <freight>5.2400</freight> <shipname>Old World Delicatessen</shipname> <shipaddress>2743 Bering St.</shipaddress> <shipcity>Anchorage</shipcity> <shipregion>AK</shipregion> <shippostalcode>99508</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10594</orderid> <productid>52</productid> <unitprice>7.0000</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10594</orderid> <productid>58</productid> <unitprice>13.2500</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10680</orderid> <customerid>OLDWO</customerid> <employeeid>1</employeeid> <orderdate>1997-09-24</orderdate> <requireddate>1997-10-22</requireddate> <shippeddate>1997-09-26</shippeddate> <shipvia>1</shipvia> <freight>26.6100</freight> <shipname>Old World Delicatessen</shipname> <shipaddress>2743 Bering St.</shipaddress> <shipcity>Anchorage</shipcity> <shipregion>AK</shipregion> <shippostalcode>99508</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10680</orderid> <productid>16</productid> <unitprice>17.4500</unitprice> <quantity>50</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10680</orderid> <productid>31</productid> <unitprice>12.5000</unitprice> <quantity>20</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10680</orderid> <productid>42</productid> <unitprice>14.0000</unitprice> <quantity>40</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10706</orderid> <customerid>OLDWO</customerid> <employeeid>8</employeeid> <orderdate>1997-10-16</orderdate> <requireddate>1997-11-13</requireddate> <shippeddate>1997-10-21</shippeddate> <shipvia>3</shipvia> <freight>135.6300</freight> <shipname>Old World Delicatessen</shipname> <shipaddress>2743 Bering St.</shipaddress> <shipcity>Anchorage</shipcity> <shipregion>AK</shipregion> <shippostalcode>99508</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10706</orderid> <productid>16</productid> <unitprice>17.4500</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10706</orderid> <productid>43</productid> <unitprice>46.0000</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10706</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>8</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10808</orderid> <customerid>OLDWO</customerid> <employeeid>2</employeeid> <orderdate>1998-01-01</orderdate> <requireddate>1998-01-29</requireddate> <shippeddate>1998-01-09</shippeddate> <shipvia>3</shipvia> <freight>45.5300</freight> <shipname>Old World Delicatessen</shipname> <shipaddress>2743 Bering St.</shipaddress> <shipcity>Anchorage</shipcity> <shipregion>AK</shipregion> <shippostalcode>99508</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10808</orderid> <productid>56</productid> <unitprice>38.0000</unitprice> <quantity>20</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10808</orderid> <productid>76</productid> <unitprice>18.0000</unitprice> <quantity>50</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10855</orderid> <customerid>OLDWO</customerid> <employeeid>3</employeeid> <orderdate>1998-01-27</orderdate> <requireddate>1998-02-24</requireddate> <shippeddate>1998-02-04</shippeddate> <shipvia>1</shipvia> <freight>170.9700</freight> <shipname>Old World Delicatessen</shipname> <shipaddress>2743 Bering St.</shipaddress> <shipcity>Anchorage</shipcity> <shipregion>AK</shipregion> <shippostalcode>99508</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10855</orderid> <productid>16</productid> <unitprice>17.4500</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10855</orderid> <productid>31</productid> <unitprice>12.5000</unitprice> <quantity>14</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10855</orderid> <productid>56</productid> <unitprice>38.0000</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10855</orderid> <productid>65</productid> <unitprice>21.0500</unitprice> <quantity>15</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10965</orderid> <customerid>OLDWO</customerid> <employeeid>6</employeeid> <orderdate>1998-03-20</orderdate> <requireddate>1998-04-17</requireddate> <shippeddate>1998-03-30</shippeddate> <shipvia>3</shipvia> <freight>144.3800</freight> <shipname>Old World Delicatessen</shipname> <shipaddress>2743 Bering St.</shipaddress> <shipcity>Anchorage</shipcity> <shipregion>AK</shipregion> <shippostalcode>99508</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10965</orderid> <productid>51</productid> <unitprice>53.0000</unitprice> <quantity>16</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11034</orderid> <customerid>OLDWO</customerid> <employeeid>8</employeeid> <orderdate>1998-04-20</orderdate> <requireddate>1998-06-01</requireddate> <shippeddate>1998-04-27</shippeddate> <shipvia>1</shipvia> <freight>40.3200</freight> <shipname>Old World Delicatessen</shipname> <shipaddress>2743 Bering St.</shipaddress> <shipcity>Anchorage</shipcity> <shipregion>AK</shipregion> <shippostalcode>99508</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>11034</orderid> <productid>21</productid> <unitprice>10.0000</unitprice> <quantity>15</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>11034</orderid> <productid>44</productid> <unitprice>19.4500</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11034</orderid> <productid>61</productid> <unitprice>28.5000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>OTTIK</customerid> <companyname>Ottilies Käseladen</companyname> <contactname>Henriette Pfalzheim</contactname> <contacttitle>Owner</contacttitle> <address>Mehrheimerstr. 369</address> <city>Köln</city> <postalcode>50739</postalcode> <country>Germany</country> <phone>0221-0644327</phone> <fax>0221-0765721</fax> <orders> <orderid>10260</orderid> <customerid>OTTIK</customerid> <employeeid>4</employeeid> <orderdate>1996-07-19</orderdate> <requireddate>1996-08-16</requireddate> <shippeddate>1996-07-29</shippeddate> <shipvia>1</shipvia> <freight>55.0900</freight> <shipname>Ottilies Käseladen</shipname> <shipaddress>Mehrheimerstr. 369</shipaddress> <shipcity>Köln</shipcity> <shippostalcode>50739</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10260</orderid> <productid>41</productid> <unitprice>7.7000</unitprice> <quantity>16</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10260</orderid> <productid>57</productid> <unitprice>15.6000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10260</orderid> <productid>62</productid> <unitprice>39.4000</unitprice> <quantity>15</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10260</orderid> <productid>70</productid> <unitprice>12.0000</unitprice> <quantity>21</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10407</orderid> <customerid>OTTIK</customerid> <employeeid>2</employeeid> <orderdate>1997-01-07</orderdate> <requireddate>1997-02-04</requireddate> <shippeddate>1997-01-30</shippeddate> <shipvia>2</shipvia> <freight>91.4800</freight> <shipname>Ottilies Käseladen</shipname> <shipaddress>Mehrheimerstr. 369</shipaddress> <shipcity>Köln</shipcity> <shippostalcode>50739</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10407</orderid> <productid>11</productid> <unitprice>16.8000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10407</orderid> <productid>69</productid> <unitprice>28.8000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10407</orderid> <productid>71</productid> <unitprice>17.2000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10508</orderid> <customerid>OTTIK</customerid> <employeeid>1</employeeid> <orderdate>1997-04-16</orderdate> <requireddate>1997-05-14</requireddate> <shippeddate>1997-05-13</shippeddate> <shipvia>2</shipvia> <freight>4.9900</freight> <shipname>Ottilies Käseladen</shipname> <shipaddress>Mehrheimerstr. 369</shipaddress> <shipcity>Köln</shipcity> <shippostalcode>50739</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10508</orderid> <productid>13</productid> <unitprice>6.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10508</orderid> <productid>39</productid> <unitprice>18.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10554</orderid> <customerid>OTTIK</customerid> <employeeid>4</employeeid> <orderdate>1997-05-30</orderdate> <requireddate>1997-06-27</requireddate> <shippeddate>1997-06-05</shippeddate> <shipvia>3</shipvia> <freight>120.9700</freight> <shipname>Ottilies Käseladen</shipname> <shipaddress>Mehrheimerstr. 369</shipaddress> <shipcity>Köln</shipcity> <shippostalcode>50739</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10554</orderid> <productid>16</productid> <unitprice>17.4500</unitprice> <quantity>30</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10554</orderid> <productid>23</productid> <unitprice>9.0000</unitprice> <quantity>20</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10554</orderid> <productid>62</productid> <unitprice>49.3000</unitprice> <quantity>20</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10554</orderid> <productid>77</productid> <unitprice>13.0000</unitprice> <quantity>10</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10580</orderid> <customerid>OTTIK</customerid> <employeeid>4</employeeid> <orderdate>1997-06-26</orderdate> <requireddate>1997-07-24</requireddate> <shippeddate>1997-07-01</shippeddate> <shipvia>3</shipvia> <freight>75.8900</freight> <shipname>Ottilies Käseladen</shipname> <shipaddress>Mehrheimerstr. 369</shipaddress> <shipcity>Köln</shipcity> <shippostalcode>50739</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10580</orderid> <productid>14</productid> <unitprice>23.2500</unitprice> <quantity>15</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10580</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>9</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10580</orderid> <productid>65</productid> <unitprice>21.0500</unitprice> <quantity>30</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10684</orderid> <customerid>OTTIK</customerid> <employeeid>3</employeeid> <orderdate>1997-09-26</orderdate> <requireddate>1997-10-24</requireddate> <shippeddate>1997-09-30</shippeddate> <shipvia>1</shipvia> <freight>145.6300</freight> <shipname>Ottilies Käseladen</shipname> <shipaddress>Mehrheimerstr. 369</shipaddress> <shipcity>Köln</shipcity> <shippostalcode>50739</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10684</orderid> <productid>40</productid> <unitprice>18.4000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10684</orderid> <productid>47</productid> <unitprice>9.5000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10684</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10766</orderid> <customerid>OTTIK</customerid> <employeeid>4</employeeid> <orderdate>1997-12-05</orderdate> <requireddate>1998-01-02</requireddate> <shippeddate>1997-12-09</shippeddate> <shipvia>1</shipvia> <freight>157.5500</freight> <shipname>Ottilies Käseladen</shipname> <shipaddress>Mehrheimerstr. 369</shipaddress> <shipcity>Köln</shipcity> <shippostalcode>50739</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10766</orderid> <productid>2</productid> <unitprice>19.0000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10766</orderid> <productid>7</productid> <unitprice>30.0000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10766</orderid> <productid>68</productid> <unitprice>12.5000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10833</orderid> <customerid>OTTIK</customerid> <employeeid>6</employeeid> <orderdate>1998-01-15</orderdate> <requireddate>1998-02-12</requireddate> <shippeddate>1998-01-23</shippeddate> <shipvia>2</shipvia> <freight>71.4900</freight> <shipname>Ottilies Käseladen</shipname> <shipaddress>Mehrheimerstr. 369</shipaddress> <shipcity>Köln</shipcity> <shippostalcode>50739</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10833</orderid> <productid>7</productid> <unitprice>30.0000</unitprice> <quantity>20</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10833</orderid> <productid>31</productid> <unitprice>12.5000</unitprice> <quantity>9</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10833</orderid> <productid>53</productid> <unitprice>32.8000</unitprice> <quantity>9</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10999</orderid> <customerid>OTTIK</customerid> <employeeid>6</employeeid> <orderdate>1998-04-03</orderdate> <requireddate>1998-05-01</requireddate> <shippeddate>1998-04-10</shippeddate> <shipvia>2</shipvia> <freight>96.3500</freight> <shipname>Ottilies Käseladen</shipname> <shipaddress>Mehrheimerstr. 369</shipaddress> <shipcity>Köln</shipcity> <shippostalcode>50739</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10999</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>20</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10999</orderid> <productid>51</productid> <unitprice>53.0000</unitprice> <quantity>15</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10999</orderid> <productid>77</productid> <unitprice>13.0000</unitprice> <quantity>21</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>11020</orderid> <customerid>OTTIK</customerid> <employeeid>2</employeeid> <orderdate>1998-04-14</orderdate> <requireddate>1998-05-12</requireddate> <shippeddate>1998-04-16</shippeddate> <shipvia>2</shipvia> <freight>43.3000</freight> <shipname>Ottilies Käseladen</shipname> <shipaddress>Mehrheimerstr. 369</shipaddress> <shipcity>Köln</shipcity> <shippostalcode>50739</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>11020</orderid> <productid>10</productid> <unitprice>31.0000</unitprice> <quantity>24</quantity> <discount>0.15000</discount> </orderdetails> </orders> </customers> <customers> <customerid>PARIS</customerid> <companyname>Paris spécialités</companyname> <contactname>Marie Bertrand</contactname> <contacttitle>Owner</contacttitle> <address>265, boulevard Charonne</address> <city>Paris</city> <postalcode>75012</postalcode> <country>France</country> <phone>(1) 42.34.22.66</phone> <fax>(1) 42.34.22.77</fax> </customers> <customers> <customerid>PERIC</customerid> <companyname>Pericles Comidas clásicas</companyname> <contactname>Guillermo Fernández</contactname> <contacttitle>Sales Representative</contacttitle> <address>Calle Dr. Jorge Cash 321</address> <city>México D.F.</city> <postalcode>05033</postalcode> <country>Mexico</country> <phone>(5) 552-3745</phone> <fax>(5) 545-3745</fax> <orders> <orderid>10322</orderid> <customerid>PERIC</customerid> <employeeid>7</employeeid> <orderdate>1996-10-04</orderdate> <requireddate>1996-11-01</requireddate> <shippeddate>1996-10-23</shippeddate> <shipvia>3</shipvia> <freight>0.4000</freight> <shipname>Pericles Comidas clásicas</shipname> <shipaddress>Calle Dr. Jorge Cash 321</shipaddress> <shipcity>México D.F.</shipcity> <shippostalcode>05033</shippostalcode> <shipcountry>Mexico</shipcountry> <orderdetails> <orderid>10322</orderid> <productid>52</productid> <unitprice>5.6000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10354</orderid> <customerid>PERIC</customerid> <employeeid>8</employeeid> <orderdate>1996-11-14</orderdate> <requireddate>1996-12-12</requireddate> <shippeddate>1996-11-20</shippeddate> <shipvia>3</shipvia> <freight>53.8000</freight> <shipname>Pericles Comidas clásicas</shipname> <shipaddress>Calle Dr. Jorge Cash 321</shipaddress> <shipcity>México D.F.</shipcity> <shippostalcode>05033</shippostalcode> <shipcountry>Mexico</shipcountry> <orderdetails> <orderid>10354</orderid> <productid>1</productid> <unitprice>14.4000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10354</orderid> <productid>29</productid> <unitprice>99.0000</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10474</orderid> <customerid>PERIC</customerid> <employeeid>5</employeeid> <orderdate>1997-03-13</orderdate> <requireddate>1997-04-10</requireddate> <shippeddate>1997-03-21</shippeddate> <shipvia>2</shipvia> <freight>83.4900</freight> <shipname>Pericles Comidas clásicas</shipname> <shipaddress>Calle Dr. Jorge Cash 321</shipaddress> <shipcity>México D.F.</shipcity> <shippostalcode>05033</shippostalcode> <shipcountry>Mexico</shipcountry> <orderdetails> <orderid>10474</orderid> <productid>14</productid> <unitprice>18.6000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10474</orderid> <productid>28</productid> <unitprice>36.4000</unitprice> <quantity>18</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10474</orderid> <productid>40</productid> <unitprice>14.7000</unitprice> <quantity>21</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10474</orderid> <productid>75</productid> <unitprice>6.2000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10502</orderid> <customerid>PERIC</customerid> <employeeid>2</employeeid> <orderdate>1997-04-10</orderdate> <requireddate>1997-05-08</requireddate> <shippeddate>1997-04-29</shippeddate> <shipvia>1</shipvia> <freight>69.3200</freight> <shipname>Pericles Comidas clásicas</shipname> <shipaddress>Calle Dr. Jorge Cash 321</shipaddress> <shipcity>México D.F.</shipcity> <shippostalcode>05033</shippostalcode> <shipcountry>Mexico</shipcountry> <orderdetails> <orderid>10502</orderid> <productid>45</productid> <unitprice>9.5000</unitprice> <quantity>21</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10502</orderid> <productid>53</productid> <unitprice>32.8000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10502</orderid> <productid>67</productid> <unitprice>14.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10995</orderid> <customerid>PERIC</customerid> <employeeid>1</employeeid> <orderdate>1998-04-02</orderdate> <requireddate>1998-04-30</requireddate> <shippeddate>1998-04-06</shippeddate> <shipvia>3</shipvia> <freight>46.0000</freight> <shipname>Pericles Comidas clásicas</shipname> <shipaddress>Calle Dr. Jorge Cash 321</shipaddress> <shipcity>México D.F.</shipcity> <shippostalcode>05033</shippostalcode> <shipcountry>Mexico</shipcountry> <orderdetails> <orderid>10995</orderid> <productid>51</productid> <unitprice>53.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10995</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11073</orderid> <customerid>PERIC</customerid> <employeeid>2</employeeid> <orderdate>1998-05-05</orderdate> <requireddate>1998-06-02</requireddate> <shipvia>2</shipvia> <freight>24.9500</freight> <shipname>Pericles Comidas clásicas</shipname> <shipaddress>Calle Dr. Jorge Cash 321</shipaddress> <shipcity>México D.F.</shipcity> <shippostalcode>05033</shippostalcode> <shipcountry>Mexico</shipcountry> <orderdetails> <orderid>11073</orderid> <productid>11</productid> <unitprice>21.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11073</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>PICCO</customerid> <companyname>Piccolo und mehr</companyname> <contactname>Georg Pipps</contactname> <contacttitle>Sales Manager</contacttitle> <address>Geislweg 14</address> <city>Salzburg</city> <postalcode>5020</postalcode> <country>Austria</country> <phone>6562-9722</phone> <fax>6562-9723</fax> <orders> <orderid>10353</orderid> <customerid>PICCO</customerid> <employeeid>7</employeeid> <orderdate>1996-11-13</orderdate> <requireddate>1996-12-11</requireddate> <shippeddate>1996-11-25</shippeddate> <shipvia>3</shipvia> <freight>360.6300</freight> <shipname>Piccolo und mehr</shipname> <shipaddress>Geislweg 14</shipaddress> <shipcity>Salzburg</shipcity> <shippostalcode>5020</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10353</orderid> <productid>11</productid> <unitprice>16.8000</unitprice> <quantity>12</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10353</orderid> <productid>38</productid> <unitprice>210.8000</unitprice> <quantity>50</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10392</orderid> <customerid>PICCO</customerid> <employeeid>2</employeeid> <orderdate>1996-12-24</orderdate> <requireddate>1997-01-21</requireddate> <shippeddate>1997-01-01</shippeddate> <shipvia>3</shipvia> <freight>122.4600</freight> <shipname>Piccolo und mehr</shipname> <shipaddress>Geislweg 14</shipaddress> <shipcity>Salzburg</shipcity> <shippostalcode>5020</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10392</orderid> <productid>69</productid> <unitprice>28.8000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10427</orderid> <customerid>PICCO</customerid> <employeeid>4</employeeid> <orderdate>1997-01-27</orderdate> <requireddate>1997-02-24</requireddate> <shippeddate>1997-03-03</shippeddate> <shipvia>2</shipvia> <freight>31.2900</freight> <shipname>Piccolo und mehr</shipname> <shipaddress>Geislweg 14</shipaddress> <shipcity>Salzburg</shipcity> <shippostalcode>5020</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10427</orderid> <productid>14</productid> <unitprice>18.6000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10489</orderid> <customerid>PICCO</customerid> <employeeid>6</employeeid> <orderdate>1997-03-28</orderdate> <requireddate>1997-04-25</requireddate> <shippeddate>1997-04-09</shippeddate> <shipvia>2</shipvia> <freight>5.2900</freight> <shipname>Piccolo und mehr</shipname> <shipaddress>Geislweg 14</shipaddress> <shipcity>Salzburg</shipcity> <shippostalcode>5020</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10489</orderid> <productid>11</productid> <unitprice>16.8000</unitprice> <quantity>15</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10489</orderid> <productid>16</productid> <unitprice>13.9000</unitprice> <quantity>18</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10530</orderid> <customerid>PICCO</customerid> <employeeid>3</employeeid> <orderdate>1997-05-08</orderdate> <requireddate>1997-06-05</requireddate> <shippeddate>1997-05-12</shippeddate> <shipvia>2</shipvia> <freight>339.2200</freight> <shipname>Piccolo und mehr</shipname> <shipaddress>Geislweg 14</shipaddress> <shipcity>Salzburg</shipcity> <shippostalcode>5020</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10530</orderid> <productid>17</productid> <unitprice>39.0000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10530</orderid> <productid>43</productid> <unitprice>46.0000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10530</orderid> <productid>61</productid> <unitprice>28.5000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10530</orderid> <productid>76</productid> <unitprice>18.0000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10597</orderid> <customerid>PICCO</customerid> <employeeid>7</employeeid> <orderdate>1997-07-11</orderdate> <requireddate>1997-08-08</requireddate> <shippeddate>1997-07-18</shippeddate> <shipvia>3</shipvia> <freight>35.1200</freight> <shipname>Piccolo und mehr</shipname> <shipaddress>Geislweg 14</shipaddress> <shipcity>Salzburg</shipcity> <shippostalcode>5020</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10597</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>35</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10597</orderid> <productid>57</productid> <unitprice>19.5000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10597</orderid> <productid>65</productid> <unitprice>21.0500</unitprice> <quantity>12</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10686</orderid> <customerid>PICCO</customerid> <employeeid>2</employeeid> <orderdate>1997-09-30</orderdate> <requireddate>1997-10-28</requireddate> <shippeddate>1997-10-08</shippeddate> <shipvia>1</shipvia> <freight>96.5000</freight> <shipname>Piccolo und mehr</shipname> <shipaddress>Geislweg 14</shipaddress> <shipcity>Salzburg</shipcity> <shippostalcode>5020</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10686</orderid> <productid>17</productid> <unitprice>39.0000</unitprice> <quantity>30</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10686</orderid> <productid>26</productid> <unitprice>31.2300</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10747</orderid> <customerid>PICCO</customerid> <employeeid>6</employeeid> <orderdate>1997-11-19</orderdate> <requireddate>1997-12-17</requireddate> <shippeddate>1997-11-26</shippeddate> <shipvia>1</shipvia> <freight>117.3300</freight> <shipname>Piccolo und mehr</shipname> <shipaddress>Geislweg 14</shipaddress> <shipcity>Salzburg</shipcity> <shippostalcode>5020</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10747</orderid> <productid>31</productid> <unitprice>12.5000</unitprice> <quantity>8</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10747</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10747</orderid> <productid>63</productid> <unitprice>43.9000</unitprice> <quantity>9</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10747</orderid> <productid>69</productid> <unitprice>36.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10844</orderid> <customerid>PICCO</customerid> <employeeid>8</employeeid> <orderdate>1998-01-21</orderdate> <requireddate>1998-02-18</requireddate> <shippeddate>1998-01-26</shippeddate> <shipvia>2</shipvia> <freight>25.2200</freight> <shipname>Piccolo und mehr</shipname> <shipaddress>Geislweg 14</shipaddress> <shipcity>Salzburg</shipcity> <shippostalcode>5020</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>10844</orderid> <productid>22</productid> <unitprice>21.0000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11053</orderid> <customerid>PICCO</customerid> <employeeid>2</employeeid> <orderdate>1998-04-27</orderdate> <requireddate>1998-05-25</requireddate> <shippeddate>1998-04-29</shippeddate> <shipvia>2</shipvia> <freight>53.0500</freight> <shipname>Piccolo und mehr</shipname> <shipaddress>Geislweg 14</shipaddress> <shipcity>Salzburg</shipcity> <shippostalcode>5020</shippostalcode> <shipcountry>Austria</shipcountry> <orderdetails> <orderid>11053</orderid> <productid>18</productid> <unitprice>62.5000</unitprice> <quantity>35</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>11053</orderid> <productid>32</productid> <unitprice>32.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11053</orderid> <productid>64</productid> <unitprice>33.2500</unitprice> <quantity>25</quantity> <discount>0.20000</discount> </orderdetails> </orders> </customers> <customers> <customerid>PRINI</customerid> <companyname>Princesa Isabel Vinhos</companyname> <contactname>Isabel de Castro</contactname> <contacttitle>Sales Representative</contacttitle> <address>Estrada da saúde n. 58</address> <city>Lisboa</city> <postalcode>1756</postalcode> <country>Portugal</country> <phone>(1) 356-5634</phone> <orders> <orderid>10336</orderid> <customerid>PRINI</customerid> <employeeid>7</employeeid> <orderdate>1996-10-23</orderdate> <requireddate>1996-11-20</requireddate> <shippeddate>1996-10-25</shippeddate> <shipvia>2</shipvia> <freight>15.5100</freight> <shipname>Princesa Isabel Vinhos</shipname> <shipaddress>Estrada da saúde n. 58</shipaddress> <shipcity>Lisboa</shipcity> <shippostalcode>1756</shippostalcode> <shipcountry>Portugal</shipcountry> <orderdetails> <orderid>10336</orderid> <productid>4</productid> <unitprice>17.6000</unitprice> <quantity>18</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10397</orderid> <customerid>PRINI</customerid> <employeeid>5</employeeid> <orderdate>1996-12-27</orderdate> <requireddate>1997-01-24</requireddate> <shippeddate>1997-01-02</shippeddate> <shipvia>1</shipvia> <freight>60.2600</freight> <shipname>Princesa Isabel Vinhos</shipname> <shipaddress>Estrada da saúde n. 58</shipaddress> <shipcity>Lisboa</shipcity> <shippostalcode>1756</shippostalcode> <shipcountry>Portugal</shipcountry> <orderdetails> <orderid>10397</orderid> <productid>21</productid> <unitprice>8.0000</unitprice> <quantity>10</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10397</orderid> <productid>51</productid> <unitprice>42.4000</unitprice> <quantity>18</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10433</orderid> <customerid>PRINI</customerid> <employeeid>3</employeeid> <orderdate>1997-02-03</orderdate> <requireddate>1997-03-03</requireddate> <shippeddate>1997-03-04</shippeddate> <shipvia>3</shipvia> <freight>73.8300</freight> <shipname>Princesa Isabel Vinhos</shipname> <shipaddress>Estrada da saúde n. 58</shipaddress> <shipcity>Lisboa</shipcity> <shippostalcode>1756</shippostalcode> <shipcountry>Portugal</shipcountry> <orderdetails> <orderid>10433</orderid> <productid>56</productid> <unitprice>30.4000</unitprice> <quantity>28</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10477</orderid> <customerid>PRINI</customerid> <employeeid>5</employeeid> <orderdate>1997-03-17</orderdate> <requireddate>1997-04-14</requireddate> <shippeddate>1997-03-25</shippeddate> <shipvia>2</shipvia> <freight>13.0200</freight> <shipname>Princesa Isabel Vinhos</shipname> <shipaddress>Estrada da saúde n. 58</shipaddress> <shipcity>Lisboa</shipcity> <shippostalcode>1756</shippostalcode> <shipcountry>Portugal</shipcountry> <orderdetails> <orderid>10477</orderid> <productid>1</productid> <unitprice>14.4000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10477</orderid> <productid>21</productid> <unitprice>8.0000</unitprice> <quantity>21</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10477</orderid> <productid>39</productid> <unitprice>14.4000</unitprice> <quantity>20</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>11007</orderid> <customerid>PRINI</customerid> <employeeid>8</employeeid> <orderdate>1998-04-08</orderdate> <requireddate>1998-05-06</requireddate> <shippeddate>1998-04-13</shippeddate> <shipvia>2</shipvia> <freight>202.2400</freight> <shipname>Princesa Isabel Vinhos</shipname> <shipaddress>Estrada da saúde n. 58</shipaddress> <shipcity>Lisboa</shipcity> <shippostalcode>1756</shippostalcode> <shipcountry>Portugal</shipcountry> <orderdetails> <orderid>11007</orderid> <productid>8</productid> <unitprice>40.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11007</orderid> <productid>29</productid> <unitprice>123.7900</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11007</orderid> <productid>42</productid> <unitprice>14.0000</unitprice> <quantity>14</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>QUEDE</customerid> <companyname>Que Delícia</companyname> <contactname>Bernardo Batista</contactname> <contacttitle>Accounting Manager</contacttitle> <address>Rua da Panificadora, 12</address> <city>Rio de Janeiro</city> <region>RJ</region> <postalcode>02389-673</postalcode> <country>Brazil</country> <phone>(21) 555-4252</phone> <fax>(21) 555-4545</fax> <orders> <orderid>10261</orderid> <customerid>QUEDE</customerid> <employeeid>4</employeeid> <orderdate>1996-07-19</orderdate> <requireddate>1996-08-16</requireddate> <shippeddate>1996-07-30</shippeddate> <shipvia>2</shipvia> <freight>3.0500</freight> <shipname>Que Delícia</shipname> <shipaddress>Rua da Panificadora, 12</shipaddress> <shipcity>Rio de Janeiro</shipcity> <shipregion>RJ</shipregion> <shippostalcode>02389-673</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10261</orderid> <productid>21</productid> <unitprice>8.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10261</orderid> <productid>35</productid> <unitprice>14.4000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10291</orderid> <customerid>QUEDE</customerid> <employeeid>6</employeeid> <orderdate>1996-08-27</orderdate> <requireddate>1996-09-24</requireddate> <shippeddate>1996-09-04</shippeddate> <shipvia>2</shipvia> <freight>6.4000</freight> <shipname>Que Delícia</shipname> <shipaddress>Rua da Panificadora, 12</shipaddress> <shipcity>Rio de Janeiro</shipcity> <shipregion>RJ</shipregion> <shippostalcode>02389-673</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10291</orderid> <productid>13</productid> <unitprice>4.8000</unitprice> <quantity>20</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10291</orderid> <productid>44</productid> <unitprice>15.5000</unitprice> <quantity>24</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10291</orderid> <productid>51</productid> <unitprice>42.4000</unitprice> <quantity>2</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10379</orderid> <customerid>QUEDE</customerid> <employeeid>2</employeeid> <orderdate>1996-12-11</orderdate> <requireddate>1997-01-08</requireddate> <shippeddate>1996-12-13</shippeddate> <shipvia>1</shipvia> <freight>45.0300</freight> <shipname>Que Delícia</shipname> <shipaddress>Rua da Panificadora, 12</shipaddress> <shipcity>Rio de Janeiro</shipcity> <shipregion>RJ</shipregion> <shippostalcode>02389-673</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10379</orderid> <productid>41</productid> <unitprice>7.7000</unitprice> <quantity>8</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10379</orderid> <productid>63</productid> <unitprice>35.1000</unitprice> <quantity>16</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10379</orderid> <productid>65</productid> <unitprice>16.8000</unitprice> <quantity>20</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10421</orderid> <customerid>QUEDE</customerid> <employeeid>8</employeeid> <orderdate>1997-01-21</orderdate> <requireddate>1997-03-04</requireddate> <shippeddate>1997-01-27</shippeddate> <shipvia>1</shipvia> <freight>99.2300</freight> <shipname>Que Delícia</shipname> <shipaddress>Rua da Panificadora, 12</shipaddress> <shipcity>Rio de Janeiro</shipcity> <shipregion>RJ</shipregion> <shippostalcode>02389-673</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10421</orderid> <productid>19</productid> <unitprice>7.3000</unitprice> <quantity>4</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10421</orderid> <productid>26</productid> <unitprice>24.9000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10421</orderid> <productid>53</productid> <unitprice>26.2000</unitprice> <quantity>15</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10421</orderid> <productid>77</productid> <unitprice>10.4000</unitprice> <quantity>10</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10587</orderid> <customerid>QUEDE</customerid> <employeeid>1</employeeid> <orderdate>1997-07-02</orderdate> <requireddate>1997-07-30</requireddate> <shippeddate>1997-07-09</shippeddate> <shipvia>1</shipvia> <freight>62.5200</freight> <shipname>Que Delícia</shipname> <shipaddress>Rua da Panificadora, 12</shipaddress> <shipcity>Rio de Janeiro</shipcity> <shipregion>RJ</shipregion> <shippostalcode>02389-673</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10587</orderid> <productid>26</productid> <unitprice>31.2300</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10587</orderid> <productid>35</productid> <unitprice>18.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10587</orderid> <productid>77</productid> <unitprice>13.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10647</orderid> <customerid>QUEDE</customerid> <employeeid>4</employeeid> <orderdate>1997-08-27</orderdate> <requireddate>1997-09-10</requireddate> <shippeddate>1997-09-03</shippeddate> <shipvia>2</shipvia> <freight>45.5400</freight> <shipname>Que Delícia</shipname> <shipaddress>Rua da Panificadora, 12</shipaddress> <shipcity>Rio de Janeiro</shipcity> <shipregion>RJ</shipregion> <shippostalcode>02389-673</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10647</orderid> <productid>19</productid> <unitprice>9.2000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10647</orderid> <productid>39</productid> <unitprice>18.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10720</orderid> <customerid>QUEDE</customerid> <employeeid>8</employeeid> <orderdate>1997-10-28</orderdate> <requireddate>1997-11-11</requireddate> <shippeddate>1997-11-05</shippeddate> <shipvia>2</shipvia> <freight>9.5300</freight> <shipname>Que Delícia</shipname> <shipaddress>Rua da Panificadora, 12</shipaddress> <shipcity>Rio de Janeiro</shipcity> <shipregion>RJ</shipregion> <shippostalcode>02389-673</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10720</orderid> <productid>35</productid> <unitprice>18.0000</unitprice> <quantity>21</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10720</orderid> <productid>71</productid> <unitprice>21.5000</unitprice> <quantity>8</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10794</orderid> <customerid>QUEDE</customerid> <employeeid>6</employeeid> <orderdate>1997-12-24</orderdate> <requireddate>1998-01-21</requireddate> <shippeddate>1998-01-02</shippeddate> <shipvia>1</shipvia> <freight>21.4900</freight> <shipname>Que Delícia</shipname> <shipaddress>Rua da Panificadora, 12</shipaddress> <shipcity>Rio de Janeiro</shipcity> <shipregion>RJ</shipregion> <shippostalcode>02389-673</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10794</orderid> <productid>14</productid> <unitprice>23.2500</unitprice> <quantity>15</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10794</orderid> <productid>54</productid> <unitprice>7.4500</unitprice> <quantity>6</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10989</orderid> <customerid>QUEDE</customerid> <employeeid>2</employeeid> <orderdate>1998-03-31</orderdate> <requireddate>1998-04-28</requireddate> <shippeddate>1998-04-02</shippeddate> <shipvia>1</shipvia> <freight>34.7600</freight> <shipname>Que Delícia</shipname> <shipaddress>Rua da Panificadora, 12</shipaddress> <shipcity>Rio de Janeiro</shipcity> <shipregion>RJ</shipregion> <shippostalcode>02389-673</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10989</orderid> <productid>6</productid> <unitprice>25.0000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10989</orderid> <productid>11</productid> <unitprice>21.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10989</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>QUEEN</customerid> <companyname>Queen Cozinha</companyname> <contactname>Lúcia Carvalho</contactname> <contacttitle>Marketing Assistant</contacttitle> <address>Alameda dos Canàrios, 891</address> <city>Sao Paulo</city> <region>SP</region> <postalcode>05487-020</postalcode> <country>Brazil</country> <phone>(11) 555-1189</phone> <orders> <orderid>10372</orderid> <customerid>QUEEN</customerid> <employeeid>5</employeeid> <orderdate>1996-12-04</orderdate> <requireddate>1997-01-01</requireddate> <shippeddate>1996-12-09</shippeddate> <shipvia>2</shipvia> <freight>890.7800</freight> <shipname>Queen Cozinha</shipname> <shipaddress>Alameda dos Canàrios, 891</shipaddress> <shipcity>Sao Paulo</shipcity> <shipregion>SP</shipregion> <shippostalcode>05487-020</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10372</orderid> <productid>20</productid> <unitprice>64.8000</unitprice> <quantity>12</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10372</orderid> <productid>38</productid> <unitprice>210.8000</unitprice> <quantity>40</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10372</orderid> <productid>60</productid> <unitprice>27.2000</unitprice> <quantity>70</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10372</orderid> <productid>72</productid> <unitprice>27.8000</unitprice> <quantity>42</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10406</orderid> <customerid>QUEEN</customerid> <employeeid>7</employeeid> <orderdate>1997-01-07</orderdate> <requireddate>1997-02-18</requireddate> <shippeddate>1997-01-13</shippeddate> <shipvia>1</shipvia> <freight>108.0400</freight> <shipname>Queen Cozinha</shipname> <shipaddress>Alameda dos Canàrios, 891</shipaddress> <shipcity>Sao Paulo</shipcity> <shipregion>SP</shipregion> <shippostalcode>05487-020</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10406</orderid> <productid>1</productid> <unitprice>14.4000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10406</orderid> <productid>21</productid> <unitprice>8.0000</unitprice> <quantity>30</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10406</orderid> <productid>28</productid> <unitprice>36.4000</unitprice> <quantity>42</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10406</orderid> <productid>36</productid> <unitprice>15.2000</unitprice> <quantity>5</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10406</orderid> <productid>40</productid> <unitprice>14.7000</unitprice> <quantity>2</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10487</orderid> <customerid>QUEEN</customerid> <employeeid>2</employeeid> <orderdate>1997-03-26</orderdate> <requireddate>1997-04-23</requireddate> <shippeddate>1997-03-28</shippeddate> <shipvia>2</shipvia> <freight>71.0700</freight> <shipname>Queen Cozinha</shipname> <shipaddress>Alameda dos Canàrios, 891</shipaddress> <shipcity>Sao Paulo</shipcity> <shipregion>SP</shipregion> <shippostalcode>05487-020</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10487</orderid> <productid>19</productid> <unitprice>7.3000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10487</orderid> <productid>26</productid> <unitprice>24.9000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10487</orderid> <productid>54</productid> <unitprice>5.9000</unitprice> <quantity>24</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10637</orderid> <customerid>QUEEN</customerid> <employeeid>6</employeeid> <orderdate>1997-08-19</orderdate> <requireddate>1997-09-16</requireddate> <shippeddate>1997-08-26</shippeddate> <shipvia>1</shipvia> <freight>201.2900</freight> <shipname>Queen Cozinha</shipname> <shipaddress>Alameda dos Canàrios, 891</shipaddress> <shipcity>Sao Paulo</shipcity> <shipregion>SP</shipregion> <shippostalcode>05487-020</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10637</orderid> <productid>11</productid> <unitprice>21.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10637</orderid> <productid>50</productid> <unitprice>16.2500</unitprice> <quantity>25</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10637</orderid> <productid>56</productid> <unitprice>38.0000</unitprice> <quantity>60</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10659</orderid> <customerid>QUEEN</customerid> <employeeid>7</employeeid> <orderdate>1997-09-05</orderdate> <requireddate>1997-10-03</requireddate> <shippeddate>1997-09-10</shippeddate> <shipvia>2</shipvia> <freight>105.8100</freight> <shipname>Queen Cozinha</shipname> <shipaddress>Alameda dos Canàrios, 891</shipaddress> <shipcity>Sao Paulo</shipcity> <shipregion>SP</shipregion> <shippostalcode>05487-020</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10659</orderid> <productid>31</productid> <unitprice>12.5000</unitprice> <quantity>20</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10659</orderid> <productid>40</productid> <unitprice>18.4000</unitprice> <quantity>24</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10659</orderid> <productid>70</productid> <unitprice>15.0000</unitprice> <quantity>40</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10704</orderid> <customerid>QUEEN</customerid> <employeeid>6</employeeid> <orderdate>1997-10-14</orderdate> <requireddate>1997-11-11</requireddate> <shippeddate>1997-11-07</shippeddate> <shipvia>1</shipvia> <freight>4.7800</freight> <shipname>Queen Cozinha</shipname> <shipaddress>Alameda dos Canàrios, 891</shipaddress> <shipcity>Sao Paulo</shipcity> <shipregion>SP</shipregion> <shippostalcode>05487-020</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10704</orderid> <productid>4</productid> <unitprice>22.0000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10704</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10704</orderid> <productid>48</productid> <unitprice>12.7500</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10728</orderid> <customerid>QUEEN</customerid> <employeeid>4</employeeid> <orderdate>1997-11-04</orderdate> <requireddate>1997-12-02</requireddate> <shippeddate>1997-11-11</shippeddate> <shipvia>2</shipvia> <freight>58.3300</freight> <shipname>Queen Cozinha</shipname> <shipaddress>Alameda dos Canàrios, 891</shipaddress> <shipcity>Sao Paulo</shipcity> <shipregion>SP</shipregion> <shippostalcode>05487-020</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10728</orderid> <productid>30</productid> <unitprice>25.8900</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10728</orderid> <productid>40</productid> <unitprice>18.4000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10728</orderid> <productid>55</productid> <unitprice>24.0000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10728</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10786</orderid> <customerid>QUEEN</customerid> <employeeid>8</employeeid> <orderdate>1997-12-19</orderdate> <requireddate>1998-01-16</requireddate> <shippeddate>1997-12-23</shippeddate> <shipvia>1</shipvia> <freight>110.8700</freight> <shipname>Queen Cozinha</shipname> <shipaddress>Alameda dos Canàrios, 891</shipaddress> <shipcity>Sao Paulo</shipcity> <shipregion>SP</shipregion> <shippostalcode>05487-020</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10786</orderid> <productid>8</productid> <unitprice>40.0000</unitprice> <quantity>30</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10786</orderid> <productid>30</productid> <unitprice>25.8900</unitprice> <quantity>15</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10786</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>42</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10868</orderid> <customerid>QUEEN</customerid> <employeeid>7</employeeid> <orderdate>1998-02-04</orderdate> <requireddate>1998-03-04</requireddate> <shippeddate>1998-02-23</shippeddate> <shipvia>2</shipvia> <freight>191.2700</freight> <shipname>Queen Cozinha</shipname> <shipaddress>Alameda dos Canàrios, 891</shipaddress> <shipcity>Sao Paulo</shipcity> <shipregion>SP</shipregion> <shippostalcode>05487-020</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10868</orderid> <productid>26</productid> <unitprice>31.2300</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10868</orderid> <productid>35</productid> <unitprice>18.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10868</orderid> <productid>49</productid> <unitprice>20.0000</unitprice> <quantity>42</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10913</orderid> <customerid>QUEEN</customerid> <employeeid>4</employeeid> <orderdate>1998-02-26</orderdate> <requireddate>1998-03-26</requireddate> <shippeddate>1998-03-04</shippeddate> <shipvia>1</shipvia> <freight>33.0500</freight> <shipname>Queen Cozinha</shipname> <shipaddress>Alameda dos Canàrios, 891</shipaddress> <shipcity>Sao Paulo</shipcity> <shipregion>SP</shipregion> <shippostalcode>05487-020</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10913</orderid> <productid>4</productid> <unitprice>22.0000</unitprice> <quantity>30</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10913</orderid> <productid>33</productid> <unitprice>2.5000</unitprice> <quantity>40</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10913</orderid> <productid>58</productid> <unitprice>13.2500</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10914</orderid> <customerid>QUEEN</customerid> <employeeid>6</employeeid> <orderdate>1998-02-27</orderdate> <requireddate>1998-03-27</requireddate> <shippeddate>1998-03-02</shippeddate> <shipvia>1</shipvia> <freight>21.1900</freight> <shipname>Queen Cozinha</shipname> <shipaddress>Alameda dos Canàrios, 891</shipaddress> <shipcity>Sao Paulo</shipcity> <shipregion>SP</shipregion> <shippostalcode>05487-020</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10914</orderid> <productid>71</productid> <unitprice>21.5000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10961</orderid> <customerid>QUEEN</customerid> <employeeid>8</employeeid> <orderdate>1998-03-19</orderdate> <requireddate>1998-04-16</requireddate> <shippeddate>1998-03-30</shippeddate> <shipvia>1</shipvia> <freight>104.4700</freight> <shipname>Queen Cozinha</shipname> <shipaddress>Alameda dos Canàrios, 891</shipaddress> <shipcity>Sao Paulo</shipcity> <shipregion>SP</shipregion> <shippostalcode>05487-020</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10961</orderid> <productid>52</productid> <unitprice>7.0000</unitprice> <quantity>6</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10961</orderid> <productid>76</productid> <unitprice>18.0000</unitprice> <quantity>60</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11068</orderid> <customerid>QUEEN</customerid> <employeeid>8</employeeid> <orderdate>1998-05-04</orderdate> <requireddate>1998-06-01</requireddate> <shipvia>2</shipvia> <freight>81.7500</freight> <shipname>Queen Cozinha</shipname> <shipaddress>Alameda dos Canàrios, 891</shipaddress> <shipcity>Sao Paulo</shipcity> <shipregion>SP</shipregion> <shippostalcode>05487-020</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>11068</orderid> <productid>28</productid> <unitprice>45.6000</unitprice> <quantity>8</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>11068</orderid> <productid>43</productid> <unitprice>46.0000</unitprice> <quantity>36</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>11068</orderid> <productid>77</productid> <unitprice>13.0000</unitprice> <quantity>28</quantity> <discount>0.15000</discount> </orderdetails> </orders> </customers> <customers> <customerid>QUICK</customerid> <companyname>QUICK-Stop</companyname> <contactname>Horst Kloss</contactname> <contacttitle>Accounting Manager</contacttitle> <address>Taucherstraße 10</address> <city>Cunewalde</city> <postalcode>01307</postalcode> <country>Germany</country> <phone>0372-035188</phone> <orders> <orderid>10273</orderid> <customerid>QUICK</customerid> <employeeid>3</employeeid> <orderdate>1996-08-05</orderdate> <requireddate>1996-09-02</requireddate> <shippeddate>1996-08-12</shippeddate> <shipvia>3</shipvia> <freight>76.0700</freight> <shipname>QUICK-Stop</shipname> <shipaddress>Taucherstraße 10</shipaddress> <shipcity>Cunewalde</shipcity> <shippostalcode>01307</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10273</orderid> <productid>10</productid> <unitprice>24.8000</unitprice> <quantity>24</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10273</orderid> <productid>31</productid> <unitprice>10.0000</unitprice> <quantity>15</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10273</orderid> <productid>33</productid> <unitprice>2.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10273</orderid> <productid>40</productid> <unitprice>14.7000</unitprice> <quantity>60</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10273</orderid> <productid>76</productid> <unitprice>14.4000</unitprice> <quantity>33</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10285</orderid> <customerid>QUICK</customerid> <employeeid>1</employeeid> <orderdate>1996-08-20</orderdate> <requireddate>1996-09-17</requireddate> <shippeddate>1996-08-26</shippeddate> <shipvia>2</shipvia> <freight>76.8300</freight> <shipname>QUICK-Stop</shipname> <shipaddress>Taucherstraße 10</shipaddress> <shipcity>Cunewalde</shipcity> <shippostalcode>01307</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10285</orderid> <productid>1</productid> <unitprice>14.4000</unitprice> <quantity>45</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10285</orderid> <productid>40</productid> <unitprice>14.7000</unitprice> <quantity>40</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10285</orderid> <productid>53</productid> <unitprice>26.2000</unitprice> <quantity>36</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10286</orderid> <customerid>QUICK</customerid> <employeeid>8</employeeid> <orderdate>1996-08-21</orderdate> <requireddate>1996-09-18</requireddate> <shippeddate>1996-08-30</shippeddate> <shipvia>3</shipvia> <freight>229.2400</freight> <shipname>QUICK-Stop</shipname> <shipaddress>Taucherstraße 10</shipaddress> <shipcity>Cunewalde</shipcity> <shippostalcode>01307</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10286</orderid> <productid>35</productid> <unitprice>14.4000</unitprice> <quantity>100</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10286</orderid> <productid>62</productid> <unitprice>39.4000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10313</orderid> <customerid>QUICK</customerid> <employeeid>2</employeeid> <orderdate>1996-09-24</orderdate> <requireddate>1996-10-22</requireddate> <shippeddate>1996-10-04</shippeddate> <shipvia>2</shipvia> <freight>1.9600</freight> <shipname>QUICK-Stop</shipname> <shipaddress>Taucherstraße 10</shipaddress> <shipcity>Cunewalde</shipcity> <shippostalcode>01307</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10313</orderid> <productid>36</productid> <unitprice>15.2000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10345</orderid> <customerid>QUICK</customerid> <employeeid>2</employeeid> <orderdate>1996-11-04</orderdate> <requireddate>1996-12-02</requireddate> <shippeddate>1996-11-11</shippeddate> <shipvia>2</shipvia> <freight>249.0600</freight> <shipname>QUICK-Stop</shipname> <shipaddress>Taucherstraße 10</shipaddress> <shipcity>Cunewalde</shipcity> <shippostalcode>01307</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10345</orderid> <productid>8</productid> <unitprice>32.0000</unitprice> <quantity>70</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10345</orderid> <productid>19</productid> <unitprice>7.3000</unitprice> <quantity>80</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10345</orderid> <productid>42</productid> <unitprice>11.2000</unitprice> <quantity>9</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10361</orderid> <customerid>QUICK</customerid> <employeeid>1</employeeid> <orderdate>1996-11-22</orderdate> <requireddate>1996-12-20</requireddate> <shippeddate>1996-12-03</shippeddate> <shipvia>2</shipvia> <freight>183.1700</freight> <shipname>QUICK-Stop</shipname> <shipaddress>Taucherstraße 10</shipaddress> <shipcity>Cunewalde</shipcity> <shippostalcode>01307</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10361</orderid> <productid>39</productid> <unitprice>14.4000</unitprice> <quantity>54</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10361</orderid> <productid>60</productid> <unitprice>27.2000</unitprice> <quantity>55</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10418</orderid> <customerid>QUICK</customerid> <employeeid>4</employeeid> <orderdate>1997-01-17</orderdate> <requireddate>1997-02-14</requireddate> <shippeddate>1997-01-24</shippeddate> <shipvia>1</shipvia> <freight>17.5500</freight> <shipname>QUICK-Stop</shipname> <shipaddress>Taucherstraße 10</shipaddress> <shipcity>Cunewalde</shipcity> <shippostalcode>01307</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10418</orderid> <productid>2</productid> <unitprice>15.2000</unitprice> <quantity>60</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10418</orderid> <productid>47</productid> <unitprice>7.6000</unitprice> <quantity>55</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10418</orderid> <productid>61</productid> <unitprice>22.8000</unitprice> <quantity>16</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10418</orderid> <productid>74</productid> <unitprice>8.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10451</orderid> <customerid>QUICK</customerid> <employeeid>4</employeeid> <orderdate>1997-02-19</orderdate> <requireddate>1997-03-05</requireddate> <shippeddate>1997-03-12</shippeddate> <shipvia>3</shipvia> <freight>189.0900</freight> <shipname>QUICK-Stop</shipname> <shipaddress>Taucherstraße 10</shipaddress> <shipcity>Cunewalde</shipcity> <shippostalcode>01307</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10451</orderid> <productid>55</productid> <unitprice>19.2000</unitprice> <quantity>120</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10451</orderid> <productid>64</productid> <unitprice>26.6000</unitprice> <quantity>35</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10451</orderid> <productid>65</productid> <unitprice>16.8000</unitprice> <quantity>28</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10451</orderid> <productid>77</productid> <unitprice>10.4000</unitprice> <quantity>55</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10515</orderid> <customerid>QUICK</customerid> <employeeid>2</employeeid> <orderdate>1997-04-23</orderdate> <requireddate>1997-05-07</requireddate> <shippeddate>1997-05-23</shippeddate> <shipvia>1</shipvia> <freight>204.4700</freight> <shipname>QUICK-Stop</shipname> <shipaddress>Taucherstraße 10</shipaddress> <shipcity>Cunewalde</shipcity> <shippostalcode>01307</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10515</orderid> <productid>9</productid> <unitprice>97.0000</unitprice> <quantity>16</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10515</orderid> <productid>16</productid> <unitprice>17.4500</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10515</orderid> <productid>27</productid> <unitprice>43.9000</unitprice> <quantity>120</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10515</orderid> <productid>33</productid> <unitprice>2.5000</unitprice> <quantity>16</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10515</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>84</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10527</orderid> <customerid>QUICK</customerid> <employeeid>7</employeeid> <orderdate>1997-05-05</orderdate> <requireddate>1997-06-02</requireddate> <shippeddate>1997-05-07</shippeddate> <shipvia>1</shipvia> <freight>41.9000</freight> <shipname>QUICK-Stop</shipname> <shipaddress>Taucherstraße 10</shipaddress> <shipcity>Cunewalde</shipcity> <shippostalcode>01307</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10527</orderid> <productid>4</productid> <unitprice>22.0000</unitprice> <quantity>50</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10527</orderid> <productid>36</productid> <unitprice>19.0000</unitprice> <quantity>30</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10540</orderid> <customerid>QUICK</customerid> <employeeid>3</employeeid> <orderdate>1997-05-19</orderdate> <requireddate>1997-06-16</requireddate> <shippeddate>1997-06-13</shippeddate> <shipvia>3</shipvia> <freight>1007.6400</freight> <shipname>QUICK-Stop</shipname> <shipaddress>Taucherstraße 10</shipaddress> <shipcity>Cunewalde</shipcity> <shippostalcode>01307</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10540</orderid> <productid>3</productid> <unitprice>10.0000</unitprice> <quantity>60</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10540</orderid> <productid>26</productid> <unitprice>31.2300</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10540</orderid> <productid>38</productid> <unitprice>263.5000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10540</orderid> <productid>68</productid> <unitprice>12.5000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10549</orderid> <customerid>QUICK</customerid> <employeeid>5</employeeid> <orderdate>1997-05-27</orderdate> <requireddate>1997-06-10</requireddate> <shippeddate>1997-05-30</shippeddate> <shipvia>1</shipvia> <freight>171.2400</freight> <shipname>QUICK-Stop</shipname> <shipaddress>Taucherstraße 10</shipaddress> <shipcity>Cunewalde</shipcity> <shippostalcode>01307</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10549</orderid> <productid>31</productid> <unitprice>12.5000</unitprice> <quantity>55</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10549</orderid> <productid>45</productid> <unitprice>9.5000</unitprice> <quantity>100</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10549</orderid> <productid>51</productid> <unitprice>53.0000</unitprice> <quantity>48</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10588</orderid> <customerid>QUICK</customerid> <employeeid>2</employeeid> <orderdate>1997-07-03</orderdate> <requireddate>1997-07-31</requireddate> <shippeddate>1997-07-10</shippeddate> <shipvia>3</shipvia> <freight>194.6700</freight> <shipname>QUICK-Stop</shipname> <shipaddress>Taucherstraße 10</shipaddress> <shipcity>Cunewalde</shipcity> <shippostalcode>01307</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10588</orderid> <productid>18</productid> <unitprice>62.5000</unitprice> <quantity>40</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10588</orderid> <productid>42</productid> <unitprice>14.0000</unitprice> <quantity>100</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10658</orderid> <customerid>QUICK</customerid> <employeeid>4</employeeid> <orderdate>1997-09-05</orderdate> <requireddate>1997-10-03</requireddate> <shippeddate>1997-09-08</shippeddate> <shipvia>1</shipvia> <freight>364.1500</freight> <shipname>QUICK-Stop</shipname> <shipaddress>Taucherstraße 10</shipaddress> <shipcity>Cunewalde</shipcity> <shippostalcode>01307</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10658</orderid> <productid>21</productid> <unitprice>10.0000</unitprice> <quantity>60</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10658</orderid> <productid>40</productid> <unitprice>18.4000</unitprice> <quantity>70</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10658</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>55</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10658</orderid> <productid>77</productid> <unitprice>13.0000</unitprice> <quantity>70</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10691</orderid> <customerid>QUICK</customerid> <employeeid>2</employeeid> <orderdate>1997-10-03</orderdate> <requireddate>1997-11-14</requireddate> <shippeddate>1997-10-22</shippeddate> <shipvia>2</shipvia> <freight>810.0500</freight> <shipname>QUICK-Stop</shipname> <shipaddress>Taucherstraße 10</shipaddress> <shipcity>Cunewalde</shipcity> <shippostalcode>01307</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10691</orderid> <productid>1</productid> <unitprice>18.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10691</orderid> <productid>29</productid> <unitprice>123.7900</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10691</orderid> <productid>43</productid> <unitprice>46.0000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10691</orderid> <productid>44</productid> <unitprice>19.4500</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10691</orderid> <productid>62</productid> <unitprice>49.3000</unitprice> <quantity>48</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10694</orderid> <customerid>QUICK</customerid> <employeeid>8</employeeid> <orderdate>1997-10-06</orderdate> <requireddate>1997-11-03</requireddate> <shippeddate>1997-10-09</shippeddate> <shipvia>3</shipvia> <freight>398.3600</freight> <shipname>QUICK-Stop</shipname> <shipaddress>Taucherstraße 10</shipaddress> <shipcity>Cunewalde</shipcity> <shippostalcode>01307</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10694</orderid> <productid>7</productid> <unitprice>30.0000</unitprice> <quantity>90</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10694</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10694</orderid> <productid>70</productid> <unitprice>15.0000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10721</orderid> <customerid>QUICK</customerid> <employeeid>5</employeeid> <orderdate>1997-10-29</orderdate> <requireddate>1997-11-26</requireddate> <shippeddate>1997-10-31</shippeddate> <shipvia>3</shipvia> <freight>48.9200</freight> <shipname>QUICK-Stop</shipname> <shipaddress>Taucherstraße 10</shipaddress> <shipcity>Cunewalde</shipcity> <shippostalcode>01307</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10721</orderid> <productid>44</productid> <unitprice>19.4500</unitprice> <quantity>50</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10745</orderid> <customerid>QUICK</customerid> <employeeid>9</employeeid> <orderdate>1997-11-18</orderdate> <requireddate>1997-12-16</requireddate> <shippeddate>1997-11-27</shippeddate> <shipvia>1</shipvia> <freight>3.5200</freight> <shipname>QUICK-Stop</shipname> <shipaddress>Taucherstraße 10</shipaddress> <shipcity>Cunewalde</shipcity> <shippostalcode>01307</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10745</orderid> <productid>18</productid> <unitprice>62.5000</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10745</orderid> <productid>44</productid> <unitprice>19.4500</unitprice> <quantity>16</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10745</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>45</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10745</orderid> <productid>72</productid> <unitprice>34.8000</unitprice> <quantity>7</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10765</orderid> <customerid>QUICK</customerid> <employeeid>3</employeeid> <orderdate>1997-12-04</orderdate> <requireddate>1998-01-01</requireddate> <shippeddate>1997-12-09</shippeddate> <shipvia>3</shipvia> <freight>42.7400</freight> <shipname>QUICK-Stop</shipname> <shipaddress>Taucherstraße 10</shipaddress> <shipcity>Cunewalde</shipcity> <shippostalcode>01307</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10765</orderid> <productid>65</productid> <unitprice>21.0500</unitprice> <quantity>80</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10788</orderid> <customerid>QUICK</customerid> <employeeid>1</employeeid> <orderdate>1997-12-22</orderdate> <requireddate>1998-01-19</requireddate> <shippeddate>1998-01-19</shippeddate> <shipvia>2</shipvia> <freight>42.7000</freight> <shipname>QUICK-Stop</shipname> <shipaddress>Taucherstraße 10</shipaddress> <shipcity>Cunewalde</shipcity> <shippostalcode>01307</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10788</orderid> <productid>19</productid> <unitprice>9.2000</unitprice> <quantity>50</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10788</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>40</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10845</orderid> <customerid>QUICK</customerid> <employeeid>8</employeeid> <orderdate>1998-01-21</orderdate> <requireddate>1998-02-04</requireddate> <shippeddate>1998-01-30</shippeddate> <shipvia>1</shipvia> <freight>212.9800</freight> <shipname>QUICK-Stop</shipname> <shipaddress>Taucherstraße 10</shipaddress> <shipcity>Cunewalde</shipcity> <shippostalcode>01307</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10845</orderid> <productid>23</productid> <unitprice>9.0000</unitprice> <quantity>70</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10845</orderid> <productid>35</productid> <unitprice>18.0000</unitprice> <quantity>25</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10845</orderid> <productid>42</productid> <unitprice>14.0000</unitprice> <quantity>42</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10845</orderid> <productid>58</productid> <unitprice>13.2500</unitprice> <quantity>60</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10845</orderid> <productid>64</productid> <unitprice>33.2500</unitprice> <quantity>48</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10865</orderid> <customerid>QUICK</customerid> <employeeid>2</employeeid> <orderdate>1998-02-02</orderdate> <requireddate>1998-02-16</requireddate> <shippeddate>1998-02-12</shippeddate> <shipvia>1</shipvia> <freight>348.1400</freight> <shipname>QUICK-Stop</shipname> <shipaddress>Taucherstraße 10</shipaddress> <shipcity>Cunewalde</shipcity> <shippostalcode>01307</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10865</orderid> <productid>38</productid> <unitprice>263.5000</unitprice> <quantity>60</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10865</orderid> <productid>39</productid> <unitprice>18.0000</unitprice> <quantity>80</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10878</orderid> <customerid>QUICK</customerid> <employeeid>4</employeeid> <orderdate>1998-02-10</orderdate> <requireddate>1998-03-10</requireddate> <shippeddate>1998-02-12</shippeddate> <shipvia>1</shipvia> <freight>46.6900</freight> <shipname>QUICK-Stop</shipname> <shipaddress>Taucherstraße 10</shipaddress> <shipcity>Cunewalde</shipcity> <shippostalcode>01307</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10878</orderid> <productid>20</productid> <unitprice>81.0000</unitprice> <quantity>20</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10938</orderid> <customerid>QUICK</customerid> <employeeid>3</employeeid> <orderdate>1998-03-10</orderdate> <requireddate>1998-04-07</requireddate> <shippeddate>1998-03-16</shippeddate> <shipvia>2</shipvia> <freight>31.8900</freight> <shipname>QUICK-Stop</shipname> <shipaddress>Taucherstraße 10</shipaddress> <shipcity>Cunewalde</shipcity> <shippostalcode>01307</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10938</orderid> <productid>13</productid> <unitprice>6.0000</unitprice> <quantity>20</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10938</orderid> <productid>43</productid> <unitprice>46.0000</unitprice> <quantity>24</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10938</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>49</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10938</orderid> <productid>71</productid> <unitprice>21.5000</unitprice> <quantity>35</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10962</orderid> <customerid>QUICK</customerid> <employeeid>8</employeeid> <orderdate>1998-03-19</orderdate> <requireddate>1998-04-16</requireddate> <shippeddate>1998-03-23</shippeddate> <shipvia>2</shipvia> <freight>275.7900</freight> <shipname>QUICK-Stop</shipname> <shipaddress>Taucherstraße 10</shipaddress> <shipcity>Cunewalde</shipcity> <shippostalcode>01307</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10962</orderid> <productid>7</productid> <unitprice>30.0000</unitprice> <quantity>45</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10962</orderid> <productid>13</productid> <unitprice>6.0000</unitprice> <quantity>77</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10962</orderid> <productid>53</productid> <unitprice>32.8000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10962</orderid> <productid>69</productid> <unitprice>36.0000</unitprice> <quantity>9</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10962</orderid> <productid>76</productid> <unitprice>18.0000</unitprice> <quantity>44</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10991</orderid> <customerid>QUICK</customerid> <employeeid>1</employeeid> <orderdate>1998-04-01</orderdate> <requireddate>1998-04-29</requireddate> <shippeddate>1998-04-07</shippeddate> <shipvia>1</shipvia> <freight>38.5100</freight> <shipname>QUICK-Stop</shipname> <shipaddress>Taucherstraße 10</shipaddress> <shipcity>Cunewalde</shipcity> <shippostalcode>01307</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10991</orderid> <productid>2</productid> <unitprice>19.0000</unitprice> <quantity>50</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10991</orderid> <productid>70</productid> <unitprice>15.0000</unitprice> <quantity>20</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10991</orderid> <productid>76</productid> <unitprice>18.0000</unitprice> <quantity>90</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10996</orderid> <customerid>QUICK</customerid> <employeeid>4</employeeid> <orderdate>1998-04-02</orderdate> <requireddate>1998-04-30</requireddate> <shippeddate>1998-04-10</shippeddate> <shipvia>2</shipvia> <freight>1.1200</freight> <shipname>QUICK-Stop</shipname> <shipaddress>Taucherstraße 10</shipaddress> <shipcity>Cunewalde</shipcity> <shippostalcode>01307</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10996</orderid> <productid>42</productid> <unitprice>14.0000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11021</orderid> <customerid>QUICK</customerid> <employeeid>3</employeeid> <orderdate>1998-04-14</orderdate> <requireddate>1998-05-12</requireddate> <shippeddate>1998-04-21</shippeddate> <shipvia>1</shipvia> <freight>297.1800</freight> <shipname>QUICK-Stop</shipname> <shipaddress>Taucherstraße 10</shipaddress> <shipcity>Cunewalde</shipcity> <shippostalcode>01307</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>11021</orderid> <productid>2</productid> <unitprice>19.0000</unitprice> <quantity>11</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>11021</orderid> <productid>20</productid> <unitprice>81.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11021</orderid> <productid>26</productid> <unitprice>31.2300</unitprice> <quantity>63</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11021</orderid> <productid>51</productid> <unitprice>53.0000</unitprice> <quantity>44</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>11021</orderid> <productid>72</productid> <unitprice>34.8000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>RANCH</customerid> <companyname>Rancho grande</companyname> <contactname>Sergio Gutiérrez</contactname> <contacttitle>Sales Representative</contacttitle> <address>Av. del Libertador 900</address> <city>Buenos Aires</city> <postalcode>1010</postalcode> <country>Argentina</country> <phone>(1) 123-5555</phone> <fax>(1) 123-5556</fax> <orders> <orderid>10448</orderid> <customerid>RANCH</customerid> <employeeid>4</employeeid> <orderdate>1997-02-17</orderdate> <requireddate>1997-03-17</requireddate> <shippeddate>1997-02-24</shippeddate> <shipvia>2</shipvia> <freight>38.8200</freight> <shipname>Rancho grande</shipname> <shipaddress>Av. del Libertador 900</shipaddress> <shipcity>Buenos Aires</shipcity> <shippostalcode>1010</shippostalcode> <shipcountry>Argentina</shipcountry> <orderdetails> <orderid>10448</orderid> <productid>26</productid> <unitprice>24.9000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10448</orderid> <productid>40</productid> <unitprice>14.7000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10716</orderid> <customerid>RANCH</customerid> <employeeid>4</employeeid> <orderdate>1997-10-24</orderdate> <requireddate>1997-11-21</requireddate> <shippeddate>1997-10-27</shippeddate> <shipvia>2</shipvia> <freight>22.5700</freight> <shipname>Rancho grande</shipname> <shipaddress>Av. del Libertador 900</shipaddress> <shipcity>Buenos Aires</shipcity> <shippostalcode>1010</shippostalcode> <shipcountry>Argentina</shipcountry> <orderdetails> <orderid>10716</orderid> <productid>21</productid> <unitprice>10.0000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10716</orderid> <productid>51</productid> <unitprice>53.0000</unitprice> <quantity>7</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10716</orderid> <productid>61</productid> <unitprice>28.5000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10828</orderid> <customerid>RANCH</customerid> <employeeid>9</employeeid> <orderdate>1998-01-13</orderdate> <requireddate>1998-01-27</requireddate> <shippeddate>1998-02-04</shippeddate> <shipvia>1</shipvia> <freight>90.8500</freight> <shipname>Rancho grande</shipname> <shipaddress>Av. del Libertador 900</shipaddress> <shipcity>Buenos Aires</shipcity> <shippostalcode>1010</shippostalcode> <shipcountry>Argentina</shipcountry> <orderdetails> <orderid>10828</orderid> <productid>20</productid> <unitprice>81.0000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10828</orderid> <productid>38</productid> <unitprice>263.5000</unitprice> <quantity>2</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10916</orderid> <customerid>RANCH</customerid> <employeeid>1</employeeid> <orderdate>1998-02-27</orderdate> <requireddate>1998-03-27</requireddate> <shippeddate>1998-03-09</shippeddate> <shipvia>2</shipvia> <freight>63.7700</freight> <shipname>Rancho grande</shipname> <shipaddress>Av. del Libertador 900</shipaddress> <shipcity>Buenos Aires</shipcity> <shippostalcode>1010</shippostalcode> <shipcountry>Argentina</shipcountry> <orderdetails> <orderid>10916</orderid> <productid>16</productid> <unitprice>17.4500</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10916</orderid> <productid>32</productid> <unitprice>32.0000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10916</orderid> <productid>57</productid> <unitprice>19.5000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11019</orderid> <customerid>RANCH</customerid> <employeeid>6</employeeid> <orderdate>1998-04-13</orderdate> <requireddate>1998-05-11</requireddate> <shipvia>3</shipvia> <freight>3.1700</freight> <shipname>Rancho grande</shipname> <shipaddress>Av. del Libertador 900</shipaddress> <shipcity>Buenos Aires</shipcity> <shippostalcode>1010</shippostalcode> <shipcountry>Argentina</shipcountry> <orderdetails> <orderid>11019</orderid> <productid>46</productid> <unitprice>12.0000</unitprice> <quantity>3</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11019</orderid> <productid>49</productid> <unitprice>20.0000</unitprice> <quantity>2</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>RATTC</customerid> <companyname>Rattlesnake Canyon Grocery</companyname> <contactname>Paula Wilson</contactname> <contacttitle>Assistant Sales Representative</contacttitle> <address>2817 Milton Dr.</address> <city>Albuquerque</city> <region>NM</region> <postalcode>87110</postalcode> <country>USA</country> <phone>(505) 555-5939</phone> <fax>(505) 555-3620</fax> <orders> <orderid>10262</orderid> <customerid>RATTC</customerid> <employeeid>8</employeeid> <orderdate>1996-07-22</orderdate> <requireddate>1996-08-19</requireddate> <shippeddate>1996-07-25</shippeddate> <shipvia>3</shipvia> <freight>48.2900</freight> <shipname>Rattlesnake Canyon Grocery</shipname> <shipaddress>2817 Milton Dr.</shipaddress> <shipcity>Albuquerque</shipcity> <shipregion>NM</shipregion> <shippostalcode>87110</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10262</orderid> <productid>5</productid> <unitprice>17.0000</unitprice> <quantity>12</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10262</orderid> <productid>7</productid> <unitprice>24.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10262</orderid> <productid>56</productid> <unitprice>30.4000</unitprice> <quantity>2</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10272</orderid> <customerid>RATTC</customerid> <employeeid>6</employeeid> <orderdate>1996-08-02</orderdate> <requireddate>1996-08-30</requireddate> <shippeddate>1996-08-06</shippeddate> <shipvia>2</shipvia> <freight>98.0300</freight> <shipname>Rattlesnake Canyon Grocery</shipname> <shipaddress>2817 Milton Dr.</shipaddress> <shipcity>Albuquerque</shipcity> <shipregion>NM</shipregion> <shippostalcode>87110</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10272</orderid> <productid>20</productid> <unitprice>64.8000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10272</orderid> <productid>31</productid> <unitprice>10.0000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10272</orderid> <productid>72</productid> <unitprice>27.8000</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10294</orderid> <customerid>RATTC</customerid> <employeeid>4</employeeid> <orderdate>1996-08-30</orderdate> <requireddate>1996-09-27</requireddate> <shippeddate>1996-09-05</shippeddate> <shipvia>2</shipvia> <freight>147.2600</freight> <shipname>Rattlesnake Canyon Grocery</shipname> <shipaddress>2817 Milton Dr.</shipaddress> <shipcity>Albuquerque</shipcity> <shipregion>NM</shipregion> <shippostalcode>87110</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10294</orderid> <productid>1</productid> <unitprice>14.4000</unitprice> <quantity>18</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10294</orderid> <productid>17</productid> <unitprice>31.2000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10294</orderid> <productid>43</productid> <unitprice>36.8000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10294</orderid> <productid>60</productid> <unitprice>27.2000</unitprice> <quantity>21</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10294</orderid> <productid>75</productid> <unitprice>6.2000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10314</orderid> <customerid>RATTC</customerid> <employeeid>1</employeeid> <orderdate>1996-09-25</orderdate> <requireddate>1996-10-23</requireddate> <shippeddate>1996-10-04</shippeddate> <shipvia>2</shipvia> <freight>74.1600</freight> <shipname>Rattlesnake Canyon Grocery</shipname> <shipaddress>2817 Milton Dr.</shipaddress> <shipcity>Albuquerque</shipcity> <shipregion>NM</shipregion> <shippostalcode>87110</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10314</orderid> <productid>32</productid> <unitprice>25.6000</unitprice> <quantity>40</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10314</orderid> <productid>58</productid> <unitprice>10.6000</unitprice> <quantity>30</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10314</orderid> <productid>62</productid> <unitprice>39.4000</unitprice> <quantity>25</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10316</orderid> <customerid>RATTC</customerid> <employeeid>1</employeeid> <orderdate>1996-09-27</orderdate> <requireddate>1996-10-25</requireddate> <shippeddate>1996-10-08</shippeddate> <shipvia>3</shipvia> <freight>150.1500</freight> <shipname>Rattlesnake Canyon Grocery</shipname> <shipaddress>2817 Milton Dr.</shipaddress> <shipcity>Albuquerque</shipcity> <shipregion>NM</shipregion> <shippostalcode>87110</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10316</orderid> <productid>41</productid> <unitprice>7.7000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10316</orderid> <productid>62</productid> <unitprice>39.4000</unitprice> <quantity>70</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10346</orderid> <customerid>RATTC</customerid> <employeeid>3</employeeid> <orderdate>1996-11-05</orderdate> <requireddate>1996-12-17</requireddate> <shippeddate>1996-11-08</shippeddate> <shipvia>3</shipvia> <freight>142.0800</freight> <shipname>Rattlesnake Canyon Grocery</shipname> <shipaddress>2817 Milton Dr.</shipaddress> <shipcity>Albuquerque</shipcity> <shipregion>NM</shipregion> <shippostalcode>87110</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10346</orderid> <productid>17</productid> <unitprice>31.2000</unitprice> <quantity>36</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10346</orderid> <productid>56</productid> <unitprice>30.4000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10401</orderid> <customerid>RATTC</customerid> <employeeid>1</employeeid> <orderdate>1997-01-01</orderdate> <requireddate>1997-01-29</requireddate> <shippeddate>1997-01-10</shippeddate> <shipvia>1</shipvia> <freight>12.5100</freight> <shipname>Rattlesnake Canyon Grocery</shipname> <shipaddress>2817 Milton Dr.</shipaddress> <shipcity>Albuquerque</shipcity> <shipregion>NM</shipregion> <shippostalcode>87110</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10401</orderid> <productid>30</productid> <unitprice>20.7000</unitprice> <quantity>18</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10401</orderid> <productid>56</productid> <unitprice>30.4000</unitprice> <quantity>70</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10401</orderid> <productid>65</productid> <unitprice>16.8000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10401</orderid> <productid>71</productid> <unitprice>17.2000</unitprice> <quantity>60</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10479</orderid> <customerid>RATTC</customerid> <employeeid>3</employeeid> <orderdate>1997-03-19</orderdate> <requireddate>1997-04-16</requireddate> <shippeddate>1997-03-21</shippeddate> <shipvia>3</shipvia> <freight>708.9500</freight> <shipname>Rattlesnake Canyon Grocery</shipname> <shipaddress>2817 Milton Dr.</shipaddress> <shipcity>Albuquerque</shipcity> <shipregion>NM</shipregion> <shippostalcode>87110</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10479</orderid> <productid>38</productid> <unitprice>210.8000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10479</orderid> <productid>53</productid> <unitprice>26.2000</unitprice> <quantity>28</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10479</orderid> <productid>59</productid> <unitprice>44.0000</unitprice> <quantity>60</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10479</orderid> <productid>64</productid> <unitprice>26.6000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10564</orderid> <customerid>RATTC</customerid> <employeeid>4</employeeid> <orderdate>1997-06-10</orderdate> <requireddate>1997-07-08</requireddate> <shippeddate>1997-06-16</shippeddate> <shipvia>3</shipvia> <freight>13.7500</freight> <shipname>Rattlesnake Canyon Grocery</shipname> <shipaddress>2817 Milton Dr.</shipaddress> <shipcity>Albuquerque</shipcity> <shipregion>NM</shipregion> <shippostalcode>87110</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10564</orderid> <productid>17</productid> <unitprice>39.0000</unitprice> <quantity>16</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10564</orderid> <productid>31</productid> <unitprice>12.5000</unitprice> <quantity>6</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10564</orderid> <productid>55</productid> <unitprice>24.0000</unitprice> <quantity>25</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10569</orderid> <customerid>RATTC</customerid> <employeeid>5</employeeid> <orderdate>1997-06-16</orderdate> <requireddate>1997-07-14</requireddate> <shippeddate>1997-07-11</shippeddate> <shipvia>1</shipvia> <freight>58.9800</freight> <shipname>Rattlesnake Canyon Grocery</shipname> <shipaddress>2817 Milton Dr.</shipaddress> <shipcity>Albuquerque</shipcity> <shipregion>NM</shipregion> <shippostalcode>87110</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10569</orderid> <productid>31</productid> <unitprice>12.5000</unitprice> <quantity>35</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10569</orderid> <productid>76</productid> <unitprice>18.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10598</orderid> <customerid>RATTC</customerid> <employeeid>1</employeeid> <orderdate>1997-07-14</orderdate> <requireddate>1997-08-11</requireddate> <shippeddate>1997-07-18</shippeddate> <shipvia>3</shipvia> <freight>44.4200</freight> <shipname>Rattlesnake Canyon Grocery</shipname> <shipaddress>2817 Milton Dr.</shipaddress> <shipcity>Albuquerque</shipcity> <shipregion>NM</shipregion> <shippostalcode>87110</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10598</orderid> <productid>27</productid> <unitprice>43.9000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10598</orderid> <productid>71</productid> <unitprice>21.5000</unitprice> <quantity>9</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10761</orderid> <customerid>RATTC</customerid> <employeeid>5</employeeid> <orderdate>1997-12-02</orderdate> <requireddate>1997-12-30</requireddate> <shippeddate>1997-12-08</shippeddate> <shipvia>2</shipvia> <freight>18.6600</freight> <shipname>Rattlesnake Canyon Grocery</shipname> <shipaddress>2817 Milton Dr.</shipaddress> <shipcity>Albuquerque</shipcity> <shipregion>NM</shipregion> <shippostalcode>87110</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10761</orderid> <productid>25</productid> <unitprice>14.0000</unitprice> <quantity>35</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10761</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>18</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10820</orderid> <customerid>RATTC</customerid> <employeeid>3</employeeid> <orderdate>1998-01-07</orderdate> <requireddate>1998-02-04</requireddate> <shippeddate>1998-01-13</shippeddate> <shipvia>2</shipvia> <freight>37.5200</freight> <shipname>Rattlesnake Canyon Grocery</shipname> <shipaddress>2817 Milton Dr.</shipaddress> <shipcity>Albuquerque</shipcity> <shipregion>NM</shipregion> <shippostalcode>87110</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10820</orderid> <productid>56</productid> <unitprice>38.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10852</orderid> <customerid>RATTC</customerid> <employeeid>8</employeeid> <orderdate>1998-01-26</orderdate> <requireddate>1998-02-09</requireddate> <shippeddate>1998-01-30</shippeddate> <shipvia>1</shipvia> <freight>174.0500</freight> <shipname>Rattlesnake Canyon Grocery</shipname> <shipaddress>2817 Milton Dr.</shipaddress> <shipcity>Albuquerque</shipcity> <shipregion>NM</shipregion> <shippostalcode>87110</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10852</orderid> <productid>2</productid> <unitprice>19.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10852</orderid> <productid>17</productid> <unitprice>39.0000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10852</orderid> <productid>62</productid> <unitprice>49.3000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10889</orderid> <customerid>RATTC</customerid> <employeeid>9</employeeid> <orderdate>1998-02-16</orderdate> <requireddate>1998-03-16</requireddate> <shippeddate>1998-02-23</shippeddate> <shipvia>3</shipvia> <freight>280.6100</freight> <shipname>Rattlesnake Canyon Grocery</shipname> <shipaddress>2817 Milton Dr.</shipaddress> <shipcity>Albuquerque</shipcity> <shipregion>NM</shipregion> <shippostalcode>87110</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10889</orderid> <productid>11</productid> <unitprice>21.0000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10889</orderid> <productid>38</productid> <unitprice>263.5000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10988</orderid> <customerid>RATTC</customerid> <employeeid>3</employeeid> <orderdate>1998-03-31</orderdate> <requireddate>1998-04-28</requireddate> <shippeddate>1998-04-10</shippeddate> <shipvia>2</shipvia> <freight>61.1400</freight> <shipname>Rattlesnake Canyon Grocery</shipname> <shipaddress>2817 Milton Dr.</shipaddress> <shipcity>Albuquerque</shipcity> <shipregion>NM</shipregion> <shippostalcode>87110</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10988</orderid> <productid>7</productid> <unitprice>30.0000</unitprice> <quantity>60</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10988</orderid> <productid>62</productid> <unitprice>49.3000</unitprice> <quantity>40</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>11000</orderid> <customerid>RATTC</customerid> <employeeid>2</employeeid> <orderdate>1998-04-06</orderdate> <requireddate>1998-05-04</requireddate> <shippeddate>1998-04-14</shippeddate> <shipvia>3</shipvia> <freight>55.1200</freight> <shipname>Rattlesnake Canyon Grocery</shipname> <shipaddress>2817 Milton Dr.</shipaddress> <shipcity>Albuquerque</shipcity> <shipregion>NM</shipregion> <shippostalcode>87110</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>11000</orderid> <productid>4</productid> <unitprice>22.0000</unitprice> <quantity>25</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>11000</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>30</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>11000</orderid> <productid>77</productid> <unitprice>13.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11077</orderid> <customerid>RATTC</customerid> <employeeid>1</employeeid> <orderdate>1998-05-06</orderdate> <requireddate>1998-06-03</requireddate> <shipvia>2</shipvia> <freight>8.5300</freight> <shipname>Rattlesnake Canyon Grocery</shipname> <shipaddress>2817 Milton Dr.</shipaddress> <shipcity>Albuquerque</shipcity> <shipregion>NM</shipregion> <shippostalcode>87110</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>11077</orderid> <productid>2</productid> <unitprice>19.0000</unitprice> <quantity>24</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>11077</orderid> <productid>3</productid> <unitprice>10.0000</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11077</orderid> <productid>4</productid> <unitprice>22.0000</unitprice> <quantity>1</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11077</orderid> <productid>6</productid> <unitprice>25.0000</unitprice> <quantity>1</quantity> <discount>0.01999</discount> </orderdetails> <orderdetails> <orderid>11077</orderid> <productid>7</productid> <unitprice>30.0000</unitprice> <quantity>1</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>11077</orderid> <productid>8</productid> <unitprice>40.0000</unitprice> <quantity>2</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>11077</orderid> <productid>10</productid> <unitprice>31.0000</unitprice> <quantity>1</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11077</orderid> <productid>12</productid> <unitprice>38.0000</unitprice> <quantity>2</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>11077</orderid> <productid>13</productid> <unitprice>6.0000</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11077</orderid> <productid>14</productid> <unitprice>23.2500</unitprice> <quantity>1</quantity> <discount>0.02999</discount> </orderdetails> <orderdetails> <orderid>11077</orderid> <productid>16</productid> <unitprice>17.4500</unitprice> <quantity>2</quantity> <discount>0.02999</discount> </orderdetails> <orderdetails> <orderid>11077</orderid> <productid>20</productid> <unitprice>81.0000</unitprice> <quantity>1</quantity> <discount>0.03999</discount> </orderdetails> <orderdetails> <orderid>11077</orderid> <productid>23</productid> <unitprice>9.0000</unitprice> <quantity>2</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11077</orderid> <productid>32</productid> <unitprice>32.0000</unitprice> <quantity>1</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11077</orderid> <productid>39</productid> <unitprice>18.0000</unitprice> <quantity>2</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>11077</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>3</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11077</orderid> <productid>46</productid> <unitprice>12.0000</unitprice> <quantity>3</quantity> <discount>0.01999</discount> </orderdetails> <orderdetails> <orderid>11077</orderid> <productid>52</productid> <unitprice>7.0000</unitprice> <quantity>2</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11077</orderid> <productid>55</productid> <unitprice>24.0000</unitprice> <quantity>2</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11077</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>2</quantity> <discount>0.05999</discount> </orderdetails> <orderdetails> <orderid>11077</orderid> <productid>64</productid> <unitprice>33.2500</unitprice> <quantity>2</quantity> <discount>0.02999</discount> </orderdetails> <orderdetails> <orderid>11077</orderid> <productid>66</productid> <unitprice>17.0000</unitprice> <quantity>1</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11077</orderid> <productid>73</productid> <unitprice>15.0000</unitprice> <quantity>2</quantity> <discount>0.00999</discount> </orderdetails> <orderdetails> <orderid>11077</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11077</orderid> <productid>77</productid> <unitprice>13.0000</unitprice> <quantity>2</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>REGGC</customerid> <companyname>Reggiani Caseifici</companyname> <contactname>Maurizio Moroni</contactname> <contacttitle>Sales Associate</contacttitle> <address>Strada Provinciale 124</address> <city>Reggio Emilia</city> <postalcode>42100</postalcode> <country>Italy</country> <phone>0522-556721</phone> <fax>0522-556722</fax> <orders> <orderid>10288</orderid> <customerid>REGGC</customerid> <employeeid>4</employeeid> <orderdate>1996-08-23</orderdate> <requireddate>1996-09-20</requireddate> <shippeddate>1996-09-03</shippeddate> <shipvia>1</shipvia> <freight>7.4500</freight> <shipname>Reggiani Caseifici</shipname> <shipaddress>Strada Provinciale 124</shipaddress> <shipcity>Reggio Emilia</shipcity> <shippostalcode>42100</shippostalcode> <shipcountry>Italy</shipcountry> <orderdetails> <orderid>10288</orderid> <productid>54</productid> <unitprice>5.9000</unitprice> <quantity>10</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10288</orderid> <productid>68</productid> <unitprice>10.0000</unitprice> <quantity>3</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10428</orderid> <customerid>REGGC</customerid> <employeeid>7</employeeid> <orderdate>1997-01-28</orderdate> <requireddate>1997-02-25</requireddate> <shippeddate>1997-02-04</shippeddate> <shipvia>1</shipvia> <freight>11.0900</freight> <shipname>Reggiani Caseifici</shipname> <shipaddress>Strada Provinciale 124</shipaddress> <shipcity>Reggio Emilia</shipcity> <shippostalcode>42100</shippostalcode> <shipcountry>Italy</shipcountry> <orderdetails> <orderid>10428</orderid> <productid>46</productid> <unitprice>9.6000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10443</orderid> <customerid>REGGC</customerid> <employeeid>8</employeeid> <orderdate>1997-02-12</orderdate> <requireddate>1997-03-12</requireddate> <shippeddate>1997-02-14</shippeddate> <shipvia>1</shipvia> <freight>13.9500</freight> <shipname>Reggiani Caseifici</shipname> <shipaddress>Strada Provinciale 124</shipaddress> <shipcity>Reggio Emilia</shipcity> <shippostalcode>42100</shippostalcode> <shipcountry>Italy</shipcountry> <orderdetails> <orderid>10443</orderid> <productid>11</productid> <unitprice>16.8000</unitprice> <quantity>6</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10443</orderid> <productid>28</productid> <unitprice>36.4000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10562</orderid> <customerid>REGGC</customerid> <employeeid>1</employeeid> <orderdate>1997-06-09</orderdate> <requireddate>1997-07-07</requireddate> <shippeddate>1997-06-12</shippeddate> <shipvia>1</shipvia> <freight>22.9500</freight> <shipname>Reggiani Caseifici</shipname> <shipaddress>Strada Provinciale 124</shipaddress> <shipcity>Reggio Emilia</shipcity> <shippostalcode>42100</shippostalcode> <shipcountry>Italy</shipcountry> <orderdetails> <orderid>10562</orderid> <productid>33</productid> <unitprice>2.5000</unitprice> <quantity>20</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10562</orderid> <productid>62</productid> <unitprice>49.3000</unitprice> <quantity>10</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10586</orderid> <customerid>REGGC</customerid> <employeeid>9</employeeid> <orderdate>1997-07-02</orderdate> <requireddate>1997-07-30</requireddate> <shippeddate>1997-07-09</shippeddate> <shipvia>1</shipvia> <freight>0.4800</freight> <shipname>Reggiani Caseifici</shipname> <shipaddress>Strada Provinciale 124</shipaddress> <shipcity>Reggio Emilia</shipcity> <shippostalcode>42100</shippostalcode> <shipcountry>Italy</shipcountry> <orderdetails> <orderid>10586</orderid> <productid>52</productid> <unitprice>7.0000</unitprice> <quantity>4</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10655</orderid> <customerid>REGGC</customerid> <employeeid>1</employeeid> <orderdate>1997-09-03</orderdate> <requireddate>1997-10-01</requireddate> <shippeddate>1997-09-11</shippeddate> <shipvia>2</shipvia> <freight>4.4100</freight> <shipname>Reggiani Caseifici</shipname> <shipaddress>Strada Provinciale 124</shipaddress> <shipcity>Reggio Emilia</shipcity> <shippostalcode>42100</shippostalcode> <shipcountry>Italy</shipcountry> <orderdetails> <orderid>10655</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>20</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10727</orderid> <customerid>REGGC</customerid> <employeeid>2</employeeid> <orderdate>1997-11-03</orderdate> <requireddate>1997-12-01</requireddate> <shippeddate>1997-12-05</shippeddate> <shipvia>1</shipvia> <freight>89.9000</freight> <shipname>Reggiani Caseifici</shipname> <shipaddress>Strada Provinciale 124</shipaddress> <shipcity>Reggio Emilia</shipcity> <shippostalcode>42100</shippostalcode> <shipcountry>Italy</shipcountry> <orderdetails> <orderid>10727</orderid> <productid>17</productid> <unitprice>39.0000</unitprice> <quantity>20</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10727</orderid> <productid>56</productid> <unitprice>38.0000</unitprice> <quantity>10</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10727</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>10</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10812</orderid> <customerid>REGGC</customerid> <employeeid>5</employeeid> <orderdate>1998-01-02</orderdate> <requireddate>1998-01-30</requireddate> <shippeddate>1998-01-12</shippeddate> <shipvia>1</shipvia> <freight>59.7800</freight> <shipname>Reggiani Caseifici</shipname> <shipaddress>Strada Provinciale 124</shipaddress> <shipcity>Reggio Emilia</shipcity> <shippostalcode>42100</shippostalcode> <shipcountry>Italy</shipcountry> <orderdetails> <orderid>10812</orderid> <productid>31</productid> <unitprice>12.5000</unitprice> <quantity>16</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10812</orderid> <productid>72</productid> <unitprice>34.8000</unitprice> <quantity>40</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10812</orderid> <productid>77</productid> <unitprice>13.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10908</orderid> <customerid>REGGC</customerid> <employeeid>4</employeeid> <orderdate>1998-02-26</orderdate> <requireddate>1998-03-26</requireddate> <shippeddate>1998-03-06</shippeddate> <shipvia>2</shipvia> <freight>32.9600</freight> <shipname>Reggiani Caseifici</shipname> <shipaddress>Strada Provinciale 124</shipaddress> <shipcity>Reggio Emilia</shipcity> <shippostalcode>42100</shippostalcode> <shipcountry>Italy</shipcountry> <orderdetails> <orderid>10908</orderid> <productid>7</productid> <unitprice>30.0000</unitprice> <quantity>20</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10908</orderid> <productid>52</productid> <unitprice>7.0000</unitprice> <quantity>14</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10942</orderid> <customerid>REGGC</customerid> <employeeid>9</employeeid> <orderdate>1998-03-11</orderdate> <requireddate>1998-04-08</requireddate> <shippeddate>1998-03-18</shippeddate> <shipvia>3</shipvia> <freight>17.9500</freight> <shipname>Reggiani Caseifici</shipname> <shipaddress>Strada Provinciale 124</shipaddress> <shipcity>Reggio Emilia</shipcity> <shippostalcode>42100</shippostalcode> <shipcountry>Italy</shipcountry> <orderdetails> <orderid>10942</orderid> <productid>49</productid> <unitprice>20.0000</unitprice> <quantity>28</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11010</orderid> <customerid>REGGC</customerid> <employeeid>2</employeeid> <orderdate>1998-04-09</orderdate> <requireddate>1998-05-07</requireddate> <shippeddate>1998-04-21</shippeddate> <shipvia>2</shipvia> <freight>28.7100</freight> <shipname>Reggiani Caseifici</shipname> <shipaddress>Strada Provinciale 124</shipaddress> <shipcity>Reggio Emilia</shipcity> <shippostalcode>42100</shippostalcode> <shipcountry>Italy</shipcountry> <orderdetails> <orderid>11010</orderid> <productid>7</productid> <unitprice>30.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11010</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11062</orderid> <customerid>REGGC</customerid> <employeeid>4</employeeid> <orderdate>1998-04-30</orderdate> <requireddate>1998-05-28</requireddate> <shipvia>2</shipvia> <freight>29.9300</freight> <shipname>Reggiani Caseifici</shipname> <shipaddress>Strada Provinciale 124</shipaddress> <shipcity>Reggio Emilia</shipcity> <shippostalcode>42100</shippostalcode> <shipcountry>Italy</shipcountry> <orderdetails> <orderid>11062</orderid> <productid>53</productid> <unitprice>32.8000</unitprice> <quantity>10</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>11062</orderid> <productid>70</productid> <unitprice>15.0000</unitprice> <quantity>12</quantity> <discount>0.20000</discount> </orderdetails> </orders> </customers> <customers> <customerid>RICAR</customerid> <companyname>Ricardo Adocicados</companyname> <contactname>Janete Limeira</contactname> <contacttitle>Assistant Sales Agent</contacttitle> <address>Av. Copacabana, 267</address> <city>Rio de Janeiro</city> <region>RJ</region> <postalcode>02389-890</postalcode> <country>Brazil</country> <phone>(21) 555-3412</phone> <orders> <orderid>10287</orderid> <customerid>RICAR</customerid> <employeeid>8</employeeid> <orderdate>1996-08-22</orderdate> <requireddate>1996-09-19</requireddate> <shippeddate>1996-08-28</shippeddate> <shipvia>3</shipvia> <freight>12.7600</freight> <shipname>Ricardo Adocicados</shipname> <shipaddress>Av. Copacabana, 267</shipaddress> <shipcity>Rio de Janeiro</shipcity> <shipregion>RJ</shipregion> <shippostalcode>02389-890</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10287</orderid> <productid>16</productid> <unitprice>13.9000</unitprice> <quantity>40</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10287</orderid> <productid>34</productid> <unitprice>11.2000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10287</orderid> <productid>46</productid> <unitprice>9.6000</unitprice> <quantity>15</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10299</orderid> <customerid>RICAR</customerid> <employeeid>4</employeeid> <orderdate>1996-09-06</orderdate> <requireddate>1996-10-04</requireddate> <shippeddate>1996-09-13</shippeddate> <shipvia>2</shipvia> <freight>29.7600</freight> <shipname>Ricardo Adocicados</shipname> <shipaddress>Av. Copacabana, 267</shipaddress> <shipcity>Rio de Janeiro</shipcity> <shipregion>RJ</shipregion> <shippostalcode>02389-890</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10299</orderid> <productid>19</productid> <unitprice>7.3000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10299</orderid> <productid>70</productid> <unitprice>12.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10447</orderid> <customerid>RICAR</customerid> <employeeid>4</employeeid> <orderdate>1997-02-14</orderdate> <requireddate>1997-03-14</requireddate> <shippeddate>1997-03-07</shippeddate> <shipvia>2</shipvia> <freight>68.6600</freight> <shipname>Ricardo Adocicados</shipname> <shipaddress>Av. Copacabana, 267</shipaddress> <shipcity>Rio de Janeiro</shipcity> <shipregion>RJ</shipregion> <shippostalcode>02389-890</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10447</orderid> <productid>19</productid> <unitprice>7.3000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10447</orderid> <productid>65</productid> <unitprice>16.8000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10447</orderid> <productid>71</productid> <unitprice>17.2000</unitprice> <quantity>2</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10481</orderid> <customerid>RICAR</customerid> <employeeid>8</employeeid> <orderdate>1997-03-20</orderdate> <requireddate>1997-04-17</requireddate> <shippeddate>1997-03-25</shippeddate> <shipvia>2</shipvia> <freight>64.3300</freight> <shipname>Ricardo Adocicados</shipname> <shipaddress>Av. Copacabana, 267</shipaddress> <shipcity>Rio de Janeiro</shipcity> <shipregion>RJ</shipregion> <shippostalcode>02389-890</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10481</orderid> <productid>49</productid> <unitprice>16.0000</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10481</orderid> <productid>60</productid> <unitprice>27.2000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10563</orderid> <customerid>RICAR</customerid> <employeeid>2</employeeid> <orderdate>1997-06-10</orderdate> <requireddate>1997-07-22</requireddate> <shippeddate>1997-06-24</shippeddate> <shipvia>2</shipvia> <freight>60.4300</freight> <shipname>Ricardo Adocicados</shipname> <shipaddress>Av. Copacabana, 267</shipaddress> <shipcity>Rio de Janeiro</shipcity> <shipregion>RJ</shipregion> <shippostalcode>02389-890</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10563</orderid> <productid>36</productid> <unitprice>19.0000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10563</orderid> <productid>52</productid> <unitprice>7.0000</unitprice> <quantity>70</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10622</orderid> <customerid>RICAR</customerid> <employeeid>4</employeeid> <orderdate>1997-08-06</orderdate> <requireddate>1997-09-03</requireddate> <shippeddate>1997-08-11</shippeddate> <shipvia>3</shipvia> <freight>50.9700</freight> <shipname>Ricardo Adocicados</shipname> <shipaddress>Av. Copacabana, 267</shipaddress> <shipcity>Rio de Janeiro</shipcity> <shipregion>RJ</shipregion> <shippostalcode>02389-890</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10622</orderid> <productid>2</productid> <unitprice>19.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10622</orderid> <productid>68</productid> <unitprice>12.5000</unitprice> <quantity>18</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10648</orderid> <customerid>RICAR</customerid> <employeeid>5</employeeid> <orderdate>1997-08-28</orderdate> <requireddate>1997-10-09</requireddate> <shippeddate>1997-09-09</shippeddate> <shipvia>2</shipvia> <freight>14.2500</freight> <shipname>Ricardo Adocicados</shipname> <shipaddress>Av. Copacabana, 267</shipaddress> <shipcity>Rio de Janeiro</shipcity> <shipregion>RJ</shipregion> <shippostalcode>02389-890</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10648</orderid> <productid>22</productid> <unitprice>21.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10648</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>15</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10813</orderid> <customerid>RICAR</customerid> <employeeid>1</employeeid> <orderdate>1998-01-05</orderdate> <requireddate>1998-02-02</requireddate> <shippeddate>1998-01-09</shippeddate> <shipvia>1</shipvia> <freight>47.3800</freight> <shipname>Ricardo Adocicados</shipname> <shipaddress>Av. Copacabana, 267</shipaddress> <shipcity>Rio de Janeiro</shipcity> <shipregion>RJ</shipregion> <shippostalcode>02389-890</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10813</orderid> <productid>2</productid> <unitprice>19.0000</unitprice> <quantity>12</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10813</orderid> <productid>46</productid> <unitprice>12.0000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10851</orderid> <customerid>RICAR</customerid> <employeeid>5</employeeid> <orderdate>1998-01-26</orderdate> <requireddate>1998-02-23</requireddate> <shippeddate>1998-02-02</shippeddate> <shipvia>1</shipvia> <freight>160.5500</freight> <shipname>Ricardo Adocicados</shipname> <shipaddress>Av. Copacabana, 267</shipaddress> <shipcity>Rio de Janeiro</shipcity> <shipregion>RJ</shipregion> <shippostalcode>02389-890</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10851</orderid> <productid>2</productid> <unitprice>19.0000</unitprice> <quantity>5</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10851</orderid> <productid>25</productid> <unitprice>14.0000</unitprice> <quantity>10</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10851</orderid> <productid>57</productid> <unitprice>19.5000</unitprice> <quantity>10</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10851</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>42</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10877</orderid> <customerid>RICAR</customerid> <employeeid>1</employeeid> <orderdate>1998-02-09</orderdate> <requireddate>1998-03-09</requireddate> <shippeddate>1998-02-19</shippeddate> <shipvia>1</shipvia> <freight>38.0600</freight> <shipname>Ricardo Adocicados</shipname> <shipaddress>Av. Copacabana, 267</shipaddress> <shipcity>Rio de Janeiro</shipcity> <shipregion>RJ</shipregion> <shippostalcode>02389-890</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10877</orderid> <productid>16</productid> <unitprice>17.4500</unitprice> <quantity>30</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10877</orderid> <productid>18</productid> <unitprice>62.5000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11059</orderid> <customerid>RICAR</customerid> <employeeid>2</employeeid> <orderdate>1998-04-29</orderdate> <requireddate>1998-06-10</requireddate> <shipvia>2</shipvia> <freight>85.8000</freight> <shipname>Ricardo Adocicados</shipname> <shipaddress>Av. Copacabana, 267</shipaddress> <shipcity>Rio de Janeiro</shipcity> <shipregion>RJ</shipregion> <shippostalcode>02389-890</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>11059</orderid> <productid>13</productid> <unitprice>6.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11059</orderid> <productid>17</productid> <unitprice>39.0000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11059</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>RICSU</customerid> <companyname>Richter Supermarkt</companyname> <contactname>Michael Holz</contactname> <contacttitle>Sales Manager</contacttitle> <address>Grenzacherweg 237</address> <city>Genève</city> <postalcode>1203</postalcode> <country>Switzerland</country> <phone>0897-034214</phone> <orders> <orderid>10255</orderid> <customerid>RICSU</customerid> <employeeid>9</employeeid> <orderdate>1996-07-12</orderdate> <requireddate>1996-08-09</requireddate> <shippeddate>1996-07-15</shippeddate> <shipvia>3</shipvia> <freight>148.3300</freight> <shipname>Richter Supermarkt</shipname> <shipaddress>Starenweg 5</shipaddress> <shipcity>Genève</shipcity> <shippostalcode>1204</shippostalcode> <shipcountry>Switzerland</shipcountry> <orderdetails> <orderid>10255</orderid> <productid>2</productid> <unitprice>15.2000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10255</orderid> <productid>16</productid> <unitprice>13.9000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10255</orderid> <productid>36</productid> <unitprice>15.2000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10255</orderid> <productid>59</productid> <unitprice>44.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10419</orderid> <customerid>RICSU</customerid> <employeeid>4</employeeid> <orderdate>1997-01-20</orderdate> <requireddate>1997-02-17</requireddate> <shippeddate>1997-01-30</shippeddate> <shipvia>2</shipvia> <freight>137.3500</freight> <shipname>Richter Supermarkt</shipname> <shipaddress>Starenweg 5</shipaddress> <shipcity>Genève</shipcity> <shippostalcode>1204</shippostalcode> <shipcountry>Switzerland</shipcountry> <orderdetails> <orderid>10419</orderid> <productid>60</productid> <unitprice>27.2000</unitprice> <quantity>60</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10419</orderid> <productid>69</productid> <unitprice>28.8000</unitprice> <quantity>20</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10537</orderid> <customerid>RICSU</customerid> <employeeid>1</employeeid> <orderdate>1997-05-14</orderdate> <requireddate>1997-05-28</requireddate> <shippeddate>1997-05-19</shippeddate> <shipvia>1</shipvia> <freight>78.8500</freight> <shipname>Richter Supermarkt</shipname> <shipaddress>Starenweg 5</shipaddress> <shipcity>Genève</shipcity> <shippostalcode>1204</shippostalcode> <shipcountry>Switzerland</shipcountry> <orderdetails> <orderid>10537</orderid> <productid>31</productid> <unitprice>12.5000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10537</orderid> <productid>51</productid> <unitprice>53.0000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10537</orderid> <productid>58</productid> <unitprice>13.2500</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10537</orderid> <productid>72</productid> <unitprice>34.8000</unitprice> <quantity>21</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10537</orderid> <productid>73</productid> <unitprice>15.0000</unitprice> <quantity>9</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10666</orderid> <customerid>RICSU</customerid> <employeeid>7</employeeid> <orderdate>1997-09-12</orderdate> <requireddate>1997-10-10</requireddate> <shippeddate>1997-09-22</shippeddate> <shipvia>2</shipvia> <freight>232.4200</freight> <shipname>Richter Supermarkt</shipname> <shipaddress>Starenweg 5</shipaddress> <shipcity>Genève</shipcity> <shippostalcode>1204</shippostalcode> <shipcountry>Switzerland</shipcountry> <orderdetails> <orderid>10666</orderid> <productid>29</productid> <unitprice>123.7900</unitprice> <quantity>36</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10666</orderid> <productid>65</productid> <unitprice>21.0500</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10751</orderid> <customerid>RICSU</customerid> <employeeid>3</employeeid> <orderdate>1997-11-24</orderdate> <requireddate>1997-12-22</requireddate> <shippeddate>1997-12-03</shippeddate> <shipvia>3</shipvia> <freight>130.7900</freight> <shipname>Richter Supermarkt</shipname> <shipaddress>Starenweg 5</shipaddress> <shipcity>Genève</shipcity> <shippostalcode>1204</shippostalcode> <shipcountry>Switzerland</shipcountry> <orderdetails> <orderid>10751</orderid> <productid>26</productid> <unitprice>31.2300</unitprice> <quantity>12</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10751</orderid> <productid>30</productid> <unitprice>25.8900</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10751</orderid> <productid>50</productid> <unitprice>16.2500</unitprice> <quantity>20</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10751</orderid> <productid>73</productid> <unitprice>15.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10758</orderid> <customerid>RICSU</customerid> <employeeid>3</employeeid> <orderdate>1997-11-28</orderdate> <requireddate>1997-12-26</requireddate> <shippeddate>1997-12-04</shippeddate> <shipvia>3</shipvia> <freight>138.1700</freight> <shipname>Richter Supermarkt</shipname> <shipaddress>Starenweg 5</shipaddress> <shipcity>Genève</shipcity> <shippostalcode>1204</shippostalcode> <shipcountry>Switzerland</shipcountry> <orderdetails> <orderid>10758</orderid> <productid>26</productid> <unitprice>31.2300</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10758</orderid> <productid>52</productid> <unitprice>7.0000</unitprice> <quantity>60</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10758</orderid> <productid>70</productid> <unitprice>15.0000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10931</orderid> <customerid>RICSU</customerid> <employeeid>4</employeeid> <orderdate>1998-03-06</orderdate> <requireddate>1998-03-20</requireddate> <shippeddate>1998-03-19</shippeddate> <shipvia>2</shipvia> <freight>13.6000</freight> <shipname>Richter Supermarkt</shipname> <shipaddress>Starenweg 5</shipaddress> <shipcity>Genève</shipcity> <shippostalcode>1204</shippostalcode> <shipcountry>Switzerland</shipcountry> <orderdetails> <orderid>10931</orderid> <productid>13</productid> <unitprice>6.0000</unitprice> <quantity>42</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10931</orderid> <productid>57</productid> <unitprice>19.5000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10951</orderid> <customerid>RICSU</customerid> <employeeid>9</employeeid> <orderdate>1998-03-16</orderdate> <requireddate>1998-04-27</requireddate> <shippeddate>1998-04-07</shippeddate> <shipvia>2</shipvia> <freight>30.8500</freight> <shipname>Richter Supermarkt</shipname> <shipaddress>Starenweg 5</shipaddress> <shipcity>Genève</shipcity> <shippostalcode>1204</shippostalcode> <shipcountry>Switzerland</shipcountry> <orderdetails> <orderid>10951</orderid> <productid>33</productid> <unitprice>2.5000</unitprice> <quantity>15</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10951</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>6</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10951</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>50</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>11033</orderid> <customerid>RICSU</customerid> <employeeid>7</employeeid> <orderdate>1998-04-17</orderdate> <requireddate>1998-05-15</requireddate> <shippeddate>1998-04-23</shippeddate> <shipvia>3</shipvia> <freight>84.7400</freight> <shipname>Richter Supermarkt</shipname> <shipaddress>Starenweg 5</shipaddress> <shipcity>Genève</shipcity> <shippostalcode>1204</shippostalcode> <shipcountry>Switzerland</shipcountry> <orderdetails> <orderid>11033</orderid> <productid>53</productid> <unitprice>32.8000</unitprice> <quantity>70</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>11033</orderid> <productid>69</productid> <unitprice>36.0000</unitprice> <quantity>36</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>11075</orderid> <customerid>RICSU</customerid> <employeeid>8</employeeid> <orderdate>1998-05-06</orderdate> <requireddate>1998-06-03</requireddate> <shipvia>2</shipvia> <freight>6.1900</freight> <shipname>Richter Supermarkt</shipname> <shipaddress>Starenweg 5</shipaddress> <shipcity>Genève</shipcity> <shippostalcode>1204</shippostalcode> <shipcountry>Switzerland</shipcountry> <orderdetails> <orderid>11075</orderid> <productid>2</productid> <unitprice>19.0000</unitprice> <quantity>10</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>11075</orderid> <productid>46</productid> <unitprice>12.0000</unitprice> <quantity>30</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>11075</orderid> <productid>76</productid> <unitprice>18.0000</unitprice> <quantity>2</quantity> <discount>0.15000</discount> </orderdetails> </orders> </customers> <customers> <customerid>ROMEY</customerid> <companyname>Romero y tomillo</companyname> <contactname>Alejandra Camino</contactname> <contacttitle>Accounting Manager</contacttitle> <address>Gran Vía, 1</address> <city>Madrid</city> <postalcode>28001</postalcode> <country>Spain</country> <phone>(91) 745 6200</phone> <fax>(91) 745 6210</fax> <orders> <orderid>10281</orderid> <customerid>ROMEY</customerid> <employeeid>4</employeeid> <orderdate>1996-08-14</orderdate> <requireddate>1996-08-28</requireddate> <shippeddate>1996-08-21</shippeddate> <shipvia>1</shipvia> <freight>2.9400</freight> <shipname>Romero y tomillo</shipname> <shipaddress>Gran Vía, 1</shipaddress> <shipcity>Madrid</shipcity> <shippostalcode>28001</shippostalcode> <shipcountry>Spain</shipcountry> <orderdetails> <orderid>10281</orderid> <productid>19</productid> <unitprice>7.3000</unitprice> <quantity>1</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10281</orderid> <productid>24</productid> <unitprice>3.6000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10281</orderid> <productid>35</productid> <unitprice>14.4000</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10282</orderid> <customerid>ROMEY</customerid> <employeeid>4</employeeid> <orderdate>1996-08-15</orderdate> <requireddate>1996-09-12</requireddate> <shippeddate>1996-08-21</shippeddate> <shipvia>1</shipvia> <freight>12.6900</freight> <shipname>Romero y tomillo</shipname> <shipaddress>Gran Vía, 1</shipaddress> <shipcity>Madrid</shipcity> <shippostalcode>28001</shippostalcode> <shipcountry>Spain</shipcountry> <orderdetails> <orderid>10282</orderid> <productid>30</productid> <unitprice>20.7000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10282</orderid> <productid>57</productid> <unitprice>15.6000</unitprice> <quantity>2</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10306</orderid> <customerid>ROMEY</customerid> <employeeid>1</employeeid> <orderdate>1996-09-16</orderdate> <requireddate>1996-10-14</requireddate> <shippeddate>1996-09-23</shippeddate> <shipvia>3</shipvia> <freight>7.5600</freight> <shipname>Romero y tomillo</shipname> <shipaddress>Gran Vía, 1</shipaddress> <shipcity>Madrid</shipcity> <shippostalcode>28001</shippostalcode> <shipcountry>Spain</shipcountry> <orderdetails> <orderid>10306</orderid> <productid>30</productid> <unitprice>20.7000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10306</orderid> <productid>53</productid> <unitprice>26.2000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10306</orderid> <productid>54</productid> <unitprice>5.9000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10917</orderid> <customerid>ROMEY</customerid> <employeeid>4</employeeid> <orderdate>1998-03-02</orderdate> <requireddate>1998-03-30</requireddate> <shippeddate>1998-03-11</shippeddate> <shipvia>2</shipvia> <freight>8.2900</freight> <shipname>Romero y tomillo</shipname> <shipaddress>Gran Vía, 1</shipaddress> <shipcity>Madrid</shipcity> <shippostalcode>28001</shippostalcode> <shipcountry>Spain</shipcountry> <orderdetails> <orderid>10917</orderid> <productid>30</productid> <unitprice>25.8900</unitprice> <quantity>1</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10917</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11013</orderid> <customerid>ROMEY</customerid> <employeeid>2</employeeid> <orderdate>1998-04-09</orderdate> <requireddate>1998-05-07</requireddate> <shippeddate>1998-04-10</shippeddate> <shipvia>1</shipvia> <freight>32.9900</freight> <shipname>Romero y tomillo</shipname> <shipaddress>Gran Vía, 1</shipaddress> <shipcity>Madrid</shipcity> <shippostalcode>28001</shippostalcode> <shipcountry>Spain</shipcountry> <orderdetails> <orderid>11013</orderid> <productid>23</productid> <unitprice>9.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11013</orderid> <productid>42</productid> <unitprice>14.0000</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11013</orderid> <productid>45</productid> <unitprice>9.5000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11013</orderid> <productid>68</productid> <unitprice>12.5000</unitprice> <quantity>2</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>SANTG</customerid> <companyname>Santé Gourmet</companyname> <contactname>Jonas Bergulfsen</contactname> <contacttitle>Owner</contacttitle> <address>Erling Skakkes gate 78</address> <city>Stavern</city> <postalcode>4110</postalcode> <country>Norway</country> <phone>07-98 92 35</phone> <fax>07-98 92 47</fax> <orders> <orderid>10387</orderid> <customerid>SANTG</customerid> <employeeid>1</employeeid> <orderdate>1996-12-18</orderdate> <requireddate>1997-01-15</requireddate> <shippeddate>1996-12-20</shippeddate> <shipvia>2</shipvia> <freight>93.6300</freight> <shipname>Santé Gourmet</shipname> <shipaddress>Erling Skakkes gate 78</shipaddress> <shipcity>Stavern</shipcity> <shippostalcode>4110</shippostalcode> <shipcountry>Norway</shipcountry> <orderdetails> <orderid>10387</orderid> <productid>24</productid> <unitprice>3.6000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10387</orderid> <productid>28</productid> <unitprice>36.4000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10387</orderid> <productid>59</productid> <unitprice>44.0000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10387</orderid> <productid>71</productid> <unitprice>17.2000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10520</orderid> <customerid>SANTG</customerid> <employeeid>7</employeeid> <orderdate>1997-04-29</orderdate> <requireddate>1997-05-27</requireddate> <shippeddate>1997-05-01</shippeddate> <shipvia>1</shipvia> <freight>13.3700</freight> <shipname>Santé Gourmet</shipname> <shipaddress>Erling Skakkes gate 78</shipaddress> <shipcity>Stavern</shipcity> <shippostalcode>4110</shippostalcode> <shipcountry>Norway</shipcountry> <orderdetails> <orderid>10520</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>8</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10520</orderid> <productid>53</productid> <unitprice>32.8000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10639</orderid> <customerid>SANTG</customerid> <employeeid>7</employeeid> <orderdate>1997-08-20</orderdate> <requireddate>1997-09-17</requireddate> <shippeddate>1997-08-27</shippeddate> <shipvia>3</shipvia> <freight>38.6400</freight> <shipname>Santé Gourmet</shipname> <shipaddress>Erling Skakkes gate 78</shipaddress> <shipcity>Stavern</shipcity> <shippostalcode>4110</shippostalcode> <shipcountry>Norway</shipcountry> <orderdetails> <orderid>10639</orderid> <productid>18</productid> <unitprice>62.5000</unitprice> <quantity>8</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10831</orderid> <customerid>SANTG</customerid> <employeeid>3</employeeid> <orderdate>1998-01-14</orderdate> <requireddate>1998-02-11</requireddate> <shippeddate>1998-01-23</shippeddate> <shipvia>2</shipvia> <freight>72.1900</freight> <shipname>Santé Gourmet</shipname> <shipaddress>Erling Skakkes gate 78</shipaddress> <shipcity>Stavern</shipcity> <shippostalcode>4110</shippostalcode> <shipcountry>Norway</shipcountry> <orderdetails> <orderid>10831</orderid> <productid>19</productid> <unitprice>9.2000</unitprice> <quantity>2</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10831</orderid> <productid>35</productid> <unitprice>18.0000</unitprice> <quantity>8</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10831</orderid> <productid>38</productid> <unitprice>263.5000</unitprice> <quantity>8</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10831</orderid> <productid>43</productid> <unitprice>46.0000</unitprice> <quantity>9</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10909</orderid> <customerid>SANTG</customerid> <employeeid>1</employeeid> <orderdate>1998-02-26</orderdate> <requireddate>1998-03-26</requireddate> <shippeddate>1998-03-10</shippeddate> <shipvia>2</shipvia> <freight>53.0500</freight> <shipname>Santé Gourmet</shipname> <shipaddress>Erling Skakkes gate 78</shipaddress> <shipcity>Stavern</shipcity> <shippostalcode>4110</shippostalcode> <shipcountry>Norway</shipcountry> <orderdetails> <orderid>10909</orderid> <productid>7</productid> <unitprice>30.0000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10909</orderid> <productid>16</productid> <unitprice>17.4500</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10909</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11015</orderid> <customerid>SANTG</customerid> <employeeid>2</employeeid> <orderdate>1998-04-10</orderdate> <requireddate>1998-04-24</requireddate> <shippeddate>1998-04-20</shippeddate> <shipvia>2</shipvia> <freight>4.6200</freight> <shipname>Santé Gourmet</shipname> <shipaddress>Erling Skakkes gate 78</shipaddress> <shipcity>Stavern</shipcity> <shippostalcode>4110</shippostalcode> <shipcountry>Norway</shipcountry> <orderdetails> <orderid>11015</orderid> <productid>30</productid> <unitprice>25.8900</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11015</orderid> <productid>77</productid> <unitprice>13.0000</unitprice> <quantity>18</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>SAVEA</customerid> <companyname>Save-a-lot Markets</companyname> <contactname>Jose Pavarotti</contactname> <contacttitle>Sales Representative</contacttitle> <address>187 Suffolk Ln.</address> <city>Boise</city> <region>ID</region> <postalcode>83720</postalcode> <country>USA</country> <phone>(208) 555-8097</phone> <orders> <orderid>10324</orderid> <customerid>SAVEA</customerid> <employeeid>9</employeeid> <orderdate>1996-10-08</orderdate> <requireddate>1996-11-05</requireddate> <shippeddate>1996-10-10</shippeddate> <shipvia>1</shipvia> <freight>214.2700</freight> <shipname>Save-a-lot Markets</shipname> <shipaddress>187 Suffolk Ln.</shipaddress> <shipcity>Boise</shipcity> <shipregion>ID</shipregion> <shippostalcode>83720</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10324</orderid> <productid>16</productid> <unitprice>13.9000</unitprice> <quantity>21</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10324</orderid> <productid>35</productid> <unitprice>14.4000</unitprice> <quantity>70</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10324</orderid> <productid>46</productid> <unitprice>9.6000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10324</orderid> <productid>59</productid> <unitprice>44.0000</unitprice> <quantity>40</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10324</orderid> <productid>63</productid> <unitprice>35.1000</unitprice> <quantity>80</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10393</orderid> <customerid>SAVEA</customerid> <employeeid>1</employeeid> <orderdate>1996-12-25</orderdate> <requireddate>1997-01-22</requireddate> <shippeddate>1997-01-03</shippeddate> <shipvia>3</shipvia> <freight>126.5600</freight> <shipname>Save-a-lot Markets</shipname> <shipaddress>187 Suffolk Ln.</shipaddress> <shipcity>Boise</shipcity> <shipregion>ID</shipregion> <shippostalcode>83720</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10393</orderid> <productid>2</productid> <unitprice>15.2000</unitprice> <quantity>25</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10393</orderid> <productid>14</productid> <unitprice>18.6000</unitprice> <quantity>42</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10393</orderid> <productid>25</productid> <unitprice>11.2000</unitprice> <quantity>7</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10393</orderid> <productid>26</productid> <unitprice>24.9000</unitprice> <quantity>70</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10393</orderid> <productid>31</productid> <unitprice>10.0000</unitprice> <quantity>32</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10398</orderid> <customerid>SAVEA</customerid> <employeeid>2</employeeid> <orderdate>1996-12-30</orderdate> <requireddate>1997-01-27</requireddate> <shippeddate>1997-01-09</shippeddate> <shipvia>3</shipvia> <freight>89.1600</freight> <shipname>Save-a-lot Markets</shipname> <shipaddress>187 Suffolk Ln.</shipaddress> <shipcity>Boise</shipcity> <shipregion>ID</shipregion> <shippostalcode>83720</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10398</orderid> <productid>35</productid> <unitprice>14.4000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10398</orderid> <productid>55</productid> <unitprice>19.2000</unitprice> <quantity>120</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10440</orderid> <customerid>SAVEA</customerid> <employeeid>4</employeeid> <orderdate>1997-02-10</orderdate> <requireddate>1997-03-10</requireddate> <shippeddate>1997-02-28</shippeddate> <shipvia>2</shipvia> <freight>86.5300</freight> <shipname>Save-a-lot Markets</shipname> <shipaddress>187 Suffolk Ln.</shipaddress> <shipcity>Boise</shipcity> <shipregion>ID</shipregion> <shippostalcode>83720</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10440</orderid> <productid>2</productid> <unitprice>15.2000</unitprice> <quantity>45</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10440</orderid> <productid>16</productid> <unitprice>13.9000</unitprice> <quantity>49</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10440</orderid> <productid>29</productid> <unitprice>99.0000</unitprice> <quantity>24</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10440</orderid> <productid>61</productid> <unitprice>22.8000</unitprice> <quantity>90</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10452</orderid> <customerid>SAVEA</customerid> <employeeid>8</employeeid> <orderdate>1997-02-20</orderdate> <requireddate>1997-03-20</requireddate> <shippeddate>1997-02-26</shippeddate> <shipvia>1</shipvia> <freight>140.2600</freight> <shipname>Save-a-lot Markets</shipname> <shipaddress>187 Suffolk Ln.</shipaddress> <shipcity>Boise</shipcity> <shipregion>ID</shipregion> <shippostalcode>83720</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10452</orderid> <productid>28</productid> <unitprice>36.4000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10452</orderid> <productid>44</productid> <unitprice>15.5000</unitprice> <quantity>100</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10510</orderid> <customerid>SAVEA</customerid> <employeeid>6</employeeid> <orderdate>1997-04-18</orderdate> <requireddate>1997-05-16</requireddate> <shippeddate>1997-04-28</shippeddate> <shipvia>3</shipvia> <freight>367.6300</freight> <shipname>Save-a-lot Markets</shipname> <shipaddress>187 Suffolk Ln.</shipaddress> <shipcity>Boise</shipcity> <shipregion>ID</shipregion> <shippostalcode>83720</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10510</orderid> <productid>29</productid> <unitprice>123.7900</unitprice> <quantity>36</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10510</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>36</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10555</orderid> <customerid>SAVEA</customerid> <employeeid>6</employeeid> <orderdate>1997-06-02</orderdate> <requireddate>1997-06-30</requireddate> <shippeddate>1997-06-04</shippeddate> <shipvia>3</shipvia> <freight>252.4900</freight> <shipname>Save-a-lot Markets</shipname> <shipaddress>187 Suffolk Ln.</shipaddress> <shipcity>Boise</shipcity> <shipregion>ID</shipregion> <shippostalcode>83720</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10555</orderid> <productid>14</productid> <unitprice>23.2500</unitprice> <quantity>30</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10555</orderid> <productid>19</productid> <unitprice>9.2000</unitprice> <quantity>35</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10555</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>18</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10555</orderid> <productid>51</productid> <unitprice>53.0000</unitprice> <quantity>20</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10555</orderid> <productid>56</productid> <unitprice>38.0000</unitprice> <quantity>40</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10603</orderid> <customerid>SAVEA</customerid> <employeeid>8</employeeid> <orderdate>1997-07-18</orderdate> <requireddate>1997-08-15</requireddate> <shippeddate>1997-08-08</shippeddate> <shipvia>2</shipvia> <freight>48.7700</freight> <shipname>Save-a-lot Markets</shipname> <shipaddress>187 Suffolk Ln.</shipaddress> <shipcity>Boise</shipcity> <shipregion>ID</shipregion> <shippostalcode>83720</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10603</orderid> <productid>22</productid> <unitprice>21.0000</unitprice> <quantity>48</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10603</orderid> <productid>49</productid> <unitprice>20.0000</unitprice> <quantity>25</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10607</orderid> <customerid>SAVEA</customerid> <employeeid>5</employeeid> <orderdate>1997-07-22</orderdate> <requireddate>1997-08-19</requireddate> <shippeddate>1997-07-25</shippeddate> <shipvia>1</shipvia> <freight>200.2400</freight> <shipname>Save-a-lot Markets</shipname> <shipaddress>187 Suffolk Ln.</shipaddress> <shipcity>Boise</shipcity> <shipregion>ID</shipregion> <shippostalcode>83720</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10607</orderid> <productid>7</productid> <unitprice>30.0000</unitprice> <quantity>45</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10607</orderid> <productid>17</productid> <unitprice>39.0000</unitprice> <quantity>100</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10607</orderid> <productid>33</productid> <unitprice>2.5000</unitprice> <quantity>14</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10607</orderid> <productid>40</productid> <unitprice>18.4000</unitprice> <quantity>42</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10607</orderid> <productid>72</productid> <unitprice>34.8000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10612</orderid> <customerid>SAVEA</customerid> <employeeid>1</employeeid> <orderdate>1997-07-28</orderdate> <requireddate>1997-08-25</requireddate> <shippeddate>1997-08-01</shippeddate> <shipvia>2</shipvia> <freight>544.0800</freight> <shipname>Save-a-lot Markets</shipname> <shipaddress>187 Suffolk Ln.</shipaddress> <shipcity>Boise</shipcity> <shipregion>ID</shipregion> <shippostalcode>83720</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10612</orderid> <productid>10</productid> <unitprice>31.0000</unitprice> <quantity>70</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10612</orderid> <productid>36</productid> <unitprice>19.0000</unitprice> <quantity>55</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10612</orderid> <productid>49</productid> <unitprice>20.0000</unitprice> <quantity>18</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10612</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10612</orderid> <productid>76</productid> <unitprice>18.0000</unitprice> <quantity>80</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10627</orderid> <customerid>SAVEA</customerid> <employeeid>8</employeeid> <orderdate>1997-08-11</orderdate> <requireddate>1997-09-22</requireddate> <shippeddate>1997-08-21</shippeddate> <shipvia>3</shipvia> <freight>107.4600</freight> <shipname>Save-a-lot Markets</shipname> <shipaddress>187 Suffolk Ln.</shipaddress> <shipcity>Boise</shipcity> <shipregion>ID</shipregion> <shippostalcode>83720</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10627</orderid> <productid>62</productid> <unitprice>49.3000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10627</orderid> <productid>73</productid> <unitprice>15.0000</unitprice> <quantity>35</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10657</orderid> <customerid>SAVEA</customerid> <employeeid>2</employeeid> <orderdate>1997-09-04</orderdate> <requireddate>1997-10-02</requireddate> <shippeddate>1997-09-15</shippeddate> <shipvia>2</shipvia> <freight>352.6900</freight> <shipname>Save-a-lot Markets</shipname> <shipaddress>187 Suffolk Ln.</shipaddress> <shipcity>Boise</shipcity> <shipregion>ID</shipregion> <shippostalcode>83720</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10657</orderid> <productid>15</productid> <unitprice>15.5000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10657</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10657</orderid> <productid>46</productid> <unitprice>12.0000</unitprice> <quantity>45</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10657</orderid> <productid>47</productid> <unitprice>9.5000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10657</orderid> <productid>56</productid> <unitprice>38.0000</unitprice> <quantity>45</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10657</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10678</orderid> <customerid>SAVEA</customerid> <employeeid>7</employeeid> <orderdate>1997-09-23</orderdate> <requireddate>1997-10-21</requireddate> <shippeddate>1997-10-16</shippeddate> <shipvia>3</shipvia> <freight>388.9800</freight> <shipname>Save-a-lot Markets</shipname> <shipaddress>187 Suffolk Ln.</shipaddress> <shipcity>Boise</shipcity> <shipregion>ID</shipregion> <shippostalcode>83720</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10678</orderid> <productid>12</productid> <unitprice>38.0000</unitprice> <quantity>100</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10678</orderid> <productid>33</productid> <unitprice>2.5000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10678</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>120</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10678</orderid> <productid>54</productid> <unitprice>7.4500</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10700</orderid> <customerid>SAVEA</customerid> <employeeid>3</employeeid> <orderdate>1997-10-10</orderdate> <requireddate>1997-11-07</requireddate> <shippeddate>1997-10-16</shippeddate> <shipvia>1</shipvia> <freight>65.1000</freight> <shipname>Save-a-lot Markets</shipname> <shipaddress>187 Suffolk Ln.</shipaddress> <shipcity>Boise</shipcity> <shipregion>ID</shipregion> <shippostalcode>83720</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10700</orderid> <productid>1</productid> <unitprice>18.0000</unitprice> <quantity>5</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10700</orderid> <productid>34</productid> <unitprice>14.0000</unitprice> <quantity>12</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10700</orderid> <productid>68</productid> <unitprice>12.5000</unitprice> <quantity>40</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10700</orderid> <productid>71</productid> <unitprice>21.5000</unitprice> <quantity>60</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10711</orderid> <customerid>SAVEA</customerid> <employeeid>5</employeeid> <orderdate>1997-10-21</orderdate> <requireddate>1997-12-02</requireddate> <shippeddate>1997-10-29</shippeddate> <shipvia>2</shipvia> <freight>52.4100</freight> <shipname>Save-a-lot Markets</shipname> <shipaddress>187 Suffolk Ln.</shipaddress> <shipcity>Boise</shipcity> <shipregion>ID</shipregion> <shippostalcode>83720</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10711</orderid> <productid>19</productid> <unitprice>9.2000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10711</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>42</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10711</orderid> <productid>53</productid> <unitprice>32.8000</unitprice> <quantity>120</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10713</orderid> <customerid>SAVEA</customerid> <employeeid>1</employeeid> <orderdate>1997-10-22</orderdate> <requireddate>1997-11-19</requireddate> <shippeddate>1997-10-24</shippeddate> <shipvia>1</shipvia> <freight>167.0500</freight> <shipname>Save-a-lot Markets</shipname> <shipaddress>187 Suffolk Ln.</shipaddress> <shipcity>Boise</shipcity> <shipregion>ID</shipregion> <shippostalcode>83720</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10713</orderid> <productid>10</productid> <unitprice>31.0000</unitprice> <quantity>18</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10713</orderid> <productid>26</productid> <unitprice>31.2300</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10713</orderid> <productid>45</productid> <unitprice>9.5000</unitprice> <quantity>110</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10713</orderid> <productid>46</productid> <unitprice>12.0000</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10714</orderid> <customerid>SAVEA</customerid> <employeeid>5</employeeid> <orderdate>1997-10-22</orderdate> <requireddate>1997-11-19</requireddate> <shippeddate>1997-10-27</shippeddate> <shipvia>3</shipvia> <freight>24.4900</freight> <shipname>Save-a-lot Markets</shipname> <shipaddress>187 Suffolk Ln.</shipaddress> <shipcity>Boise</shipcity> <shipregion>ID</shipregion> <shippostalcode>83720</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10714</orderid> <productid>2</productid> <unitprice>19.0000</unitprice> <quantity>30</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10714</orderid> <productid>17</productid> <unitprice>39.0000</unitprice> <quantity>27</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10714</orderid> <productid>47</productid> <unitprice>9.5000</unitprice> <quantity>50</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10714</orderid> <productid>56</productid> <unitprice>38.0000</unitprice> <quantity>18</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10714</orderid> <productid>58</productid> <unitprice>13.2500</unitprice> <quantity>12</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10722</orderid> <customerid>SAVEA</customerid> <employeeid>8</employeeid> <orderdate>1997-10-29</orderdate> <requireddate>1997-12-10</requireddate> <shippeddate>1997-11-04</shippeddate> <shipvia>1</shipvia> <freight>74.5800</freight> <shipname>Save-a-lot Markets</shipname> <shipaddress>187 Suffolk Ln.</shipaddress> <shipcity>Boise</shipcity> <shipregion>ID</shipregion> <shippostalcode>83720</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10722</orderid> <productid>2</productid> <unitprice>19.0000</unitprice> <quantity>3</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10722</orderid> <productid>31</productid> <unitprice>12.5000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10722</orderid> <productid>68</productid> <unitprice>12.5000</unitprice> <quantity>45</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10722</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>42</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10748</orderid> <customerid>SAVEA</customerid> <employeeid>3</employeeid> <orderdate>1997-11-20</orderdate> <requireddate>1997-12-18</requireddate> <shippeddate>1997-11-28</shippeddate> <shipvia>1</shipvia> <freight>232.5500</freight> <shipname>Save-a-lot Markets</shipname> <shipaddress>187 Suffolk Ln.</shipaddress> <shipcity>Boise</shipcity> <shipregion>ID</shipregion> <shippostalcode>83720</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10748</orderid> <productid>23</productid> <unitprice>9.0000</unitprice> <quantity>44</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10748</orderid> <productid>40</productid> <unitprice>18.4000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10748</orderid> <productid>56</productid> <unitprice>38.0000</unitprice> <quantity>28</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10757</orderid> <customerid>SAVEA</customerid> <employeeid>6</employeeid> <orderdate>1997-11-27</orderdate> <requireddate>1997-12-25</requireddate> <shippeddate>1997-12-15</shippeddate> <shipvia>1</shipvia> <freight>8.1900</freight> <shipname>Save-a-lot Markets</shipname> <shipaddress>187 Suffolk Ln.</shipaddress> <shipcity>Boise</shipcity> <shipregion>ID</shipregion> <shippostalcode>83720</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10757</orderid> <productid>34</productid> <unitprice>14.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10757</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>7</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10757</orderid> <productid>62</productid> <unitprice>49.3000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10757</orderid> <productid>64</productid> <unitprice>33.2500</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10815</orderid> <customerid>SAVEA</customerid> <employeeid>2</employeeid> <orderdate>1998-01-05</orderdate> <requireddate>1998-02-02</requireddate> <shippeddate>1998-01-14</shippeddate> <shipvia>3</shipvia> <freight>14.6200</freight> <shipname>Save-a-lot Markets</shipname> <shipaddress>187 Suffolk Ln.</shipaddress> <shipcity>Boise</shipcity> <shipregion>ID</shipregion> <shippostalcode>83720</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10815</orderid> <productid>33</productid> <unitprice>2.5000</unitprice> <quantity>16</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10847</orderid> <customerid>SAVEA</customerid> <employeeid>4</employeeid> <orderdate>1998-01-22</orderdate> <requireddate>1998-02-05</requireddate> <shippeddate>1998-02-10</shippeddate> <shipvia>3</shipvia> <freight>487.5700</freight> <shipname>Save-a-lot Markets</shipname> <shipaddress>187 Suffolk Ln.</shipaddress> <shipcity>Boise</shipcity> <shipregion>ID</shipregion> <shippostalcode>83720</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10847</orderid> <productid>1</productid> <unitprice>18.0000</unitprice> <quantity>80</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10847</orderid> <productid>19</productid> <unitprice>9.2000</unitprice> <quantity>12</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10847</orderid> <productid>37</productid> <unitprice>26.0000</unitprice> <quantity>60</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10847</orderid> <productid>45</productid> <unitprice>9.5000</unitprice> <quantity>36</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10847</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>45</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10847</orderid> <productid>71</productid> <unitprice>21.5000</unitprice> <quantity>55</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10882</orderid> <customerid>SAVEA</customerid> <employeeid>4</employeeid> <orderdate>1998-02-11</orderdate> <requireddate>1998-03-11</requireddate> <shippeddate>1998-02-20</shippeddate> <shipvia>3</shipvia> <freight>23.1000</freight> <shipname>Save-a-lot Markets</shipname> <shipaddress>187 Suffolk Ln.</shipaddress> <shipcity>Boise</shipcity> <shipregion>ID</shipregion> <shippostalcode>83720</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10882</orderid> <productid>42</productid> <unitprice>14.0000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10882</orderid> <productid>49</productid> <unitprice>20.0000</unitprice> <quantity>20</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10882</orderid> <productid>54</productid> <unitprice>7.4500</unitprice> <quantity>32</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10894</orderid> <customerid>SAVEA</customerid> <employeeid>1</employeeid> <orderdate>1998-02-18</orderdate> <requireddate>1998-03-18</requireddate> <shippeddate>1998-02-20</shippeddate> <shipvia>1</shipvia> <freight>116.1300</freight> <shipname>Save-a-lot Markets</shipname> <shipaddress>187 Suffolk Ln.</shipaddress> <shipcity>Boise</shipcity> <shipregion>ID</shipregion> <shippostalcode>83720</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10894</orderid> <productid>13</productid> <unitprice>6.0000</unitprice> <quantity>28</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10894</orderid> <productid>69</productid> <unitprice>36.0000</unitprice> <quantity>50</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10894</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>120</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10941</orderid> <customerid>SAVEA</customerid> <employeeid>7</employeeid> <orderdate>1998-03-11</orderdate> <requireddate>1998-04-08</requireddate> <shippeddate>1998-03-20</shippeddate> <shipvia>2</shipvia> <freight>400.8100</freight> <shipname>Save-a-lot Markets</shipname> <shipaddress>187 Suffolk Ln.</shipaddress> <shipcity>Boise</shipcity> <shipregion>ID</shipregion> <shippostalcode>83720</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10941</orderid> <productid>31</productid> <unitprice>12.5000</unitprice> <quantity>44</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10941</orderid> <productid>62</productid> <unitprice>49.3000</unitprice> <quantity>30</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10941</orderid> <productid>68</productid> <unitprice>12.5000</unitprice> <quantity>80</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10941</orderid> <productid>72</productid> <unitprice>34.8000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10983</orderid> <customerid>SAVEA</customerid> <employeeid>2</employeeid> <orderdate>1998-03-27</orderdate> <requireddate>1998-04-24</requireddate> <shippeddate>1998-04-06</shippeddate> <shipvia>2</shipvia> <freight>657.5400</freight> <shipname>Save-a-lot Markets</shipname> <shipaddress>187 Suffolk Ln.</shipaddress> <shipcity>Boise</shipcity> <shipregion>ID</shipregion> <shippostalcode>83720</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10983</orderid> <productid>13</productid> <unitprice>6.0000</unitprice> <quantity>84</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10983</orderid> <productid>57</productid> <unitprice>19.5000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10984</orderid> <customerid>SAVEA</customerid> <employeeid>1</employeeid> <orderdate>1998-03-30</orderdate> <requireddate>1998-04-27</requireddate> <shippeddate>1998-04-03</shippeddate> <shipvia>3</shipvia> <freight>211.2200</freight> <shipname>Save-a-lot Markets</shipname> <shipaddress>187 Suffolk Ln.</shipaddress> <shipcity>Boise</shipcity> <shipregion>ID</shipregion> <shippostalcode>83720</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10984</orderid> <productid>16</productid> <unitprice>17.4500</unitprice> <quantity>55</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10984</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10984</orderid> <productid>36</productid> <unitprice>19.0000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11002</orderid> <customerid>SAVEA</customerid> <employeeid>4</employeeid> <orderdate>1998-04-06</orderdate> <requireddate>1998-05-04</requireddate> <shippeddate>1998-04-16</shippeddate> <shipvia>1</shipvia> <freight>141.1600</freight> <shipname>Save-a-lot Markets</shipname> <shipaddress>187 Suffolk Ln.</shipaddress> <shipcity>Boise</shipcity> <shipregion>ID</shipregion> <shippostalcode>83720</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>11002</orderid> <productid>13</productid> <unitprice>6.0000</unitprice> <quantity>56</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11002</orderid> <productid>35</productid> <unitprice>18.0000</unitprice> <quantity>15</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>11002</orderid> <productid>42</productid> <unitprice>14.0000</unitprice> <quantity>24</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>11002</orderid> <productid>55</productid> <unitprice>24.0000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11030</orderid> <customerid>SAVEA</customerid> <employeeid>7</employeeid> <orderdate>1998-04-17</orderdate> <requireddate>1998-05-15</requireddate> <shippeddate>1998-04-27</shippeddate> <shipvia>2</shipvia> <freight>830.7500</freight> <shipname>Save-a-lot Markets</shipname> <shipaddress>187 Suffolk Ln.</shipaddress> <shipcity>Boise</shipcity> <shipregion>ID</shipregion> <shippostalcode>83720</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>11030</orderid> <productid>2</productid> <unitprice>19.0000</unitprice> <quantity>100</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>11030</orderid> <productid>5</productid> <unitprice>21.3500</unitprice> <quantity>70</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11030</orderid> <productid>29</productid> <unitprice>123.7900</unitprice> <quantity>60</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>11030</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>100</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>11031</orderid> <customerid>SAVEA</customerid> <employeeid>6</employeeid> <orderdate>1998-04-17</orderdate> <requireddate>1998-05-15</requireddate> <shippeddate>1998-04-24</shippeddate> <shipvia>2</shipvia> <freight>227.2200</freight> <shipname>Save-a-lot Markets</shipname> <shipaddress>187 Suffolk Ln.</shipaddress> <shipcity>Boise</shipcity> <shipregion>ID</shipregion> <shippostalcode>83720</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>11031</orderid> <productid>1</productid> <unitprice>18.0000</unitprice> <quantity>45</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11031</orderid> <productid>13</productid> <unitprice>6.0000</unitprice> <quantity>80</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11031</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>21</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11031</orderid> <productid>64</productid> <unitprice>33.2500</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11031</orderid> <productid>71</productid> <unitprice>21.5000</unitprice> <quantity>16</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11064</orderid> <customerid>SAVEA</customerid> <employeeid>1</employeeid> <orderdate>1998-05-01</orderdate> <requireddate>1998-05-29</requireddate> <shippeddate>1998-05-04</shippeddate> <shipvia>1</shipvia> <freight>30.0900</freight> <shipname>Save-a-lot Markets</shipname> <shipaddress>187 Suffolk Ln.</shipaddress> <shipcity>Boise</shipcity> <shipregion>ID</shipregion> <shippostalcode>83720</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>11064</orderid> <productid>17</productid> <unitprice>39.0000</unitprice> <quantity>77</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>11064</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11064</orderid> <productid>53</productid> <unitprice>32.8000</unitprice> <quantity>25</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>11064</orderid> <productid>55</productid> <unitprice>24.0000</unitprice> <quantity>4</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>11064</orderid> <productid>68</productid> <unitprice>12.5000</unitprice> <quantity>55</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>SEVES</customerid> <companyname>Seven Seas Imports</companyname> <contactname>Hari Kumar</contactname> <contacttitle>Sales Manager</contacttitle> <address>90 Wadhurst Rd.</address> <city>London</city> <postalcode>OX15 4NB</postalcode> <country>UK</country> <phone>(171) 555-1717</phone> <fax>(171) 555-5646</fax> <orders> <orderid>10359</orderid> <customerid>SEVES</customerid> <employeeid>5</employeeid> <orderdate>1996-11-21</orderdate> <requireddate>1996-12-19</requireddate> <shippeddate>1996-11-26</shippeddate> <shipvia>3</shipvia> <freight>288.4300</freight> <shipname>Seven Seas Imports</shipname> <shipaddress>90 Wadhurst Rd.</shipaddress> <shipcity>London</shipcity> <shippostalcode>OX15 4NB</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10359</orderid> <productid>16</productid> <unitprice>13.9000</unitprice> <quantity>56</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10359</orderid> <productid>31</productid> <unitprice>10.0000</unitprice> <quantity>70</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10359</orderid> <productid>60</productid> <unitprice>27.2000</unitprice> <quantity>80</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10377</orderid> <customerid>SEVES</customerid> <employeeid>1</employeeid> <orderdate>1996-12-09</orderdate> <requireddate>1997-01-06</requireddate> <shippeddate>1996-12-13</shippeddate> <shipvia>3</shipvia> <freight>22.2100</freight> <shipname>Seven Seas Imports</shipname> <shipaddress>90 Wadhurst Rd.</shipaddress> <shipcity>London</shipcity> <shippostalcode>OX15 4NB</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10377</orderid> <productid>28</productid> <unitprice>36.4000</unitprice> <quantity>20</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10377</orderid> <productid>39</productid> <unitprice>14.4000</unitprice> <quantity>20</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10388</orderid> <customerid>SEVES</customerid> <employeeid>2</employeeid> <orderdate>1996-12-19</orderdate> <requireddate>1997-01-16</requireddate> <shippeddate>1996-12-20</shippeddate> <shipvia>1</shipvia> <freight>34.8600</freight> <shipname>Seven Seas Imports</shipname> <shipaddress>90 Wadhurst Rd.</shipaddress> <shipcity>London</shipcity> <shippostalcode>OX15 4NB</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10388</orderid> <productid>45</productid> <unitprice>7.6000</unitprice> <quantity>15</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10388</orderid> <productid>52</productid> <unitprice>5.6000</unitprice> <quantity>20</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10388</orderid> <productid>53</productid> <unitprice>26.2000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10472</orderid> <customerid>SEVES</customerid> <employeeid>8</employeeid> <orderdate>1997-03-12</orderdate> <requireddate>1997-04-09</requireddate> <shippeddate>1997-03-19</shippeddate> <shipvia>1</shipvia> <freight>4.2000</freight> <shipname>Seven Seas Imports</shipname> <shipaddress>90 Wadhurst Rd.</shipaddress> <shipcity>London</shipcity> <shippostalcode>OX15 4NB</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10472</orderid> <productid>24</productid> <unitprice>3.6000</unitprice> <quantity>80</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10472</orderid> <productid>51</productid> <unitprice>42.4000</unitprice> <quantity>18</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10523</orderid> <customerid>SEVES</customerid> <employeeid>7</employeeid> <orderdate>1997-05-01</orderdate> <requireddate>1997-05-29</requireddate> <shippeddate>1997-05-30</shippeddate> <shipvia>2</shipvia> <freight>77.6300</freight> <shipname>Seven Seas Imports</shipname> <shipaddress>90 Wadhurst Rd.</shipaddress> <shipcity>London</shipcity> <shippostalcode>OX15 4NB</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10523</orderid> <productid>17</productid> <unitprice>39.0000</unitprice> <quantity>25</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10523</orderid> <productid>20</productid> <unitprice>81.0000</unitprice> <quantity>15</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10523</orderid> <productid>37</productid> <unitprice>26.0000</unitprice> <quantity>18</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10523</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>6</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10547</orderid> <customerid>SEVES</customerid> <employeeid>3</employeeid> <orderdate>1997-05-23</orderdate> <requireddate>1997-06-20</requireddate> <shippeddate>1997-06-02</shippeddate> <shipvia>2</shipvia> <freight>178.4300</freight> <shipname>Seven Seas Imports</shipname> <shipaddress>90 Wadhurst Rd.</shipaddress> <shipcity>London</shipcity> <shippostalcode>OX15 4NB</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10547</orderid> <productid>32</productid> <unitprice>32.0000</unitprice> <quantity>24</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10547</orderid> <productid>36</productid> <unitprice>19.0000</unitprice> <quantity>60</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10800</orderid> <customerid>SEVES</customerid> <employeeid>1</employeeid> <orderdate>1997-12-26</orderdate> <requireddate>1998-01-23</requireddate> <shippeddate>1998-01-05</shippeddate> <shipvia>3</shipvia> <freight>137.4400</freight> <shipname>Seven Seas Imports</shipname> <shipaddress>90 Wadhurst Rd.</shipaddress> <shipcity>London</shipcity> <shippostalcode>OX15 4NB</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10800</orderid> <productid>11</productid> <unitprice>21.0000</unitprice> <quantity>50</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10800</orderid> <productid>51</productid> <unitprice>53.0000</unitprice> <quantity>10</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10800</orderid> <productid>54</productid> <unitprice>7.4500</unitprice> <quantity>7</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10804</orderid> <customerid>SEVES</customerid> <employeeid>6</employeeid> <orderdate>1997-12-30</orderdate> <requireddate>1998-01-27</requireddate> <shippeddate>1998-01-07</shippeddate> <shipvia>2</shipvia> <freight>27.3300</freight> <shipname>Seven Seas Imports</shipname> <shipaddress>90 Wadhurst Rd.</shipaddress> <shipcity>London</shipcity> <shippostalcode>OX15 4NB</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10804</orderid> <productid>10</productid> <unitprice>31.0000</unitprice> <quantity>36</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10804</orderid> <productid>28</productid> <unitprice>45.6000</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10804</orderid> <productid>49</productid> <unitprice>20.0000</unitprice> <quantity>4</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10869</orderid> <customerid>SEVES</customerid> <employeeid>5</employeeid> <orderdate>1998-02-04</orderdate> <requireddate>1998-03-04</requireddate> <shippeddate>1998-02-09</shippeddate> <shipvia>1</shipvia> <freight>143.2800</freight> <shipname>Seven Seas Imports</shipname> <shipaddress>90 Wadhurst Rd.</shipaddress> <shipcity>London</shipcity> <shippostalcode>OX15 4NB</shippostalcode> <shipcountry>UK</shipcountry> <orderdetails> <orderid>10869</orderid> <productid>1</productid> <unitprice>18.0000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10869</orderid> <productid>11</productid> <unitprice>21.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10869</orderid> <productid>23</productid> <unitprice>9.0000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10869</orderid> <productid>68</productid> <unitprice>12.5000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>SIMOB</customerid> <companyname>Simons bistro</companyname> <contactname>Jytte Petersen</contactname> <contacttitle>Owner</contacttitle> <address>Vinbæltet 34</address> <city>Kobenhavn</city> <postalcode>1734</postalcode> <country>Denmark</country> <phone>31 12 34 56</phone> <fax>31 13 35 57</fax> <orders> <orderid>10341</orderid> <customerid>SIMOB</customerid> <employeeid>7</employeeid> <orderdate>1996-10-29</orderdate> <requireddate>1996-11-26</requireddate> <shippeddate>1996-11-05</shippeddate> <shipvia>3</shipvia> <freight>26.7800</freight> <shipname>Simons bistro</shipname> <shipaddress>Vinbæltet 34</shipaddress> <shipcity>Kobenhavn</shipcity> <shippostalcode>1734</shippostalcode> <shipcountry>Denmark</shipcountry> <orderdetails> <orderid>10341</orderid> <productid>33</productid> <unitprice>2.0000</unitprice> <quantity>8</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10341</orderid> <productid>59</productid> <unitprice>44.0000</unitprice> <quantity>9</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10417</orderid> <customerid>SIMOB</customerid> <employeeid>4</employeeid> <orderdate>1997-01-16</orderdate> <requireddate>1997-02-13</requireddate> <shippeddate>1997-01-28</shippeddate> <shipvia>3</shipvia> <freight>70.2900</freight> <shipname>Simons bistro</shipname> <shipaddress>Vinbæltet 34</shipaddress> <shipcity>Kobenhavn</shipcity> <shippostalcode>1734</shippostalcode> <shipcountry>Denmark</shipcountry> <orderdetails> <orderid>10417</orderid> <productid>38</productid> <unitprice>210.8000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10417</orderid> <productid>46</productid> <unitprice>9.6000</unitprice> <quantity>2</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10417</orderid> <productid>68</productid> <unitprice>10.0000</unitprice> <quantity>36</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10417</orderid> <productid>77</productid> <unitprice>10.4000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10556</orderid> <customerid>SIMOB</customerid> <employeeid>2</employeeid> <orderdate>1997-06-03</orderdate> <requireddate>1997-07-15</requireddate> <shippeddate>1997-06-13</shippeddate> <shipvia>1</shipvia> <freight>9.8000</freight> <shipname>Simons bistro</shipname> <shipaddress>Vinbæltet 34</shipaddress> <shipcity>Kobenhavn</shipcity> <shippostalcode>1734</shippostalcode> <shipcountry>Denmark</shipcountry> <orderdetails> <orderid>10556</orderid> <productid>72</productid> <unitprice>34.8000</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10642</orderid> <customerid>SIMOB</customerid> <employeeid>7</employeeid> <orderdate>1997-08-22</orderdate> <requireddate>1997-09-19</requireddate> <shippeddate>1997-09-05</shippeddate> <shipvia>3</shipvia> <freight>41.8900</freight> <shipname>Simons bistro</shipname> <shipaddress>Vinbæltet 34</shipaddress> <shipcity>Kobenhavn</shipcity> <shippostalcode>1734</shippostalcode> <shipcountry>Denmark</shipcountry> <orderdetails> <orderid>10642</orderid> <productid>21</productid> <unitprice>10.0000</unitprice> <quantity>30</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10642</orderid> <productid>61</productid> <unitprice>28.5000</unitprice> <quantity>20</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10669</orderid> <customerid>SIMOB</customerid> <employeeid>2</employeeid> <orderdate>1997-09-15</orderdate> <requireddate>1997-10-13</requireddate> <shippeddate>1997-09-22</shippeddate> <shipvia>1</shipvia> <freight>24.3900</freight> <shipname>Simons bistro</shipname> <shipaddress>Vinbæltet 34</shipaddress> <shipcity>Kobenhavn</shipcity> <shippostalcode>1734</shippostalcode> <shipcountry>Denmark</shipcountry> <orderdetails> <orderid>10669</orderid> <productid>36</productid> <unitprice>19.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10802</orderid> <customerid>SIMOB</customerid> <employeeid>4</employeeid> <orderdate>1997-12-29</orderdate> <requireddate>1998-01-26</requireddate> <shippeddate>1998-01-02</shippeddate> <shipvia>2</shipvia> <freight>257.2600</freight> <shipname>Simons bistro</shipname> <shipaddress>Vinbæltet 34</shipaddress> <shipcity>Kobenhavn</shipcity> <shippostalcode>1734</shippostalcode> <shipcountry>Denmark</shipcountry> <orderdetails> <orderid>10802</orderid> <productid>30</productid> <unitprice>25.8900</unitprice> <quantity>25</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10802</orderid> <productid>51</productid> <unitprice>53.0000</unitprice> <quantity>30</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10802</orderid> <productid>55</productid> <unitprice>24.0000</unitprice> <quantity>60</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10802</orderid> <productid>62</productid> <unitprice>49.3000</unitprice> <quantity>5</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>11074</orderid> <customerid>SIMOB</customerid> <employeeid>7</employeeid> <orderdate>1998-05-06</orderdate> <requireddate>1998-06-03</requireddate> <shipvia>2</shipvia> <freight>18.4400</freight> <shipname>Simons bistro</shipname> <shipaddress>Vinbæltet 34</shipaddress> <shipcity>Kobenhavn</shipcity> <shippostalcode>1734</shippostalcode> <shipcountry>Denmark</shipcountry> <orderdetails> <orderid>11074</orderid> <productid>16</productid> <unitprice>17.4500</unitprice> <quantity>14</quantity> <discount>0.05000</discount> </orderdetails> </orders> </customers> <customers> <customerid>SPECD</customerid> <companyname>Spécialités du monde</companyname> <contactname>Dominique Perrier</contactname> <contacttitle>Marketing Manager</contacttitle> <address>25, rue Lauriston</address> <city>Paris</city> <postalcode>75016</postalcode> <country>France</country> <phone>(1) 47.55.60.10</phone> <fax>(1) 47.55.60.20</fax> <orders> <orderid>10738</orderid> <customerid>SPECD</customerid> <employeeid>2</employeeid> <orderdate>1997-11-12</orderdate> <requireddate>1997-12-10</requireddate> <shippeddate>1997-11-18</shippeddate> <shipvia>1</shipvia> <freight>2.9100</freight> <shipname>Spécialités du monde</shipname> <shipaddress>25, rue Lauriston</shipaddress> <shipcity>Paris</shipcity> <shippostalcode>75016</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10738</orderid> <productid>16</productid> <unitprice>17.4500</unitprice> <quantity>3</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10907</orderid> <customerid>SPECD</customerid> <employeeid>6</employeeid> <orderdate>1998-02-25</orderdate> <requireddate>1998-03-25</requireddate> <shippeddate>1998-02-27</shippeddate> <shipvia>3</shipvia> <freight>9.1900</freight> <shipname>Spécialités du monde</shipname> <shipaddress>25, rue Lauriston</shipaddress> <shipcity>Paris</shipcity> <shippostalcode>75016</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10907</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>14</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10964</orderid> <customerid>SPECD</customerid> <employeeid>3</employeeid> <orderdate>1998-03-20</orderdate> <requireddate>1998-04-17</requireddate> <shippeddate>1998-03-24</shippeddate> <shipvia>2</shipvia> <freight>87.3800</freight> <shipname>Spécialités du monde</shipname> <shipaddress>25, rue Lauriston</shipaddress> <shipcity>Paris</shipcity> <shippostalcode>75016</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10964</orderid> <productid>18</productid> <unitprice>62.5000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10964</orderid> <productid>38</productid> <unitprice>263.5000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10964</orderid> <productid>69</productid> <unitprice>36.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11043</orderid> <customerid>SPECD</customerid> <employeeid>5</employeeid> <orderdate>1998-04-22</orderdate> <requireddate>1998-05-20</requireddate> <shippeddate>1998-04-29</shippeddate> <shipvia>2</shipvia> <freight>8.8000</freight> <shipname>Spécialités du monde</shipname> <shipaddress>25, rue Lauriston</shipaddress> <shipcity>Paris</shipcity> <shippostalcode>75016</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>11043</orderid> <productid>11</productid> <unitprice>21.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>SPLIR</customerid> <companyname>Split Rail Beer & Ale</companyname> <contactname>Art Braunschweiger</contactname> <contacttitle>Sales Manager</contacttitle> <address>P.O. Box 555</address> <city>Lander</city> <region>WY</region> <postalcode>82520</postalcode> <country>USA</country> <phone>(307) 555-4680</phone> <fax>(307) 555-6525</fax> <orders> <orderid>10271</orderid> <customerid>SPLIR</customerid> <employeeid>6</employeeid> <orderdate>1996-08-01</orderdate> <requireddate>1996-08-29</requireddate> <shippeddate>1996-08-30</shippeddate> <shipvia>2</shipvia> <freight>4.5400</freight> <shipname>Split Rail Beer & Ale</shipname> <shipaddress>P.O. Box 555</shipaddress> <shipcity>Lander</shipcity> <shipregion>WY</shipregion> <shippostalcode>82520</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10271</orderid> <productid>33</productid> <unitprice>2.0000</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10329</orderid> <customerid>SPLIR</customerid> <employeeid>4</employeeid> <orderdate>1996-10-15</orderdate> <requireddate>1996-11-26</requireddate> <shippeddate>1996-10-23</shippeddate> <shipvia>2</shipvia> <freight>191.6700</freight> <shipname>Split Rail Beer & Ale</shipname> <shipaddress>P.O. Box 555</shipaddress> <shipcity>Lander</shipcity> <shipregion>WY</shipregion> <shippostalcode>82520</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10329</orderid> <productid>19</productid> <unitprice>7.3000</unitprice> <quantity>10</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10329</orderid> <productid>30</productid> <unitprice>20.7000</unitprice> <quantity>8</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10329</orderid> <productid>38</productid> <unitprice>210.8000</unitprice> <quantity>20</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10329</orderid> <productid>56</productid> <unitprice>30.4000</unitprice> <quantity>12</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10349</orderid> <customerid>SPLIR</customerid> <employeeid>7</employeeid> <orderdate>1996-11-08</orderdate> <requireddate>1996-12-06</requireddate> <shippeddate>1996-11-15</shippeddate> <shipvia>1</shipvia> <freight>8.6300</freight> <shipname>Split Rail Beer & Ale</shipname> <shipaddress>P.O. Box 555</shipaddress> <shipcity>Lander</shipcity> <shipregion>WY</shipregion> <shippostalcode>82520</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10349</orderid> <productid>54</productid> <unitprice>5.9000</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10369</orderid> <customerid>SPLIR</customerid> <employeeid>8</employeeid> <orderdate>1996-12-02</orderdate> <requireddate>1996-12-30</requireddate> <shippeddate>1996-12-09</shippeddate> <shipvia>2</shipvia> <freight>195.6800</freight> <shipname>Split Rail Beer & Ale</shipname> <shipaddress>P.O. Box 555</shipaddress> <shipcity>Lander</shipcity> <shipregion>WY</shipregion> <shippostalcode>82520</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10369</orderid> <productid>29</productid> <unitprice>99.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10369</orderid> <productid>56</productid> <unitprice>30.4000</unitprice> <quantity>18</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10385</orderid> <customerid>SPLIR</customerid> <employeeid>1</employeeid> <orderdate>1996-12-17</orderdate> <requireddate>1997-01-14</requireddate> <shippeddate>1996-12-23</shippeddate> <shipvia>2</shipvia> <freight>30.9600</freight> <shipname>Split Rail Beer & Ale</shipname> <shipaddress>P.O. Box 555</shipaddress> <shipcity>Lander</shipcity> <shipregion>WY</shipregion> <shippostalcode>82520</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10385</orderid> <productid>7</productid> <unitprice>24.0000</unitprice> <quantity>10</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10385</orderid> <productid>60</productid> <unitprice>27.2000</unitprice> <quantity>20</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10385</orderid> <productid>68</productid> <unitprice>10.0000</unitprice> <quantity>8</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10432</orderid> <customerid>SPLIR</customerid> <employeeid>3</employeeid> <orderdate>1997-01-31</orderdate> <requireddate>1997-02-14</requireddate> <shippeddate>1997-02-07</shippeddate> <shipvia>2</shipvia> <freight>4.3400</freight> <shipname>Split Rail Beer & Ale</shipname> <shipaddress>P.O. Box 555</shipaddress> <shipcity>Lander</shipcity> <shipregion>WY</shipregion> <shippostalcode>82520</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10432</orderid> <productid>26</productid> <unitprice>24.9000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10432</orderid> <productid>54</productid> <unitprice>5.9000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10756</orderid> <customerid>SPLIR</customerid> <employeeid>8</employeeid> <orderdate>1997-11-27</orderdate> <requireddate>1997-12-25</requireddate> <shippeddate>1997-12-02</shippeddate> <shipvia>2</shipvia> <freight>73.2100</freight> <shipname>Split Rail Beer & Ale</shipname> <shipaddress>P.O. Box 555</shipaddress> <shipcity>Lander</shipcity> <shipregion>WY</shipregion> <shippostalcode>82520</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10756</orderid> <productid>18</productid> <unitprice>62.5000</unitprice> <quantity>21</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10756</orderid> <productid>36</productid> <unitprice>19.0000</unitprice> <quantity>20</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10756</orderid> <productid>68</productid> <unitprice>12.5000</unitprice> <quantity>6</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10756</orderid> <productid>69</productid> <unitprice>36.0000</unitprice> <quantity>20</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10821</orderid> <customerid>SPLIR</customerid> <employeeid>1</employeeid> <orderdate>1998-01-08</orderdate> <requireddate>1998-02-05</requireddate> <shippeddate>1998-01-15</shippeddate> <shipvia>1</shipvia> <freight>36.6800</freight> <shipname>Split Rail Beer & Ale</shipname> <shipaddress>P.O. Box 555</shipaddress> <shipcity>Lander</shipcity> <shipregion>WY</shipregion> <shippostalcode>82520</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10821</orderid> <productid>35</productid> <unitprice>18.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10821</orderid> <productid>51</productid> <unitprice>53.0000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10974</orderid> <customerid>SPLIR</customerid> <employeeid>3</employeeid> <orderdate>1998-03-25</orderdate> <requireddate>1998-04-08</requireddate> <shippeddate>1998-04-03</shippeddate> <shipvia>3</shipvia> <freight>12.9600</freight> <shipname>Split Rail Beer & Ale</shipname> <shipaddress>P.O. Box 555</shipaddress> <shipcity>Lander</shipcity> <shipregion>WY</shipregion> <shippostalcode>82520</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10974</orderid> <productid>63</productid> <unitprice>43.9000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>SUPRD</customerid> <companyname>Suprêmes délices</companyname> <contactname>Pascale Cartrain</contactname> <contacttitle>Accounting Manager</contacttitle> <address>Boulevard Tirou, 255</address> <city>Charleroi</city> <postalcode>B-6000</postalcode> <country>Belgium</country> <phone>(071) 23 67 22 20</phone> <fax>(071) 23 67 22 21</fax> <orders> <orderid>10252</orderid> <customerid>SUPRD</customerid> <employeeid>4</employeeid> <orderdate>1996-07-09</orderdate> <requireddate>1996-08-06</requireddate> <shippeddate>1996-07-11</shippeddate> <shipvia>2</shipvia> <freight>51.3000</freight> <shipname>Suprêmes délices</shipname> <shipaddress>Boulevard Tirou, 255</shipaddress> <shipcity>Charleroi</shipcity> <shippostalcode>B-6000</shippostalcode> <shipcountry>Belgium</shipcountry> <orderdetails> <orderid>10252</orderid> <productid>20</productid> <unitprice>64.8000</unitprice> <quantity>40</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10252</orderid> <productid>33</productid> <unitprice>2.0000</unitprice> <quantity>25</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10252</orderid> <productid>60</productid> <unitprice>27.2000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10302</orderid> <customerid>SUPRD</customerid> <employeeid>4</employeeid> <orderdate>1996-09-10</orderdate> <requireddate>1996-10-08</requireddate> <shippeddate>1996-10-09</shippeddate> <shipvia>2</shipvia> <freight>6.2700</freight> <shipname>Suprêmes délices</shipname> <shipaddress>Boulevard Tirou, 255</shipaddress> <shipcity>Charleroi</shipcity> <shippostalcode>B-6000</shippostalcode> <shipcountry>Belgium</shipcountry> <orderdetails> <orderid>10302</orderid> <productid>17</productid> <unitprice>31.2000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10302</orderid> <productid>28</productid> <unitprice>36.4000</unitprice> <quantity>28</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10302</orderid> <productid>43</productid> <unitprice>36.8000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10458</orderid> <customerid>SUPRD</customerid> <employeeid>7</employeeid> <orderdate>1997-02-26</orderdate> <requireddate>1997-03-26</requireddate> <shippeddate>1997-03-04</shippeddate> <shipvia>3</shipvia> <freight>147.0600</freight> <shipname>Suprêmes délices</shipname> <shipaddress>Boulevard Tirou, 255</shipaddress> <shipcity>Charleroi</shipcity> <shippostalcode>B-6000</shippostalcode> <shipcountry>Belgium</shipcountry> <orderdetails> <orderid>10458</orderid> <productid>26</productid> <unitprice>24.9000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10458</orderid> <productid>28</productid> <unitprice>36.4000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10458</orderid> <productid>43</productid> <unitprice>36.8000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10458</orderid> <productid>56</productid> <unitprice>30.4000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10458</orderid> <productid>71</productid> <unitprice>17.2000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10463</orderid> <customerid>SUPRD</customerid> <employeeid>5</employeeid> <orderdate>1997-03-04</orderdate> <requireddate>1997-04-01</requireddate> <shippeddate>1997-03-06</shippeddate> <shipvia>3</shipvia> <freight>14.7800</freight> <shipname>Suprêmes délices</shipname> <shipaddress>Boulevard Tirou, 255</shipaddress> <shipcity>Charleroi</shipcity> <shippostalcode>B-6000</shippostalcode> <shipcountry>Belgium</shipcountry> <orderdetails> <orderid>10463</orderid> <productid>19</productid> <unitprice>7.3000</unitprice> <quantity>21</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10463</orderid> <productid>42</productid> <unitprice>11.2000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10475</orderid> <customerid>SUPRD</customerid> <employeeid>9</employeeid> <orderdate>1997-03-14</orderdate> <requireddate>1997-04-11</requireddate> <shippeddate>1997-04-04</shippeddate> <shipvia>1</shipvia> <freight>68.5200</freight> <shipname>Suprêmes délices</shipname> <shipaddress>Boulevard Tirou, 255</shipaddress> <shipcity>Charleroi</shipcity> <shippostalcode>B-6000</shippostalcode> <shipcountry>Belgium</shipcountry> <orderdetails> <orderid>10475</orderid> <productid>31</productid> <unitprice>10.0000</unitprice> <quantity>35</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10475</orderid> <productid>66</productid> <unitprice>13.6000</unitprice> <quantity>60</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10475</orderid> <productid>76</productid> <unitprice>14.4000</unitprice> <quantity>42</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10767</orderid> <customerid>SUPRD</customerid> <employeeid>4</employeeid> <orderdate>1997-12-05</orderdate> <requireddate>1998-01-02</requireddate> <shippeddate>1997-12-15</shippeddate> <shipvia>3</shipvia> <freight>1.5900</freight> <shipname>Suprêmes délices</shipname> <shipaddress>Boulevard Tirou, 255</shipaddress> <shipcity>Charleroi</shipcity> <shippostalcode>B-6000</shippostalcode> <shipcountry>Belgium</shipcountry> <orderdetails> <orderid>10767</orderid> <productid>42</productid> <unitprice>14.0000</unitprice> <quantity>2</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10841</orderid> <customerid>SUPRD</customerid> <employeeid>5</employeeid> <orderdate>1998-01-20</orderdate> <requireddate>1998-02-17</requireddate> <shippeddate>1998-01-29</shippeddate> <shipvia>2</shipvia> <freight>424.3000</freight> <shipname>Suprêmes délices</shipname> <shipaddress>Boulevard Tirou, 255</shipaddress> <shipcity>Charleroi</shipcity> <shippostalcode>B-6000</shippostalcode> <shipcountry>Belgium</shipcountry> <orderdetails> <orderid>10841</orderid> <productid>10</productid> <unitprice>31.0000</unitprice> <quantity>16</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10841</orderid> <productid>56</productid> <unitprice>38.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10841</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10841</orderid> <productid>77</productid> <unitprice>13.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10846</orderid> <customerid>SUPRD</customerid> <employeeid>2</employeeid> <orderdate>1998-01-22</orderdate> <requireddate>1998-03-05</requireddate> <shippeddate>1998-01-23</shippeddate> <shipvia>3</shipvia> <freight>56.4600</freight> <shipname>Suprêmes délices</shipname> <shipaddress>Boulevard Tirou, 255</shipaddress> <shipcity>Charleroi</shipcity> <shippostalcode>B-6000</shippostalcode> <shipcountry>Belgium</shipcountry> <orderdetails> <orderid>10846</orderid> <productid>4</productid> <unitprice>22.0000</unitprice> <quantity>21</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10846</orderid> <productid>70</productid> <unitprice>15.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10846</orderid> <productid>74</productid> <unitprice>10.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10885</orderid> <customerid>SUPRD</customerid> <employeeid>6</employeeid> <orderdate>1998-02-12</orderdate> <requireddate>1998-03-12</requireddate> <shippeddate>1998-02-18</shippeddate> <shipvia>3</shipvia> <freight>5.6400</freight> <shipname>Suprêmes délices</shipname> <shipaddress>Boulevard Tirou, 255</shipaddress> <shipcity>Charleroi</shipcity> <shippostalcode>B-6000</shippostalcode> <shipcountry>Belgium</shipcountry> <orderdetails> <orderid>10885</orderid> <productid>2</productid> <unitprice>19.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10885</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10885</orderid> <productid>70</productid> <unitprice>15.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10885</orderid> <productid>77</productid> <unitprice>13.0000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10930</orderid> <customerid>SUPRD</customerid> <employeeid>4</employeeid> <orderdate>1998-03-06</orderdate> <requireddate>1998-04-17</requireddate> <shippeddate>1998-03-18</shippeddate> <shipvia>3</shipvia> <freight>15.5500</freight> <shipname>Suprêmes délices</shipname> <shipaddress>Boulevard Tirou, 255</shipaddress> <shipcity>Charleroi</shipcity> <shippostalcode>B-6000</shippostalcode> <shipcountry>Belgium</shipcountry> <orderdetails> <orderid>10930</orderid> <productid>21</productid> <unitprice>10.0000</unitprice> <quantity>36</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10930</orderid> <productid>27</productid> <unitprice>43.9000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10930</orderid> <productid>55</productid> <unitprice>24.0000</unitprice> <quantity>25</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10930</orderid> <productid>58</productid> <unitprice>13.2500</unitprice> <quantity>30</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>11035</orderid> <customerid>SUPRD</customerid> <employeeid>2</employeeid> <orderdate>1998-04-20</orderdate> <requireddate>1998-05-18</requireddate> <shippeddate>1998-04-24</shippeddate> <shipvia>2</shipvia> <freight>0.1700</freight> <shipname>Suprêmes délices</shipname> <shipaddress>Boulevard Tirou, 255</shipaddress> <shipcity>Charleroi</shipcity> <shippostalcode>B-6000</shippostalcode> <shipcountry>Belgium</shipcountry> <orderdetails> <orderid>11035</orderid> <productid>1</productid> <unitprice>18.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11035</orderid> <productid>35</productid> <unitprice>18.0000</unitprice> <quantity>60</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11035</orderid> <productid>42</productid> <unitprice>14.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11035</orderid> <productid>54</productid> <unitprice>7.4500</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11038</orderid> <customerid>SUPRD</customerid> <employeeid>1</employeeid> <orderdate>1998-04-21</orderdate> <requireddate>1998-05-19</requireddate> <shippeddate>1998-04-30</shippeddate> <shipvia>2</shipvia> <freight>29.5900</freight> <shipname>Suprêmes délices</shipname> <shipaddress>Boulevard Tirou, 255</shipaddress> <shipcity>Charleroi</shipcity> <shippostalcode>B-6000</shippostalcode> <shipcountry>Belgium</shipcountry> <orderdetails> <orderid>11038</orderid> <productid>40</productid> <unitprice>18.4000</unitprice> <quantity>5</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>11038</orderid> <productid>52</productid> <unitprice>7.0000</unitprice> <quantity>2</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11038</orderid> <productid>71</productid> <unitprice>21.5000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>THEBI</customerid> <companyname>The Big Cheese</companyname> <contactname>Liz Nixon</contactname> <contacttitle>Marketing Manager</contacttitle> <address>89 Jefferson Way Suite 2</address> <city>Portland</city> <region>OR</region> <postalcode>97201</postalcode> <country>USA</country> <phone>(503) 555-3612</phone> <orders> <orderid>10310</orderid> <customerid>THEBI</customerid> <employeeid>8</employeeid> <orderdate>1996-09-20</orderdate> <requireddate>1996-10-18</requireddate> <shippeddate>1996-09-27</shippeddate> <shipvia>2</shipvia> <freight>17.5200</freight> <shipname>The Big Cheese</shipname> <shipaddress>89 Jefferson Way Suite 2</shipaddress> <shipcity>Portland</shipcity> <shipregion>OR</shipregion> <shippostalcode>97201</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10310</orderid> <productid>16</productid> <unitprice>13.9000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10310</orderid> <productid>62</productid> <unitprice>39.4000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10708</orderid> <customerid>THEBI</customerid> <employeeid>6</employeeid> <orderdate>1997-10-17</orderdate> <requireddate>1997-11-28</requireddate> <shippeddate>1997-11-05</shippeddate> <shipvia>2</shipvia> <freight>2.9600</freight> <shipname>The Big Cheese</shipname> <shipaddress>89 Jefferson Way Suite 2</shipaddress> <shipcity>Portland</shipcity> <shipregion>OR</shipregion> <shippostalcode>97201</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10708</orderid> <productid>5</productid> <unitprice>21.3500</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10708</orderid> <productid>36</productid> <unitprice>19.0000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10805</orderid> <customerid>THEBI</customerid> <employeeid>2</employeeid> <orderdate>1997-12-30</orderdate> <requireddate>1998-01-27</requireddate> <shippeddate>1998-01-09</shippeddate> <shipvia>3</shipvia> <freight>237.3400</freight> <shipname>The Big Cheese</shipname> <shipaddress>89 Jefferson Way Suite 2</shipaddress> <shipcity>Portland</shipcity> <shipregion>OR</shipregion> <shippostalcode>97201</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10805</orderid> <productid>34</productid> <unitprice>14.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10805</orderid> <productid>38</productid> <unitprice>263.5000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10992</orderid> <customerid>THEBI</customerid> <employeeid>1</employeeid> <orderdate>1998-04-01</orderdate> <requireddate>1998-04-29</requireddate> <shippeddate>1998-04-03</shippeddate> <shipvia>3</shipvia> <freight>4.2700</freight> <shipname>The Big Cheese</shipname> <shipaddress>89 Jefferson Way Suite 2</shipaddress> <shipcity>Portland</shipcity> <shipregion>OR</shipregion> <shippostalcode>97201</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10992</orderid> <productid>72</productid> <unitprice>34.8000</unitprice> <quantity>2</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>THECR</customerid> <companyname>The Cracker Box</companyname> <contactname>Liu Wong</contactname> <contacttitle>Marketing Assistant</contacttitle> <address>55 Grizzly Peak Rd.</address> <city>Butte</city> <region>MT</region> <postalcode>59801</postalcode> <country>USA</country> <phone>(406) 555-5834</phone> <fax>(406) 555-8083</fax> <orders> <orderid>10624</orderid> <customerid>THECR</customerid> <employeeid>4</employeeid> <orderdate>1997-08-07</orderdate> <requireddate>1997-09-04</requireddate> <shippeddate>1997-08-19</shippeddate> <shipvia>2</shipvia> <freight>94.8000</freight> <shipname>The Cracker Box</shipname> <shipaddress>55 Grizzly Peak Rd.</shipaddress> <shipcity>Butte</shipcity> <shipregion>MT</shipregion> <shippostalcode>59801</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10624</orderid> <productid>28</productid> <unitprice>45.6000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10624</orderid> <productid>29</productid> <unitprice>123.7900</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10624</orderid> <productid>44</productid> <unitprice>19.4500</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10775</orderid> <customerid>THECR</customerid> <employeeid>7</employeeid> <orderdate>1997-12-12</orderdate> <requireddate>1998-01-09</requireddate> <shippeddate>1997-12-26</shippeddate> <shipvia>1</shipvia> <freight>20.2500</freight> <shipname>The Cracker Box</shipname> <shipaddress>55 Grizzly Peak Rd.</shipaddress> <shipcity>Butte</shipcity> <shipregion>MT</shipregion> <shippostalcode>59801</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10775</orderid> <productid>10</productid> <unitprice>31.0000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10775</orderid> <productid>67</productid> <unitprice>14.0000</unitprice> <quantity>3</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11003</orderid> <customerid>THECR</customerid> <employeeid>3</employeeid> <orderdate>1998-04-06</orderdate> <requireddate>1998-05-04</requireddate> <shippeddate>1998-04-08</shippeddate> <shipvia>3</shipvia> <freight>14.9100</freight> <shipname>The Cracker Box</shipname> <shipaddress>55 Grizzly Peak Rd.</shipaddress> <shipcity>Butte</shipcity> <shipregion>MT</shipregion> <shippostalcode>59801</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>11003</orderid> <productid>1</productid> <unitprice>18.0000</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11003</orderid> <productid>40</productid> <unitprice>18.4000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11003</orderid> <productid>52</productid> <unitprice>7.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>TOMSP</customerid> <companyname>Toms Spezialitäten</companyname> <contactname>Karin Josephs</contactname> <contacttitle>Marketing Manager</contacttitle> <address>Luisenstr. 48</address> <city>Münster</city> <postalcode>44087</postalcode> <country>Germany</country> <phone>0251-031259</phone> <fax>0251-035695</fax> <orders> <orderid>10249</orderid> <customerid>TOMSP</customerid> <employeeid>6</employeeid> <orderdate>1996-07-05</orderdate> <requireddate>1996-08-16</requireddate> <shippeddate>1996-07-10</shippeddate> <shipvia>1</shipvia> <freight>11.6100</freight> <shipname>Toms Spezialitäten</shipname> <shipaddress>Luisenstr. 48</shipaddress> <shipcity>Münster</shipcity> <shippostalcode>44087</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10249</orderid> <productid>14</productid> <unitprice>18.6000</unitprice> <quantity>9</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10249</orderid> <productid>51</productid> <unitprice>42.4000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10438</orderid> <customerid>TOMSP</customerid> <employeeid>3</employeeid> <orderdate>1997-02-06</orderdate> <requireddate>1997-03-06</requireddate> <shippeddate>1997-02-14</shippeddate> <shipvia>2</shipvia> <freight>8.2400</freight> <shipname>Toms Spezialitäten</shipname> <shipaddress>Luisenstr. 48</shipaddress> <shipcity>Münster</shipcity> <shippostalcode>44087</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10438</orderid> <productid>19</productid> <unitprice>7.3000</unitprice> <quantity>15</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10438</orderid> <productid>34</productid> <unitprice>11.2000</unitprice> <quantity>20</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10438</orderid> <productid>57</productid> <unitprice>15.6000</unitprice> <quantity>15</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10446</orderid> <customerid>TOMSP</customerid> <employeeid>6</employeeid> <orderdate>1997-02-14</orderdate> <requireddate>1997-03-14</requireddate> <shippeddate>1997-02-19</shippeddate> <shipvia>1</shipvia> <freight>14.6800</freight> <shipname>Toms Spezialitäten</shipname> <shipaddress>Luisenstr. 48</shipaddress> <shipcity>Münster</shipcity> <shippostalcode>44087</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10446</orderid> <productid>19</productid> <unitprice>7.3000</unitprice> <quantity>12</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10446</orderid> <productid>24</productid> <unitprice>3.6000</unitprice> <quantity>20</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10446</orderid> <productid>31</productid> <unitprice>10.0000</unitprice> <quantity>3</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10446</orderid> <productid>52</productid> <unitprice>5.6000</unitprice> <quantity>15</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10548</orderid> <customerid>TOMSP</customerid> <employeeid>3</employeeid> <orderdate>1997-05-26</orderdate> <requireddate>1997-06-23</requireddate> <shippeddate>1997-06-02</shippeddate> <shipvia>2</shipvia> <freight>1.4300</freight> <shipname>Toms Spezialitäten</shipname> <shipaddress>Luisenstr. 48</shipaddress> <shipcity>Münster</shipcity> <shippostalcode>44087</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10548</orderid> <productid>34</productid> <unitprice>14.0000</unitprice> <quantity>10</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10548</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>14</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10608</orderid> <customerid>TOMSP</customerid> <employeeid>4</employeeid> <orderdate>1997-07-23</orderdate> <requireddate>1997-08-20</requireddate> <shippeddate>1997-08-01</shippeddate> <shipvia>2</shipvia> <freight>27.7900</freight> <shipname>Toms Spezialitäten</shipname> <shipaddress>Luisenstr. 48</shipaddress> <shipcity>Münster</shipcity> <shippostalcode>44087</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10608</orderid> <productid>56</productid> <unitprice>38.0000</unitprice> <quantity>28</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10967</orderid> <customerid>TOMSP</customerid> <employeeid>2</employeeid> <orderdate>1998-03-23</orderdate> <requireddate>1998-04-20</requireddate> <shippeddate>1998-04-02</shippeddate> <shipvia>2</shipvia> <freight>62.2200</freight> <shipname>Toms Spezialitäten</shipname> <shipaddress>Luisenstr. 48</shipaddress> <shipcity>Münster</shipcity> <shippostalcode>44087</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10967</orderid> <productid>19</productid> <unitprice>9.2000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10967</orderid> <productid>49</productid> <unitprice>20.0000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>TORTU</customerid> <companyname>Tortuga Restaurante</companyname> <contactname>Miguel Angel Paolino</contactname> <contacttitle>Owner</contacttitle> <address>Avda. Azteca 123</address> <city>México D.F.</city> <postalcode>05033</postalcode> <country>Mexico</country> <phone>(5) 555-2933</phone> <orders> <orderid>10276</orderid> <customerid>TORTU</customerid> <employeeid>8</employeeid> <orderdate>1996-08-08</orderdate> <requireddate>1996-08-22</requireddate> <shippeddate>1996-08-14</shippeddate> <shipvia>3</shipvia> <freight>13.8400</freight> <shipname>Tortuga Restaurante</shipname> <shipaddress>Avda. Azteca 123</shipaddress> <shipcity>México D.F.</shipcity> <shippostalcode>05033</shippostalcode> <shipcountry>Mexico</shipcountry> <orderdetails> <orderid>10276</orderid> <productid>10</productid> <unitprice>24.8000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10276</orderid> <productid>13</productid> <unitprice>4.8000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10293</orderid> <customerid>TORTU</customerid> <employeeid>1</employeeid> <orderdate>1996-08-29</orderdate> <requireddate>1996-09-26</requireddate> <shippeddate>1996-09-11</shippeddate> <shipvia>3</shipvia> <freight>21.1800</freight> <shipname>Tortuga Restaurante</shipname> <shipaddress>Avda. Azteca 123</shipaddress> <shipcity>México D.F.</shipcity> <shippostalcode>05033</shippostalcode> <shipcountry>Mexico</shipcountry> <orderdetails> <orderid>10293</orderid> <productid>18</productid> <unitprice>50.0000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10293</orderid> <productid>24</productid> <unitprice>3.6000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10293</orderid> <productid>63</productid> <unitprice>35.1000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10293</orderid> <productid>75</productid> <unitprice>6.2000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10304</orderid> <customerid>TORTU</customerid> <employeeid>1</employeeid> <orderdate>1996-09-12</orderdate> <requireddate>1996-10-10</requireddate> <shippeddate>1996-09-17</shippeddate> <shipvia>2</shipvia> <freight>63.7900</freight> <shipname>Tortuga Restaurante</shipname> <shipaddress>Avda. Azteca 123</shipaddress> <shipcity>México D.F.</shipcity> <shippostalcode>05033</shippostalcode> <shipcountry>Mexico</shipcountry> <orderdetails> <orderid>10304</orderid> <productid>49</productid> <unitprice>16.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10304</orderid> <productid>59</productid> <unitprice>44.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10304</orderid> <productid>71</productid> <unitprice>17.2000</unitprice> <quantity>2</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10319</orderid> <customerid>TORTU</customerid> <employeeid>7</employeeid> <orderdate>1996-10-02</orderdate> <requireddate>1996-10-30</requireddate> <shippeddate>1996-10-11</shippeddate> <shipvia>3</shipvia> <freight>64.5000</freight> <shipname>Tortuga Restaurante</shipname> <shipaddress>Avda. Azteca 123</shipaddress> <shipcity>México D.F.</shipcity> <shippostalcode>05033</shippostalcode> <shipcountry>Mexico</shipcountry> <orderdetails> <orderid>10319</orderid> <productid>17</productid> <unitprice>31.2000</unitprice> <quantity>8</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10319</orderid> <productid>28</productid> <unitprice>36.4000</unitprice> <quantity>14</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10319</orderid> <productid>76</productid> <unitprice>14.4000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10518</orderid> <customerid>TORTU</customerid> <employeeid>4</employeeid> <orderdate>1997-04-25</orderdate> <requireddate>1997-05-09</requireddate> <shippeddate>1997-05-05</shippeddate> <shipvia>2</shipvia> <freight>218.1500</freight> <shipname>Tortuga Restaurante</shipname> <shipaddress>Avda. Azteca 123</shipaddress> <shipcity>México D.F.</shipcity> <shippostalcode>05033</shippostalcode> <shipcountry>Mexico</shipcountry> <orderdetails> <orderid>10518</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10518</orderid> <productid>38</productid> <unitprice>263.5000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10518</orderid> <productid>44</productid> <unitprice>19.4500</unitprice> <quantity>9</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10576</orderid> <customerid>TORTU</customerid> <employeeid>3</employeeid> <orderdate>1997-06-23</orderdate> <requireddate>1997-07-07</requireddate> <shippeddate>1997-06-30</shippeddate> <shipvia>3</shipvia> <freight>18.5600</freight> <shipname>Tortuga Restaurante</shipname> <shipaddress>Avda. Azteca 123</shipaddress> <shipcity>México D.F.</shipcity> <shippostalcode>05033</shippostalcode> <shipcountry>Mexico</shipcountry> <orderdetails> <orderid>10576</orderid> <productid>1</productid> <unitprice>18.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10576</orderid> <productid>31</productid> <unitprice>12.5000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10576</orderid> <productid>44</productid> <unitprice>19.4500</unitprice> <quantity>21</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10676</orderid> <customerid>TORTU</customerid> <employeeid>2</employeeid> <orderdate>1997-09-22</orderdate> <requireddate>1997-10-20</requireddate> <shippeddate>1997-09-29</shippeddate> <shipvia>2</shipvia> <freight>2.0100</freight> <shipname>Tortuga Restaurante</shipname> <shipaddress>Avda. Azteca 123</shipaddress> <shipcity>México D.F.</shipcity> <shippostalcode>05033</shippostalcode> <shipcountry>Mexico</shipcountry> <orderdetails> <orderid>10676</orderid> <productid>10</productid> <unitprice>31.0000</unitprice> <quantity>2</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10676</orderid> <productid>19</productid> <unitprice>9.2000</unitprice> <quantity>7</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10676</orderid> <productid>44</productid> <unitprice>19.4500</unitprice> <quantity>21</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10842</orderid> <customerid>TORTU</customerid> <employeeid>1</employeeid> <orderdate>1998-01-20</orderdate> <requireddate>1998-02-17</requireddate> <shippeddate>1998-01-29</shippeddate> <shipvia>3</shipvia> <freight>54.4200</freight> <shipname>Tortuga Restaurante</shipname> <shipaddress>Avda. Azteca 123</shipaddress> <shipcity>México D.F.</shipcity> <shippostalcode>05033</shippostalcode> <shipcountry>Mexico</shipcountry> <orderdetails> <orderid>10842</orderid> <productid>11</productid> <unitprice>21.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10842</orderid> <productid>43</productid> <unitprice>46.0000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10842</orderid> <productid>68</productid> <unitprice>12.5000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10842</orderid> <productid>70</productid> <unitprice>15.0000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10915</orderid> <customerid>TORTU</customerid> <employeeid>2</employeeid> <orderdate>1998-02-27</orderdate> <requireddate>1998-03-27</requireddate> <shippeddate>1998-03-02</shippeddate> <shipvia>2</shipvia> <freight>3.5100</freight> <shipname>Tortuga Restaurante</shipname> <shipaddress>Avda. Azteca 123</shipaddress> <shipcity>México D.F.</shipcity> <shippostalcode>05033</shippostalcode> <shipcountry>Mexico</shipcountry> <orderdetails> <orderid>10915</orderid> <productid>17</productid> <unitprice>39.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10915</orderid> <productid>33</productid> <unitprice>2.5000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10915</orderid> <productid>54</productid> <unitprice>7.4500</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11069</orderid> <customerid>TORTU</customerid> <employeeid>1</employeeid> <orderdate>1998-05-04</orderdate> <requireddate>1998-06-01</requireddate> <shippeddate>1998-05-06</shippeddate> <shipvia>2</shipvia> <freight>15.6700</freight> <shipname>Tortuga Restaurante</shipname> <shipaddress>Avda. Azteca 123</shipaddress> <shipcity>México D.F.</shipcity> <shippostalcode>05033</shippostalcode> <shipcountry>Mexico</shipcountry> <orderdetails> <orderid>11069</orderid> <productid>39</productid> <unitprice>18.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>TRADH</customerid> <companyname>Tradição Hipermercados</companyname> <contactname>Anabela Domingues</contactname> <contacttitle>Sales Representative</contacttitle> <address>Av. Inês de Castro, 414</address> <city>Sao Paulo</city> <region>SP</region> <postalcode>05634-030</postalcode> <country>Brazil</country> <phone>(11) 555-2167</phone> <fax>(11) 555-2168</fax> <orders> <orderid>10292</orderid> <customerid>TRADH</customerid> <employeeid>1</employeeid> <orderdate>1996-08-28</orderdate> <requireddate>1996-09-25</requireddate> <shippeddate>1996-09-02</shippeddate> <shipvia>2</shipvia> <freight>1.3500</freight> <shipname>Tradiçao Hipermercados</shipname> <shipaddress>Av. Inês de Castro, 414</shipaddress> <shipcity>Sao Paulo</shipcity> <shipregion>SP</shipregion> <shippostalcode>05634-030</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10292</orderid> <productid>20</productid> <unitprice>64.8000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10496</orderid> <customerid>TRADH</customerid> <employeeid>7</employeeid> <orderdate>1997-04-04</orderdate> <requireddate>1997-05-02</requireddate> <shippeddate>1997-04-07</shippeddate> <shipvia>2</shipvia> <freight>46.7700</freight> <shipname>Tradiçao Hipermercados</shipname> <shipaddress>Av. Inês de Castro, 414</shipaddress> <shipcity>Sao Paulo</shipcity> <shipregion>SP</shipregion> <shippostalcode>05634-030</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10496</orderid> <productid>31</productid> <unitprice>10.0000</unitprice> <quantity>20</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10606</orderid> <customerid>TRADH</customerid> <employeeid>4</employeeid> <orderdate>1997-07-22</orderdate> <requireddate>1997-08-19</requireddate> <shippeddate>1997-07-31</shippeddate> <shipvia>3</shipvia> <freight>79.4000</freight> <shipname>Tradiçao Hipermercados</shipname> <shipaddress>Av. Inês de Castro, 414</shipaddress> <shipcity>Sao Paulo</shipcity> <shipregion>SP</shipregion> <shippostalcode>05634-030</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10606</orderid> <productid>4</productid> <unitprice>22.0000</unitprice> <quantity>20</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10606</orderid> <productid>55</productid> <unitprice>24.0000</unitprice> <quantity>20</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10606</orderid> <productid>62</productid> <unitprice>49.3000</unitprice> <quantity>10</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10830</orderid> <customerid>TRADH</customerid> <employeeid>4</employeeid> <orderdate>1998-01-13</orderdate> <requireddate>1998-02-24</requireddate> <shippeddate>1998-01-21</shippeddate> <shipvia>2</shipvia> <freight>81.8300</freight> <shipname>Tradiçao Hipermercados</shipname> <shipaddress>Av. Inês de Castro, 414</shipaddress> <shipcity>Sao Paulo</shipcity> <shipregion>SP</shipregion> <shippostalcode>05634-030</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10830</orderid> <productid>6</productid> <unitprice>25.0000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10830</orderid> <productid>39</productid> <unitprice>18.0000</unitprice> <quantity>28</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10830</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10830</orderid> <productid>68</productid> <unitprice>12.5000</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10834</orderid> <customerid>TRADH</customerid> <employeeid>1</employeeid> <orderdate>1998-01-15</orderdate> <requireddate>1998-02-12</requireddate> <shippeddate>1998-01-19</shippeddate> <shipvia>3</shipvia> <freight>29.7800</freight> <shipname>Tradiçao Hipermercados</shipname> <shipaddress>Av. Inês de Castro, 414</shipaddress> <shipcity>Sao Paulo</shipcity> <shipregion>SP</shipregion> <shippostalcode>05634-030</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10834</orderid> <productid>29</productid> <unitprice>123.7900</unitprice> <quantity>8</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10834</orderid> <productid>30</productid> <unitprice>25.8900</unitprice> <quantity>20</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10839</orderid> <customerid>TRADH</customerid> <employeeid>3</employeeid> <orderdate>1998-01-19</orderdate> <requireddate>1998-02-16</requireddate> <shippeddate>1998-01-22</shippeddate> <shipvia>3</shipvia> <freight>35.4300</freight> <shipname>Tradiçao Hipermercados</shipname> <shipaddress>Av. Inês de Castro, 414</shipaddress> <shipcity>Sao Paulo</shipcity> <shipregion>SP</shipregion> <shippostalcode>05634-030</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10839</orderid> <productid>58</productid> <unitprice>13.2500</unitprice> <quantity>30</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10839</orderid> <productid>72</productid> <unitprice>34.8000</unitprice> <quantity>15</quantity> <discount>0.10000</discount> </orderdetails> </orders> </customers> <customers> <customerid>TRAIH</customerid> <companyname>Trail's Head Gourmet Provisioners</companyname> <contactname>Helvetius Nagy</contactname> <contacttitle>Sales Associate</contacttitle> <address>722 DaVinci Blvd.</address> <city>Kirkland</city> <region>WA</region> <postalcode>98034</postalcode> <country>USA</country> <phone>(206) 555-8257</phone> <fax>(206) 555-2174</fax> <orders> <orderid>10574</orderid> <customerid>TRAIH</customerid> <employeeid>4</employeeid> <orderdate>1997-06-19</orderdate> <requireddate>1997-07-17</requireddate> <shippeddate>1997-06-30</shippeddate> <shipvia>2</shipvia> <freight>37.6000</freight> <shipname>Trail's Head Gourmet Provisioners</shipname> <shipaddress>722 DaVinci Blvd.</shipaddress> <shipcity>Kirkland</shipcity> <shipregion>WA</shipregion> <shippostalcode>98034</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10574</orderid> <productid>33</productid> <unitprice>2.5000</unitprice> <quantity>14</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10574</orderid> <productid>40</productid> <unitprice>18.4000</unitprice> <quantity>2</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10574</orderid> <productid>62</productid> <unitprice>49.3000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10574</orderid> <productid>64</productid> <unitprice>33.2500</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10577</orderid> <customerid>TRAIH</customerid> <employeeid>9</employeeid> <orderdate>1997-06-23</orderdate> <requireddate>1997-08-04</requireddate> <shippeddate>1997-06-30</shippeddate> <shipvia>2</shipvia> <freight>25.4100</freight> <shipname>Trail's Head Gourmet Provisioners</shipname> <shipaddress>722 DaVinci Blvd.</shipaddress> <shipcity>Kirkland</shipcity> <shipregion>WA</shipregion> <shippostalcode>98034</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10577</orderid> <productid>39</productid> <unitprice>18.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10577</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10577</orderid> <productid>77</productid> <unitprice>13.0000</unitprice> <quantity>18</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10822</orderid> <customerid>TRAIH</customerid> <employeeid>6</employeeid> <orderdate>1998-01-08</orderdate> <requireddate>1998-02-05</requireddate> <shippeddate>1998-01-16</shippeddate> <shipvia>3</shipvia> <freight>7.0000</freight> <shipname>Trail's Head Gourmet Provisioners</shipname> <shipaddress>722 DaVinci Blvd.</shipaddress> <shipcity>Kirkland</shipcity> <shipregion>WA</shipregion> <shippostalcode>98034</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10822</orderid> <productid>62</productid> <unitprice>49.3000</unitprice> <quantity>3</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10822</orderid> <productid>70</productid> <unitprice>15.0000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>VAFFE</customerid> <companyname>Vaffeljernet</companyname> <contactname>Palle Ibsen</contactname> <contacttitle>Sales Manager</contacttitle> <address>Smagsloget 45</address> <city>Århus</city> <postalcode>8200</postalcode> <country>Denmark</country> <phone>86 21 32 43</phone> <fax>86 22 33 44</fax> <orders> <orderid>10367</orderid> <customerid>VAFFE</customerid> <employeeid>7</employeeid> <orderdate>1996-11-28</orderdate> <requireddate>1996-12-26</requireddate> <shippeddate>1996-12-02</shippeddate> <shipvia>3</shipvia> <freight>13.5500</freight> <shipname>Vaffeljernet</shipname> <shipaddress>Smagsloget 45</shipaddress> <shipcity>Århus</shipcity> <shippostalcode>8200</shippostalcode> <shipcountry>Denmark</shipcountry> <orderdetails> <orderid>10367</orderid> <productid>34</productid> <unitprice>11.2000</unitprice> <quantity>36</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10367</orderid> <productid>54</productid> <unitprice>5.9000</unitprice> <quantity>18</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10367</orderid> <productid>65</productid> <unitprice>16.8000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10367</orderid> <productid>77</productid> <unitprice>10.4000</unitprice> <quantity>7</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10399</orderid> <customerid>VAFFE</customerid> <employeeid>8</employeeid> <orderdate>1996-12-31</orderdate> <requireddate>1997-01-14</requireddate> <shippeddate>1997-01-08</shippeddate> <shipvia>3</shipvia> <freight>27.3600</freight> <shipname>Vaffeljernet</shipname> <shipaddress>Smagsloget 45</shipaddress> <shipcity>Århus</shipcity> <shippostalcode>8200</shippostalcode> <shipcountry>Denmark</shipcountry> <orderdetails> <orderid>10399</orderid> <productid>68</productid> <unitprice>10.0000</unitprice> <quantity>60</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10399</orderid> <productid>71</productid> <unitprice>17.2000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10399</orderid> <productid>76</productid> <unitprice>14.4000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10399</orderid> <productid>77</productid> <unitprice>10.4000</unitprice> <quantity>14</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10465</orderid> <customerid>VAFFE</customerid> <employeeid>1</employeeid> <orderdate>1997-03-05</orderdate> <requireddate>1997-04-02</requireddate> <shippeddate>1997-03-14</shippeddate> <shipvia>3</shipvia> <freight>145.0400</freight> <shipname>Vaffeljernet</shipname> <shipaddress>Smagsloget 45</shipaddress> <shipcity>Århus</shipcity> <shippostalcode>8200</shippostalcode> <shipcountry>Denmark</shipcountry> <orderdetails> <orderid>10465</orderid> <productid>24</productid> <unitprice>3.6000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10465</orderid> <productid>29</productid> <unitprice>99.0000</unitprice> <quantity>18</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10465</orderid> <productid>40</productid> <unitprice>14.7000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10465</orderid> <productid>45</productid> <unitprice>7.6000</unitprice> <quantity>30</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10465</orderid> <productid>50</productid> <unitprice>13.0000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10591</orderid> <customerid>VAFFE</customerid> <employeeid>1</employeeid> <orderdate>1997-07-07</orderdate> <requireddate>1997-07-21</requireddate> <shippeddate>1997-07-16</shippeddate> <shipvia>1</shipvia> <freight>55.9200</freight> <shipname>Vaffeljernet</shipname> <shipaddress>Smagsloget 45</shipaddress> <shipcity>Århus</shipcity> <shippostalcode>8200</shippostalcode> <shipcountry>Denmark</shipcountry> <orderdetails> <orderid>10591</orderid> <productid>3</productid> <unitprice>10.0000</unitprice> <quantity>14</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10591</orderid> <productid>7</productid> <unitprice>30.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10591</orderid> <productid>54</productid> <unitprice>7.4500</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10602</orderid> <customerid>VAFFE</customerid> <employeeid>8</employeeid> <orderdate>1997-07-17</orderdate> <requireddate>1997-08-14</requireddate> <shippeddate>1997-07-22</shippeddate> <shipvia>2</shipvia> <freight>2.9200</freight> <shipname>Vaffeljernet</shipname> <shipaddress>Smagsloget 45</shipaddress> <shipcity>Århus</shipcity> <shippostalcode>8200</shippostalcode> <shipcountry>Denmark</shipcountry> <orderdetails> <orderid>10602</orderid> <productid>77</productid> <unitprice>13.0000</unitprice> <quantity>5</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10688</orderid> <customerid>VAFFE</customerid> <employeeid>4</employeeid> <orderdate>1997-10-01</orderdate> <requireddate>1997-10-15</requireddate> <shippeddate>1997-10-07</shippeddate> <shipvia>2</shipvia> <freight>299.0900</freight> <shipname>Vaffeljernet</shipname> <shipaddress>Smagsloget 45</shipaddress> <shipcity>Århus</shipcity> <shippostalcode>8200</shippostalcode> <shipcountry>Denmark</shipcountry> <orderdetails> <orderid>10688</orderid> <productid>10</productid> <unitprice>31.0000</unitprice> <quantity>18</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10688</orderid> <productid>28</productid> <unitprice>45.6000</unitprice> <quantity>60</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10688</orderid> <productid>34</productid> <unitprice>14.0000</unitprice> <quantity>14</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10744</orderid> <customerid>VAFFE</customerid> <employeeid>6</employeeid> <orderdate>1997-11-17</orderdate> <requireddate>1997-12-15</requireddate> <shippeddate>1997-11-24</shippeddate> <shipvia>1</shipvia> <freight>69.1900</freight> <shipname>Vaffeljernet</shipname> <shipaddress>Smagsloget 45</shipaddress> <shipcity>Århus</shipcity> <shippostalcode>8200</shippostalcode> <shipcountry>Denmark</shipcountry> <orderdetails> <orderid>10744</orderid> <productid>40</productid> <unitprice>18.4000</unitprice> <quantity>50</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10769</orderid> <customerid>VAFFE</customerid> <employeeid>3</employeeid> <orderdate>1997-12-08</orderdate> <requireddate>1998-01-05</requireddate> <shippeddate>1997-12-12</shippeddate> <shipvia>1</shipvia> <freight>65.0600</freight> <shipname>Vaffeljernet</shipname> <shipaddress>Smagsloget 45</shipaddress> <shipcity>Århus</shipcity> <shippostalcode>8200</shippostalcode> <shipcountry>Denmark</shipcountry> <orderdetails> <orderid>10769</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>30</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10769</orderid> <productid>52</productid> <unitprice>7.0000</unitprice> <quantity>15</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10769</orderid> <productid>61</productid> <unitprice>28.5000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10769</orderid> <productid>62</productid> <unitprice>49.3000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10921</orderid> <customerid>VAFFE</customerid> <employeeid>1</employeeid> <orderdate>1998-03-03</orderdate> <requireddate>1998-04-14</requireddate> <shippeddate>1998-03-09</shippeddate> <shipvia>1</shipvia> <freight>176.4800</freight> <shipname>Vaffeljernet</shipname> <shipaddress>Smagsloget 45</shipaddress> <shipcity>Århus</shipcity> <shippostalcode>8200</shippostalcode> <shipcountry>Denmark</shipcountry> <orderdetails> <orderid>10921</orderid> <productid>35</productid> <unitprice>18.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10921</orderid> <productid>63</productid> <unitprice>43.9000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10946</orderid> <customerid>VAFFE</customerid> <employeeid>1</employeeid> <orderdate>1998-03-12</orderdate> <requireddate>1998-04-09</requireddate> <shippeddate>1998-03-19</shippeddate> <shipvia>2</shipvia> <freight>27.2000</freight> <shipname>Vaffeljernet</shipname> <shipaddress>Smagsloget 45</shipaddress> <shipcity>Århus</shipcity> <shippostalcode>8200</shippostalcode> <shipcountry>Denmark</shipcountry> <orderdetails> <orderid>10946</orderid> <productid>10</productid> <unitprice>31.0000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10946</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10946</orderid> <productid>77</productid> <unitprice>13.0000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10994</orderid> <customerid>VAFFE</customerid> <employeeid>2</employeeid> <orderdate>1998-04-02</orderdate> <requireddate>1998-04-16</requireddate> <shippeddate>1998-04-09</shippeddate> <shipvia>3</shipvia> <freight>65.5300</freight> <shipname>Vaffeljernet</shipname> <shipaddress>Smagsloget 45</shipaddress> <shipcity>Århus</shipcity> <shippostalcode>8200</shippostalcode> <shipcountry>Denmark</shipcountry> <orderdetails> <orderid>10994</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>18</quantity> <discount>0.05000</discount> </orderdetails> </orders> </customers> <customers> <customerid>VICTE</customerid> <companyname>Victuailles en stock</companyname> <contactname>Mary Saveley</contactname> <contacttitle>Sales Agent</contacttitle> <address>2, rue du Commerce</address> <city>Lyon</city> <postalcode>69004</postalcode> <country>France</country> <phone>78.32.54.86</phone> <fax>78.32.54.87</fax> <orders> <orderid>10251</orderid> <customerid>VICTE</customerid> <employeeid>3</employeeid> <orderdate>1996-07-08</orderdate> <requireddate>1996-08-05</requireddate> <shippeddate>1996-07-15</shippeddate> <shipvia>1</shipvia> <freight>41.3400</freight> <shipname>Victuailles en stock</shipname> <shipaddress>2, rue du Commerce</shipaddress> <shipcity>Lyon</shipcity> <shippostalcode>69004</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10251</orderid> <productid>22</productid> <unitprice>16.8000</unitprice> <quantity>6</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10251</orderid> <productid>57</productid> <unitprice>15.6000</unitprice> <quantity>15</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10251</orderid> <productid>65</productid> <unitprice>16.8000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10334</orderid> <customerid>VICTE</customerid> <employeeid>8</employeeid> <orderdate>1996-10-21</orderdate> <requireddate>1996-11-18</requireddate> <shippeddate>1996-10-28</shippeddate> <shipvia>2</shipvia> <freight>8.5600</freight> <shipname>Victuailles en stock</shipname> <shipaddress>2, rue du Commerce</shipaddress> <shipcity>Lyon</shipcity> <shippostalcode>69004</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10334</orderid> <productid>52</productid> <unitprice>5.6000</unitprice> <quantity>8</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10334</orderid> <productid>68</productid> <unitprice>10.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10450</orderid> <customerid>VICTE</customerid> <employeeid>8</employeeid> <orderdate>1997-02-19</orderdate> <requireddate>1997-03-19</requireddate> <shippeddate>1997-03-11</shippeddate> <shipvia>2</shipvia> <freight>7.2300</freight> <shipname>Victuailles en stock</shipname> <shipaddress>2, rue du Commerce</shipaddress> <shipcity>Lyon</shipcity> <shippostalcode>69004</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10450</orderid> <productid>10</productid> <unitprice>24.8000</unitprice> <quantity>20</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10450</orderid> <productid>54</productid> <unitprice>5.9000</unitprice> <quantity>6</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10459</orderid> <customerid>VICTE</customerid> <employeeid>4</employeeid> <orderdate>1997-02-27</orderdate> <requireddate>1997-03-27</requireddate> <shippeddate>1997-02-28</shippeddate> <shipvia>2</shipvia> <freight>25.0900</freight> <shipname>Victuailles en stock</shipname> <shipaddress>2, rue du Commerce</shipaddress> <shipcity>Lyon</shipcity> <shippostalcode>69004</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10459</orderid> <productid>7</productid> <unitprice>24.0000</unitprice> <quantity>16</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10459</orderid> <productid>46</productid> <unitprice>9.6000</unitprice> <quantity>20</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10459</orderid> <productid>72</productid> <unitprice>27.8000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10478</orderid> <customerid>VICTE</customerid> <employeeid>2</employeeid> <orderdate>1997-03-18</orderdate> <requireddate>1997-04-01</requireddate> <shippeddate>1997-03-26</shippeddate> <shipvia>3</shipvia> <freight>4.8100</freight> <shipname>Victuailles en stock</shipname> <shipaddress>2, rue du Commerce</shipaddress> <shipcity>Lyon</shipcity> <shippostalcode>69004</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10478</orderid> <productid>10</productid> <unitprice>24.8000</unitprice> <quantity>20</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10546</orderid> <customerid>VICTE</customerid> <employeeid>1</employeeid> <orderdate>1997-05-23</orderdate> <requireddate>1997-06-20</requireddate> <shippeddate>1997-05-27</shippeddate> <shipvia>3</shipvia> <freight>194.7200</freight> <shipname>Victuailles en stock</shipname> <shipaddress>2, rue du Commerce</shipaddress> <shipcity>Lyon</shipcity> <shippostalcode>69004</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10546</orderid> <productid>7</productid> <unitprice>30.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10546</orderid> <productid>35</productid> <unitprice>18.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10546</orderid> <productid>62</productid> <unitprice>49.3000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10806</orderid> <customerid>VICTE</customerid> <employeeid>3</employeeid> <orderdate>1997-12-31</orderdate> <requireddate>1998-01-28</requireddate> <shippeddate>1998-01-05</shippeddate> <shipvia>2</shipvia> <freight>22.1100</freight> <shipname>Victuailles en stock</shipname> <shipaddress>2, rue du Commerce</shipaddress> <shipcity>Lyon</shipcity> <shippostalcode>69004</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10806</orderid> <productid>2</productid> <unitprice>19.0000</unitprice> <quantity>20</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10806</orderid> <productid>65</productid> <unitprice>21.0500</unitprice> <quantity>2</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10806</orderid> <productid>74</productid> <unitprice>10.0000</unitprice> <quantity>15</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10814</orderid> <customerid>VICTE</customerid> <employeeid>3</employeeid> <orderdate>1998-01-05</orderdate> <requireddate>1998-02-02</requireddate> <shippeddate>1998-01-14</shippeddate> <shipvia>3</shipvia> <freight>130.9400</freight> <shipname>Victuailles en stock</shipname> <shipaddress>2, rue du Commerce</shipaddress> <shipcity>Lyon</shipcity> <shippostalcode>69004</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10814</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10814</orderid> <productid>43</productid> <unitprice>46.0000</unitprice> <quantity>20</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10814</orderid> <productid>48</productid> <unitprice>12.7500</unitprice> <quantity>8</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10814</orderid> <productid>61</productid> <unitprice>28.5000</unitprice> <quantity>30</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10843</orderid> <customerid>VICTE</customerid> <employeeid>4</employeeid> <orderdate>1998-01-21</orderdate> <requireddate>1998-02-18</requireddate> <shippeddate>1998-01-26</shippeddate> <shipvia>2</shipvia> <freight>9.2600</freight> <shipname>Victuailles en stock</shipname> <shipaddress>2, rue du Commerce</shipaddress> <shipcity>Lyon</shipcity> <shippostalcode>69004</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10843</orderid> <productid>51</productid> <unitprice>53.0000</unitprice> <quantity>4</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10850</orderid> <customerid>VICTE</customerid> <employeeid>1</employeeid> <orderdate>1998-01-23</orderdate> <requireddate>1998-03-06</requireddate> <shippeddate>1998-01-30</shippeddate> <shipvia>1</shipvia> <freight>49.1900</freight> <shipname>Victuailles en stock</shipname> <shipaddress>2, rue du Commerce</shipaddress> <shipcity>Lyon</shipcity> <shippostalcode>69004</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10850</orderid> <productid>25</productid> <unitprice>14.0000</unitprice> <quantity>20</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10850</orderid> <productid>33</productid> <unitprice>2.5000</unitprice> <quantity>4</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10850</orderid> <productid>70</productid> <unitprice>15.0000</unitprice> <quantity>30</quantity> <discount>0.15000</discount> </orderdetails> </orders> </customers> <customers> <customerid>VINET</customerid> <companyname>Vins et alcools Chevalier</companyname> <contactname>Paul Henriot</contactname> <contacttitle>Accounting Manager</contacttitle> <address>59 rue de l'Abbaye</address> <city>Reims</city> <postalcode>51100</postalcode> <country>France</country> <phone>26.47.15.10</phone> <fax>26.47.15.11</fax> <orders> <orderid>10248</orderid> <customerid>VINET</customerid> <employeeid>5</employeeid> <orderdate>1996-07-04</orderdate> <requireddate>1996-08-01</requireddate> <shippeddate>1996-07-16</shippeddate> <shipvia>3</shipvia> <freight>32.3800</freight> <shipname>Vins et alcools Chevalier</shipname> <shipaddress>59 rue de l'Abbaye</shipaddress> <shipcity>Reims</shipcity> <shippostalcode>51100</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10248</orderid> <productid>11</productid> <unitprice>14.0000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10248</orderid> <productid>42</productid> <unitprice>9.8000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10248</orderid> <productid>72</productid> <unitprice>34.8000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10274</orderid> <customerid>VINET</customerid> <employeeid>6</employeeid> <orderdate>1996-08-06</orderdate> <requireddate>1996-09-03</requireddate> <shippeddate>1996-08-16</shippeddate> <shipvia>1</shipvia> <freight>6.0100</freight> <shipname>Vins et alcools Chevalier</shipname> <shipaddress>59 rue de l'Abbaye</shipaddress> <shipcity>Reims</shipcity> <shippostalcode>51100</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10274</orderid> <productid>71</productid> <unitprice>17.2000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10274</orderid> <productid>72</productid> <unitprice>27.8000</unitprice> <quantity>7</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10295</orderid> <customerid>VINET</customerid> <employeeid>2</employeeid> <orderdate>1996-09-02</orderdate> <requireddate>1996-09-30</requireddate> <shippeddate>1996-09-10</shippeddate> <shipvia>2</shipvia> <freight>1.1500</freight> <shipname>Vins et alcools Chevalier</shipname> <shipaddress>59 rue de l'Abbaye</shipaddress> <shipcity>Reims</shipcity> <shippostalcode>51100</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10295</orderid> <productid>56</productid> <unitprice>30.4000</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10737</orderid> <customerid>VINET</customerid> <employeeid>2</employeeid> <orderdate>1997-11-11</orderdate> <requireddate>1997-12-09</requireddate> <shippeddate>1997-11-18</shippeddate> <shipvia>2</shipvia> <freight>7.7900</freight> <shipname>Vins et alcools Chevalier</shipname> <shipaddress>59 rue de l'Abbaye</shipaddress> <shipcity>Reims</shipcity> <shippostalcode>51100</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10737</orderid> <productid>13</productid> <unitprice>6.0000</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10737</orderid> <productid>41</productid> <unitprice>9.6500</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10739</orderid> <customerid>VINET</customerid> <employeeid>3</employeeid> <orderdate>1997-11-12</orderdate> <requireddate>1997-12-10</requireddate> <shippeddate>1997-11-17</shippeddate> <shipvia>3</shipvia> <freight>11.0800</freight> <shipname>Vins et alcools Chevalier</shipname> <shipaddress>59 rue de l'Abbaye</shipaddress> <shipcity>Reims</shipcity> <shippostalcode>51100</shippostalcode> <shipcountry>France</shipcountry> <orderdetails> <orderid>10739</orderid> <productid>36</productid> <unitprice>19.0000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10739</orderid> <productid>52</productid> <unitprice>7.0000</unitprice> <quantity>18</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>WANDK</customerid> <companyname>Die Wandernde Kuh</companyname> <contactname>Rita Müller</contactname> <contacttitle>Sales Representative</contacttitle> <address>Adenauerallee 900</address> <city>Stuttgart</city> <postalcode>70563</postalcode> <country>Germany</country> <phone>0711-020361</phone> <fax>0711-035428</fax> <orders> <orderid>10301</orderid> <customerid>WANDK</customerid> <employeeid>8</employeeid> <orderdate>1996-09-09</orderdate> <requireddate>1996-10-07</requireddate> <shippeddate>1996-09-17</shippeddate> <shipvia>2</shipvia> <freight>45.0800</freight> <shipname>Die Wandernde Kuh</shipname> <shipaddress>Adenauerallee 900</shipaddress> <shipcity>Stuttgart</shipcity> <shippostalcode>70563</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10301</orderid> <productid>40</productid> <unitprice>14.7000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10301</orderid> <productid>56</productid> <unitprice>30.4000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10312</orderid> <customerid>WANDK</customerid> <employeeid>2</employeeid> <orderdate>1996-09-23</orderdate> <requireddate>1996-10-21</requireddate> <shippeddate>1996-10-03</shippeddate> <shipvia>2</shipvia> <freight>40.2600</freight> <shipname>Die Wandernde Kuh</shipname> <shipaddress>Adenauerallee 900</shipaddress> <shipcity>Stuttgart</shipcity> <shippostalcode>70563</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10312</orderid> <productid>28</productid> <unitprice>36.4000</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10312</orderid> <productid>43</productid> <unitprice>36.8000</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10312</orderid> <productid>53</productid> <unitprice>26.2000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10312</orderid> <productid>75</productid> <unitprice>6.2000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10348</orderid> <customerid>WANDK</customerid> <employeeid>4</employeeid> <orderdate>1996-11-07</orderdate> <requireddate>1996-12-05</requireddate> <shippeddate>1996-11-15</shippeddate> <shipvia>2</shipvia> <freight>0.7800</freight> <shipname>Die Wandernde Kuh</shipname> <shipaddress>Adenauerallee 900</shipaddress> <shipcity>Stuttgart</shipcity> <shippostalcode>70563</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10348</orderid> <productid>1</productid> <unitprice>14.4000</unitprice> <quantity>15</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10348</orderid> <productid>23</productid> <unitprice>7.2000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10356</orderid> <customerid>WANDK</customerid> <employeeid>6</employeeid> <orderdate>1996-11-18</orderdate> <requireddate>1996-12-16</requireddate> <shippeddate>1996-11-27</shippeddate> <shipvia>2</shipvia> <freight>36.7100</freight> <shipname>Die Wandernde Kuh</shipname> <shipaddress>Adenauerallee 900</shipaddress> <shipcity>Stuttgart</shipcity> <shippostalcode>70563</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10356</orderid> <productid>31</productid> <unitprice>10.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10356</orderid> <productid>55</productid> <unitprice>19.2000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10356</orderid> <productid>69</productid> <unitprice>28.8000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10513</orderid> <customerid>WANDK</customerid> <employeeid>7</employeeid> <orderdate>1997-04-22</orderdate> <requireddate>1997-06-03</requireddate> <shippeddate>1997-04-28</shippeddate> <shipvia>1</shipvia> <freight>105.6500</freight> <shipname>Die Wandernde Kuh</shipname> <shipaddress>Adenauerallee 900</shipaddress> <shipcity>Stuttgart</shipcity> <shippostalcode>70563</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10513</orderid> <productid>21</productid> <unitprice>10.0000</unitprice> <quantity>40</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10513</orderid> <productid>32</productid> <unitprice>32.0000</unitprice> <quantity>50</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10513</orderid> <productid>61</productid> <unitprice>28.5000</unitprice> <quantity>15</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10632</orderid> <customerid>WANDK</customerid> <employeeid>8</employeeid> <orderdate>1997-08-14</orderdate> <requireddate>1997-09-11</requireddate> <shippeddate>1997-08-19</shippeddate> <shipvia>1</shipvia> <freight>41.3800</freight> <shipname>Die Wandernde Kuh</shipname> <shipaddress>Adenauerallee 900</shipaddress> <shipcity>Stuttgart</shipcity> <shippostalcode>70563</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10632</orderid> <productid>2</productid> <unitprice>19.0000</unitprice> <quantity>30</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10632</orderid> <productid>33</productid> <unitprice>2.5000</unitprice> <quantity>20</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10640</orderid> <customerid>WANDK</customerid> <employeeid>4</employeeid> <orderdate>1997-08-21</orderdate> <requireddate>1997-09-18</requireddate> <shippeddate>1997-08-28</shippeddate> <shipvia>1</shipvia> <freight>23.5500</freight> <shipname>Die Wandernde Kuh</shipname> <shipaddress>Adenauerallee 900</shipaddress> <shipcity>Stuttgart</shipcity> <shippostalcode>70563</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10640</orderid> <productid>69</productid> <unitprice>36.0000</unitprice> <quantity>20</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10640</orderid> <productid>70</productid> <unitprice>15.0000</unitprice> <quantity>15</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10651</orderid> <customerid>WANDK</customerid> <employeeid>8</employeeid> <orderdate>1997-09-01</orderdate> <requireddate>1997-09-29</requireddate> <shippeddate>1997-09-11</shippeddate> <shipvia>2</shipvia> <freight>20.6000</freight> <shipname>Die Wandernde Kuh</shipname> <shipaddress>Adenauerallee 900</shipaddress> <shipcity>Stuttgart</shipcity> <shippostalcode>70563</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10651</orderid> <productid>19</productid> <unitprice>9.2000</unitprice> <quantity>12</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10651</orderid> <productid>22</productid> <unitprice>21.0000</unitprice> <quantity>20</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10668</orderid> <customerid>WANDK</customerid> <employeeid>1</employeeid> <orderdate>1997-09-15</orderdate> <requireddate>1997-10-13</requireddate> <shippeddate>1997-09-23</shippeddate> <shipvia>2</shipvia> <freight>47.2200</freight> <shipname>Die Wandernde Kuh</shipname> <shipaddress>Adenauerallee 900</shipaddress> <shipcity>Stuttgart</shipcity> <shippostalcode>70563</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>10668</orderid> <productid>31</productid> <unitprice>12.5000</unitprice> <quantity>8</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10668</orderid> <productid>55</productid> <unitprice>24.0000</unitprice> <quantity>4</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10668</orderid> <productid>64</productid> <unitprice>33.2500</unitprice> <quantity>15</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>11046</orderid> <customerid>WANDK</customerid> <employeeid>8</employeeid> <orderdate>1998-04-23</orderdate> <requireddate>1998-05-21</requireddate> <shippeddate>1998-04-24</shippeddate> <shipvia>2</shipvia> <freight>71.6400</freight> <shipname>Die Wandernde Kuh</shipname> <shipaddress>Adenauerallee 900</shipaddress> <shipcity>Stuttgart</shipcity> <shippostalcode>70563</shippostalcode> <shipcountry>Germany</shipcountry> <orderdetails> <orderid>11046</orderid> <productid>12</productid> <unitprice>38.0000</unitprice> <quantity>20</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>11046</orderid> <productid>32</productid> <unitprice>32.0000</unitprice> <quantity>15</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>11046</orderid> <productid>35</productid> <unitprice>18.0000</unitprice> <quantity>18</quantity> <discount>0.05000</discount> </orderdetails> </orders> </customers> <customers> <customerid>WARTH</customerid> <companyname>Wartian Herkku</companyname> <contactname>Pirkko Koskitalo</contactname> <contacttitle>Accounting Manager</contacttitle> <address>Torikatu 38</address> <city>Oulu</city> <postalcode>90110</postalcode> <country>Finland</country> <phone>981-443655</phone> <fax>981-443655</fax> <orders> <orderid>10266</orderid> <customerid>WARTH</customerid> <employeeid>3</employeeid> <orderdate>1996-07-26</orderdate> <requireddate>1996-09-06</requireddate> <shippeddate>1996-07-31</shippeddate> <shipvia>3</shipvia> <freight>25.7300</freight> <shipname>Wartian Herkku</shipname> <shipaddress>Torikatu 38</shipaddress> <shipcity>Oulu</shipcity> <shippostalcode>90110</shippostalcode> <shipcountry>Finland</shipcountry> <orderdetails> <orderid>10266</orderid> <productid>12</productid> <unitprice>30.4000</unitprice> <quantity>12</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10270</orderid> <customerid>WARTH</customerid> <employeeid>1</employeeid> <orderdate>1996-08-01</orderdate> <requireddate>1996-08-29</requireddate> <shippeddate>1996-08-02</shippeddate> <shipvia>1</shipvia> <freight>136.5400</freight> <shipname>Wartian Herkku</shipname> <shipaddress>Torikatu 38</shipaddress> <shipcity>Oulu</shipcity> <shippostalcode>90110</shippostalcode> <shipcountry>Finland</shipcountry> <orderdetails> <orderid>10270</orderid> <productid>36</productid> <unitprice>15.2000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10270</orderid> <productid>43</productid> <unitprice>36.8000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10320</orderid> <customerid>WARTH</customerid> <employeeid>5</employeeid> <orderdate>1996-10-03</orderdate> <requireddate>1996-10-17</requireddate> <shippeddate>1996-10-18</shippeddate> <shipvia>3</shipvia> <freight>34.5700</freight> <shipname>Wartian Herkku</shipname> <shipaddress>Torikatu 38</shipaddress> <shipcity>Oulu</shipcity> <shippostalcode>90110</shippostalcode> <shipcountry>Finland</shipcountry> <orderdetails> <orderid>10320</orderid> <productid>71</productid> <unitprice>17.2000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10333</orderid> <customerid>WARTH</customerid> <employeeid>5</employeeid> <orderdate>1996-10-18</orderdate> <requireddate>1996-11-15</requireddate> <shippeddate>1996-10-25</shippeddate> <shipvia>3</shipvia> <freight>0.5900</freight> <shipname>Wartian Herkku</shipname> <shipaddress>Torikatu 38</shipaddress> <shipcity>Oulu</shipcity> <shippostalcode>90110</shippostalcode> <shipcountry>Finland</shipcountry> <orderdetails> <orderid>10333</orderid> <productid>14</productid> <unitprice>18.6000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10333</orderid> <productid>21</productid> <unitprice>8.0000</unitprice> <quantity>10</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10333</orderid> <productid>71</productid> <unitprice>17.2000</unitprice> <quantity>40</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10412</orderid> <customerid>WARTH</customerid> <employeeid>8</employeeid> <orderdate>1997-01-13</orderdate> <requireddate>1997-02-10</requireddate> <shippeddate>1997-01-15</shippeddate> <shipvia>2</shipvia> <freight>3.7700</freight> <shipname>Wartian Herkku</shipname> <shipaddress>Torikatu 38</shipaddress> <shipcity>Oulu</shipcity> <shippostalcode>90110</shippostalcode> <shipcountry>Finland</shipcountry> <orderdetails> <orderid>10412</orderid> <productid>14</productid> <unitprice>18.6000</unitprice> <quantity>20</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10416</orderid> <customerid>WARTH</customerid> <employeeid>8</employeeid> <orderdate>1997-01-16</orderdate> <requireddate>1997-02-13</requireddate> <shippeddate>1997-01-27</shippeddate> <shipvia>3</shipvia> <freight>22.7200</freight> <shipname>Wartian Herkku</shipname> <shipaddress>Torikatu 38</shipaddress> <shipcity>Oulu</shipcity> <shippostalcode>90110</shippostalcode> <shipcountry>Finland</shipcountry> <orderdetails> <orderid>10416</orderid> <productid>19</productid> <unitprice>7.3000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10416</orderid> <productid>53</productid> <unitprice>26.2000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10416</orderid> <productid>57</productid> <unitprice>15.6000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10437</orderid> <customerid>WARTH</customerid> <employeeid>8</employeeid> <orderdate>1997-02-05</orderdate> <requireddate>1997-03-05</requireddate> <shippeddate>1997-02-12</shippeddate> <shipvia>1</shipvia> <freight>19.9700</freight> <shipname>Wartian Herkku</shipname> <shipaddress>Torikatu 38</shipaddress> <shipcity>Oulu</shipcity> <shippostalcode>90110</shippostalcode> <shipcountry>Finland</shipcountry> <orderdetails> <orderid>10437</orderid> <productid>53</productid> <unitprice>26.2000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10455</orderid> <customerid>WARTH</customerid> <employeeid>8</employeeid> <orderdate>1997-02-24</orderdate> <requireddate>1997-04-07</requireddate> <shippeddate>1997-03-03</shippeddate> <shipvia>2</shipvia> <freight>180.4500</freight> <shipname>Wartian Herkku</shipname> <shipaddress>Torikatu 38</shipaddress> <shipcity>Oulu</shipcity> <shippostalcode>90110</shippostalcode> <shipcountry>Finland</shipcountry> <orderdetails> <orderid>10455</orderid> <productid>39</productid> <unitprice>14.4000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10455</orderid> <productid>53</productid> <unitprice>26.2000</unitprice> <quantity>50</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10455</orderid> <productid>61</productid> <unitprice>22.8000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10455</orderid> <productid>71</productid> <unitprice>17.2000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10526</orderid> <customerid>WARTH</customerid> <employeeid>4</employeeid> <orderdate>1997-05-05</orderdate> <requireddate>1997-06-02</requireddate> <shippeddate>1997-05-15</shippeddate> <shipvia>2</shipvia> <freight>58.5900</freight> <shipname>Wartian Herkku</shipname> <shipaddress>Torikatu 38</shipaddress> <shipcity>Oulu</shipcity> <shippostalcode>90110</shippostalcode> <shipcountry>Finland</shipcountry> <orderdetails> <orderid>10526</orderid> <productid>1</productid> <unitprice>18.0000</unitprice> <quantity>8</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10526</orderid> <productid>13</productid> <unitprice>6.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10526</orderid> <productid>56</productid> <unitprice>38.0000</unitprice> <quantity>30</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10553</orderid> <customerid>WARTH</customerid> <employeeid>2</employeeid> <orderdate>1997-05-30</orderdate> <requireddate>1997-06-27</requireddate> <shippeddate>1997-06-03</shippeddate> <shipvia>2</shipvia> <freight>149.4900</freight> <shipname>Wartian Herkku</shipname> <shipaddress>Torikatu 38</shipaddress> <shipcity>Oulu</shipcity> <shippostalcode>90110</shippostalcode> <shipcountry>Finland</shipcountry> <orderdetails> <orderid>10553</orderid> <productid>11</productid> <unitprice>21.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10553</orderid> <productid>16</productid> <unitprice>17.4500</unitprice> <quantity>14</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10553</orderid> <productid>22</productid> <unitprice>21.0000</unitprice> <quantity>24</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10553</orderid> <productid>31</productid> <unitprice>12.5000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10553</orderid> <productid>35</productid> <unitprice>18.0000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10583</orderid> <customerid>WARTH</customerid> <employeeid>2</employeeid> <orderdate>1997-06-30</orderdate> <requireddate>1997-07-28</requireddate> <shippeddate>1997-07-04</shippeddate> <shipvia>2</shipvia> <freight>7.2800</freight> <shipname>Wartian Herkku</shipname> <shipaddress>Torikatu 38</shipaddress> <shipcity>Oulu</shipcity> <shippostalcode>90110</shippostalcode> <shipcountry>Finland</shipcountry> <orderdetails> <orderid>10583</orderid> <productid>29</productid> <unitprice>123.7900</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10583</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>24</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10583</orderid> <productid>69</productid> <unitprice>36.0000</unitprice> <quantity>10</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10636</orderid> <customerid>WARTH</customerid> <employeeid>4</employeeid> <orderdate>1997-08-19</orderdate> <requireddate>1997-09-16</requireddate> <shippeddate>1997-08-26</shippeddate> <shipvia>1</shipvia> <freight>1.1500</freight> <shipname>Wartian Herkku</shipname> <shipaddress>Torikatu 38</shipaddress> <shipcity>Oulu</shipcity> <shippostalcode>90110</shippostalcode> <shipcountry>Finland</shipcountry> <orderdetails> <orderid>10636</orderid> <productid>4</productid> <unitprice>22.0000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10636</orderid> <productid>58</productid> <unitprice>13.2500</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10750</orderid> <customerid>WARTH</customerid> <employeeid>9</employeeid> <orderdate>1997-11-21</orderdate> <requireddate>1997-12-19</requireddate> <shippeddate>1997-11-24</shippeddate> <shipvia>1</shipvia> <freight>79.3000</freight> <shipname>Wartian Herkku</shipname> <shipaddress>Torikatu 38</shipaddress> <shipcity>Oulu</shipcity> <shippostalcode>90110</shippostalcode> <shipcountry>Finland</shipcountry> <orderdetails> <orderid>10750</orderid> <productid>14</productid> <unitprice>23.2500</unitprice> <quantity>5</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10750</orderid> <productid>45</productid> <unitprice>9.5000</unitprice> <quantity>40</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10750</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>25</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10781</orderid> <customerid>WARTH</customerid> <employeeid>2</employeeid> <orderdate>1997-12-17</orderdate> <requireddate>1998-01-14</requireddate> <shippeddate>1997-12-19</shippeddate> <shipvia>3</shipvia> <freight>73.1600</freight> <shipname>Wartian Herkku</shipname> <shipaddress>Torikatu 38</shipaddress> <shipcity>Oulu</shipcity> <shippostalcode>90110</shippostalcode> <shipcountry>Finland</shipcountry> <orderdetails> <orderid>10781</orderid> <productid>54</productid> <unitprice>7.4500</unitprice> <quantity>3</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10781</orderid> <productid>56</productid> <unitprice>38.0000</unitprice> <quantity>20</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10781</orderid> <productid>74</productid> <unitprice>10.0000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11025</orderid> <customerid>WARTH</customerid> <employeeid>6</employeeid> <orderdate>1998-04-15</orderdate> <requireddate>1998-05-13</requireddate> <shippeddate>1998-04-24</shippeddate> <shipvia>3</shipvia> <freight>29.1700</freight> <shipname>Wartian Herkku</shipname> <shipaddress>Torikatu 38</shipaddress> <shipcity>Oulu</shipcity> <shippostalcode>90110</shippostalcode> <shipcountry>Finland</shipcountry> <orderdetails> <orderid>11025</orderid> <productid>1</productid> <unitprice>18.0000</unitprice> <quantity>10</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>11025</orderid> <productid>13</productid> <unitprice>6.0000</unitprice> <quantity>20</quantity> <discount>0.10000</discount> </orderdetails> </orders> </customers> <customers> <customerid>WELLI</customerid> <companyname>Wellington Importadora</companyname> <contactname>Paula Parente</contactname> <contacttitle>Sales Manager</contacttitle> <address>Rua do Mercado, 12</address> <city>Resende</city> <region>SP</region> <postalcode>08737-363</postalcode> <country>Brazil</country> <phone>(14) 555-8122</phone> <orders> <orderid>10256</orderid> <customerid>WELLI</customerid> <employeeid>3</employeeid> <orderdate>1996-07-15</orderdate> <requireddate>1996-08-12</requireddate> <shippeddate>1996-07-17</shippeddate> <shipvia>2</shipvia> <freight>13.9700</freight> <shipname>Wellington Importadora</shipname> <shipaddress>Rua do Mercado, 12</shipaddress> <shipcity>Resende</shipcity> <shipregion>SP</shipregion> <shippostalcode>08737-363</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10256</orderid> <productid>53</productid> <unitprice>26.2000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10256</orderid> <productid>77</productid> <unitprice>10.4000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10420</orderid> <customerid>WELLI</customerid> <employeeid>3</employeeid> <orderdate>1997-01-21</orderdate> <requireddate>1997-02-18</requireddate> <shippeddate>1997-01-27</shippeddate> <shipvia>1</shipvia> <freight>44.1200</freight> <shipname>Wellington Importadora</shipname> <shipaddress>Rua do Mercado, 12</shipaddress> <shipcity>Resende</shipcity> <shipregion>SP</shipregion> <shippostalcode>08737-363</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10420</orderid> <productid>9</productid> <unitprice>77.6000</unitprice> <quantity>20</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10420</orderid> <productid>13</productid> <unitprice>4.8000</unitprice> <quantity>2</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10420</orderid> <productid>70</productid> <unitprice>12.0000</unitprice> <quantity>8</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10420</orderid> <productid>73</productid> <unitprice>12.0000</unitprice> <quantity>20</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10585</orderid> <customerid>WELLI</customerid> <employeeid>7</employeeid> <orderdate>1997-07-01</orderdate> <requireddate>1997-07-29</requireddate> <shippeddate>1997-07-10</shippeddate> <shipvia>1</shipvia> <freight>13.4100</freight> <shipname>Wellington Importadora</shipname> <shipaddress>Rua do Mercado, 12</shipaddress> <shipcity>Resende</shipcity> <shipregion>SP</shipregion> <shippostalcode>08737-363</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10585</orderid> <productid>47</productid> <unitprice>9.5000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10644</orderid> <customerid>WELLI</customerid> <employeeid>3</employeeid> <orderdate>1997-08-25</orderdate> <requireddate>1997-09-22</requireddate> <shippeddate>1997-09-01</shippeddate> <shipvia>2</shipvia> <freight>0.1400</freight> <shipname>Wellington Importadora</shipname> <shipaddress>Rua do Mercado, 12</shipaddress> <shipcity>Resende</shipcity> <shipregion>SP</shipregion> <shippostalcode>08737-363</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10644</orderid> <productid>18</productid> <unitprice>62.5000</unitprice> <quantity>4</quantity> <discount>0.10000</discount> </orderdetails> <orderdetails> <orderid>10644</orderid> <productid>43</productid> <unitprice>46.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10644</orderid> <productid>46</productid> <unitprice>12.0000</unitprice> <quantity>21</quantity> <discount>0.10000</discount> </orderdetails> </orders> <orders> <orderid>10803</orderid> <customerid>WELLI</customerid> <employeeid>4</employeeid> <orderdate>1997-12-30</orderdate> <requireddate>1998-01-27</requireddate> <shippeddate>1998-01-06</shippeddate> <shipvia>1</shipvia> <freight>55.2300</freight> <shipname>Wellington Importadora</shipname> <shipaddress>Rua do Mercado, 12</shipaddress> <shipcity>Resende</shipcity> <shipregion>SP</shipregion> <shippostalcode>08737-363</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10803</orderid> <productid>19</productid> <unitprice>9.2000</unitprice> <quantity>24</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10803</orderid> <productid>25</productid> <unitprice>14.0000</unitprice> <quantity>15</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10803</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>15</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10809</orderid> <customerid>WELLI</customerid> <employeeid>7</employeeid> <orderdate>1998-01-01</orderdate> <requireddate>1998-01-29</requireddate> <shippeddate>1998-01-07</shippeddate> <shipvia>1</shipvia> <freight>4.8700</freight> <shipname>Wellington Importadora</shipname> <shipaddress>Rua do Mercado, 12</shipaddress> <shipcity>Resende</shipcity> <shipregion>SP</shipregion> <shippostalcode>08737-363</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10809</orderid> <productid>52</productid> <unitprice>7.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10900</orderid> <customerid>WELLI</customerid> <employeeid>1</employeeid> <orderdate>1998-02-20</orderdate> <requireddate>1998-03-20</requireddate> <shippeddate>1998-03-04</shippeddate> <shipvia>2</shipvia> <freight>1.6600</freight> <shipname>Wellington Importadora</shipname> <shipaddress>Rua do Mercado, 12</shipaddress> <shipcity>Resende</shipcity> <shipregion>SP</shipregion> <shippostalcode>08737-363</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10900</orderid> <productid>70</productid> <unitprice>15.0000</unitprice> <quantity>3</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10905</orderid> <customerid>WELLI</customerid> <employeeid>9</employeeid> <orderdate>1998-02-24</orderdate> <requireddate>1998-03-24</requireddate> <shippeddate>1998-03-06</shippeddate> <shipvia>2</shipvia> <freight>13.7200</freight> <shipname>Wellington Importadora</shipname> <shipaddress>Rua do Mercado, 12</shipaddress> <shipcity>Resende</shipcity> <shipregion>SP</shipregion> <shippostalcode>08737-363</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10905</orderid> <productid>1</productid> <unitprice>18.0000</unitprice> <quantity>20</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10935</orderid> <customerid>WELLI</customerid> <employeeid>4</employeeid> <orderdate>1998-03-09</orderdate> <requireddate>1998-04-06</requireddate> <shippeddate>1998-03-18</shippeddate> <shipvia>3</shipvia> <freight>47.5900</freight> <shipname>Wellington Importadora</shipname> <shipaddress>Rua do Mercado, 12</shipaddress> <shipcity>Resende</shipcity> <shipregion>SP</shipregion> <shippostalcode>08737-363</shippostalcode> <shipcountry>Brazil</shipcountry> <orderdetails> <orderid>10935</orderid> <productid>1</productid> <unitprice>18.0000</unitprice> <quantity>21</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10935</orderid> <productid>18</productid> <unitprice>62.5000</unitprice> <quantity>4</quantity> <discount>0.25000</discount> </orderdetails> <orderdetails> <orderid>10935</orderid> <productid>23</productid> <unitprice>9.0000</unitprice> <quantity>8</quantity> <discount>0.25000</discount> </orderdetails> </orders> </customers> <customers> <customerid>WHITC</customerid> <companyname>White Clover Markets</companyname> <contactname>Karl Jablonski</contactname> <contacttitle>Owner</contacttitle> <address>305 - 14th Ave. S. Suite 3B</address> <city>Seattle</city> <region>WA</region> <postalcode>98128</postalcode> <country>USA</country> <phone>(206) 555-4112</phone> <fax>(206) 555-4115</fax> <orders> <orderid>10269</orderid> <customerid>WHITC</customerid> <employeeid>5</employeeid> <orderdate>1996-07-31</orderdate> <requireddate>1996-08-14</requireddate> <shippeddate>1996-08-09</shippeddate> <shipvia>1</shipvia> <freight>4.5600</freight> <shipname>White Clover Markets</shipname> <shipaddress>1029 - 12th Ave. S.</shipaddress> <shipcity>Seattle</shipcity> <shipregion>WA</shipregion> <shippostalcode>98124</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10269</orderid> <productid>33</productid> <unitprice>2.0000</unitprice> <quantity>60</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10269</orderid> <productid>72</productid> <unitprice>27.8000</unitprice> <quantity>20</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10344</orderid> <customerid>WHITC</customerid> <employeeid>4</employeeid> <orderdate>1996-11-01</orderdate> <requireddate>1996-11-29</requireddate> <shippeddate>1996-11-05</shippeddate> <shipvia>2</shipvia> <freight>23.2900</freight> <shipname>White Clover Markets</shipname> <shipaddress>1029 - 12th Ave. S.</shipaddress> <shipcity>Seattle</shipcity> <shipregion>WA</shipregion> <shippostalcode>98124</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10344</orderid> <productid>4</productid> <unitprice>17.6000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10344</orderid> <productid>8</productid> <unitprice>32.0000</unitprice> <quantity>70</quantity> <discount>0.25000</discount> </orderdetails> </orders> <orders> <orderid>10469</orderid> <customerid>WHITC</customerid> <employeeid>1</employeeid> <orderdate>1997-03-10</orderdate> <requireddate>1997-04-07</requireddate> <shippeddate>1997-03-14</shippeddate> <shipvia>1</shipvia> <freight>60.1800</freight> <shipname>White Clover Markets</shipname> <shipaddress>1029 - 12th Ave. S.</shipaddress> <shipcity>Seattle</shipcity> <shipregion>WA</shipregion> <shippostalcode>98124</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10469</orderid> <productid>2</productid> <unitprice>15.2000</unitprice> <quantity>40</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10469</orderid> <productid>16</productid> <unitprice>13.9000</unitprice> <quantity>35</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10469</orderid> <productid>44</productid> <unitprice>15.5000</unitprice> <quantity>2</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10483</orderid> <customerid>WHITC</customerid> <employeeid>7</employeeid> <orderdate>1997-03-24</orderdate> <requireddate>1997-04-21</requireddate> <shippeddate>1997-04-25</shippeddate> <shipvia>2</shipvia> <freight>15.2800</freight> <shipname>White Clover Markets</shipname> <shipaddress>1029 - 12th Ave. S.</shipaddress> <shipcity>Seattle</shipcity> <shipregion>WA</shipregion> <shippostalcode>98124</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10483</orderid> <productid>34</productid> <unitprice>11.2000</unitprice> <quantity>35</quantity> <discount>0.05000</discount> </orderdetails> <orderdetails> <orderid>10483</orderid> <productid>77</productid> <unitprice>10.4000</unitprice> <quantity>30</quantity> <discount>0.05000</discount> </orderdetails> </orders> <orders> <orderid>10504</orderid> <customerid>WHITC</customerid> <employeeid>4</employeeid> <orderdate>1997-04-11</orderdate> <requireddate>1997-05-09</requireddate> <shippeddate>1997-04-18</shippeddate> <shipvia>3</shipvia> <freight>59.1300</freight> <shipname>White Clover Markets</shipname> <shipaddress>1029 - 12th Ave. S.</shipaddress> <shipcity>Seattle</shipcity> <shipregion>WA</shipregion> <shippostalcode>98124</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10504</orderid> <productid>2</productid> <unitprice>19.0000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10504</orderid> <productid>21</productid> <unitprice>10.0000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10504</orderid> <productid>53</productid> <unitprice>32.8000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10504</orderid> <productid>61</productid> <unitprice>28.5000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10596</orderid> <customerid>WHITC</customerid> <employeeid>8</employeeid> <orderdate>1997-07-11</orderdate> <requireddate>1997-08-08</requireddate> <shippeddate>1997-08-12</shippeddate> <shipvia>1</shipvia> <freight>16.3400</freight> <shipname>White Clover Markets</shipname> <shipaddress>1029 - 12th Ave. S.</shipaddress> <shipcity>Seattle</shipcity> <shipregion>WA</shipregion> <shippostalcode>98124</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10596</orderid> <productid>56</productid> <unitprice>38.0000</unitprice> <quantity>5</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10596</orderid> <productid>63</productid> <unitprice>43.9000</unitprice> <quantity>24</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10596</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>30</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10693</orderid> <customerid>WHITC</customerid> <employeeid>3</employeeid> <orderdate>1997-10-06</orderdate> <requireddate>1997-10-20</requireddate> <shippeddate>1997-10-10</shippeddate> <shipvia>3</shipvia> <freight>139.3400</freight> <shipname>White Clover Markets</shipname> <shipaddress>1029 - 12th Ave. S.</shipaddress> <shipcity>Seattle</shipcity> <shipregion>WA</shipregion> <shippostalcode>98124</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10693</orderid> <productid>9</productid> <unitprice>97.0000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10693</orderid> <productid>54</productid> <unitprice>7.4500</unitprice> <quantity>60</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10693</orderid> <productid>69</productid> <unitprice>36.0000</unitprice> <quantity>30</quantity> <discount>0.15000</discount> </orderdetails> <orderdetails> <orderid>10693</orderid> <productid>73</productid> <unitprice>15.0000</unitprice> <quantity>15</quantity> <discount>0.15000</discount> </orderdetails> </orders> <orders> <orderid>10696</orderid> <customerid>WHITC</customerid> <employeeid>8</employeeid> <orderdate>1997-10-08</orderdate> <requireddate>1997-11-19</requireddate> <shippeddate>1997-10-14</shippeddate> <shipvia>3</shipvia> <freight>102.5500</freight> <shipname>White Clover Markets</shipname> <shipaddress>1029 - 12th Ave. S.</shipaddress> <shipcity>Seattle</shipcity> <shipregion>WA</shipregion> <shippostalcode>98124</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10696</orderid> <productid>17</productid> <unitprice>39.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10696</orderid> <productid>46</productid> <unitprice>12.0000</unitprice> <quantity>18</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10723</orderid> <customerid>WHITC</customerid> <employeeid>3</employeeid> <orderdate>1997-10-30</orderdate> <requireddate>1997-11-27</requireddate> <shippeddate>1997-11-25</shippeddate> <shipvia>1</shipvia> <freight>21.7200</freight> <shipname>White Clover Markets</shipname> <shipaddress>1029 - 12th Ave. S.</shipaddress> <shipcity>Seattle</shipcity> <shipregion>WA</shipregion> <shippostalcode>98124</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10723</orderid> <productid>26</productid> <unitprice>31.2300</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10740</orderid> <customerid>WHITC</customerid> <employeeid>4</employeeid> <orderdate>1997-11-13</orderdate> <requireddate>1997-12-11</requireddate> <shippeddate>1997-11-25</shippeddate> <shipvia>2</shipvia> <freight>81.8800</freight> <shipname>White Clover Markets</shipname> <shipaddress>1029 - 12th Ave. S.</shipaddress> <shipcity>Seattle</shipcity> <shipregion>WA</shipregion> <shippostalcode>98124</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10740</orderid> <productid>28</productid> <unitprice>45.6000</unitprice> <quantity>5</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10740</orderid> <productid>35</productid> <unitprice>18.0000</unitprice> <quantity>35</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10740</orderid> <productid>45</productid> <unitprice>9.5000</unitprice> <quantity>40</quantity> <discount>0.20000</discount> </orderdetails> <orderdetails> <orderid>10740</orderid> <productid>56</productid> <unitprice>38.0000</unitprice> <quantity>14</quantity> <discount>0.20000</discount> </orderdetails> </orders> <orders> <orderid>10861</orderid> <customerid>WHITC</customerid> <employeeid>4</employeeid> <orderdate>1998-01-30</orderdate> <requireddate>1998-02-27</requireddate> <shippeddate>1998-02-17</shippeddate> <shipvia>2</shipvia> <freight>14.9300</freight> <shipname>White Clover Markets</shipname> <shipaddress>1029 - 12th Ave. S.</shipaddress> <shipcity>Seattle</shipcity> <shipregion>WA</shipregion> <shippostalcode>98124</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10861</orderid> <productid>17</productid> <unitprice>39.0000</unitprice> <quantity>42</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10861</orderid> <productid>18</productid> <unitprice>62.5000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10861</orderid> <productid>21</productid> <unitprice>10.0000</unitprice> <quantity>40</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10861</orderid> <productid>33</productid> <unitprice>2.5000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10861</orderid> <productid>62</productid> <unitprice>49.3000</unitprice> <quantity>3</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10904</orderid> <customerid>WHITC</customerid> <employeeid>3</employeeid> <orderdate>1998-02-24</orderdate> <requireddate>1998-03-24</requireddate> <shippeddate>1998-02-27</shippeddate> <shipvia>3</shipvia> <freight>162.9500</freight> <shipname>White Clover Markets</shipname> <shipaddress>1029 - 12th Ave. S.</shipaddress> <shipcity>Seattle</shipcity> <shipregion>WA</shipregion> <shippostalcode>98124</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>10904</orderid> <productid>58</productid> <unitprice>13.2500</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10904</orderid> <productid>62</productid> <unitprice>49.3000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11032</orderid> <customerid>WHITC</customerid> <employeeid>2</employeeid> <orderdate>1998-04-17</orderdate> <requireddate>1998-05-15</requireddate> <shippeddate>1998-04-23</shippeddate> <shipvia>3</shipvia> <freight>606.1900</freight> <shipname>White Clover Markets</shipname> <shipaddress>1029 - 12th Ave. S.</shipaddress> <shipcity>Seattle</shipcity> <shipregion>WA</shipregion> <shippostalcode>98124</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>11032</orderid> <productid>36</productid> <unitprice>19.0000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11032</orderid> <productid>38</productid> <unitprice>263.5000</unitprice> <quantity>25</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11032</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11066</orderid> <customerid>WHITC</customerid> <employeeid>7</employeeid> <orderdate>1998-05-01</orderdate> <requireddate>1998-05-29</requireddate> <shippeddate>1998-05-04</shippeddate> <shipvia>2</shipvia> <freight>44.7200</freight> <shipname>White Clover Markets</shipname> <shipaddress>1029 - 12th Ave. S.</shipaddress> <shipcity>Seattle</shipcity> <shipregion>WA</shipregion> <shippostalcode>98124</shippostalcode> <shipcountry>USA</shipcountry> <orderdetails> <orderid>11066</orderid> <productid>16</productid> <unitprice>17.4500</unitprice> <quantity>3</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11066</orderid> <productid>19</productid> <unitprice>9.2000</unitprice> <quantity>42</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11066</orderid> <productid>34</productid> <unitprice>14.0000</unitprice> <quantity>35</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>WILMK</customerid> <companyname>Wilman Kala</companyname> <contactname>Matti Karttunen</contactname> <contacttitle>Owner/Marketing Assistant</contacttitle> <address>Keskuskatu 45</address> <city>Helsinki</city> <postalcode>21240</postalcode> <country>Finland</country> <phone>90-224 8858</phone> <fax>90-224 8858</fax> <orders> <orderid>10615</orderid> <customerid>WILMK</customerid> <employeeid>2</employeeid> <orderdate>1997-07-30</orderdate> <requireddate>1997-08-27</requireddate> <shippeddate>1997-08-06</shippeddate> <shipvia>3</shipvia> <freight>0.7500</freight> <shipname>Wilman Kala</shipname> <shipaddress>Keskuskatu 45</shipaddress> <shipcity>Helsinki</shipcity> <shippostalcode>21240</shippostalcode> <shipcountry>Finland</shipcountry> <orderdetails> <orderid>10615</orderid> <productid>55</productid> <unitprice>24.0000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10673</orderid> <customerid>WILMK</customerid> <employeeid>2</employeeid> <orderdate>1997-09-18</orderdate> <requireddate>1997-10-16</requireddate> <shippeddate>1997-09-19</shippeddate> <shipvia>1</shipvia> <freight>22.7600</freight> <shipname>Wilman Kala</shipname> <shipaddress>Keskuskatu 45</shipaddress> <shipcity>Helsinki</shipcity> <shippostalcode>21240</shippostalcode> <shipcountry>Finland</shipcountry> <orderdetails> <orderid>10673</orderid> <productid>16</productid> <unitprice>17.4500</unitprice> <quantity>3</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10673</orderid> <productid>42</productid> <unitprice>14.0000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10673</orderid> <productid>43</productid> <unitprice>46.0000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10695</orderid> <customerid>WILMK</customerid> <employeeid>7</employeeid> <orderdate>1997-10-07</orderdate> <requireddate>1997-11-18</requireddate> <shippeddate>1997-10-14</shippeddate> <shipvia>1</shipvia> <freight>16.7200</freight> <shipname>Wilman Kala</shipname> <shipaddress>Keskuskatu 45</shipaddress> <shipcity>Helsinki</shipcity> <shippostalcode>21240</shippostalcode> <shipcountry>Finland</shipcountry> <orderdetails> <orderid>10695</orderid> <productid>8</productid> <unitprice>40.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10695</orderid> <productid>12</productid> <unitprice>38.0000</unitprice> <quantity>4</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10695</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10873</orderid> <customerid>WILMK</customerid> <employeeid>4</employeeid> <orderdate>1998-02-06</orderdate> <requireddate>1998-03-06</requireddate> <shippeddate>1998-02-09</shippeddate> <shipvia>1</shipvia> <freight>0.8200</freight> <shipname>Wilman Kala</shipname> <shipaddress>Keskuskatu 45</shipaddress> <shipcity>Helsinki</shipcity> <shippostalcode>21240</shippostalcode> <shipcountry>Finland</shipcountry> <orderdetails> <orderid>10873</orderid> <productid>21</productid> <unitprice>10.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10873</orderid> <productid>28</productid> <unitprice>45.6000</unitprice> <quantity>3</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10879</orderid> <customerid>WILMK</customerid> <employeeid>3</employeeid> <orderdate>1998-02-10</orderdate> <requireddate>1998-03-10</requireddate> <shippeddate>1998-02-12</shippeddate> <shipvia>3</shipvia> <freight>8.5000</freight> <shipname>Wilman Kala</shipname> <shipaddress>Keskuskatu 45</shipaddress> <shipcity>Helsinki</shipcity> <shippostalcode>21240</shippostalcode> <shipcountry>Finland</shipcountry> <orderdetails> <orderid>10879</orderid> <productid>40</productid> <unitprice>18.4000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10879</orderid> <productid>65</productid> <unitprice>21.0500</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10879</orderid> <productid>76</productid> <unitprice>18.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10910</orderid> <customerid>WILMK</customerid> <employeeid>1</employeeid> <orderdate>1998-02-26</orderdate> <requireddate>1998-03-26</requireddate> <shippeddate>1998-03-04</shippeddate> <shipvia>3</shipvia> <freight>38.1100</freight> <shipname>Wilman Kala</shipname> <shipaddress>Keskuskatu 45</shipaddress> <shipcity>Helsinki</shipcity> <shippostalcode>21240</shippostalcode> <shipcountry>Finland</shipcountry> <orderdetails> <orderid>10910</orderid> <productid>19</productid> <unitprice>9.2000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10910</orderid> <productid>49</productid> <unitprice>20.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10910</orderid> <productid>61</productid> <unitprice>28.5000</unitprice> <quantity>5</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11005</orderid> <customerid>WILMK</customerid> <employeeid>2</employeeid> <orderdate>1998-04-07</orderdate> <requireddate>1998-05-05</requireddate> <shippeddate>1998-04-10</shippeddate> <shipvia>1</shipvia> <freight>0.7500</freight> <shipname>Wilman Kala</shipname> <shipaddress>Keskuskatu 45</shipaddress> <shipcity>Helsinki</shipcity> <shippostalcode>21240</shippostalcode> <shipcountry>Finland</shipcountry> <orderdetails> <orderid>11005</orderid> <productid>1</productid> <unitprice>18.0000</unitprice> <quantity>2</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>11005</orderid> <productid>59</productid> <unitprice>55.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> <customers> <customerid>WOLZA</customerid> <companyname>Wolski Zajazd</companyname> <contactname>Zbyszek Piestrzeniewicz</contactname> <contacttitle>Owner</contacttitle> <address>ul. Filtrowa 68</address> <city>Warszawa</city> <postalcode>01-012</postalcode> <country>Poland</country> <phone>(26) 642-7012</phone> <fax>(26) 642-7012</fax> <orders> <orderid>10374</orderid> <customerid>WOLZA</customerid> <employeeid>1</employeeid> <orderdate>1996-12-05</orderdate> <requireddate>1997-01-02</requireddate> <shippeddate>1996-12-09</shippeddate> <shipvia>3</shipvia> <freight>3.9400</freight> <shipname>Wolski Zajazd</shipname> <shipaddress>ul. Filtrowa 68</shipaddress> <shipcity>Warszawa</shipcity> <shippostalcode>01-012</shippostalcode> <shipcountry>Poland</shipcountry> <orderdetails> <orderid>10374</orderid> <productid>31</productid> <unitprice>10.0000</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10374</orderid> <productid>58</productid> <unitprice>10.6000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10611</orderid> <customerid>WOLZA</customerid> <employeeid>6</employeeid> <orderdate>1997-07-25</orderdate> <requireddate>1997-08-22</requireddate> <shippeddate>1997-08-01</shippeddate> <shipvia>2</shipvia> <freight>80.6500</freight> <shipname>Wolski Zajazd</shipname> <shipaddress>ul. Filtrowa 68</shipaddress> <shipcity>Warszawa</shipcity> <shippostalcode>01-012</shippostalcode> <shipcountry>Poland</shipcountry> <orderdetails> <orderid>10611</orderid> <productid>1</productid> <unitprice>18.0000</unitprice> <quantity>6</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10611</orderid> <productid>2</productid> <unitprice>19.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10611</orderid> <productid>60</productid> <unitprice>34.0000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10792</orderid> <customerid>WOLZA</customerid> <employeeid>1</employeeid> <orderdate>1997-12-23</orderdate> <requireddate>1998-01-20</requireddate> <shippeddate>1997-12-31</shippeddate> <shipvia>3</shipvia> <freight>23.7900</freight> <shipname>Wolski Zajazd</shipname> <shipaddress>ul. Filtrowa 68</shipaddress> <shipcity>Warszawa</shipcity> <shippostalcode>01-012</shippostalcode> <shipcountry>Poland</shipcountry> <orderdetails> <orderid>10792</orderid> <productid>2</productid> <unitprice>19.0000</unitprice> <quantity>10</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10792</orderid> <productid>54</productid> <unitprice>7.4500</unitprice> <quantity>3</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10792</orderid> <productid>68</productid> <unitprice>12.5000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10870</orderid> <customerid>WOLZA</customerid> <employeeid>5</employeeid> <orderdate>1998-02-04</orderdate> <requireddate>1998-03-04</requireddate> <shippeddate>1998-02-13</shippeddate> <shipvia>3</shipvia> <freight>12.0400</freight> <shipname>Wolski Zajazd</shipname> <shipaddress>ul. Filtrowa 68</shipaddress> <shipcity>Warszawa</shipcity> <shippostalcode>01-012</shippostalcode> <shipcountry>Poland</shipcountry> <orderdetails> <orderid>10870</orderid> <productid>35</productid> <unitprice>18.0000</unitprice> <quantity>3</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10870</orderid> <productid>51</productid> <unitprice>53.0000</unitprice> <quantity>2</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10906</orderid> <customerid>WOLZA</customerid> <employeeid>4</employeeid> <orderdate>1998-02-25</orderdate> <requireddate>1998-03-11</requireddate> <shippeddate>1998-03-03</shippeddate> <shipvia>3</shipvia> <freight>26.2900</freight> <shipname>Wolski Zajazd</shipname> <shipaddress>ul. Filtrowa 68</shipaddress> <shipcity>Warszawa</shipcity> <shippostalcode>01-012</shippostalcode> <shipcountry>Poland</shipcountry> <orderdetails> <orderid>10906</orderid> <productid>61</productid> <unitprice>28.5000</unitprice> <quantity>15</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>10998</orderid> <customerid>WOLZA</customerid> <employeeid>8</employeeid> <orderdate>1998-04-03</orderdate> <requireddate>1998-04-17</requireddate> <shippeddate>1998-04-17</shippeddate> <shipvia>2</shipvia> <freight>20.3100</freight> <shipname>Wolski Zajazd</shipname> <shipaddress>ul. Filtrowa 68</shipaddress> <shipcity>Warszawa</shipcity> <shippostalcode>01-012</shippostalcode> <shipcountry>Poland</shipcountry> <orderdetails> <orderid>10998</orderid> <productid>24</productid> <unitprice>4.5000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10998</orderid> <productid>61</productid> <unitprice>28.5000</unitprice> <quantity>7</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10998</orderid> <productid>74</productid> <unitprice>10.0000</unitprice> <quantity>20</quantity> <discount>0.00000</discount> </orderdetails> <orderdetails> <orderid>10998</orderid> <productid>75</productid> <unitprice>7.7500</unitprice> <quantity>30</quantity> <discount>0.00000</discount> </orderdetails> </orders> <orders> <orderid>11044</orderid> <customerid>WOLZA</customerid> <employeeid>4</employeeid> <orderdate>1998-04-23</orderdate> <requireddate>1998-05-21</requireddate> <shippeddate>1998-05-01</shippeddate> <shipvia>1</shipvia> <freight>8.7200</freight> <shipname>Wolski Zajazd</shipname> <shipaddress>ul. Filtrowa 68</shipaddress> <shipcity>Warszawa</shipcity> <shippostalcode>01-012</shippostalcode> <shipcountry>Poland</shipcountry> <orderdetails> <orderid>11044</orderid> <productid>62</productid> <unitprice>49.3000</unitprice> <quantity>12</quantity> <discount>0.00000</discount> </orderdetails> </orders> </customers> </VFPDataSet>