<odd>
<entity uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" class="user" published="Mon, 01 Feb 2010 16:17:48 -0800" />
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/attr/owner_uuid/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="owner_uuid" published="Mon, 01 Feb 2010 16:17:48 -0800" ><![CDATA[http://www.myhuntingroom.com/elgg/export/opendd/0/]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/attr/container_uuid/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="container_uuid" published="Mon, 01 Feb 2010 16:17:48 -0800" ><![CDATA[http://www.myhuntingroom.com/elgg/export/opendd/0/]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/attr/name/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="name" published="Mon, 01 Feb 2010 16:17:48 -0800" ><![CDATA[Wildart]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/attr/username/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="username" published="Mon, 01 Feb 2010 16:17:48 -0800" ><![CDATA[59328]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/attr/language/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="language" published="Mon, 01 Feb 2010 16:17:48 -0800" ><![CDATA[en]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/volatile/renderedentity/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="renderedentity" type="volatile" ><![CDATA[<div id="profile_info">
<table cellspacing="0">
<tr>
<td>

<div id="profile_info_column_left"><div id="profile_icon_wrapper"><img src="http://www.myhuntingroom.com/elgg/mod/profile/icondirect.php?lastcache=1265070228&username=59328&size=large" border="0"  title="Wildart"  /></div><div class="clearfloat"></div>
<div id="profile_menu_wrapper">
	<p class="user_menu_friends">
		<a href="http://www.myhuntingroom.com/elgg/pg/friends/59328/">Friends</a>	
	</p>
	<p class="user_menu_friends_of">
		<a href="http://www.myhuntingroom.com/elgg/pg/friendsof/59328/">Friends of</a>	
	</p></div></div></td>
<td>
	
	<div id="profile_info_column_middle" >
<h2><a href="http://www.myhuntingroom.com/elgg/pg/profile/59328" rel="">Wildart</a></h2><p class="odd"><b>Location:</b> <script src='http://maps.google.com/maps?file=api&v=2&key=ABQIAAAANnHwqjXK-e6QDUq7mQuHTBSh8BZ-ThN2XSSL-WBo426slHctzRQTLdsVGjWhrJ1fRRhSbOEPRtpqNg' type-='text/javascript'></script><script type='text/javascript'>/** Google map creation and maintenance (jquery.gmap.js). */
// TODO: use jquery.jmap.js (http://code.google.com/p/jmaps)
(function($) {
$.gmap = {
    DEFAULT_ICON: null,
    maps: {},
    markers: {},
    id: function(map) {
        for (var key in $.gmap.maps) {
            if ($.gmap.maps[key] == map)
                return key;
        }
        return '';
    },
    /** Center map, persist setting. */
    center: function(map, point, zoom) {
        var cookie = $.gmap.id(map) + '-center';
        if (point === undefined) {
            return $.gmap.cache(cookie);
        }
        map.setCenter(point, zoom);
        $.gmap.cache(cookie, point);
    },
    /** Cache geocoding information. */
    cache: function(address, latlng) {
        if (!address) return false;
        if (typeof(address) != 'string') return $.gmap.parseLatLng(value);
        var cookie = address.replace(/[^-a-zA-Z0-9]/g,'_');
        if (latlng === undefined) {
            if ($.cookie && $.cookie(cookie)) {
                var value = $.cookie(cookie).replace(/[+]/g, ' ');
                return $.gmap.parseLatLng(value);
            }
            return false;
        }
        if ($.cookie) 
          $.cookie(cookie, latlng, {path:'/', domain:'.DOMAIN'});
    },
    scan_markers: function() {
        $('.gmapped').each(function() {
            for (var key in $.gmap.maps) {
              var map = $.gmap.maps[key];
              if (map.autoPopulate) {
                $.gmap.mark(map, this);
              }
            }
        });
    },
    getMarkerElements: function(marker) {
        for (var key in marker) {
            if (marker[key] && marker[key].length > 1
                && typeof(marker[key][0]) == 'object'
                && marker[key][0].nodeType) {
                return marker[key];
            }
        }
    },
    geocode: function(address, callback) {
        if (!address) return false;
        var cached = $.gmap.cache(address);
        if (cached) {
            callback(cached);
            return cached;
        }
        else {
            $.gmap.geocoder.getLatLng(address, function(point) {
                if (point) {
                    $.gmap.cache(address, point);
                }
                else {
                    //alert("Google lookup failed for " + address);
                }
                callback(point);
            });
            return false;
        }
    },
    parseLatLng: function(str) {
        if (typeof(str) == 'string') {
            if (str.match(/^ *\( *[-+]?[0-9.]+ *, *[-+]?[0-9.]+ *\) *$/g)) {
                var value = str.substring(1, str.length-1);
                return GLatLng.fromUrlValue(value);
            }
        }
        if (str && str.lat && str.lng) {
            if (typeof(str.lat) == 'function'
                && typeof(str.lng) == 'function') {
                return new GLatLng(str.lat(), str.lng());
            }
            return new GLatLng(str.lat, str.lng);
        }
        return false;
    },
    mark: function(map, options, callback) {
        callback = callback || function() { };
        if (typeof (options) == 'string') {
            options = { address:options };
        }
        if (!map) {
            callback(null, "Map argument is required.");
            return;
        } 
        if (!options) {
            callback(null, "No location options were provided.");
            return;
        }
        if (options.nodeType) {
            var elem = options;
            options = {
                latlng:$.gmap.parseLatLng($(elem).attr('latlng')),
                address:$(elem).attr('address'),
                origin:$(elem).attr('origin'),
                html:$(elem).html(),
                type:$(elem).attr('type')
            };
        }
        if (!options.latlng) {
            if (!options.address) {
                callback(null, "An address or lat/lng is required.");
                return;
            }
            options.latlng = $.gmap.geocode(options.address, function(point) {
                if (point) {
                    options.latlng = point;
                    $.gmap.mark(map, options, callback);
                }
                else {
                    // TODO: notify app to clean up the address?
                    // TODO: maybe try a different service?  allow user
                    // fix? 
                    callback(null, "Geocoding failed.");
                }
            });
            if (!options.latlng) return;
        } 
        var markers_url = IMAGES + 'markers/';
        var icon = $.gmap.DEFAULT_ICON;
        if (!icon) {
            icon = new GIcon();
            icon.image = markers_url + 'generic.png';
            icon.shadow = markers_url + 'shadow.png';
            icon.iconSize = new GSize(20,34);
            icon.shadowSize = new GSize(37,34);
            icon.iconAnchor = new GPoint(9,34);
            icon.infoWindowAnchor = new GPoint(9,2);
            icon.infoShadowAnchor = new GPoint(18,25);
            $.gmap.DEFAULT_ICON = icon;
        }
        options.type = options.type || 'generic';
        icon = new GIcon(icon);
        icon.image = markers_url + options.type + '.png';

        var old = $.gmap.markers[options.latlng];
        if (old) {
            map.removeOverlay(old);
        }
        var marker = new GMarker(options.latlng, {icon:icon});
        map.addOverlay(marker);
        $.gmap.markers[options.latlng] = marker;
        if (options.html) {
            GEvent.addListener(marker, "click", function() {
                marker.openInfoWindowHtml(options.html);
            });
            if (options.visible) {
              marker.openInfoWindowHtml(options.html);
            }
        }
        if (options.origin) {
            $(options.origin).click(function() {
                $.gmap.center(map, options.latlng);
                if (options.html) {
                  marker.openInfoWindowHtml(options.html);
                }
                return false;
            }); 
        }
        callback(marker);
    },
    mapCount: 1
};

$.fn.gmap = function(options) {

    if (options === undefined) {
        return $.gmap.maps[this.attr('id')];
    }

    // If we aren't supported, we're done
    if (!window.GBrowserIsCompatible || !GBrowserIsCompatible()) {
        return this;
    }

    if (!$.gmap.geocoder) {
        $.gmap.geocoder = new GClientGeocoder();
    }

    // Sanitize options
    if (!options || typeof options != 'object') {
        options = {};
    }
    options.mapOptions = options.mapOptions || {};
    options.markers = options.markers || {};
    options.controls = options.controls || {};

    // Map all our elements
    return this.each(function() {
        var address = options.address;
        var zoom = options.zoom;

        // Make sure we have a valid id
        if (!this.id) {
            this.id = "gmap" + $.gmap.mapCount++;
        }
        // Create a map and a shortcut to it at the same time
        var id = this.id;
        var map = $.gmap.maps[id] = new GMap2(this, options.mapOptions);
        if (!map) return;
        var center = $.gmap.center(map);
        map.setCenter(center?center:new GLatLng(20, 0), zoom);

        map.autoPopulate = options.autoPopulate !== false;
        if (!address) {
            address = $.gmap.center(map);
        }
        var latlng = $.gmap.parseLatLng(address);
        if (latlng) {
            $.gmap.center(map, latlng, zoom);
        }
        else {
            latlng = $.gmap.cache(address);
            if (latlng) {
                $.gmap.center(map, latlng, zoom);
            }
            else {
                $.gmap.geocode(address, function(point) {
                    if (point) {
                        $.gmap.cache(address, point);
                        $.gmap.center(map, point, zoom);
                    }
                    else {
                        // TODO: notify app of error 
                    }
                });
            }
        }
        // Add controls to our map
        var i;
        for (i = 0; i < options.controls.length; i++) {
            var c = options.controls[i];
            eval("map.addControl(new " + c + "());");
        }
        // If we have markers, put them on the map
        if (options.markers) {
          $(options.markers).each(function() {
              $.gmap.mark(map, this);
          });
        }
        // Scan the rest of the page for markers
        if (map.autoPopulate) {
            $.gmap.scan_markers();
        }
    });
};

$(window).unload(function() { GUnload(); });
})(jQuery);var IMAGES='http://www.myhuntingroom.com/elgg/mod/google-map/images/';</script><a href="http://maps.google.com/?ie=UTF8&ll=rra&spn=rra&z=14" class="address_link address_inactive" onclick="return false;" title="Show exact address on map" rel="gmap"></a>

<p class="even"><b>Interests:</b> <a href="http://www.myhuntingroom.com/elgg/mod/form/search_results_simple.php?type=user&form_data[interests]=Good+Stories">Good Stories</a>, <a href="http://www.myhuntingroom.com/elgg/mod/form/search_results_simple.php?type=user&form_data[interests]=Good+Friends">Good Friends</a>, <a href="http://www.myhuntingroom.com/elgg/mod/form/search_results_simple.php?type=user&form_data[interests]=Good+Food">Good Food</a>, <a href="http://www.myhuntingroom.com/elgg/mod/form/search_results_simple.php?type=user&form_data[interests]=photography">photography</a>, <a href="http://www.myhuntingroom.com/elgg/mod/form/search_results_simple.php?type=user&form_data[interests]=art">art</a>, <a href="http://www.myhuntingroom.com/elgg/mod/form/search_results_simple.php?type=user&form_data[interests]=fishing">fishing</a>, <a href="http://www.myhuntingroom.com/elgg/mod/form/search_results_simple.php?type=user&form_data[interests]=hunting">hunting</a><p class="odd"><b>Email:</b> huntfish@me.com<p class="even"><b>Phone:</b> 417-385-7481	</div><!-- /#profile_info_column_middle -->

</td>
</tr>

<tr>
<td colspan="2">
	
</td>
</tr>


</table>



</div><!-- /#profile_info -->]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/annotation/30628/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="messageboard" type="annotation" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/4/" published="Mon, 01 Feb 2010 18:34:15 -0800" ><![CDATA[<p>Wow. Great stuff. Thanks for joining the site.</p>]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/annotation/30632/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="messageboard" type="annotation" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Mon, 01 Feb 2010 18:36:52 -0800" ><![CDATA[<p>Glad to be here. Looking forward to meeting new folks and learning new things.</p>]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/64760/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="first_login" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Mon, 01 Feb 2010 16:17:49 -0800" ><![CDATA[1]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/64761/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="notification:method:email" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Mon, 01 Feb 2010 16:17:49 -0800" ><![CDATA[1]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/67150/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="location" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Thu, 11 Feb 2010 19:18:04 -0800" ><![CDATA[Array]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/64763/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="geo:lat" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Mon, 01 Feb 2010 16:17:49 -0800" ><![CDATA[0]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/64764/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="geo:long" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Mon, 01 Feb 2010 16:17:49 -0800" ><![CDATA[0]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/67157/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="interests" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Thu, 11 Feb 2010 19:18:04 -0800" ><![CDATA[Good Stories]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/67156/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="interests" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Thu, 11 Feb 2010 19:18:04 -0800" ><![CDATA[Good Friends]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/67155/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="interests" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Thu, 11 Feb 2010 19:18:04 -0800" ><![CDATA[Good Food]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/67154/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="interests" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Thu, 11 Feb 2010 19:18:04 -0800" ><![CDATA[photography]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/67153/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="interests" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Thu, 11 Feb 2010 19:18:04 -0800" ><![CDATA[art]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/67152/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="interests" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Thu, 11 Feb 2010 19:18:04 -0800" ><![CDATA[fishing]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/67151/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="interests" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Thu, 11 Feb 2010 19:18:04 -0800" ><![CDATA[hunting]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/67158/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="contactemail" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Thu, 11 Feb 2010 19:18:04 -0800" ><![CDATA[huntfish@me.com]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/67159/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="phone" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Thu, 11 Feb 2010 19:18:04 -0800" ><![CDATA[417-385-7481]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/64776/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="icontime" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Mon, 01 Feb 2010 16:23:48 -0800" ><![CDATA[1265070228]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/64777/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="validated" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/0/" published="Mon, 01 Feb 2010 16:23:48 -0800" ><![CDATA[1]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/64778/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="validated_method" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/0/" published="Mon, 01 Feb 2010 16:23:48 -0800" ><![CDATA[email]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/64783/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="collections_notifications_preferences_email" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Mon, 01 Feb 2010 16:38:36 -0800" ><![CDATA[-1]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/64784/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="collections_notifications_preferences_site" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Mon, 01 Feb 2010 16:38:36 -0800" ><![CDATA[-1]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/64782/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="notification:method:site" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Mon, 01 Feb 2010 16:38:22 -0800" ><![CDATA[1]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/64836/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="form:view_content_languages" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Mon, 01 Feb 2010 17:09:20 -0800" />
<relationship uuid1="http://www.myhuntingroom.com/elgg/export/opendd/59328/" type="friend" uuid2="http://www.myhuntingroom.com/elgg/export/opendd/2/" uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/relationship/2600/" />
<relationship uuid1="http://www.myhuntingroom.com/elgg/export/opendd/59328/" type="friend" uuid2="http://www.myhuntingroom.com/elgg/export/opendd/4/" uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/relationship/2457/" />
<relationship uuid1="http://www.myhuntingroom.com/elgg/export/opendd/59328/" type="friend" uuid2="http://www.myhuntingroom.com/elgg/export/opendd/85/" uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/relationship/2556/" />
<relationship uuid1="http://www.myhuntingroom.com/elgg/export/opendd/59328/" type="friend" uuid2="http://www.myhuntingroom.com/elgg/export/opendd/33932/" uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/relationship/2488/" />
<relationship uuid1="http://www.myhuntingroom.com/elgg/export/opendd/59328/" type="friend" uuid2="http://www.myhuntingroom.com/elgg/export/opendd/59362/" uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/relationship/2504/" />
<relationship uuid1="http://www.myhuntingroom.com/elgg/export/opendd/59328/" type="friendrequest" uuid2="http://www.myhuntingroom.com/elgg/export/opendd/57246/" uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/relationship/2475/" />
<relationship uuid1="http://www.myhuntingroom.com/elgg/export/opendd/59328/" type="friendrequest" uuid2="http://www.myhuntingroom.com/elgg/export/opendd/58089/" uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/relationship/2474/" />
<relationship uuid1="http://www.myhuntingroom.com/elgg/export/opendd/59328/" type="phpbbuser" uuid2="http://www.myhuntingroom.com/elgg/export/opendd/709/" uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/relationship/2448/" />
<entity uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" class="user" published="Mon, 01 Feb 2010 16:17:48 -0800" />
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/attr/owner_uuid/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="owner_uuid" published="Mon, 01 Feb 2010 16:17:48 -0800" ><![CDATA[http://www.myhuntingroom.com/elgg/export/opendd/0/]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/attr/container_uuid/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="container_uuid" published="Mon, 01 Feb 2010 16:17:48 -0800" ><![CDATA[http://www.myhuntingroom.com/elgg/export/opendd/0/]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/attr/name/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="name" published="Mon, 01 Feb 2010 16:17:48 -0800" ><![CDATA[Wildart]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/attr/username/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="username" published="Mon, 01 Feb 2010 16:17:48 -0800" ><![CDATA[59328]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/attr/language/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="language" published="Mon, 01 Feb 2010 16:17:48 -0800" ><![CDATA[en]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/volatile/renderedentity/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="renderedentity" type="volatile" ><![CDATA[<div id="profile_info">
<table cellspacing="0">
<tr>
<td>

<div id="profile_info_column_left"><div id="profile_icon_wrapper"><img src="http://www.myhuntingroom.com/elgg/mod/profile/icondirect.php?lastcache=1265070228&username=59328&size=large" border="0"  title="Wildart"  /></div><div class="clearfloat"></div>
<div id="profile_menu_wrapper">
	<p class="user_menu_friends">
		<a href="http://www.myhuntingroom.com/elgg/pg/friends/59328/">Friends</a>	
	</p>
	<p class="user_menu_friends_of">
		<a href="http://www.myhuntingroom.com/elgg/pg/friendsof/59328/">Friends of</a>	
	</p></div></div></td>
<td>
	
	<div id="profile_info_column_middle" >
<h2><a href="http://www.myhuntingroom.com/elgg/pg/profile/59328" rel="">Wildart</a></h2><p class="odd"><b>Location:</b> <a href="http://maps.google.com/?ie=UTF8&ll=rra&spn=rra&z=14" class="address_link address_inactive" onclick="return false;" title="Show exact address on map" rel="gmap"></a>

<p class="even"><b>Interests:</b> <a href="http://www.myhuntingroom.com/elgg/mod/form/search_results_simple.php?type=user&form_data[interests]=Good+Stories">Good Stories</a>, <a href="http://www.myhuntingroom.com/elgg/mod/form/search_results_simple.php?type=user&form_data[interests]=Good+Friends">Good Friends</a>, <a href="http://www.myhuntingroom.com/elgg/mod/form/search_results_simple.php?type=user&form_data[interests]=Good+Food">Good Food</a>, <a href="http://www.myhuntingroom.com/elgg/mod/form/search_results_simple.php?type=user&form_data[interests]=photography">photography</a>, <a href="http://www.myhuntingroom.com/elgg/mod/form/search_results_simple.php?type=user&form_data[interests]=art">art</a>, <a href="http://www.myhuntingroom.com/elgg/mod/form/search_results_simple.php?type=user&form_data[interests]=fishing">fishing</a>, <a href="http://www.myhuntingroom.com/elgg/mod/form/search_results_simple.php?type=user&form_data[interests]=hunting">hunting</a><p class="odd"><b>Email:</b> huntfish@me.com<p class="even"><b>Phone:</b> 417-385-7481	</div><!-- /#profile_info_column_middle -->

</td>
</tr>

<tr>
<td colspan="2">
	
</td>
</tr>


</table>



</div><!-- /#profile_info -->]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/annotation/30628/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="messageboard" type="annotation" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/4/" published="Mon, 01 Feb 2010 18:34:15 -0800" ><![CDATA[<p>Wow. Great stuff. Thanks for joining the site.</p>]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/annotation/30632/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="messageboard" type="annotation" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Mon, 01 Feb 2010 18:36:52 -0800" ><![CDATA[<p>Glad to be here. Looking forward to meeting new folks and learning new things.</p>]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/64760/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="first_login" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Mon, 01 Feb 2010 16:17:49 -0800" ><![CDATA[1]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/64761/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="notification:method:email" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Mon, 01 Feb 2010 16:17:49 -0800" ><![CDATA[1]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/67150/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="location" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Thu, 11 Feb 2010 19:18:04 -0800" ><![CDATA[Array]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/64763/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="geo:lat" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Mon, 01 Feb 2010 16:17:49 -0800" ><![CDATA[0]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/64764/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="geo:long" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Mon, 01 Feb 2010 16:17:49 -0800" ><![CDATA[0]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/67157/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="interests" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Thu, 11 Feb 2010 19:18:04 -0800" ><![CDATA[Good Stories]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/67156/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="interests" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Thu, 11 Feb 2010 19:18:04 -0800" ><![CDATA[Good Friends]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/67155/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="interests" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Thu, 11 Feb 2010 19:18:04 -0800" ><![CDATA[Good Food]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/67154/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="interests" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Thu, 11 Feb 2010 19:18:04 -0800" ><![CDATA[photography]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/67153/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="interests" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Thu, 11 Feb 2010 19:18:04 -0800" ><![CDATA[art]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/67152/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="interests" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Thu, 11 Feb 2010 19:18:04 -0800" ><![CDATA[fishing]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/67151/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="interests" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Thu, 11 Feb 2010 19:18:04 -0800" ><![CDATA[hunting]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/67158/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="contactemail" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Thu, 11 Feb 2010 19:18:04 -0800" ><![CDATA[huntfish@me.com]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/67159/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="phone" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Thu, 11 Feb 2010 19:18:04 -0800" ><![CDATA[417-385-7481]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/64776/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="icontime" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Mon, 01 Feb 2010 16:23:48 -0800" ><![CDATA[1265070228]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/64777/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="validated" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/0/" published="Mon, 01 Feb 2010 16:23:48 -0800" ><![CDATA[1]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/64778/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="validated_method" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/0/" published="Mon, 01 Feb 2010 16:23:48 -0800" ><![CDATA[email]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/64783/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="collections_notifications_preferences_email" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Mon, 01 Feb 2010 16:38:36 -0800" ><![CDATA[-1]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/64784/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="collections_notifications_preferences_site" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Mon, 01 Feb 2010 16:38:36 -0800" ><![CDATA[-1]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/64782/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="notification:method:site" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Mon, 01 Feb 2010 16:38:22 -0800" ><![CDATA[1]]></metadata>
<metadata uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/metadata/64836/" entity_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" name="form:view_content_languages" type="metadata" owner_uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/" published="Mon, 01 Feb 2010 17:09:20 -0800" />
<relationship uuid1="http://www.myhuntingroom.com/elgg/export/opendd/59328/" type="friend" uuid2="http://www.myhuntingroom.com/elgg/export/opendd/2/" uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/relationship/2600/" />
<relationship uuid1="http://www.myhuntingroom.com/elgg/export/opendd/59328/" type="friend" uuid2="http://www.myhuntingroom.com/elgg/export/opendd/4/" uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/relationship/2457/" />
<relationship uuid1="http://www.myhuntingroom.com/elgg/export/opendd/59328/" type="friend" uuid2="http://www.myhuntingroom.com/elgg/export/opendd/85/" uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/relationship/2556/" />
<relationship uuid1="http://www.myhuntingroom.com/elgg/export/opendd/59328/" type="friend" uuid2="http://www.myhuntingroom.com/elgg/export/opendd/33932/" uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/relationship/2488/" />
<relationship uuid1="http://www.myhuntingroom.com/elgg/export/opendd/59328/" type="friend" uuid2="http://www.myhuntingroom.com/elgg/export/opendd/59362/" uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/relationship/2504/" />
<relationship uuid1="http://www.myhuntingroom.com/elgg/export/opendd/59328/" type="friendrequest" uuid2="http://www.myhuntingroom.com/elgg/export/opendd/57246/" uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/relationship/2475/" />
<relationship uuid1="http://www.myhuntingroom.com/elgg/export/opendd/59328/" type="friendrequest" uuid2="http://www.myhuntingroom.com/elgg/export/opendd/58089/" uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/relationship/2474/" />
<relationship uuid1="http://www.myhuntingroom.com/elgg/export/opendd/59328/" type="phpbbuser" uuid2="http://www.myhuntingroom.com/elgg/export/opendd/709/" uuid="http://www.myhuntingroom.com/elgg/export/opendd/59328/relationship/2448/" />
</odd>