<?xml version="1.0" encoding="utf-8"?>
<!--
  == Copyright (c) 2002-2005. All rights reserved.
  == Financial Products Markup Language is subject to the FpML public license.
  == A copy of this license is available at http://www.fpml.org/documents/license
  -->
<FpML xsi:type="ValuationDocument" version="4-2" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns="http://www.fpml.org/2005/FpML-4-2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.fpml.org/2005/FpML-4-2 ../fpml-main-4-2.xsd">
	<!--Portfolio of trades -->
	<portfolio id="port1">
		<tradeId id="tid-1" tradeIdScheme="http://party1.com/tids">1234</tradeId>
		<tradeId id="tid-2" tradeIdScheme="http://party1.com/tids">2345</tradeId>
		<tradeId id="tid-3" tradeIdScheme="http://party1.com/tids">3456</tradeId>
	</portfolio>
	<party id="party1">
		<partyId>ABCDEF</partyId>
	</party>
	<market>
		<!--We only need to describe curve in order to reference it in a shift. We dont need a yieldCurveValuation.-->
		<yieldCurve id="USD-LIBOR">
			<name>3M-LIBOR</name>
			<currency>USD</currency>
		</yieldCurve>
	</market>
	<!--Valuation Set (report)-->
	<valuationSet id="val1">
		<!--Base Valuation Scenario-->
		<valuationScenario id="valscen1">
			<name>EOD Valuation</name>
			<valuationDate>2003-10-29</valuationDate>
		</valuationScenario>
		<!--Scenario: USD Libor shocked up 100bp-->
		<valuationScenario id="valscen2">
			<name>USDLibor up 100bp</name>
			<valuationDate>2003-10-29</valuationDate>
			<shift>
				<parameterReference href="USD-LIBOR"/>
				<shift>100</shift>
				<shiftUnits>BasisPointValue</shiftUnits>
			</shift>
		</valuationScenario>
		<baseParty href="party1"/>
		<!--results for trade #1-->
		<quotationCharacteristics>
			<side>Mid</side>
		</quotationCharacteristics>
		<assetValuation>
			<objectReference href="tid-1"/>
			<!--quote value and NPV-->
			<quote>
				<value>123000</value>
				<measureType>NPV</measureType>
				<currency>USD</currency>
			</quote>
		</assetValuation>
		<!--result for trade #1 for USDLibor+100bp Scenario-->
		<assetValuation>
			<objectReference href="tid-1"/>
			<valuationScenarioReference href="valscen2"/>
			<!--quote value and NPV-->
			<quote>
				<value>123500</value>
				<measureType>NPV</measureType>
				<currency>USD</currency>
			</quote>
		</assetValuation>
		<!--results for trade #2-->
		<assetValuation>
			<objectReference href="tid-2"/>
			<!--quote value and NPV-->
			<quote>
				<value>456000</value>
				<measureType>NPV</measureType>
				<currency>EUR</currency>
			</quote>
		</assetValuation>
		<!--result for trade #2 for USDLibor+100bp Scenario-->
		<assetValuation>
			<objectReference href="tid-2"/>
			<valuationScenarioReference href="valscen2"/>
			<!--quote value and NPV-->
			<quote>
				<value>456000</value>
				<measureType>NPV</measureType>
				<currency>EUR</currency>
			</quote>
		</assetValuation>
		<!--results for trade #3-->
		<assetValuation>
			<objectReference href="tid-3"/>
			<quote>
				<value>789000</value>
				<measureType>NPV</measureType>
				<currency>USD</currency>
			</quote>
		</assetValuation>
		<!--result for trade #3 for USDLibor+100bp Scenario-->
		<assetValuation>
			<objectReference href="tid-3"/>
			<valuationScenarioReference href="valscen2"/>
			<quote>
				<value>724000</value>
				<measureType>NPV</measureType>
				<currency>USD</currency>
			</quote>
		</assetValuation>
	</valuationSet>
</FpML>


