<?xml version="1.0" encoding="ISO-8859-1" ?> 
<student>
    <stuID>0135899</stuID> 
    <name>
        <lastName>Dong</lastName>
        <firstName>Xin (Luna)</firstName>
    </name>
    <gender>female</gender>
    <birthday>
        <day>24</day>
        <month>11</month>
        <year>1975</year>
    </birthday>
    <!-- You may want to give the city, state, country and whatever else you'd like -->
    <birthplace>Tianjin, P.R.China</birthplace>
    <phone>
        <!-- You can give all of the phone numbers as below, or drop 1 or 2 of them, or add some more-->
        <home>(206)632-3768</home>
        <cell>(206)818-5769</cell>
        <fax>(206)543-2969</fax>
    </phone>
    <!-- again, you can give one or several addresses -->
    <address>
        <street>4233 9th Ave. N.E., #208</street>
        <city>Seattle</city>
        <state>WA</state>
        <zip>98105</zip>
    </address>
    <address>
        <street>Box 352350, University of Washington</street>
        <city>Seattle</city>
        <state>WA</state>
        <zip>98195</zip> 
    </address>
    <!-- give as many email addresses as you really have -->
    <email>lunadong@cs.washington.edu</email>
    <email>lunadong@u.washington.edu</email>
    <email>lunadong@hotmail.com</email>
    <!-- simply drop the below element if you don't have a personal website -->
    <homepage>www.cs.washington.edu/homes/lunadong</homepage>
    <education>
        <department>Computer Science and Engineering</department>
        <university>University of Washington</university>
    </education>
    <!-- I assume you have at least one favorite class. Give the class no. and name. -->
    <favoriteCourse>
        <courseNo>CSE544</courseNo>
        <courseName>Principles of Database Systems</courseName>
    </favoriteCourse>
    <favoriteCourse>
        <courseNo>CSE531</courseNo>
        <courseName>Computability and Complexity</courseName>
    </favoriteCourse>
    <!-- list as many as you have. If you want to keep it a secret, simply drop the below elements -->
    <sports-played>swimming</sports-played>
    <interest>calligraphy</interest>
    <interest>travel</interest>
    <interest>cooking</interest>
    <friends>
        <!-- list at least one friend out of our 444 class, even if you don't have any in our class -->
        <in-class>Eric Chu</in-class>
        <out-of-class>Miryung Kim</out-of-class>
        <out-of-class>Zizhen Yao</out-of-class>
    </friends>
</student>