<?xml version="1.0" encoding="utf-8"?>
	<question>
		<text>Merrill borrowed @amount at @rate simple interest for @year. If he makes no other payments, how much interest will he owe at the end of the @year?</text>
		<variables>
			<defines>
				<label>amount</label>
				<min>150.00</min>
				<max>250.00</max>
				<type>cash</type>
			</defines>
			<defines>
				<label>rate</label>
				<min>0.10</min>
				<max>0.20</max>
				<type>percent</type>
			</defines>
			<defines>
				<label>year</label>
				<min>1</min>
				<max>3</max>
				<type>year</type>
			</defines>
		</variables>
		<equation>amount*rate*year</equation>
		<answerType>cash</answerType>
		<reward>
			<cash>500</cash>
			<rate>0.05</rate>
		</reward>
	</question>
	<question>
		<text>If Henry had @numQuarters quarters and @numNickels nickels in a jar how much money does he have?</text>
		<variable>
			<define>
				<label>numQuarters</label>
				<min>30</min>
				<max>50</max>
				<type>number</type>
			</define>
			<define>
				<label>numNickels</label>
				<min>30</min>
				<max>50</max>
				<type>number</type>
			</define>
		</variable>
		<equation>numQuarters*0.25+numNickels*0.05</equation>
		<answerType>cash</answerType>
		<reward>
			<cash>500</cash>
			<rate>0.05</rate>
		</reward>
	</question>
	<question>
		<text>Debra works in a shoe store and is paid a @rate commission on her sales. In January her sales total was @amount. How much did Debra earn in commission for January?</text>
		<variable>
			<define>
				<label>rate</label>
				<min>0.15</min>
				<max>0.40</max>
				<type>percent</type>
			</define>
			<define>
				<label>amount</label>
				<min>3000</min>
				<max>5000</max>
				<type>cash</type>
			</define>
		</variable>
		<equation>amount*rate</equation>
		<answerType>cash</answerType>
		<reward>
			<cash>500</cash>
			<rate>0.05</rate>
		</reward>
	</question>
	<question>
		<text>A sweater originally cost @amount. Last week, Alma bought it at @rate off. How much was deducted from the original price?</text>
		<variable>
			<define>
				<label>rate</label>
				<min>0.15</min>
				<max>0.40</max>
				<type>percent</type>
			</define>
			<define>
				<label>amount</label>
				<min>30</min>
				<max>50</max>
				<type>cash</type>
			</define>
		</variable>
		<equation>amount*rate</equation>
		<answerType>cash</answerType>
		<reward>
			<cash>500</cash>
			<rate>0.05</rate>
		</reward>
	</question>
	<question>
		<text>Chris needs @cash for a class trip. He has @wallet. He can earn @wage an hour mowing lawns. How many hours must Chris work to have the money he needs?</text>
		<variable>
			<define>
				<label>wage</label>
				<min>3</min>
				<max>7</max>
				<type>cash</type>
			</define>
			<define>
				<label>wallet</label>
				<min>20</min>
				<max>30</max>
				<type>cash</type>
			</define>
			<define>
				<label>cash</label>
				<min>40</min>
				<max>75</max>
				<type>cash</type>
			</define>
		</variable>
		<equation>(cash-wallet)/wage</equation>
		<answerType>hour</answerType>
		<reward>
			<cash>500</cash>
			<rate>0.05</rate>
		</reward>
	</question>