[libgdata/offline-testing] tests: Add trace file testing support to the Documents test suite



commit 1d0ebf78008379cf04f5410bf5177273f4d65db3
Author: Philip Withnall <philip tecnocode co uk>
Date:   Tue Jul 30 13:17:38 2013 +0200

    tests: Add trace file testing support to the Documents test suite

 gdata/tests/documents.c                            |  399 ++++++++++++++------
 gdata/tests/traces/documents/access-rule-insert    |   32 ++
 gdata/tests/traces/documents/authentication        |   81 ++++
 gdata/tests/traces/documents/authentication-async  |   81 ++++
 gdata/tests/traces/documents/batch                 |  196 ++++++++++
 gdata/tests/traces/documents/batch-async           |   28 ++
 gdata/tests/traces/documents/copy-document         |   32 ++
 gdata/tests/traces/documents/delete-document       |   53 +++
 gdata/tests/traces/documents/delete-folder         |   53 +++
 gdata/tests/traces/documents/download-document     |  112 ++++++
 gdata/tests/traces/documents/global-authentication |   81 ++++
 gdata/tests/traces/documents/query-all-documents   |   28 ++
 .../traces/documents/query-all-documents-async     |   28 ++
 .../query-all-documents-async-progress-closure     |   28 ++
 .../documents/query-all-documents-with-folder      |   28 ++
 gdata/tests/traces/documents/setup-batch-async     |   33 ++
 gdata/tests/traces/documents/setup-folders         |   45 +++
 .../documents/setup-temp-document-spreadsheet      |   80 ++++
 gdata/tests/traces/documents/setup-temp-documents  |  179 +++++++++
 gdata/tests/traces/documents/setup-temp-folder     |   33 ++
 gdata/tests/traces/documents/setup-update-document |   80 ++++
 gdata/tests/traces/documents/setup-upload-document |   33 ++
 gdata/tests/traces/documents/teardown-batch-async  |   53 +++
 .../tests/traces/documents/teardown-copy-document  |   53 +++
 .../tests/traces/documents/teardown-temp-document  |   53 +++
 .../tests/traces/documents/teardown-temp-documents |  212 +++++++++++
 gdata/tests/traces/documents/teardown-temp-folder  |   53 +++
 .../traces/documents/teardown-update-document      |   53 +++
 .../traces/documents/teardown-upload-document      |  106 ++++++
 gdata/tests/traces/documents/update                |   30 ++
 gdata/tests/traces/documents/upload                |   52 +++
 31 files changed, 2284 insertions(+), 124 deletions(-)
---
diff --git a/gdata/tests/documents.c b/gdata/tests/documents.c
index 8a91fcb..56cbcf0 100644
--- a/gdata/tests/documents.c
+++ b/gdata/tests/documents.c
@@ -30,6 +30,8 @@
 #include "gdata.h"
 #include "common.h"
 
+static GDataMockServer *mock_server = NULL;
+
 static gboolean
 check_document_is_in_folder (GDataDocumentsDocument *document, GDataDocumentsFolder *folder)
 {
@@ -111,6 +113,8 @@ test_authentication (void)
        GDataClientLoginAuthorizer *authorizer;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "authentication");
+
        /* Create an authorizer */
        authorizer = gdata_client_login_authorizer_new (CLIENT_ID, GDATA_TYPE_DOCUMENTS_SERVICE);
 
@@ -132,12 +136,16 @@ test_authentication (void)
                                                             
gdata_documents_service_get_spreadsheet_authorization_domain ()) == TRUE);
 
        g_object_unref (authorizer);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 GDATA_ASYNC_TEST_FUNCTIONS (authentication, void,
 G_STMT_START {
        GDataClientLoginAuthorizer *authorizer;
 
+       gdata_test_mock_server_start_trace (mock_server, "authentication-async");
+
        /* Create an authorizer */
        authorizer = gdata_client_login_authorizer_new (CLIENT_ID, GDATA_TYPE_DOCUMENTS_SERVICE);
 
@@ -176,6 +184,8 @@ G_STMT_START {
                g_assert (gdata_authorizer_is_authorized_for_domain (GDATA_AUTHORIZER (authorizer),
                                                                     
gdata_documents_service_get_spreadsheet_authorization_domain ()) == FALSE);
        }
+
+       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 typedef struct {
@@ -188,6 +198,8 @@ set_up_temp_folder (TempFolderData *data, gconstpointer service)
        GDataDocumentsFolder *folder;
        gchar *upload_uri;
 
+       gdata_test_mock_server_start_trace (mock_server, "setup-temp-folder");
+
        /* Create a folder */
        folder = gdata_documents_folder_new (NULL);
        gdata_entry_set_title (GDATA_ENTRY (folder), "Temporary Folder");
@@ -200,15 +212,21 @@ set_up_temp_folder (TempFolderData *data, gconstpointer service)
        g_assert (GDATA_IS_DOCUMENTS_FOLDER (data->folder));
        g_free (upload_uri);
        g_object_unref (folder);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
 tear_down_temp_folder (TempFolderData *data, gconstpointer service)
 {
+       gdata_test_mock_server_start_trace (mock_server, "teardown-temp-folder");
+
        if (data->folder != NULL) {
                delete_entry (GDATA_DOCUMENTS_ENTRY (data->folder), GDATA_SERVICE (service));
                g_object_unref (data->folder);
        }
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 typedef struct {
@@ -277,6 +295,8 @@ set_up_temp_document_spreadsheet (TempDocumentData *data, gconstpointer service)
        gchar *document_file_path;
        GFile *document_file;
 
+       gdata_test_mock_server_start_trace (mock_server, "setup-temp-document-spreadsheet");
+
        /* Create a document */
        document = gdata_documents_spreadsheet_new (NULL);
        gdata_entry_set_title (GDATA_ENTRY (document), "Temporary Document (Spreadsheet)");
@@ -289,15 +309,21 @@ set_up_temp_document_spreadsheet (TempDocumentData *data, gconstpointer service)
 
        g_object_unref (document_file);
        g_object_unref (document);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
 tear_down_temp_document (TempDocumentData *data, gconstpointer service)
 {
+       gdata_test_mock_server_start_trace (mock_server, "teardown-temp-document");
+
        if (data->document != NULL) {
                delete_entry (GDATA_DOCUMENTS_ENTRY (data->document), GDATA_SERVICE (service));
                g_object_unref (data->document);
        }
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -307,6 +333,8 @@ test_delete_folder (TempFolderData *data, gconstpointer service)
        GDataEntry *updated_folder;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "delete-folder");
+
        g_assert (gdata_documents_entry_is_deleted (GDATA_DOCUMENTS_ENTRY (data->folder)) == FALSE);
 
        /* Delete the folder */
@@ -329,6 +357,8 @@ test_delete_folder (TempFolderData *data, gconstpointer service)
        g_object_unref (updated_folder);
        g_object_unref (data->folder);
        data->folder = NULL;
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -338,6 +368,8 @@ test_delete_document (TempDocumentData *data, gconstpointer service)
        GDataEntry *updated_document;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "delete-document");
+
        g_assert (gdata_documents_entry_is_deleted (GDATA_DOCUMENTS_ENTRY (data->document)) == FALSE);
 
        /* Delete the document */
@@ -360,6 +392,8 @@ test_delete_document (TempDocumentData *data, gconstpointer service)
        g_object_unref (updated_document);
        g_object_unref (data->document);
        data->document = NULL;
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 typedef struct {
@@ -381,6 +415,8 @@ set_up_temp_documents (TempDocumentsData *data, gconstpointer service)
        /* Create a temporary folder */
        set_up_temp_folder ((TempFolderData*) data, service);
 
+       gdata_test_mock_server_start_trace (mock_server, "setup-temp-documents");
+
        /* Create some temporary documents of different types */
        document = GDATA_DOCUMENTS_ENTRY (gdata_documents_spreadsheet_new (NULL));
        gdata_entry_set_title (GDATA_ENTRY (document), "Temporary Spreadsheet");
@@ -419,11 +455,15 @@ set_up_temp_documents (TempDocumentsData *data, gconstpointer service)
        g_object_unref (document);
 
        g_free (upload_uri);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
 tear_down_temp_documents (TempDocumentsData *data, gconstpointer service)
 {
+       gdata_test_mock_server_start_trace (mock_server, "teardown-temp-documents");
+
        /* Delete the documents */
        delete_entry (GDATA_DOCUMENTS_ENTRY (data->spreadsheet_document), GDATA_SERVICE (service));
        g_object_unref (data->spreadsheet_document);
@@ -437,6 +477,8 @@ tear_down_temp_documents (TempDocumentsData *data, gconstpointer service)
        delete_entry (GDATA_DOCUMENTS_ENTRY (data->arbitrary_document), GDATA_SERVICE (service));
        g_object_unref (data->arbitrary_document);
 
+       gdata_mock_server_end_trace (mock_server);
+
        /* Delete the folder */
        tear_down_temp_folder ((TempFolderData*) data, service);
 }
@@ -448,6 +490,8 @@ test_query_all_documents_with_folder (TempDocumentsData *data, gconstpointer ser
        GDataDocumentsQuery *query;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "query-all-documents-with-folder");
+
        query = gdata_documents_query_new (NULL);
        gdata_documents_query_set_show_folders (query, TRUE);
 
@@ -460,6 +504,8 @@ test_query_all_documents_with_folder (TempDocumentsData *data, gconstpointer ser
        g_clear_error (&error);
        g_object_unref (feed);
        g_object_unref (query);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -468,6 +514,8 @@ test_query_all_documents (TempDocumentsData *data, gconstpointer service)
        GDataDocumentsFeed *feed;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "query-all-documents");
+
        feed = gdata_documents_service_query_documents (GDATA_DOCUMENTS_SERVICE (service), NULL, NULL, NULL, 
NULL, &error);
        g_assert_no_error (error);
        g_assert (GDATA_IS_FEED (feed));
@@ -476,12 +524,16 @@ test_query_all_documents (TempDocumentsData *data, gconstpointer service)
        /* TODO: check entries and feed properties */
 
        g_object_unref (feed);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 GDATA_ASYNC_CLOSURE_FUNCTIONS (temp_documents, TempDocumentsData);
 
 GDATA_ASYNC_TEST_FUNCTIONS (query_all_documents, TempDocumentsData,
 G_STMT_START {
+       gdata_test_mock_server_start_trace (mock_server, "query-all-documents-async");
+
        gdata_documents_service_query_documents_async (GDATA_DOCUMENTS_SERVICE (service), NULL, cancellable, 
NULL, NULL,
                                                       NULL, async_ready_callback, async_data);
 } G_STMT_END,
@@ -498,6 +550,8 @@ G_STMT_START {
        } else {
                g_assert (feed == NULL);
        }
+
+       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 static void
@@ -505,6 +559,8 @@ test_query_all_documents_async_progress_closure (TempDocumentsData *documents_da
 {
        GDataAsyncProgressClosure *data = g_slice_new0 (GDataAsyncProgressClosure);
 
+       gdata_test_mock_server_start_trace (mock_server, "query-all-documents-async-progress-closure");
+
        data->main_loop = g_main_loop_new (NULL, TRUE);
 
        gdata_documents_service_query_documents_async (GDATA_DOCUMENTS_SERVICE (service), NULL, NULL,
@@ -520,6 +576,8 @@ test_query_all_documents_async_progress_closure (TempDocumentsData *documents_da
        g_assert_cmpuint (data->async_ready_notify_count, ==, 1);
 
        g_slice_free (GDataAsyncProgressClosure, data);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 typedef enum {
@@ -590,6 +648,8 @@ set_up_upload_document (UploadDocumentData *data, gconstpointer _test_params)
 {
        const UploadDocumentTestParams *test_params = _test_params;
 
+       gdata_test_mock_server_start_trace (mock_server, "setup-upload-document");
+
        data->new_document = NULL;
 
        switch (test_params->folder_type) {
@@ -602,6 +662,8 @@ set_up_upload_document (UploadDocumentData *data, gconstpointer _test_params)
                default:
                        g_assert_not_reached ();
        }
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -609,6 +671,8 @@ tear_down_upload_document (UploadDocumentData *data, gconstpointer _test_params)
 {
        const UploadDocumentTestParams *test_params = _test_params;
 
+       gdata_test_mock_server_start_trace (mock_server, "teardown-upload-document");
+
        /* Delete the new file */
        if (data->new_document != NULL) {
                /* HACK: Query for the new document, as Google's servers appear to modify it behind our back 
if we don't upload both metadata and data
@@ -624,6 +688,8 @@ tear_down_upload_document (UploadDocumentData *data, gconstpointer _test_params)
                delete_entry (GDATA_DOCUMENTS_ENTRY (data->folder), GDATA_SERVICE (test_params->service));
                g_object_unref (data->folder);
        }
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -639,6 +705,8 @@ test_upload (UploadDocumentData *data, gconstpointer _test_params)
        GDataLink *edit_media_link;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "upload");
+
        upload_query = gdata_documents_upload_query_new ();
 
        /* File to upload. (Ignored if we're doing a metadata-only upload.) Also set the conversion type 
(ignored for non-resumable uploads). */
@@ -842,6 +910,8 @@ test_upload (UploadDocumentData *data, gconstpointer _test_params)
        g_clear_object (&upload_query);
        g_clear_object (&document_file);
        g_clear_object (&document);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 typedef struct {
@@ -864,6 +934,8 @@ set_up_update_document (UpdateDocumentData *data, gconstpointer _test_params)
        gchar *title, *document_file_path;
        GFile *document_file;
 
+       gdata_test_mock_server_start_trace (mock_server, "setup-update-document");
+
        /* Create a document */
        document = gdata_documents_text_new (NULL);
        title = g_strdup_printf ("Test Update file (%s)", test_params->test_name);
@@ -878,6 +950,8 @@ set_up_update_document (UpdateDocumentData *data, gconstpointer _test_params)
 
        g_object_unref (document_file);
        g_object_unref (document);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -885,6 +959,8 @@ tear_down_update_document (UpdateDocumentData *data, gconstpointer _test_params)
 {
        const UpdateDocumentTestParams *test_params = _test_params;
 
+       gdata_test_mock_server_start_trace (mock_server, "teardown-update-document");
+
        /* Delete the new file */
        if (data->document != NULL) {
                /* HACK: Query for the new document, as Google's servers appear to modify it behind our back 
if we don't update both metadata and data
@@ -894,6 +970,8 @@ tear_down_update_document (UpdateDocumentData *data, gconstpointer _test_params)
                delete_entry (GDATA_DOCUMENTS_ENTRY (data->document), GDATA_SERVICE (test_params->service));
                g_object_unref (data->document);
        }
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -905,6 +983,8 @@ test_update (UpdateDocumentData *data, gconstpointer _test_params)
        gchar *original_title;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "update");
+
        switch (test_params->payload_type) {
                case UPLOAD_METADATA_ONLY:
                case UPLOAD_CONTENT_AND_METADATA: {
@@ -1005,6 +1085,8 @@ test_update (UpdateDocumentData *data, gconstpointer _test_params)
 
        g_free (original_title);
        g_object_unref (updated_document);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 typedef struct {
@@ -1024,10 +1106,14 @@ set_up_copy_document (TempCopyDocumentData *data, gconstpointer service)
 static void
 tear_down_copy_document (TempCopyDocumentData *data, gconstpointer service)
 {
+       gdata_test_mock_server_start_trace (mock_server, "teardown-copy-document");
+
        /* Delete the copied document */
        delete_entry (GDATA_DOCUMENTS_ENTRY (data->new_document), GDATA_SERVICE (service));
        g_object_unref (data->new_document);
 
+       gdata_mock_server_end_trace (mock_server);
+
        /* Delete the folder */
        tear_down_temp_document ((TempDocumentData*) data, service);
 }
@@ -1037,6 +1123,8 @@ test_copy_document (TempCopyDocumentData *data, gconstpointer service)
 {
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "copy-document");
+
        /* Copy the document */
        data->new_document = gdata_documents_service_copy_document (GDATA_DOCUMENTS_SERVICE (service), 
data->parent.document, NULL, &error);
        g_assert_no_error (error);
@@ -1045,6 +1133,8 @@ test_copy_document (TempCopyDocumentData *data, gconstpointer service)
        /* Check their IDs are different but that their other properties (e.g. title) are the same. */
        g_assert_cmpstr (gdata_entry_get_id (GDATA_ENTRY (data->parent.document)), !=, gdata_entry_get_id 
(GDATA_ENTRY (data->new_document)));
        g_assert_cmpstr (gdata_entry_get_title (GDATA_ENTRY (data->parent.document)), ==, 
gdata_entry_get_title (GDATA_ENTRY (data->new_document)));
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 typedef struct {
@@ -1064,6 +1154,8 @@ set_up_folders (FoldersData *data, GDataDocumentsService *service, gboolean init
        gchar *upload_uri;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "setup-folders");
+
        /* Create a new folder for the tests */
        folder = gdata_documents_folder_new (NULL);
        gdata_entry_set_title (GDATA_ENTRY (folder), "add_file_folder_move_folder");
@@ -1127,6 +1219,8 @@ set_up_folders (FoldersData *data, GDataDocumentsService *service, gboolean init
                                                                                     gdata_entry_get_id 
(GDATA_ENTRY (new_document)), NULL,
                                                                                     G_OBJECT_TYPE 
(new_document), NULL, NULL));
        g_assert (GDATA_IS_DOCUMENTS_TEXT (data->document));
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -1138,11 +1232,15 @@ set_up_folders_add_to_folder (FoldersData *data, gconstpointer service)
 static void
 tear_down_folders_add_to_folder (FoldersData *data, gconstpointer service)
 {
+       gdata_test_mock_server_start_trace (mock_server, "teardown-folders-add-to-folder");
+
        delete_entry (GDATA_DOCUMENTS_ENTRY (data->document), GDATA_SERVICE (service));
        g_object_unref (data->document);
 
        delete_entry (GDATA_DOCUMENTS_ENTRY (data->folder), GDATA_SERVICE (service));
        g_object_unref (data->folder);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -1151,6 +1249,8 @@ test_folders_add_to_folder (FoldersData *data, gconstpointer service)
        GDataDocumentsDocument *new_document;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "folders-add-to-folder");
+
        /* Add the document to the folder */
        new_document = GDATA_DOCUMENTS_DOCUMENT (gdata_documents_service_add_entry_to_folder 
(GDATA_DOCUMENTS_SERVICE (service),
                                                                                              
GDATA_DOCUMENTS_ENTRY (data->document),
@@ -1163,12 +1263,16 @@ test_folders_add_to_folder (FoldersData *data, gconstpointer service)
        g_assert (check_document_is_in_folder (new_document, data->folder) == TRUE);
 
        g_object_unref (new_document);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 GDATA_ASYNC_CLOSURE_FUNCTIONS (folders_add_to_folder, FoldersData);
 
 GDATA_ASYNC_TEST_FUNCTIONS (folders_add_to_folder, FoldersData,
 G_STMT_START {
+       gdata_test_mock_server_start_trace (mock_server, "folders-add-to-folder-async");
+
        /* Add the document to the folder asynchronously */
        gdata_documents_service_add_entry_to_folder_async (GDATA_DOCUMENTS_SERVICE (service), 
GDATA_DOCUMENTS_ENTRY (data->document),
                                                           data->folder, cancellable, async_ready_callback, 
async_data);
@@ -1189,6 +1293,8 @@ G_STMT_START {
        } else {
                g_assert (entry == NULL);
        }
+
+       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 static void
@@ -1209,6 +1315,8 @@ test_folders_remove_from_folder (FoldersData *data, gconstpointer service)
        GDataDocumentsDocument *new_document;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "folders-remove-from-folder");
+
        /* Remove the document from the folder */
        new_document = GDATA_DOCUMENTS_DOCUMENT (gdata_documents_service_remove_entry_from_folder 
(GDATA_DOCUMENTS_SERVICE (service),
                                                                                                   
GDATA_DOCUMENTS_ENTRY (data->document),
@@ -1221,12 +1329,16 @@ test_folders_remove_from_folder (FoldersData *data, gconstpointer service)
        g_assert (check_document_is_in_folder (new_document, data->folder) == FALSE);
 
        g_object_unref (new_document);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 GDATA_ASYNC_CLOSURE_FUNCTIONS (folders_remove_from_folder, FoldersData);
 
 GDATA_ASYNC_TEST_FUNCTIONS (folders_remove_from_folder, FoldersData,
 G_STMT_START {
+       gdata_test_mock_server_start_trace (mock_server, "folders-remove-from-folder-async");
+
        /* Remove the document from the folder asynchronously */
        gdata_documents_service_remove_entry_from_folder_async (GDATA_DOCUMENTS_SERVICE (service), 
GDATA_DOCUMENTS_ENTRY (data->document),
                                                                data->folder, cancellable, 
async_ready_callback, async_data);
@@ -1247,6 +1359,8 @@ G_STMT_START {
        } else {
                g_assert (entry == NULL);
        }
+
+       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 static void
@@ -1323,10 +1437,14 @@ _test_download_document (GDataDocumentsDocument *document, GDataService *service
 static void
 test_download_document (TempDocumentsData *data, gconstpointer service)
 {
+       gdata_test_mock_server_start_trace (mock_server, "download-document");
+
        _test_download_document (GDATA_DOCUMENTS_DOCUMENT (data->spreadsheet_document), GDATA_SERVICE 
(service));
        _test_download_document (GDATA_DOCUMENTS_DOCUMENT (data->presentation_document), GDATA_SERVICE 
(service));
        _test_download_document (GDATA_DOCUMENTS_DOCUMENT (data->text_document), GDATA_SERVICE (service));
        _test_download_document (GDATA_DOCUMENTS_DOCUMENT (data->arbitrary_document), GDATA_SERVICE 
(service));
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -1350,6 +1468,8 @@ test_download_thumbnail (TempDocumentData *data, gconstpointer service)
                return;
        }
 
+       gdata_test_mock_server_start_trace (mock_server, "download-thumbnail");
+
        /* Download the thumbnail to a file for testing (in case we weren't compiled with GdkPixbuf support) 
*/
        download_stream = GDATA_DOWNLOAD_STREAM (gdata_download_stream_new (GDATA_SERVICE (service), NULL, 
thumbnail_uri, NULL));
        g_assert (GDATA_IS_DOWNLOAD_STREAM (download_stream));
@@ -1401,6 +1521,8 @@ test_download_thumbnail (TempDocumentData *data, gconstpointer service)
                g_object_unref (pixbuf);
        }
 #endif /* HAVE_GDK_PIXBUF */
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -1410,6 +1532,8 @@ test_access_rule_insert (TempDocumentData *data, gconstpointer service)
        GDataLink *_link;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "access-rule-insert");
+
        /* New access rule */
        access_rule = gdata_access_rule_new (NULL);
        gdata_access_rule_set_role (access_rule, GDATA_DOCUMENTS_ACCESS_ROLE_WRITER);
@@ -1431,6 +1555,8 @@ test_access_rule_insert (TempDocumentData *data, gconstpointer service)
 
        g_object_unref (access_rule);
        g_object_unref (new_access_rule);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -1543,6 +1669,8 @@ test_batch (gconstpointer service)
        guint op_id, op_id2, op_id3;
        GError *error = NULL, *entry_error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "batch");
+
        operation = gdata_batchable_create_operation (GDATA_BATCHABLE (service), 
gdata_documents_service_get_primary_authorization_domain (),
                                                      BATCH_URI);
 
@@ -1669,6 +1797,8 @@ test_batch (gconstpointer service)
        g_clear_error (&error);
        g_object_unref (operation);
        g_object_unref (inserted_entry3);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 typedef struct {
@@ -1682,6 +1812,8 @@ set_up_batch_async (BatchAsyncData *data, gconstpointer service)
        gchar *upload_uri;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "setup-batch-async");
+
        /* Insert a new document which we can query asyncly */
        doc = gdata_documents_text_new (NULL);
        gdata_entry_set_title (GDATA_ENTRY (doc), "A View from the Bridge");
@@ -1697,6 +1829,8 @@ set_up_batch_async (BatchAsyncData *data, gconstpointer service)
        g_clear_error (&error);
 
        g_object_unref (doc);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -1720,6 +1854,8 @@ test_batch_async (BatchAsyncData *data, gconstpointer service)
        GDataBatchOperation *operation;
        GMainLoop *main_loop;
 
+       gdata_test_mock_server_start_trace (mock_server, "batch-async");
+
        /* Run an async query operation on the document */
        operation = gdata_batchable_create_operation (GDATA_BATCHABLE (service), 
gdata_documents_service_get_primary_authorization_domain (),
                                                      BATCH_URI);
@@ -1733,6 +1869,8 @@ test_batch_async (BatchAsyncData *data, gconstpointer service)
 
        g_main_loop_unref (main_loop);
        g_object_unref (operation);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -1758,6 +1896,8 @@ test_batch_async_cancellation (BatchAsyncData *data, gconstpointer service)
        GCancellable *cancellable;
        GError *error = NULL;
 
+       gdata_test_mock_server_start_trace (mock_server, "batch-async-cancellation");
+
        /* Run an async query operation on the document */
        operation = gdata_batchable_create_operation (GDATA_BATCHABLE (service), 
gdata_documents_service_get_primary_authorization_domain (),
                                                      BATCH_URI);
@@ -1778,13 +1918,19 @@ test_batch_async_cancellation (BatchAsyncData *data, gconstpointer service)
        g_main_loop_unref (main_loop);
        g_object_unref (cancellable);
        g_object_unref (operation);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
 tear_down_batch_async (BatchAsyncData *data, gconstpointer service)
 {
+       gdata_test_mock_server_start_trace (mock_server, "teardown-batch-async");
+
        delete_entry (GDATA_DOCUMENTS_ENTRY (data->new_doc), GDATA_SERVICE (service));
        g_object_unref (data->new_doc);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 int
@@ -1793,151 +1939,156 @@ main (int argc, char *argv[])
        gint retval;
        GDataAuthorizer *authorizer = NULL;
        GDataService *service = NULL;
+       GFile *trace_directory;
 
        gdata_test_init (argc, argv);
 
-       if (gdata_test_internet () == TRUE) {
-               authorizer = GDATA_AUTHORIZER (gdata_client_login_authorizer_new (CLIENT_ID, 
GDATA_TYPE_DOCUMENTS_SERVICE));
-               gdata_client_login_authorizer_authenticate (GDATA_CLIENT_LOGIN_AUTHORIZER (authorizer), 
DOCUMENTS_USERNAME, PASSWORD, NULL, NULL);
-
-               service = GDATA_SERVICE (gdata_documents_service_new (authorizer));
-
-               g_test_add_func ("/documents/authentication", test_authentication);
-               g_test_add ("/documents/authentication/async", GDataAsyncTestData, NULL, 
gdata_set_up_async_test_data, test_authentication_async,
-                           gdata_tear_down_async_test_data);
-               g_test_add ("/documents/authentication/async/cancellation", GDataAsyncTestData, NULL, 
gdata_set_up_async_test_data,
-                           test_authentication_async_cancellation, gdata_tear_down_async_test_data);
-
-               g_test_add ("/documents/delete/document", TempDocumentData, service, 
set_up_temp_document_spreadsheet, test_delete_document,
-                           tear_down_temp_document);
-               g_test_add ("/documents/delete/folder", TempFolderData, service, set_up_temp_folder, 
test_delete_folder, tear_down_temp_folder);
-
-               /* Test all possible combinations of conditions for resumable uploads. */
-               {
-                       PayloadType i;
-                       FolderType j;
-                       ResumableType k;
-                       DocumentType l;
-
-                       for (i = 0; i < UPLOAD_PAYLOAD_TYPE_MAX + 1; i++) {
-                               for (j = 0; j < UPLOAD_FOLDER_TYPE_MAX + 1; j++) {
-                                       for (k = 0; k < UPLOAD_RESUMABLE_TYPE_MAX + 1; k++) {
-                                               for (l = 0; l < UPLOAD_DOCUMENT_TYPE_MAX + 1; l++) {
-                                                       UploadDocumentTestParams *test_params;
-                                                       gchar *test_name;
-
-                                                       /* Resumable metadata-only uploads don't make sense. 
*/
-                                                       if (i == UPLOAD_METADATA_ONLY && k == 
UPLOAD_RESUMABLE) {
-                                                               continue;
-                                                       }
-                                                       /* Non-resumable non-conversion uploads don't make 
sense. */
-                                                       if (k == UPLOAD_NON_RESUMABLE && l != 
UPLOAD_ODT_CONVERT) {
-                                                               continue;
-                                                       }
-
-                                                       test_name = g_strdup_printf 
("/documents/upload/%s/%s/%s/%s",
-                                                                                    payload_type_names[i], 
folder_type_names[j],
-                                                                                    resumable_type_names[k], 
document_type_names[l]);
-
-                                                       /* Allocate a new struct. We leak this. */
-                                                       test_params = g_slice_new0 (UploadDocumentTestParams);
-                                                       test_params->payload_type = i;
-                                                       test_params->folder_type = j;
-                                                       test_params->resumable_type = k;
-                                                       test_params->document_type = l;
-                                                       test_params->test_name = g_strdup (test_name);
-                                                       test_params->service = GDATA_DOCUMENTS_SERVICE 
(service);
-
-                                                       g_test_add (test_name, UploadDocumentData, 
test_params, set_up_upload_document, test_upload,
-                                                                   tear_down_upload_document);
-
-                                                       g_free (test_name);
+       mock_server = gdata_test_get_mock_server ();
+       trace_directory = g_file_new_for_path ("traces/documents");
+       gdata_mock_server_set_trace_directory (mock_server, trace_directory);
+       g_object_unref (trace_directory);
+
+       gdata_test_mock_server_start_trace (mock_server, "global-authentication");
+       authorizer = GDATA_AUTHORIZER (gdata_client_login_authorizer_new (CLIENT_ID, 
GDATA_TYPE_DOCUMENTS_SERVICE));
+       gdata_client_login_authorizer_authenticate (GDATA_CLIENT_LOGIN_AUTHORIZER (authorizer), 
DOCUMENTS_USERNAME, PASSWORD, NULL, NULL);
+       gdata_mock_server_end_trace (mock_server);
+
+       service = GDATA_SERVICE (gdata_documents_service_new (authorizer));
+
+       g_test_add_func ("/documents/authentication", test_authentication);
+       g_test_add ("/documents/authentication/async", GDataAsyncTestData, NULL, 
gdata_set_up_async_test_data, test_authentication_async,
+                   gdata_tear_down_async_test_data);
+       g_test_add ("/documents/authentication/async/cancellation", GDataAsyncTestData, NULL, 
gdata_set_up_async_test_data,
+                   test_authentication_async_cancellation, gdata_tear_down_async_test_data);
+
+       g_test_add ("/documents/delete/document", TempDocumentData, service, 
set_up_temp_document_spreadsheet, test_delete_document,
+                   tear_down_temp_document);
+       g_test_add ("/documents/delete/folder", TempFolderData, service, set_up_temp_folder, 
test_delete_folder, tear_down_temp_folder);
+
+       /* Test all possible combinations of conditions for resumable uploads. */
+       {
+               PayloadType i;
+               FolderType j;
+               ResumableType k;
+               DocumentType l;
+
+               for (i = 0; i < UPLOAD_PAYLOAD_TYPE_MAX + 1; i++) {
+                       for (j = 0; j < UPLOAD_FOLDER_TYPE_MAX + 1; j++) {
+                               for (k = 0; k < UPLOAD_RESUMABLE_TYPE_MAX + 1; k++) {
+                                       for (l = 0; l < UPLOAD_DOCUMENT_TYPE_MAX + 1; l++) {
+                                       UploadDocumentTestParams *test_params;
+                                       gchar *test_name;
+
+                                       /* Resumable metadata-only uploads don't make sense. */
+                                               if (i == UPLOAD_METADATA_ONLY && k == UPLOAD_RESUMABLE) {
+                                                       continue;
                                                }
+                                               /* Non-resumable non-conversion uploads don't make sense. */
+                                               if (k == UPLOAD_NON_RESUMABLE && l != UPLOAD_ODT_CONVERT) {
+                                                       continue;
+                                               }
+
+                                               test_name = g_strdup_printf ("/documents/upload/%s/%s/%s/%s",
+                                                                            payload_type_names[i], 
folder_type_names[j],
+                                                                            resumable_type_names[k], 
document_type_names[l]);
+
+                                               /* Allocate a new struct. We leak this. */
+                                               test_params = g_slice_new0 (UploadDocumentTestParams);
+                                               test_params->payload_type = i;
+                                               test_params->folder_type = j;
+                                               test_params->resumable_type = k;
+                                               test_params->document_type = l;
+                                               test_params->test_name = g_strdup (test_name);
+                                               test_params->service = GDATA_DOCUMENTS_SERVICE (service);
+
+                                               g_test_add (test_name, UploadDocumentData, test_params, 
set_up_upload_document, test_upload,
+                                                           tear_down_upload_document);
+
+                                               g_free (test_name);
                                        }
                                }
                        }
                }
+       }
 
-               g_test_add ("/documents/download/document", TempDocumentsData, service, 
set_up_temp_documents, test_download_document,
-                           tear_down_temp_documents);
-               g_test_add ("/documents/download/thumbnail", TempDocumentData, service, 
set_up_temp_document_spreadsheet, test_download_thumbnail,
-                           tear_down_temp_document);
+       g_test_add ("/documents/download/document", TempDocumentsData, service, set_up_temp_documents, 
test_download_document,
+                   tear_down_temp_documents);
+       g_test_add ("/documents/download/thumbnail", TempDocumentData, service, 
set_up_temp_document_spreadsheet, test_download_thumbnail,
+                   tear_down_temp_document);
 
-               /* Test all possible combinations of conditions for resumable updates. */
-               {
-                       PayloadType i;
-                       ResumableType j;
+       /* Test all possible combinations of conditions for resumable updates. */
+       {
+               PayloadType i;
+               ResumableType j;
 
-                       for (i = 0; i < UPLOAD_PAYLOAD_TYPE_MAX + 1; i++) {
-                               for (j = 0; j < UPLOAD_RESUMABLE_TYPE_MAX + 1; j++) {
-                                       UpdateDocumentTestParams *test_params;
-                                       gchar *test_name;
+               for (i = 0; i < UPLOAD_PAYLOAD_TYPE_MAX + 1; i++) {
+                       for (j = 0; j < UPLOAD_RESUMABLE_TYPE_MAX + 1; j++) {
+                               UpdateDocumentTestParams *test_params;
+                               gchar *test_name;
 
-                                       /* Resumable metadata-only updates don't make sense. */
-                                       if (i == UPLOAD_METADATA_ONLY && j == UPLOAD_RESUMABLE) {
-                                               continue;
-                                       }
+                               /* Resumable metadata-only updates don't make sense. */
+                               if (i == UPLOAD_METADATA_ONLY && j == UPLOAD_RESUMABLE) {
+                                       continue;
+                               }
 
-                                       test_name = g_strdup_printf ("/documents/update/%s/%s", 
payload_type_names[i], resumable_type_names[j]);
+                               test_name = g_strdup_printf ("/documents/update/%s/%s", 
payload_type_names[i], resumable_type_names[j]);
 
-                                       /* Allocate a new struct. We leak this. */
-                                       test_params = g_slice_new0 (UpdateDocumentTestParams);
-                                       test_params->payload_type = i;
-                                       test_params->resumable_type = j;
-                                       test_params->test_name = g_strdup (test_name);
-                                       test_params->service = GDATA_DOCUMENTS_SERVICE (service);
+                               /* Allocate a new struct. We leak this. */
+                               test_params = g_slice_new0 (UpdateDocumentTestParams);
+                               test_params->payload_type = i;
+                               test_params->resumable_type = j;
+                               test_params->test_name = g_strdup (test_name);
+                               test_params->service = GDATA_DOCUMENTS_SERVICE (service);
 
-                                       g_test_add (test_name, UpdateDocumentData, test_params, 
set_up_update_document, test_update,
-                                                   tear_down_update_document);
+                               g_test_add (test_name, UpdateDocumentData, test_params, 
set_up_update_document, test_update,
+                                           tear_down_update_document);
 
-                                       g_free (test_name);
-                               }
+                               g_free (test_name);
                        }
                }
-
-               g_test_add ("/documents/access-rule/insert", TempDocumentData, service, 
set_up_temp_document_spreadsheet, test_access_rule_insert,
-                           tear_down_temp_document);
-
-               g_test_add ("/documents/query/all_documents", TempDocumentsData, service, 
set_up_temp_documents, test_query_all_documents,
-                           tear_down_temp_documents);
-               g_test_add ("/documents/query/all_documents/with_folder", TempDocumentsData, service, 
set_up_temp_documents,
-                           test_query_all_documents_with_folder, tear_down_temp_documents);
-               g_test_add ("/documents/query/all_documents/async", GDataAsyncTestData, service, 
set_up_temp_documents_async,
-                           test_query_all_documents_async, tear_down_temp_documents_async);
-               g_test_add ("/documents/query/all_documents/async/progress_closure", TempDocumentsData, 
service, set_up_temp_documents,
-                           test_query_all_documents_async_progress_closure, tear_down_temp_documents);
-               g_test_add ("/documents/query/all_documents/async/cancellation", GDataAsyncTestData, service, 
set_up_temp_documents_async,
-                           test_query_all_documents_async_cancellation, tear_down_temp_documents_async);
-
-               g_test_add ("/documents/copy", TempCopyDocumentData, service, set_up_copy_document, 
test_copy_document, tear_down_copy_document);
-               /*g_test_add ("/documents/copy/async", GDataAsyncTestData, service, 
set_up_folders_add_to_folder_async,
-                           test_folders_add_to_folder_async, tear_down_folders_add_to_folder_async);
-               g_test_add ("/documents/copy/async/cancellation", GDataAsyncTestData, service, 
set_up_folders_add_to_folder_async,
-                           test_folders_add_to_folder_async_cancellation, 
tear_down_folders_add_to_folder_async);*/
-
-               g_test_add ("/documents/folders/add_to_folder", FoldersData, service, 
set_up_folders_add_to_folder,
-                           test_folders_add_to_folder, tear_down_folders_add_to_folder);
-               g_test_add ("/documents/folders/add_to_folder/async", GDataAsyncTestData, service, 
set_up_folders_add_to_folder_async,
-                           test_folders_add_to_folder_async, tear_down_folders_add_to_folder_async);
-               g_test_add ("/documents/folders/add_to_folder/async/cancellation", GDataAsyncTestData, 
service, set_up_folders_add_to_folder_async,
-                           test_folders_add_to_folder_async_cancellation, 
tear_down_folders_add_to_folder_async);
-
-               g_test_add ("/documents/folders/remove_from_folder", FoldersData, service, 
set_up_folders_remove_from_folder,
-                           test_folders_remove_from_folder, tear_down_folders_remove_from_folder);
-               g_test_add ("/documents/folders/remove_from_folder/async", GDataAsyncTestData, service, 
set_up_folders_remove_from_folder_async,
-                           test_folders_remove_from_folder_async, 
tear_down_folders_remove_from_folder_async);
-               g_test_add ("/documents/folders/remove_from_folder/async/cancellation", GDataAsyncTestData, 
service,
-                           set_up_folders_remove_from_folder_async, 
test_folders_remove_from_folder_async_cancellation,
-                           tear_down_folders_remove_from_folder_async);
-
-               g_test_add_data_func ("/documents/batch", service, test_batch);
-               g_test_add ("/documents/batch/async", BatchAsyncData, service, set_up_batch_async, 
test_batch_async, tear_down_batch_async);
-               g_test_add ("/documents/batch/async/cancellation", BatchAsyncData, service, 
set_up_batch_async, test_batch_async_cancellation,
-                           tear_down_batch_async);
        }
 
-       g_test_add_func ("/documents/folder/parser/normal", test_folder_parser_normal);
+       g_test_add ("/documents/access-rule/insert", TempDocumentData, service, 
set_up_temp_document_spreadsheet, test_access_rule_insert,
+                   tear_down_temp_document);
+
+       g_test_add ("/documents/query/all_documents", TempDocumentsData, service, set_up_temp_documents, 
test_query_all_documents,
+                   tear_down_temp_documents);
+       g_test_add ("/documents/query/all_documents/with_folder", TempDocumentsData, service, 
set_up_temp_documents,
+                   test_query_all_documents_with_folder, tear_down_temp_documents);
+       g_test_add ("/documents/query/all_documents/async", GDataAsyncTestData, service, 
set_up_temp_documents_async,
+                   test_query_all_documents_async, tear_down_temp_documents_async);
+       g_test_add ("/documents/query/all_documents/async/progress_closure", TempDocumentsData, service, 
set_up_temp_documents,
+                   test_query_all_documents_async_progress_closure, tear_down_temp_documents);
+       g_test_add ("/documents/query/all_documents/async/cancellation", GDataAsyncTestData, service, 
set_up_temp_documents_async,
+                   test_query_all_documents_async_cancellation, tear_down_temp_documents_async);
+
+       g_test_add ("/documents/copy", TempCopyDocumentData, service, set_up_copy_document, 
test_copy_document, tear_down_copy_document);
+       /*g_test_add ("/documents/copy/async", GDataAsyncTestData, service, 
set_up_folders_add_to_folder_async,
+                   test_folders_add_to_folder_async, tear_down_folders_add_to_folder_async);
+       g_test_add ("/documents/copy/async/cancellation", GDataAsyncTestData, service, 
set_up_folders_add_to_folder_async,
+                   test_folders_add_to_folder_async_cancellation, tear_down_folders_add_to_folder_async);*/
+
+       g_test_add ("/documents/folders/add_to_folder", FoldersData, service, set_up_folders_add_to_folder,
+                   test_folders_add_to_folder, tear_down_folders_add_to_folder);
+       g_test_add ("/documents/folders/add_to_folder/async", GDataAsyncTestData, service, 
set_up_folders_add_to_folder_async,
+                   test_folders_add_to_folder_async, tear_down_folders_add_to_folder_async);
+       g_test_add ("/documents/folders/add_to_folder/async/cancellation", GDataAsyncTestData, service, 
set_up_folders_add_to_folder_async,
+                   test_folders_add_to_folder_async_cancellation, tear_down_folders_add_to_folder_async);
+
+       g_test_add ("/documents/folders/remove_from_folder", FoldersData, service, 
set_up_folders_remove_from_folder,
+                   test_folders_remove_from_folder, tear_down_folders_remove_from_folder);
+       g_test_add ("/documents/folders/remove_from_folder/async", GDataAsyncTestData, service, 
set_up_folders_remove_from_folder_async,
+                   test_folders_remove_from_folder_async, tear_down_folders_remove_from_folder_async);
+       g_test_add ("/documents/folders/remove_from_folder/async/cancellation", GDataAsyncTestData, service,
+                   set_up_folders_remove_from_folder_async, 
test_folders_remove_from_folder_async_cancellation,
+                   tear_down_folders_remove_from_folder_async);
+
+       g_test_add_data_func ("/documents/batch", service, test_batch);
+       g_test_add ("/documents/batch/async", BatchAsyncData, service, set_up_batch_async, test_batch_async, 
tear_down_batch_async);
+       g_test_add ("/documents/batch/async/cancellation", BatchAsyncData, service, set_up_batch_async, 
test_batch_async_cancellation,
+                   tear_down_batch_async);
 
+       g_test_add_func ("/documents/folder/parser/normal", test_folder_parser_normal);
        g_test_add_func ("/documents/query/etag", test_query_etag);
 
        retval = g_test_run ();
diff --git a/gdata/tests/traces/documents/access-rule-insert b/gdata/tests/traces/documents/access-rule-insert
new file mode 100644
index 0000000..e7261c1
--- /dev/null
+++ b/gdata/tests/traces/documents/access-rule-insert
@@ -0,0 +1,32 @@
+> POST /feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c/acl HTTP/1.1
+> Soup-Debug-Timestamp: 1375182736
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 53 (0x77f370), SoupSocket 19 (0x7fffe4003c60)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gAcl='http://schemas.google.com/acl/2007' xmlns:gd='http://schemas.google.com/g/2005'><title 
type='text'>writer</title><category term='http://schemas.google.com/acl/2007#accessRule' 
scheme='http://schemas.google.com/g/2005#kind'/><gAcl:role value='writer'/><gAcl:scope type='user' 
value='libgdata test gmail com'/></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375182736
+< Soup-Debug: SoupMessage 53 (0x77f370)
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Tue, 30 Jul 2013 11:12:17 GMT
+< Date: Tue, 30 Jul 2013 11:12:17 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.0
+< ETag: W/"CEAHRn0-eCt7ImA9WhFWEUU."
+< Location: 
https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c/acl/user%3Alibgdata.test%40gmail.com
+< Content-Location: 
https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c/acl/user%3Alibgdata.test%40gmail.com
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gAcl='http://schemas.google.com/acl/2007' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CEAHRn0-eCt7ImA9WhFWEUU.&quot;'><id>https://docs.google.com/feeds/id/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c/acl/user%3Alibgdata.test%40gmail.com</id><updated>2013-07-30T11:12:17.350Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:12:17.350Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/acl/2007#accessRule'/><title>Document Permission - libgdata test gmail 
com</title><link rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c/acl/user%3Alibgdata.test%40gmail.com'/><link
 rel='edit' type='application/atom+xml' href='https://docs.google.com
 
/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c/acl/user%3Alibgdata.test%40gmail.com'/><gAcl:role
 value='none'/><gAcl:scope type='user' value='libgdata test gmail com'/></entry>
+  
diff --git a/gdata/tests/traces/documents/authentication b/gdata/tests/traces/documents/authentication
new file mode 100644
index 0000000..0e191f9
--- /dev/null
+++ b/gdata/tests/traces/documents/authentication
@@ -0,0 +1,81 @@
+> POST /accounts/ClientLogin HTTP/1.1
+> Soup-Debug-Timestamp: 1375182662
+> Soup-Debug: SoupSession 1 (0x6593d0), SoupMessage 1 (0x77f460), SoupSocket 1 (0x945af0)
+> Host: www.google.com
+> Content-Type: application/x-www-form-urlencoded
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> 
accountType=HOSTED%5FOR%5FGOOGLE&Email=libgdata%2Etest%40gmail%2Ecom&Passwd=gdata%2Dgdata&service=writely&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182663
+< Soup-Debug: SoupMessage 1 (0x77f460)
+< Content-Type: text/plain
+< Cache-control: no-cache, no-store
+< Pragma: no-cache
+< Expires: Mon, 01-Jan-1990 00:00:00 GMT
+< Date: Tue, 30 Jul 2013 11:11:03 GMT
+< X-Content-Type-Options: nosniff
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 881
+< Server: GSE
+< 
+< 
SID=DQAAAMwAAACx5qEzwWrEm3m23QxTxbIhmFWywNFmRQpUNdcQcx7E5r-jp2wiNdCk4Whrgy3nedQ7wvAPYCo-TmiS4cb07hKyPlUtBBW2fqpPL-spOEYZzrsdYinYl4WlLUMTGS1ILXWa8L_-0ulRHGYJFbsv1MdbmxD-vsHQw2dQdYvWvNBYj17JLRvnyySwcAHBqWXLslUxAC4F5eimtR1EGk7rppWR4YO5eoz9xuJ54BbIVfoVDfH5UyjXZhIHeYdidam04EOmYIRBOk6Af6UHMOcjI6q8
+< 
LSID=DQAAANAAAACpuEI8xUwk8VnP8_SXHb8U34juGm8B05yLQwrAsbZjjeCYL1NVgJ6ihmD-WEH_mBVU4-LL5qaMQeROnFa8JiHkTISR5CGsj4h7p4Gp6cbH9YlmYdKyTmLdpSOlMDFgYBo0-g7JptQ2vGDsRzDFzDJr9Gw1hmQ1KhZg2_PccPrtu5HurmfDyxlOr1sOH5NxKEJmfuX9qYejCitqj0eyfeLgLlJi4h2N30Ma2ZOpZMpe8Sg_NYt2R5RA751OCkYVLOGIvxEJeRpUQIn27jeno-3y
+< 
Auth=DQAAAM4AAACpuEI8xUwk8VnP8_SXHb8U34juGm8B05yLQwrAsbZjjeCYL1NVgJ6ihmD-WEH_mBViTWsEFS0wSnkwtskJ6CZEicxkRJVcqc9soZsWzsgN36o7_6pK6mPk2kjucSP28wA6G2LHAO_U6malW65BiWqdNsHNzJ_ju-_E6iDM9JWfKXBlgod1euVov6xosByv25XKU8qL_W7xauGrw5vyV4FUkKWhPxVOrhK9PluntSiVsXsrsZIEVHcMXRaP7p3AfMlK4jkUNmK42i2yTmmZsubL
+  
+> POST /accounts/ClientLogin HTTP/1.1
+> Soup-Debug-Timestamp: 1375182663
+> Soup-Debug: SoupSession 1 (0x6593d0), SoupMessage 2 (0x77f280), SoupSocket 2 (0x945bb0)
+> Host: www.google.com
+> Content-Type: application/x-www-form-urlencoded
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> 
accountType=HOSTED%5FOR%5FGOOGLE&Email=libgdata%2Etest%40gmail%2Ecom&Passwd=gdata%2Dgdata&service=wise&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182663
+< Soup-Debug: SoupMessage 2 (0x77f280)
+< Content-Type: text/plain
+< Cache-control: no-cache, no-store
+< Pragma: no-cache
+< Expires: Mon, 01-Jan-1990 00:00:00 GMT
+< Date: Tue, 30 Jul 2013 11:11:03 GMT
+< X-Content-Type-Options: nosniff
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 881
+< Server: GSE
+< 
+< 
SID=DQAAAM0AAACx5qEzwWrEm3m23QxTxbIhmFWywNFmRQpUNdcQcx7E5r-jp2wiNdCk4Whrgy3nedQ7wvAPYCo-TmiS4cb07hKyPlUtBBW2fqpPL-spOEYZzrsdYinYl4WlLUMTGS1ILXWa8L_-0ulRHGYJFbsv1MdbmxD-vsHQw2dQdYvWvNBYj17JLRvnyySwcAHBqWXLslWQJvP8rhslxTWBetY-5K8ZouRXlrXYxLKQKeT-9qdopNbAuRiuw6SlKNRhZwRqhVVEW0M5k5E245xCFkmt0Gyv
+< 
LSID=DQAAAM4AAACpuEI8xUwk8VnP8_SXHb8U34juGm8B05yLQwrAsbZjjeCYL1NVgJ6ihmD-WEH_mBVU4-LL5qaMQeROnFa8JiHkTISR5CGsj4h7p4Gp6cbH9YlmYdKyTmLdpSOlMDFgYBo0-g7JptQ2vGDsRzDFzDJr9Gw1hmQ1KhZg2_PccPrtu5HurmfDyxlOr1sOH5NxKEJSom3UHSoDSlL4LRQfku8GR3R02tXx4bipO8wyLw-Ym2NSjrUgvMGqUjB-U6q7SCohiv1oHNCvkC_-hbnaZaFM
+< 
Auth=DQAAAM8AAACpuEI8xUwk8VnP8_SXHb8U34juGm8B05yLQwrAsbZjjeCYL1NVgJ6ihmD-WEH_mBWyxu56dfTLHUfm3oqYitk7Lo-pkS0nXqudueR-Uvr4SgbRa1iKSNRIhn0tYm_3qxs9Hy8P_dqi92JdAbi-RV6dyo4DYHJTQIq1QnZ8k47GjYoEaE4kj87akfWSD-1AMw1Zr2R0iYQh_p4d9M-0BrxZHgJ1SkKrBMqRcufmUn9zW6oTzaqOfCVWEGdx9pOtXFCLGMeRVUfmgOdw3Q6cnofH
+  
+> POST /accounts/ClientLogin HTTP/1.1
+> Soup-Debug-Timestamp: 1375182663
+> Soup-Debug: SoupSession 1 (0x6593d0), SoupMessage 3 (0x77f0a0), SoupSocket 3 (0x945c70)
+> Host: www.google.com
+> Content-Type: application/x-www-form-urlencoded
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> 
accountType=HOSTED%5FOR%5FGOOGLE&Email=libgdata%2Etest%40gmail%2Ecom&Passwd=gdata%2Dgdata&service=writely&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182663
+< Soup-Debug: SoupMessage 3 (0x77f0a0)
+< Content-Type: text/plain
+< Cache-control: no-cache, no-store
+< Pragma: no-cache
+< Expires: Mon, 01-Jan-1990 00:00:00 GMT
+< Date: Tue, 30 Jul 2013 11:11:04 GMT
+< X-Content-Type-Options: nosniff
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 881
+< Server: GSE
+< 
+< 
SID=DQAAAM0AAAAZTrIXUPb-y3f_J8aTORbIZQw8m3XJZnyHnQLqrOjiENqDnWOfg_NJ0C00Jjd4MQXgPU_0EDzEP2lJPdzcRUgeq0hnKGgPe6rJGdnYn7BUqRWOltiHYpg_Y-l3tnRPIWoHxAm7TBSWu0B-awin5jqQnJ7e5HG0drW6VSdPUm9Zjs0hDaUT0uQzUJhJXCZPPfg6Rzx7vBCJ7f6zKbakJPdxXf1csOSu3qb6OmUnf69Q-hS0Poj0vORXzAWXCKtbP4sNYek9sW88BwFHGWrWuH7K
+< 
LSID=DQAAAM8AAABeKomlEVI83bDJ_KSCLo09kIRypuoLtZ4MUxBvN8-x4vlpls1zgA32xT-MgMGmV2jxxOEacQ9abAgTTWUAeBBpr0E5Lqlh-ff7J5hBC8QumsgTMrdtd548YHCItRqefBEzYPjHp_EBOnTHkRymy6psVQs4NSXpxhWEkx6ZSgSdw8GWp35Ep1LKoKMhXGpjLqzADW3wPXthfOr_4CZFA7ld4fIpnG6XdWtjRv6EcgbWHbUBDBQTbtxifpjvLyxkJg6NH1MTgjHqN3gwYUHl1GkB
+< 
Auth=DQAAAM8AAABeKomlEVI83bDJ_KSCLo09kIRypuoLtZ4MUxBvN8-x4vlpls1zgA32xT-MgMGmV2h9cwlAkngz3kEck__xbtPo2WCJXOONQCTUatmiI7aoEuzQExUfCz0xIPpGYFi30XKeM_vibd3ZIy_Jdhe-e_ZpWqn14RsTigG-YgTIfErX0bogXTupAve5qDtnXq901327JcN5kSbB5OdQiboTubebyoNBdmU4dCf6L4m8rSHKMS7ilXIKYNro1w2HWhMFr_6YGdCgt0aMpPBPBEtybPtJ
+  
diff --git a/gdata/tests/traces/documents/authentication-async 
b/gdata/tests/traces/documents/authentication-async
new file mode 100644
index 0000000..e432a58
--- /dev/null
+++ b/gdata/tests/traces/documents/authentication-async
@@ -0,0 +1,81 @@
+> POST /accounts/ClientLogin HTTP/1.1
+> Soup-Debug-Timestamp: 1375182687
+> Soup-Debug: SoupSession 1 (0x6593d0), SoupMessage 1 (0x7fffe00122b0), SoupSocket 1 (0x7fffe4003ae0)
+> Host: www.google.com
+> Content-Type: application/x-www-form-urlencoded
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> 
accountType=HOSTED%5FOR%5FGOOGLE&Email=libgdata%2Etest%40gmail%2Ecom&Passwd=gdata%2Dgdata&service=writely&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182688
+< Soup-Debug: SoupMessage 1 (0x7fffe00122b0)
+< Content-Type: text/plain
+< Cache-control: no-cache, no-store
+< Pragma: no-cache
+< Expires: Mon, 01-Jan-1990 00:00:00 GMT
+< Date: Tue, 30 Jul 2013 11:11:28 GMT
+< X-Content-Type-Options: nosniff
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 881
+< Server: GSE
+< 
+< 
SID=DQAAAM0AAAA1iZnPnyPihE34yHZRmWF-LAiINbvWZ03kTC7vJrSIwVoJA4NAfS0YBm8hGRidDJ7oqwiso0LNJ2dHhAV310-RPtuIXaYKvadz6rxgCB14JqziRZ_BXsXK3vu-kRndaZ2EyVaHMXqzYWtkDmaxmG_zmH2uIUuw0WNrFO-ilHWsoeKzLyHm_gSCuu4hRXDgVBWrbbiqmKowouJRxibqEVCIpTqRY59Cer6rzI7BdzXonr2RjRRSPpU1RkrkFRy2bzZBt6IFRL2DLEU4Loz620aI
+< 
LSID=DQAAAM8AAADUdfFnuU_FNKIR_ii-GYoYa4DIElDL4Z-bgueHfWCnqHOz4brOYwZxMl_P8sQJ9HOJ2-qw-q3so6-qIPMmT47bHNthgHCX8Mqxureqsu6tEmp5BbC-kDJsujXt8LW3Dzfzz7_pFq6oJ_Fn4-ErlM5n8RjsL1SlgSUT7l3kXLZrfLGcwrjWtPCvcsMN7fpNkonsj8f_JXfEqKhWblm-QVwZzb-BAu2AO5XHKQNkxKiSluawmGb4VBxf-3a8XY0Rp0DMn1COqXNuIWLgtWDeJU5_
+< 
Auth=DQAAAM4AAADUdfFnuU_FNKIR_ii-GYoYa4DIElDL4Z-bgueHfWCnqHOz4brOYwZxMl_P8sQJ9HOdAEq9HPzPbfLIn2xDx_c14bRp7PDUsfRU3YC-MAJ6g3Ac90gVBXhMQ8oalfNNHd7VfAoSokbeMyVAuymdFHYMhFghTOvTk_EgecNIePjEEY9biVLtZPeFNNJY7E5MQaWkoFWC44RmsHcJVac2D8dPeAX9DotyDJAkq6ARUgk9YMyZqO7m01gYAUGezMU1a1ibIuUIGI0lYLyAKunj55cX
+  
+> POST /accounts/ClientLogin HTTP/1.1
+> Soup-Debug-Timestamp: 1375182688
+> Soup-Debug: SoupSession 1 (0x6593d0), SoupMessage 2 (0x7fffe00120d0), SoupSocket 2 (0x7fffe4003ba0)
+> Host: www.google.com
+> Content-Type: application/x-www-form-urlencoded
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> 
accountType=HOSTED%5FOR%5FGOOGLE&Email=libgdata%2Etest%40gmail%2Ecom&Passwd=gdata%2Dgdata&service=wise&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182688
+< Soup-Debug: SoupMessage 2 (0x7fffe00120d0)
+< Content-Type: text/plain
+< Cache-control: no-cache, no-store
+< Pragma: no-cache
+< Expires: Mon, 01-Jan-1990 00:00:00 GMT
+< Date: Tue, 30 Jul 2013 11:11:28 GMT
+< X-Content-Type-Options: nosniff
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 881
+< Server: GSE
+< 
+< 
SID=DQAAAM0AAAA1iZnPnyPihE34yHZRmWF-LAiINbvWZ03kTC7vJrSIwVoJA4NAfS0YBm8hGRidDJ7oqwiso0LNJ2dHhAV310-RPtuIXaYKvadz6rxgCB14JqziRZ_BXsXK3vu-kRndaZ2EyVaHMXqzYWtkDmaxmG_zmH2uIUuw0WNrFO-ilHWsoeKzLyHm_gSCuu4hRXDgVBWrbbiqmKowouJRxibqEVCIZfGxQxgxzqSEUG0jYGtqELm8d_Hd-dts8mtA0If1MECXUxG0iFgDJSBP2EWBgd-y
+< 
LSID=DQAAAM4AAADUdfFnuU_FNKIR_ii-GYoYa4DIElDL4Z-bgueHfWCnqHOz4brOYwZxMl_P8sQJ9HOJ2-qw-q3so6-qIPMmT47bHNthgHCX8Mqxureqsu6tEmp5BbC-kDJsujXt8LW3Dzfzz7_pFq6oJ_Fn4-ErlM5n8RjsL1SlgSUT7l3kXLZrfLGcwrjWtPCvcsMN7fpNkom4HOdvN8Y4msKYeDEIpNg4wU4RTClilcnStgsADoFX1wxbzYA6iKY0T8XuuPxRBvL2P30UvvVTeO02z_hdw5IQ
+< 
Auth=DQAAAM8AAADUdfFnuU_FNKIR_ii-GYoYa4DIElDL4Z-bgueHfWCnqHOz4brOYwZxMl_P8sQJ9HMiZtQOHGaA-rukGMbwARcaXSL7rAXnCWEXZOweEZkaHw615bD9uIhR4VTVrIIp7C_5hS0og93123a9Nu9cHIcSebLBqhmTB6iPMfJMbUpwQ65dUBCXAOHkm3nFNJf-21s_as7L8-JrDSJvSUict8OuidIYGTSfRf-GuxRmLNmT24ES3jZfvCsoY13xkqZI-KgbLihK-jGk0wH-Hi2WiF6c
+  
+> POST /accounts/ClientLogin HTTP/1.1
+> Soup-Debug-Timestamp: 1375182688
+> Soup-Debug: SoupSession 1 (0x6593d0), SoupMessage 3 (0x77f640), SoupSocket 3 (0x7fffe4003c60)
+> Host: www.google.com
+> Content-Type: application/x-www-form-urlencoded
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> 
accountType=HOSTED%5FOR%5FGOOGLE&Email=libgdata%2Etest%40gmail%2Ecom&Passwd=gdata%2Dgdata&service=writely&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182688
+< Soup-Debug: SoupMessage 3 (0x77f640)
+< Content-Type: text/plain
+< Cache-control: no-cache, no-store
+< Pragma: no-cache
+< Expires: Mon, 01-Jan-1990 00:00:00 GMT
+< Date: Tue, 30 Jul 2013 11:11:29 GMT
+< X-Content-Type-Options: nosniff
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 881
+< Server: GSE
+< 
+< 
SID=DQAAAM0AAAB6SJLTG_Y_z_E66iqm45gSsciSe0ndR1U1cdXrTvo8m3fdvYAlWiwg6I1AE7v3Yma6_Nxj_MZnZ0yqVoYcPmdGNPgkc8cgHHyzepa1HIxFUOhXhylDhZ90VwYafBcD33QkMPbvOsN7eH_MvhVAFUvnPRrd-D7ESmyfcm-CkOuEhptEIf7SWYihCrWQbQ-1DcFLJG9fIANpkWpgS0f80PRf6buKc-IzJFsf3-DAIhVMv4upt9Yrx17Jovo9Syu5YIOBpn98IrJeLcvBuakoT2Fp
+< 
LSID=DQAAAM4AAAChMEJy7cSCRMFTuByOg8Si8e8JZ0JtJJq97sROdL4b_og0NZyZwk8pi-oJmNoo--GmhHR2UhaKebMvlh17RU9UlRyOKZwjDVLdYCl-7qK2oVPHMESjCMJYYmshhThd10k1-gfEi7smO8dyAcYIgRxKs2LqxlKfswyuHqTr8ictesqMytII0WmFjbkLC4z2nbELqfEP2Pbb7I8UfGF_XzZng4mvDj3IxDOyfTzP5-FCRdTU7rKY0MqpZOdAAKs1wuTrqUjwTAmGEWY6N0IHiOrd
+< 
Auth=DQAAANAAAAChMEJy7cSCRMFTuByOg8Si8e8JZ0JtJJq97sROdL4b_og0NZyZwk8pi-oJmNoo--FfdVvohBGR76mxsAqrugmHW8uro9v5zjpRkvFO0d3WP6WopNuNUl4uMJ5dqC_QqVYMg7EUuu_OxZf03DtiGaz_C89gcHsB_WtQdW-L5Jft9yyT6NdfGkMAzFgyPlABqWuDVwg70RKcmyp0H5QFuLfmUVg9YVnLEMCScUzqtHbLYO-y6XpWodMHMP2mdMbc3FzKn4SpcX7ono9L8l_oRkj6
+  
diff --git a/gdata/tests/traces/documents/batch b/gdata/tests/traces/documents/batch
new file mode 100644
index 0000000..b076808
--- /dev/null
+++ b/gdata/tests/traces/documents/batch
@@ -0,0 +1,196 @@
+> POST /feeds/default/private/full/batch HTTP/1.1
+> Soup-Debug-Timestamp: 1375182678
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 9 (0x77f370), SoupSocket 3 (0x945df0)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:docs='http://schemas.google.com/docs/2007' 
xmlns:gd='http://schemas.google.com/g/2005'><title type='text'>Batch operation 
feed</title><id>batch1</id><updated>2013-07-30T11:11:18Z</updated><entry><title type='text'>My First 
Document</title><category term='http://schemas.google.com/docs/2007#document' 
scheme='http://schemas.google.com/g/2005#kind'/><batch:id>1</batch:id><batch:operation 
type='insert'/><docs:writersCanInvite value='false'/></entry></feed>
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182680
+< Soup-Debug: SoupMessage 9 (0x77f370)
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< GData-Version: 3.0
+< Date: Tue, 30 Jul 2013 11:11:20 GMT
+< Expires: Tue, 30 Jul 2013 11:11:20 GMT
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:docs='http://schemas.google.com/docs/2007' 
xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005'><id>https://docs.google.com/feeds/id/batch/1375182679266</id><updated>2013-07-30T11:11:20.479Z</updated><title>Batch
 operation feed</title><entry 
gd:etag='&quot;A1RTGRsPDyt7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8</id><published>2013-07-30T11:11:19.520Z</published><updated>2013-07-30T11:11:20.292Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:11:20.325Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label=
 'viewed'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>My First 
Document</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1NIUv1rYYG
 UplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8'/><link rel='http://schemas.google.com/docs/2007#alt-edit-media' 
type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/document%3A1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>document:1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe value='true'/><docs:modifiedByMeDate>
 
2013-07-30T11:11:20.292Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:11:19.858Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><batch:id>1</batch:id><batch:status code='201' reason='Created'/><batch:operation 
type='insert'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8/revisions'/></entry></feed>
+  
+> POST /feeds/default/private/full/batch HTTP/1.1
+> Soup-Debug-Timestamp: 1375182680
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 10 (0x77f550), SoupSocket 4 (0x945d30)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:docs='http://schemas.google.com/docs/2007' 
xmlns:gd='http://schemas.google.com/g/2005'><title type='text'>Batch operation 
feed</title><id>batch1</id><updated>2013-07-30T11:11:20Z</updated><entry><title type='text'>Batch operation 
query</title><id>https://docs.google.com/feeds/default/private/full/document%3A1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8</id><updated>2013-07-30T11:11:20Z</updated><batch:id>2</batch:id><batch:operation
 type='query'/></entry><entry><title type='text'>I&apos;m a poet and I didn&apos;t know it</title><category 
term='http://schemas.google.com/docs/2007#document' 
scheme='http://schemas.google.com/g/2005#kind'/><batch:id>1</batch:id><batch:operation 
type='insert'/><docs:writersCanInvite value='false'/></entry></feed>
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182681
+< Soup-Debug: SoupMessage 10 (0x77f550)
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< GData-Version: 3.0
+< Date: Tue, 30 Jul 2013 11:11:22 GMT
+< Expires: Tue, 30 Jul 2013 11:11:22 GMT
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:docs='http://schemas.google.com/docs/2007' 
xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005'><id>https://docs.google.com/feeds/id/batch/1375182681160</id><updated>2013-07-30T11:11:21.217Z</updated><title>Batch
 operation feed</title><entry 
gd:etag='&quot;A1RTGRtZGyt7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8</id><published>2013-07-30T11:11:19.520Z</published><updated>2013-07-30T11:11:20.095Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:11:20.565Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label=
 'viewed'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>My First 
Document</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1NIUv1rYYG
 UplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8'/><link rel='http://schemas.google.com/docs/2007#alt-edit-media' 
type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/document%3A1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8&amp;v=1&amp;s=AMedNnoAAAAAUfe7eabb8OdxCIf6YrU4OX4411Eu5aF-&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8'/><aut
 hor><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></author><gd:resourceId>document:1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:11:20.095Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:11:20.095Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><batch:id>2</batch:id><batch:status code='200' reason='Success'/><batch:operation 
type='query'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A1NIUv1rYYGUpl
 ZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8/revisions'/></entry><entry 
gd:etag='&quot;A1RTGRpQEit7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4</id><published>2013-07-30T11:11:21.404Z</published><updated>2013-07-30T11:11:22.075Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:11:22.106Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>I'm a poet and I 
didn't know it</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4'/><link
 rel='alternate' typ
 e='text/html' 
href='https://docs.google.com/document/d/1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4'/><link
 rel='self' type='application/atom+xml' href='https://docs.google.com/feeds/default/private/full
 /document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4'/><link rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>document:1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:11:22.075Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:11:21.655Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><batch:id>1</batch:id><batch:status code='201' reason='Created
 '/><batch:operation type='insert'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4/revisions'/></entry></feed>
+  
+> POST /feeds/default/private/full/batch HTTP/1.1
+> Soup-Debug-Timestamp: 1375182682
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 11 (0x77f460), SoupSocket 5 (0x945af0)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gd='http://schemas.google.com/g/2005'><title 
type='text'>Batch operation feed</title><id>batch1</id><updated>2013-07-30T11:11:21Z</updated><entry><title 
type='text'>Batch operation 
query</title><id>https://docs.google.com/feeds/default/private/full/document%3A1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8</id><updated>2013-07-30T11:11:21Z</updated><batch:id>1</batch:id><batch:operation
 type='query'/></entry></feed>
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182682
+< Soup-Debug: SoupMessage 11 (0x77f460)
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< GData-Version: 3.0
+< Date: Tue, 30 Jul 2013 11:11:22 GMT
+< Expires: Tue, 30 Jul 2013 11:11:22 GMT
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:docs='http://schemas.google.com/docs/2007' 
xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005'><id>https://docs.google.com/feeds/id/batch/1375182682837</id><updated>2013-07-30T11:11:22.886Z</updated><title>Batch
 operation feed</title><entry 
gd:etag='&quot;A1RTGRtZGyt7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8</id><published>2013-07-30T11:11:19.520Z</published><updated>2013-07-30T11:11:20.095Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:11:20.565Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label=
 'viewed'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>My First 
Document</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1NIUv1rYYG
 UplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8'/><link rel='http://schemas.google.com/docs/2007#alt-edit-media' 
type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/document%3A1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8&amp;v=1&amp;s=AMedNnoAAAAAUfe7erMai2RZ_z9fbNMlvHTCWmiQt9TF&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8'/><aut
 hor><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></author><gd:resourceId>document:1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:11:20.095Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:11:20.095Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><batch:id>1</batch:id><batch:status code='200' reason='Success'/><batch:operation 
type='query'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A1NIUv1rYYGUpl
 ZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8/revisions'/></entry></feed>
+  
+> POST /feeds/default/private/full/batch HTTP/1.1
+> Soup-Debug-Timestamp: 1375182682
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 12 (0x77f280), SoupSocket 6 (0x945970)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gd='http://schemas.google.com/g/2005'><title 
type='text'>Batch operation feed</title><id>batch1</id><updated>2013-07-30T11:11:22Z</updated><entry><title 
type='text'>Batch operation 
query</title><id>https://docs.google.com/feeds/default/private/full/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4</id><updated>2013-07-30T11:11:22Z</updated><batch:id>1</batch:id><batch:operation
 type='query'/></entry></feed>
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182683
+< Soup-Debug: SoupMessage 12 (0x77f280)
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< GData-Version: 3.0
+< Date: Tue, 30 Jul 2013 11:11:23 GMT
+< Expires: Tue, 30 Jul 2013 11:11:23 GMT
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:docs='http://schemas.google.com/docs/2007' 
xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005'><id>https://docs.google.com/feeds/id/batch/1375182683420</id><updated>2013-07-30T11:11:23.482Z</updated><title>Batch
 operation feed</title><entry 
gd:etag='&quot;A1RTGRpKRCt7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4</id><published>2013-07-30T11:11:21.404Z</published><updated>2013-07-30T11:11:21.891Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:11:22.311Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label=
 'viewed'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>I'm a poet and I 
didn't know it</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/documen
 t%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4'/><link 
rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4&amp;v=1&amp;s=AMedNnoAAAAAUfe7e5lOb4eqKzHuNXqALq6SX8byu4SE&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eo
 E_lrNP4'/><author><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></author><gd:resourceId>document:1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:11:21.891Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:11:21.891Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><batch:id>1</batch:id><batch:status code='200' reason='Success'/><batch:operation 
type='query'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3
 A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4/revisions'/></entry></feed>
+  
+> POST /feeds/default/private/full/batch HTTP/1.1
+> Soup-Debug-Timestamp: 1375182683
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 13 (0x77f190), SoupSocket 7 (0x9458b0)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:docs='http://schemas.google.com/docs/2007' 
xmlns:gd='http://schemas.google.com/g/2005'><title type='text'>Batch operation 
feed</title><id>batch1</id><updated>2013-07-30T11:11:23Z</updated><entry 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;A1RTGRpKRCt7ImBk&quot;'><title type='text'>War &amp; 
Peace</title><id>https://docs.google.com/feeds/id/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4</id><updated>2013-07-30T11:11:21Z</updated><published>2013-07-30T11:11:21Z</published><content
 type='text/plain' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4'/><category
 term='http://schemas.google.com/docs/2
 007#document' scheme='http://schemas.google.com/g/2005#kind'/><category 
term='http://schemas.google.com/g/2005/labels#viewed' scheme='http://schemas.google.com/g/2005/labels' 
label='viewed'/><category term='http://schemas.google.com/g/2005/labels#modified-by-me' 
scheme='http://schemas.google.com/g/2005/labels' label='modified-by-me'/><link 
href='https://docs.google.com/document/d/1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4/edit?usp=docslist_api' 
rel='http://www.iana.org/assignments/relation/alternate' type='text/html'/><link 
href='https://docs.google.com/document/d/1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4/preview' 
rel='http://schemas.google.com/docs/2007#embed' type='text/html'/><link 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png' 
rel='http://schemas.google.com/docs/2007#icon' type='image/png'/><link 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4'
 rel='h
 ttp://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml'/><link 
href='https://docs.google.com/feeds/upload/file/default/private/full/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4'
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml'/><link 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4&amp;v=1&amp;s=AMedNnoAAAAAUfe7e5lOb4eqKzHuNXqALq6SX8byu4SE&amp;sz=s220'
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png'/><link 
href='https://docs.google.com/feeds/default/private/full/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4'
 rel='http://www.iana.org/assignments/relation/self' type='application/atom+xml'/><link 
href='https://docs.google.com/feeds/default/private/full/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4'
 rel='http://www.iana.org/assignments/relation/edit' type='application/atom+xml'/><link href='https://docs
 .google.com/feeds/default/media/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4' 
rel='http://www.iana.org/assignments/relation/edit-media' type='text/html'/><link 
href='https://docs.google.com/feeds/default/private/full/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4/acl'
 rel='http://schemas.google.com/acl/2007#accessControlList'/><link 
href='https://docs.google.com/feeds/default/private/full/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4/revisions'
 rel='http://schemas.google.com/docs/2007/revisions'/><author><name>libgdata.documents</name><email>libgdata 
documents gmail com</email></author><batch:id>3</batch:id><batch:operation 
type='update'/><docs:writersCanInvite 
value='false'/><gd:resourceId>document:1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4</gd:resourceId><docs:isShareable
 value="true"/><docs:isShareableByMe 
value="true"/><docs:modifiedByMeDate>2013-07-30T11:11:21.891Z</docs:modifiedByMeDate></entry><entry><title 
type='text'></title><category
  term='http://schemas.google.com/docs/2007#document' 
scheme='http://schemas.google.com/g/2005#kind'/><batch:id>2</batch:id><batch:operation 
type='delete'/><docs:writersCanInvite value='false'/></entry><entry 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;A1RTGRtZGyt7ImBk&quot;'><title type='text'>My First 
Document</title><id>https://docs.google.com/feeds/id/document%3A1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8</id><updated>2013-07-30T11:11:20Z</updated><published>2013-07-30T11:11:19Z</published><content
 type='text/plain' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8'/><category
 term='http://schemas.google.com/docs/2007#document' 
scheme='http://schemas.google.com/g/2005#kind'/><category 
term='http://schemas.google.com/g/2005/labels#viewed'
  scheme='http://schemas.google.com/g/2005/labels' label='viewed'/><category 
term='http://schemas.google.com/g/2005/labels#modified-by-me' 
scheme='http://schemas.google.com/g/2005/labels' label='modified-by-me'/><link 
href='https://docs.google.com/document/d/1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8/edit?usp=docslist_api' 
rel='http://www.iana.org/assignments/relation/alternate' type='text/html'/><link 
href='https://docs.google.com/document/d/1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8/preview' 
rel='http://schemas.google.com/docs/2007#embed' type='text/html'/><link 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png' 
rel='http://schemas.google.com/docs/2007#icon' type='image/png'/><link 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8'
 rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml'/><link 
href='https://docs.google.com/feeds/
 upload/file/default/private/full/document%3A1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8' 
rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml'/><link 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8&amp;v=1&amp;s=AMedNnoAAAAAUfe7erMai2RZ_z9fbNMlvHTCWmiQt9TF&amp;sz=s220'
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png'/><link 
href='https://docs.google.com/feeds/default/private/full/document%3A1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8'
 rel='http://www.iana.org/assignments/relation/self' type='application/atom+xml'/><link 
href='https://docs.google.com/feeds/default/private/full/document%3A1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8'
 rel='http://www.iana.org/assignments/relation/edit' type='application/atom+xml'/><link 
href='https://docs.google.com/feeds/default/media/document%3A1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8' 
rel='http://www.iana.org/assignments
 /relation/edit-media' type='text/html'/><link 
href='https://docs.google.com/feeds/default/private/full/document%3A1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8/acl'
 rel='http://schemas.google.com/acl/2007#accessControlList'/><link 
href='https://docs.google.com/feeds/default/private/full/document%3A1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8/revisions'
 rel='http://schemas.google.com/docs/2007/revisions'/><author><name>libgdata.documents</name><email>libgdata 
documents gmail com</email></author><batch:id>1</batch:id><batch:operation 
type='delete'/><docs:writersCanInvite 
value='false'/><gd:resourceId>document:1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8</gd:resourceId><docs:isShareable
 value="true"/><docs:isShareableByMe 
value="true"/><docs:modifiedByMeDate>2013-07-30T11:11:20.095Z</docs:modifiedByMeDate></entry></feed>
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182684
+< Soup-Debug: SoupMessage 13 (0x77f190)
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< GData-Version: 3.0
+< Date: Tue, 30 Jul 2013 11:11:24 GMT
+< Expires: Tue, 30 Jul 2013 11:11:24 GMT
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:docs='http://schemas.google.com/docs/2007' 
xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005'><id>https://docs.google.com/feeds/id/batch/1375182683991</id><updated>2013-07-30T11:11:24.191Z</updated><title>Batch
 operation feed</title><entry 
gd:etag='&quot;A1RTGRQLESt7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4</id><published>2013-07-30T11:11:21.404Z</published><updated>2013-07-30T11:11:24.048Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:11:24.051Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label=
 'viewed'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>War &amp; 
Peace</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1PkuZepevCkE
 ZERLadDQfLCb_zt2R8NKL83eoE_lrNP4'/><link rel='http://schemas.google.com/docs/2007#alt-edit-media' 
type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4&amp;v=2&amp;s=AMedNnoAAAAAUfe7fHWpjN7yQYeiBNwBYyUZ89Xhc5IJ&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4'/><autho
 r><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></author><gd:resourceId>document:1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:11:24.048Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:11:21.891Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><batch:id>3</batch:id><batch:status code='200' reason='Success'/><batch:operation 
type='update'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A1PkuZepevCkEZE
 
RLadDQfLCb_zt2R8NKL83eoE_lrNP4/revisions'/></entry><entry><id>2</id><updated>2013-07-30T11:11:24.192Z</updated><title>Error</title><content>Missing
 entry id</content><batch:id>2</batch:id><batch:status code='400' reason='Missing entry id'/><batch:operation 
type='delete'/></entry><entry><id>https://docs.google.com/feeds/id/document%3A1NIUv1rYYGUplZMnDtibvOZbhg_n_iY1GAN7yHuHHeA8</id><updated>2013-07-30T11:11:24.357Z</updated><title>My
 First Document</title><content>Deleted</content><batch:id>1</batch:id><batch:status code='200' 
reason='Success'/><batch:operation type='delete'/></entry></feed>
+  
+> POST /feeds/default/private/full/batch HTTP/1.1
+> Soup-Debug-Timestamp: 1375182684
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 14 (0x77f370), SoupSocket 8 (0x945af0)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:docs='http://schemas.google.com/docs/2007' 
xmlns:gd='http://schemas.google.com/g/2005'><title type='text'>Batch operation 
feed</title><id>batch1</id><updated>2013-07-30T11:11:24Z</updated><entry 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;A1RTGRpQEit7ImBk&quot;'><title type='text'>I&apos;m a poet and I didn&apos;t know 
it</title><id>https://docs.google.com/feeds/id/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4</id><updated>2013-07-30T11:11:22Z</updated><published>2013-07-30T11:11:21Z</published><content
 type='text/plain' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4'/><category
 term='http:/
 /schemas.google.com/docs/2007#document' scheme='http://schemas.google.com/g/2005#kind'/><category 
term='http://schemas.google.com/g/2005/labels#viewed' scheme='http://schemas.google.com/g/2005/labels' 
label='viewed'/><category term='http://schemas.google.com/g/2005/labels#modified-by-me' 
scheme='http://schemas.google.com/g/2005/labels' label='modified-by-me'/><link 
href='https://docs.google.com/document/d/1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4/edit?usp=docslist_api' 
rel='http://www.iana.org/assignments/relation/alternate' type='text/html'/><link 
href='https://docs.google.com/document/d/1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4/preview' 
rel='http://schemas.google.com/docs/2007#embed' type='text/html'/><link 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png' 
rel='http://schemas.google.com/docs/2007#icon' type='image/png'/><link 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1PkuZepevCkEZERLadDQfLCb_z
 t2R8NKL83eoE_lrNP4' rel='http://schemas.google.com/g/2005#resumable-edit-media' 
type='application/atom+xml'/><link 
href='https://docs.google.com/feeds/upload/file/default/private/full/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4'
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml'/><link 
href='https://docs.google.com/feeds/default/private/full/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4'
 rel='http://www.iana.org/assignments/relation/self' type='application/atom+xml'/><link 
href='https://docs.google.com/feeds/default/private/full/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4'
 rel='http://www.iana.org/assignments/relation/edit' type='application/atom+xml'/><link 
href='https://docs.google.com/feeds/default/media/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4' 
rel='http://www.iana.org/assignments/relation/edit-media' type='text/html'/><link 
href='https://docs.google.com/feeds/default/private/full/document
 %3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4/acl' 
rel='http://schemas.google.com/acl/2007#accessControlList'/><link 
href='https://docs.google.com/feeds/default/private/full/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4/revisions'
 rel='http://schemas.google.com/docs/2007/revisions'/><author><name>libgdata.documents</name><email>libgdata 
documents gmail com</email></author><batch:id>1</batch:id><batch:operation 
type='update'/><docs:writersCanInvite 
value='false'/><gd:resourceId>document:1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4</gd:resourceId><docs:isShareable
 value="true"/><docs:isShareableByMe 
value="true"/><docs:modifiedByMeDate>2013-07-30T11:11:22.075Z</docs:modifiedByMeDate></entry></feed>
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182684
+< Soup-Debug: SoupMessage 14 (0x77f370)
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< GData-Version: 3.0
+< Date: Tue, 30 Jul 2013 11:11:24 GMT
+< Expires: Tue, 30 Jul 2013 11:11:24 GMT
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:docs='http://schemas.google.com/docs/2007' 
xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005'><id>https://docs.google.com/feeds/id/batch/1375182684862</id><updated>2013-07-30T11:11:24.913Z</updated><title>Batch
 operation 
feed</title><entry><id>https://docs.google.com/feeds/id/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4</id><updated>2013-07-30T11:11:24.913Z</updated><title>Error</title><content>Mismatch:
 etags = ["A1RTGRpQEit7ImBk"], version = [hjr09i1f]</content><batch:id>1</batch:id><batch:status code='412' 
reason='Mismatch: etags = [&quot;A1RTGRpQEit7ImBk&quot;], version = [hjr09i1f]'/><batch:operation 
type='update'/></entry></feed>
+  
+> POST /feeds/default/private/full/batch HTTP/1.1
+> Soup-Debug-Timestamp: 1375182684
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 15 (0x77f550), SoupSocket 9 (0x945970)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:docs='http://schemas.google.com/docs/2007' 
xmlns:gd='http://schemas.google.com/g/2005'><title type='text'>Batch operation 
feed</title><id>batch1</id><updated>2013-07-30T11:11:24Z</updated><entry 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;A1RTGRQLESt7ImBk&quot;'><title type='text'>War &amp; 
Peace</title><id>https://docs.google.com/feeds/id/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4</id><updated>2013-07-30T11:11:24Z</updated><published>2013-07-30T11:11:21Z</published><content
 type='text/plain' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4'/><category
 term='http://schemas.google.com/docs/2
 007#document' scheme='http://schemas.google.com/g/2005#kind'/><category 
term='http://schemas.google.com/g/2005/labels#viewed' scheme='http://schemas.google.com/g/2005/labels' 
label='viewed'/><category term='http://schemas.google.com/g/2005/labels#modified-by-me' 
scheme='http://schemas.google.com/g/2005/labels' label='modified-by-me'/><link 
href='https://docs.google.com/document/d/1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4/edit?usp=docslist_api' 
rel='http://www.iana.org/assignments/relation/alternate' type='text/html'/><link 
href='https://docs.google.com/document/d/1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4/preview' 
rel='http://schemas.google.com/docs/2007#embed' type='text/html'/><link 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png' 
rel='http://schemas.google.com/docs/2007#icon' type='image/png'/><link 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4'
 rel='h
 ttp://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml'/><link 
href='https://docs.google.com/feeds/upload/file/default/private/full/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4'
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml'/><link 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4&amp;v=2&amp;s=AMedNnoAAAAAUfe7fHWpjN7yQYeiBNwBYyUZ89Xhc5IJ&amp;sz=s220'
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png'/><link 
href='https://docs.google.com/feeds/default/private/full/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4'
 rel='http://www.iana.org/assignments/relation/self' type='application/atom+xml'/><link 
href='https://docs.google.com/feeds/default/private/full/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4'
 rel='http://www.iana.org/assignments/relation/edit' type='application/atom+xml'/><link href='https://docs
 .google.com/feeds/default/media/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4' 
rel='http://www.iana.org/assignments/relation/edit-media' type='text/html'/><link 
href='https://docs.google.com/feeds/default/private/full/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4/acl'
 rel='http://schemas.google.com/acl/2007#accessControlList'/><link 
href='https://docs.google.com/feeds/default/private/full/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4/revisions'
 rel='http://schemas.google.com/docs/2007/revisions'/><author><name>libgdata.documents</name><email>libgdata 
documents gmail com</email></author><batch:id>1</batch:id><batch:operation 
type='delete'/><docs:writersCanInvite 
value='false'/><gd:resourceId>document:1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4</gd:resourceId><docs:isShareable
 value="true"/><docs:isShareableByMe 
value="true"/><docs:modifiedByMeDate>2013-07-30T11:11:24.048Z</docs:modifiedByMeDate></entry></feed>
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182685
+< Soup-Debug: SoupMessage 15 (0x77f550)
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< GData-Version: 3.0
+< Date: Tue, 30 Jul 2013 11:11:25 GMT
+< Expires: Tue, 30 Jul 2013 11:11:25 GMT
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:docs='http://schemas.google.com/docs/2007' 
xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005'><id>https://docs.google.com/feeds/id/batch/1375182685427</id><updated>2013-07-30T11:11:25.620Z</updated><title>Batch
 operation 
feed</title><entry><id>https://docs.google.com/feeds/id/document%3A1PkuZepevCkEZERLadDQfLCb_zt2R8NKL83eoE_lrNP4</id><updated>2013-07-30T11:11:25.620Z</updated><title>War
 &amp; Peace</title><content>Deleted</content><batch:id>1</batch:id><batch:status code='200' 
reason='Success'/><batch:operation type='delete'/></entry></feed>
+  
diff --git a/gdata/tests/traces/documents/batch-async b/gdata/tests/traces/documents/batch-async
new file mode 100644
index 0000000..86c056f
--- /dev/null
+++ b/gdata/tests/traces/documents/batch-async
@@ -0,0 +1,28 @@
+> POST /feeds/default/private/full/batch HTTP/1.1
+> Soup-Debug-Timestamp: 1375182836
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 150 (0x7fffe400cb80), SoupSocket 48 (0x7fffe400dca0)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gd='http://schemas.google.com/g/2005'><title 
type='text'>Batch operation feed</title><id>batch1</id><updated>2013-07-30T11:13:55Z</updated><entry><title 
type='text'>Batch operation 
query</title><id>https://docs.google.com/feeds/default/private/full/document%3A1iHOcReXBYXb8CXYiI0GE_inNi63GSyqYF3Am227s09o</id><updated>2013-07-30T11:13:55Z</updated><batch:id>1</batch:id><batch:operation
 type='query'/></entry></feed>
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182836
+< Soup-Debug: SoupMessage 150 (0x7fffe400cb80)
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< GData-Version: 3.0
+< Date: Tue, 30 Jul 2013 11:13:56 GMT
+< Expires: Tue, 30 Jul 2013 11:13:56 GMT
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:docs='http://schemas.google.com/docs/2007' 
xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005'><id>https://docs.google.com/feeds/id/batch/1375182836785</id><updated>2013-07-30T11:13:56.835Z</updated><title>Batch
 operation feed</title><entry 
gd:etag='&quot;A1RTQwxNRSt7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A1iHOcReXBYXb8CXYiI0GE_inNi63GSyqYF3Am227s09o</id><published>2013-07-30T11:13:54.040Z</published><updated>2013-07-30T11:13:55.400Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:13:55.490Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label=
 'viewed'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>A View from the 
Bridge</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1iHOcReXBYXb8CXYiI0GE_inNi63GSyqYF3Am227s09o'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/1iHOcReXBYXb8CXYiI0GE_inNi63GSyqYF3Am227s09o/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/1iHOcReXBYXb8CXYiI0GE_inNi63GSyqYF3Am227s09o/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1iHOc
 ReXBYXb8CXYiI0GE_inNi63GSyqYF3Am227s09o'/><link rel='http://schemas.google.com/docs/2007#alt-edit-media' 
type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/document%3A1iHOcReXBYXb8CXYiI0GE_inNi63GSyqYF3Am227s09o'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1iHOcReXBYXb8CXYiI0GE_inNi63GSyqYF3Am227s09o&amp;v=2&amp;s=AMedNnoAAAAAUfe8FHy5KIOzhfn0dQWCB3R5DJYRVbKY&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1iHOcReXBYXb8CXYiI0GE_inNi63GSyqYF3Am227s09o'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1iHOcReXBYXb8CXYiI0GE_inNi63GSyqYF3Am227s09o'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A1iHOcReXBYXb8CXYiI0GE_inNi63GSyqYF3Am227s09o'/
<author><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></author><gd:resourceId>document:1iHOcReXBYXb8CXYiI0GE_inNi63GSyqYF3Am227s09o</gd:resourceId><docs:isShareable
value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:13:55.400Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:13:54.470Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
value='false'/><batch:id>1</batch:id><batch:status code='200' reason='Success'/><batch:operation 
type='query'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A1iHOcReXBYXb8CXYiI0GE_inNi63GSyqYF3Am227s09o/acl'/><gd:feedLink
rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A1iHOcReX
 BYXb8CXYiI0GE_inNi63GSyqYF3Am227s09o/revisions'/></entry></feed>
+  
diff --git a/gdata/tests/traces/documents/batch-async-cancellation 
b/gdata/tests/traces/documents/batch-async-cancellation
new file mode 100644
index 0000000..e69de29
diff --git a/gdata/tests/traces/documents/copy-document b/gdata/tests/traces/documents/copy-document
new file mode 100644
index 0000000..081ed5f
--- /dev/null
+++ b/gdata/tests/traces/documents/copy-document
@@ -0,0 +1,32 @@
+> POST /feeds/default/private/full HTTP/1.1
+> Soup-Debug-Timestamp: 1375182674
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 4 (0x77f370), SoupSocket 2 (0x945d30)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:batch='http://schemas.google.com/gdata/batch' gd:etag='&quot;A1RTGUtIFSt7ImBk&quot;'><title 
type='text'>Temporary Document 
(Spreadsheet)</title><id>https://docs.google.com/feeds/id/spreadsheet%3A0AjY2jgHHwMwYdDE1UWtveTc0cVZQMHFRek5LWXJNclE</id><updated>2013-07-30T11:11:06Z</updated><published>2013-07-30T11:11:06Z</published><content
 type='text/plain' 
src='https://docs.google.com/feeds/download/spreadsheets/Export?key=0AjY2jgHHwMwYdDE1UWtveTc0cVZQMHFRek5LWXJNclE'/><category
 term='http://schemas.google.com/docs/2007#spreadsheet' 
scheme='http://schemas.google.com/g/2005#kind'/><category 
term='http://schemas.google.com/g/2005/labels#viewed' scheme='http://schemas.google.com/g/2005/labels' 
label='viewed'/><link 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdDE1UWtveTc0cVZQMHFRek5LWXJN
 clE&amp;usp=docslist_api' rel='http://www.iana.org/assignments/relation/alternate' type='text/html'/><link 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdDE1UWtveTc0cVZQMHFRek5LWXJNclE&amp;output=html&amp;chrome=false&amp;widget=true'
 rel='http://schemas.google.com/docs/2007#embed' type='text/html'/><link 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_spreadsheet_list.png' 
rel='http://schemas.google.com/docs/2007#icon' type='image/png'/><link 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdDE1UWtveTc0cVZQMHFRek5LWXJNclE'
 rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml'/><link 
href='https://docs.google.com/feeds/upload/file/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdDE1UWtveTc0cVZQMHFRek5LWXJNclE'
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml'/><link 
href='https://spreadsheets.google.com/feeds/worksheets/0AjY
 2jgHHwMwYdDE1UWtveTc0cVZQMHFRek5LWXJNclE/private/full' 
rel='http://schemas.google.com/spreadsheets/2006#worksheetsfeed' type='application/atom+xml'/><link 
href='https://spreadsheets.google.com/feeds/0AjY2jgHHwMwYdDE1UWtveTc0cVZQMHFRek5LWXJNclE/tables' 
rel='http://schemas.google.com/spreadsheets/2006#tablesfeed' type='application/atom+xml'/><link 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdDE1UWtveTc0cVZQMHFRek5LWXJNclE'
 rel='http://www.iana.org/assignments/relation/self' type='application/atom+xml'/><link 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdDE1UWtveTc0cVZQMHFRek5LWXJNclE'
 rel='http://www.iana.org/assignments/relation/edit' type='application/atom+xml'/><link 
href='https://docs.google.com/feeds/default/media/spreadsheet%3A0AjY2jgHHwMwYdDE1UWtveTc0cVZQMHFRek5LWXJNclE' 
rel='http://www.iana.org/assignments/relation/edit-media' type='text/html'/><link 
href='https://docs.google.com/feeds/defau
 lt/private/full/spreadsheet%3A0AjY2jgHHwMwYdDE1UWtveTc0cVZQMHFRek5LWXJNclE/acl' 
rel='http://schemas.google.com/acl/2007#accessControlList'/><link 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdDE1UWtveTc0cVZQMHFRek5LWXJNclE/revisions'
 rel='http://schemas.google.com/docs/2007/revisions'/><author><name>libgdata.documents</name><email>libgdata 
documents gmail com</email></author><docs:writersCanInvite 
value='false'/><gd:resourceId>spreadsheet:0AjY2jgHHwMwYdDE1UWtveTc0cVZQMHFRek5LWXJNclE</gd:resourceId><docs:isShareable
 value="true"/><docs:isShareableByMe value="true"/><docs:hasForm value="false"/></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375182676
+< Soup-Debug: SoupMessage 4 (0x77f370)
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Tue, 30 Jul 2013 11:11:17 GMT
+< Date: Tue, 30 Jul 2013 11:11:17 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.0
+< ETag: "A1RTGR5WRSt7ImBk"
+< Location: 
https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGhTNXpndGNUbXJFZnJDdHc5N19BRGc
+< Content-Location: 
https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGhTNXpndGNUbXJFZnJDdHc5N19BRGc
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;A1RTGR5WRSt7ImBk&quot;'><id>https://docs.google.com/feeds/id/spreadsheet%3A0AjY2jgHHwMwYdGhTNXpndGNUbXJFZnJDdHc5N19BRGc</id><published>2013-07-30T11:11:16.734Z</published><updated>2013-07-30T11:11:16.939Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:11:16.982Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/docs/2007#spreadsheet' label='spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Document (Spreadshee
 t)</title><content type='text/html' 
src='https://docs.google.com/feeds/download/spreadsheets/Export?key=0AjY2jgHHwMwYdGhTNXpndGNUbXJFZnJDdHc5N19BRGc'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdGhTNXpndGNUbXJFZnJDdHc5N19BRGc&amp;usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdGhTNXpndGNUbXJFZnJDdHc5N19BRGc&amp;output=html&amp;chrome=false&amp;widget=true'/><link
 rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_spreadsheet_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGhTNXpndGNUbXJFZnJDdHc5N19BRGc'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='applicatio
 n/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGhTNXpndGNUbXJFZnJDdHc5N19BRGc'/><link
 rel='http://schemas.google.com/spreadsheets/2006#worksheetsfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/worksheets/0AjY2jgHHwMwYdGhTNXpndGNUbXJFZnJDdHc5N19BRGc/private/full'/><link
 rel='http://schemas.google.com/spreadsheets/2006#tablesfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/0AjY2jgHHwMwYdGhTNXpndGNUbXJFZnJDdHc5N19BRGc/tables'/><link 
rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGhTNXpndGNUbXJFZnJDdHc5N19BRGc'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGhTNXpndGNUbXJFZnJDdHc5N19BRGc'/><link
 rel='edit-media' type='text/html' href='https://docs.google.com/feeds/default/media/spreadsheet%3A0AjY2jgHHw
 MwYdGhTNXpndGNUbXJFZnJDdHc5N19BRGc'/><author><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></author><gd:resourceId>spreadsheet:0AjY2jgHHwMwYdGhTNXpndGNUbXJFZnJDdHc5N19BRGc</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:11:16.939Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:11:16.348Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><docs:hasForm value='false'/><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGhTNXpndGNUbXJFZnJDdHc5N19BRGc/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGhTNXpndGNUbXJFZ
 nJDdHc5N19BRGc/revisions'/></entry>
+  
diff --git a/gdata/tests/traces/documents/delete-document b/gdata/tests/traces/documents/delete-document
new file mode 100644
index 0000000..731e000
--- /dev/null
+++ b/gdata/tests/traces/documents/delete-document
@@ -0,0 +1,53 @@
+> DELETE /feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdHhwUWhGMFItZkNRazlrWG9OYlRzUXc HTTP/1.1
+> Soup-Debug-Timestamp: 1375182697
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 19 (0x77f190), SoupSocket 10 (0x7fffe400da60)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> If-Match: "A1RTGRJdBCt7ImBk"
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182697
+< Soup-Debug: SoupMessage 19 (0x77f190)
+< GData-Version: 3.0
+< Date: Tue, 30 Jul 2013 11:11:38 GMT
+< Expires: Tue, 30 Jul 2013 11:11:38 GMT
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 0
+< Server: GSE
+< Content-Type: text/html; charset=UTF-8
+< 
+  
+> GET /feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdHhwUWhGMFItZkNRazlrWG9OYlRzUXc HTTP/1.1
+> Soup-Debug-Timestamp: 1375182697
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 20 (0x77f730), SoupSocket 10 (0x7fffe400da60)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182698
+< Soup-Debug: SoupMessage 20 (0x77f730)
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Tue, 30 Jul 2013 11:11:38 GMT
+< Date: Tue, 30 Jul 2013 11:11:38 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.0
+< ETag: "A1RTGQ5NBit7ImBk"
+< Last-Modified: Tue, 30 Jul 2013 11:11:38 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;A1RTGQ5NBit7ImBk&quot;'><id>https://docs.google.com/feeds/id/spreadsheet%3A0AjY2jgHHwMwYdHhwUWhGMFItZkNRazlrWG9OYlRzUXc</id><published>2013-07-30T11:11:31.150Z</published><updated>2013-07-30T11:11:31.150Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:11:38.138Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/docs/2007#spreadsheet' label='spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#trashed' 
label='trashed'/><title>Temporary Document (Spreadsheet)</title><con
 tent type='text/html' 
src='https://docs.google.com/feeds/download/spreadsheets/Export?key=0AjY2jgHHwMwYdHhwUWhGMFItZkNRazlrWG9OYlRzUXc'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdHhwUWhGMFItZkNRazlrWG9OYlRzUXc&amp;usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdHhwUWhGMFItZkNRazlrWG9OYlRzUXc&amp;output=html&amp;chrome=false&amp;widget=true'/><link
 rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_spreadsheet_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdHhwUWhGMFItZkNRazlrWG9OYlRzUXc'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' hr
 
ef='https://docs.google.com/feeds/upload/file/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdHhwUWhGMFItZkNRazlrWG9OYlRzUXc'/><link
 rel='http://schemas.google.com/spreadsheets/2006#worksheetsfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/worksheets/0AjY2jgHHwMwYdHhwUWhGMFItZkNRazlrWG9OYlRzUXc/private/full'/><link
 rel='http://schemas.google.com/spreadsheets/2006#tablesfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/0AjY2jgHHwMwYdHhwUWhGMFItZkNRazlrWG9OYlRzUXc/tables'/><link 
rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdHhwUWhGMFItZkNRazlrWG9OYlRzUXc'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdHhwUWhGMFItZkNRazlrWG9OYlRzUXc'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/spreadsheet%3A0AjY2jgHHwMwYdHhwUWhGMFI
 tZkNRazlrWG9OYlRzUXc'/><author><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></author><gd:resourceId>spreadsheet:0AjY2jgHHwMwYdHhwUWhGMFItZkNRazlrWG9OYlRzUXc</gd:resourceId><gd:deleted/><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:11:31.150Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><docs:isExplicitlyTrashed value='true'/><docs:hasForm value='false'/><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdHhwUWhGMFItZkNRazlrWG9OYlRzUXc/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdHhwUWhGMFItZkNRazlrWG9OYlRzUXc/revisions'/></ent
 ry>
+  
diff --git a/gdata/tests/traces/documents/delete-folder b/gdata/tests/traces/documents/delete-folder
new file mode 100644
index 0000000..e32355b
--- /dev/null
+++ b/gdata/tests/traces/documents/delete-folder
@@ -0,0 +1,53 @@
+> DELETE /feeds/default/private/full/folder%3A0BzY2jgHHwMwYR3lvcDNWVXNRTUU HTTP/1.1
+> Soup-Debug-Timestamp: 1375182699
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 22 (0x77f550), SoupSocket 11 (0x945bb0)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> If-Match: "A1RTGQgOEit7ImBk"
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182699
+< Soup-Debug: SoupMessage 22 (0x77f550)
+< GData-Version: 3.0
+< Date: Tue, 30 Jul 2013 11:11:40 GMT
+< Expires: Tue, 30 Jul 2013 11:11:40 GMT
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 0
+< Server: GSE
+< Content-Type: text/html; charset=UTF-8
+< 
+  
+> GET /feeds/default/private/full/folder%3A0BzY2jgHHwMwYR3lvcDNWVXNRTUU HTTP/1.1
+> Soup-Debug-Timestamp: 1375182699
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 23 (0x77f730), SoupSocket 11 (0x945bb0)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182700
+< Soup-Debug: SoupMessage 23 (0x77f730)
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Tue, 30 Jul 2013 11:11:40 GMT
+< Date: Tue, 30 Jul 2013 11:11:40 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.0
+< ETag: "A1RTGQhTBit7ImBk"
+< Last-Modified: Tue, 30 Jul 2013 11:11:40 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;A1RTGQhTBit7ImBk&quot;'><id>https://docs.google.com/feeds/id/folder%3A0BzY2jgHHwMwYR3lvcDNWVXNRTUU</id><published>2013-07-30T11:11:39.203Z</published><updated>2013-07-30T11:11:39.203Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:11:40.226Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#folder' 
label='folder'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#trashed' label='trashed'/><title>Temporary 
Folder</title><content type='application/atom+xml;type=feed' 
src='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYR3lvcDNWVXNRTUU/contents'/><link
 rel='alternate' type='
 text/html' 
href='https://docs.google.com/folderview?id=0BzY2jgHHwMwYR3lvcDNWVXNRTUU&amp;usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_collection_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-create-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/folder%3A0BzY2jgHHwMwYR3lvcDNWVXNRTUU/contents'/><link
 rel='http://schemas.google.com/docs/2007#alt-post' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/folder%3A0BzY2jgHHwMwYR3lvcDNWVXNRTUU/contents'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYR3lvcDNWVXNRTUU'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYR3lvcDNWVXNRTUU'/><author><name>libgdat
 a.documents</name><email>libgdata documents gmail 
com</email></author><gd:resourceId>folder:0BzY2jgHHwMwYR3lvcDNWVXNRTUU</gd:resourceId><gd:deleted/><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><docs:isExplicitlyTrashed value='true'/><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYR3lvcDNWVXNRTUU/acl'/></entry>
+  
diff --git a/gdata/tests/traces/documents/download-document b/gdata/tests/traces/documents/download-document
new file mode 100644
index 0000000..bf611e7
--- /dev/null
+++ b/gdata/tests/traces/documents/download-document
@@ -0,0 +1,112 @@
+> GET /feeds/download/spreadsheets/Export?key=0AjY2jgHHwMwYdHFFUE9OTVowRjZOd1VVNmdSNFFic1E&exportFormat=ods 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375182713
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 31 (0x77f0a0), SoupSocket 16 (0x7fffe400db20)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANAAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUbQnZhJZJ7FQLY3OReGSg17ADSPa9SutlzB7vrYzO9l08u8zLLZdp-VBLUtfe3NDSVatLSlp7IWQcXf52b3ZqU9UuArH0x-3WYveoGd1GmWMOm4O3qemyf5Yy9xyEeQWcucTdhxwKfodCyZ9eXchBPAJtnB7BlGRyIeKabt5zrmcwpe21KLAOafBp8h94QGamH
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182714
+< Soup-Debug: SoupMessage 31 (0x77f0a0)
+< Content-Type: application/x-vnd.oasis.opendocument.spreadsheet; charset=UTF-8
+< Content-Length: 4035
+< Content-Disposition: attachment; filename="Temporary%20Spreadsheet.ods"
+< Set-Cookie: 
NID=67=Dqy-IW3COKU7wQ3JQb2BLDl5_-NLlFjS7l9lsiFgVVgam-fDMdSlOUJUgm8D5EAjHP0dWsSZNNr0RfSZN0JRU76k_AVJD5RIL_LuAUJk2P_KwjmwI24CP95uda-oknkl;Domain=.google.com;Path=/;Expires=Wed,
 29-Jan-2014 11:11:54 GMT;HttpOnly
+< P3P: CP="This is not a P3P policy! See 
http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info."
+< Date: Tue, 30 Jul 2013 11:11:54 GMT
+< Expires: Tue, 30 Jul 2013 11:11:54 GMT
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< 
+< PK
+  
+> GET /feeds/download/presentations/Export?id=1RVnLrrBfAd9q6cXyk4EAg69Y6_5P3hStQ94OLYp3HX4&exportFormat=ppt 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375182714
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 32 (0x77f190), SoupSocket 16 (0x7fffe400db20)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182715
+< Soup-Debug: SoupMessage 32 (0x77f190)
+< Content-Type: application/vnd.openxmlformats-officedocument.presentationml.presentation
+< X-Robots-Tag: noindex, nofollow, nosnippet
+< Cache-control: no-cache, no-store, max-age=0, must-revalidate
+< Pragma: no-cache
+< Expires: Fri, 01 Jan 1990 00:00:00 GMT
+< Date: Tue, 30 Jul 2013 11:11:55 GMT
+< Content-Disposition: attachment; filename="TemporaryPresentation.pptx"; 
filename*=UTF-8''Temporary%20Presentation.pptx
+< Transfer-Encoding: chunked
+< Set-Cookie: 
NID=67=tPq9W3roVuo30yrI68DX5X0Xd4Ire4P9TttuiFgn_vQFuHFIc5wTxZ4ngTjLUKVNOG296A7RL3nU5JNt3XxPVeaPrMklg1OZDG1L6GVWvrPPTGUyTTe60p4s3sPE6vV-;Domain=.google.com;Path=/;Expires=Wed,
 29-Jan-2014 11:11:55 GMT;HttpOnly
+< P3P: CP="This is not a P3P policy! See 
http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info."
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< 
+< PK
+  
+> GET 
/feeds/download/documents/export/Export?id=1hBi-mVG4b2FNwGDfZm9pcbhCJsSP095loqeoQNHedi4&exportFormat=odt 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375182715
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 33 (0x77f280), SoupSocket 16 (0x7fffe400db20)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182715
+< Soup-Debug: SoupMessage 33 (0x77f280)
+< Content-Type: application/vnd.oasis.opendocument.text; charset=utf-8
+< X-Robots-Tag: noindex, nofollow, nosnippet
+< Content-Disposition: attachment;filename="TemporaryTextDocument.odt"
+< Transfer-Encoding: chunked
+< Set-Cookie: 
NID=67=EAjnxK75gEJ9Z2RWjmrjxmEP_umcKw5Z2LS1Y6-bpgpOQqR-Aw1s68Tr3CGojGWj3D34Cf8PRfR1GMIGkkpbsmjWPjKtX_35NveXmnseGHgbmTq3YXdyqy3Hjf9LJHKZ;Domain=.google.com;Path=/;Expires=Wed,
 29-Jan-2014 11:11:55 GMT;HttpOnly
+< P3P: CP="This is not a P3P policy! See 
http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info."
+< Date: Tue, 30 Jul 2013 11:11:55 GMT
+< Expires: Tue, 30 Jul 2013 11:11:55 GMT
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< 
+< PK
+  
+> GET 
/feeds/download/documents/export/Export?id=1VOo_OVi8u12cYADkkVM71Yzzf2vc6_7ZCWvE_PJSXCc&exportFormat=odt 
HTTP/1.1
+> Soup-Debug-Timestamp: 1375182715
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 34 (0x77f280), SoupSocket 16 (0x7fffe400db20)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182715
+< Soup-Debug: SoupMessage 34 (0x77f280)
+< Content-Type: application/vnd.oasis.opendocument.text; charset=utf-8
+< X-Robots-Tag: noindex, nofollow, nosnippet
+< Content-Disposition: attachment;filename="TemporaryArbitraryDocument.odt"
+< Transfer-Encoding: chunked
+< Set-Cookie: 
NID=67=OFN2GopwakjLYDvPaEQnFhhgTVWU-M1XttB_9ajEV9ZX_fOJsDggj1XEqEca_-SdlWBqPhIuHgRmxl_fi6l-_lM8E0E_kNAa7rao8RSOU2onddrBpkUFYTfphd7txiBs;Domain=.google.com;Path=/;Expires=Wed,
 29-Jan-2014 11:11:56 GMT;HttpOnly
+< P3P: CP="This is not a P3P policy! See 
http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info."
+< Date: Tue, 30 Jul 2013 11:11:56 GMT
+< Expires: Tue, 30 Jul 2013 11:11:56 GMT
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< 
+< PK
+  
diff --git a/gdata/tests/traces/documents/global-authentication 
b/gdata/tests/traces/documents/global-authentication
new file mode 100644
index 0000000..e7dc759
--- /dev/null
+++ b/gdata/tests/traces/documents/global-authentication
@@ -0,0 +1,81 @@
+> POST /accounts/ClientLogin HTTP/1.1
+> Soup-Debug-Timestamp: 1375182660
+> Soup-Debug: SoupSession 1 (0x6591b0), SoupMessage 1 (0x77f0a0), SoupSocket 1 (0x9458b0)
+> Host: www.google.com
+> Content-Type: application/x-www-form-urlencoded
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> 
accountType=HOSTED%5FOR%5FGOOGLE&Email=libgdata%2Edocuments%40gmail%2Ecom&Passwd=gdata%2Dgdata&service=writely&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182660
+< Soup-Debug: SoupMessage 1 (0x77f0a0)
+< Content-Type: text/plain
+< Cache-control: no-cache, no-store
+< Pragma: no-cache
+< Expires: Mon, 01-Jan-1990 00:00:00 GMT
+< Date: Tue, 30 Jul 2013 11:11:01 GMT
+< X-Content-Type-Options: nosniff
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 903
+< Server: GSE
+< 
+< 
SID=DQAAAM8AAADwGwC-LVyvlma2uvnwlJJ2Z7PPvQ5oXH7S8yxbZmO6E02SygFGZhgcq6-THPqD2xog3u8RqbbwNF0LwEhT5-VwEwzAR3Bzj8VI49A_h1bkSnmBR2580-Kcn0oXTaaQju-3GYSJG-jd1kkO1D6zIE-WqlRZYd3uXPTa06NNSTQg9sA5IhVGH13muUevMl4w8TvvYTqVLST5-JsMwqK_YZT3Fz3vHgRDA0-zVV64ztlwDwv6tjH7flYITDY3YCyCHa_0qZ30BTQPWWt0POqOftVT
+< 
LSID=DQAAANAAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUbXCdCGPK5P7o8ODshUqsaczclpmcL8yynVyYO7wRqrgyxdpXRLDxQ94-yjyqKt9ldj8KW826aiQ_-jqxA-WS7Xt31FzaFYzMdZVB4G-M8pDSC9F3XYdurHMQTkxoM8pM6F1ZPkUHmeqZ0eVYq2r9gzTK_cgMHi3v4im0dAMmIr8nbF2nwr3-J6Fd9iSCLSYZW
+< 
Auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+  
+> POST /accounts/ClientLogin HTTP/1.1
+> Soup-Debug-Timestamp: 1375182661
+> Soup-Debug: SoupSession 1 (0x6591b0), SoupMessage 2 (0x77f280), SoupSocket 2 (0x945970)
+> Host: www.google.com
+> Content-Type: application/x-www-form-urlencoded
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> 
accountType=HOSTED%5FOR%5FGOOGLE&Email=libgdata%2Edocuments%40gmail%2Ecom&Passwd=gdata%2Dgdata&service=wise&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182661
+< Soup-Debug: SoupMessage 2 (0x77f280)
+< Content-Type: text/plain
+< Cache-control: no-cache, no-store
+< Pragma: no-cache
+< Expires: Mon, 01-Jan-1990 00:00:00 GMT
+< Date: Tue, 30 Jul 2013 11:11:01 GMT
+< X-Content-Type-Options: nosniff
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 881
+< Server: GSE
+< 
+< 
SID=DQAAAM8AAADwGwC-LVyvlma2uvnwlJJ2Z7PPvQ5oXH7S8yxbZmO6E02SygFGZhgcq6-THPqD2xog3u8RqbbwNF0LwEhT5-VwEwzAR3Bzj8VI49A_h1bkSnmBR2580-Kcn0oXTaaQju-3GYSJG-jd1kkO1D6zIE-WqlRZYd3uXPTa06NNSTQg9sA5IhVGH13muUevMl4w8TvvYTqVLST5-JsMwqK_YZT3ByZSND1o7JV0SLAXi24fx2qKDBwAh1NWkyc6y3L3CsRaIUbN2VDY1cciBJUS8W0y
+< 
LSID=DQAAANAAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUbXCdCGPK5P7o8ODshUqsaczclpmcL8yynVyYO7wRqrgyxdpXRLDxQ94-yjyqKt9ldj8KW826aiQ_-jqxA-WS7Xt31FzaFYzMdZVB4G-M8pDSC9F3XYdurHMQTkxoM8pM6nhEaunYoOLQ4t_nLgrgJ5MvsnWaKvT161lxzpkcCiFsyO0QcCxVKHDfu9QPG8j3t
+< 
Auth=DQAAANAAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUbQnZhJZJ7FQLY3OReGSg17ADSPa9SutlzB7vrYzO9l08u8zLLZdp-VBLUtfe3NDSVatLSlp7IWQcXf52b3ZqU9UuArH0x-3WYveoGd1GmWMOm4O3qemyf5Yy9xyEeQWcucTdhxwKfodCyZ9eXchBPAJtnB7BlGRyIeKabt5zrmcwpe21KLAOafBp8h94QGamH
+  
+> POST /accounts/ClientLogin HTTP/1.1
+> Soup-Debug-Timestamp: 1375182661
+> Soup-Debug: SoupSession 1 (0x6591b0), SoupMessage 3 (0x77f460), SoupSocket 3 (0x945a30)
+> Host: www.google.com
+> Content-Type: application/x-www-form-urlencoded
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> 
accountType=HOSTED%5FOR%5FGOOGLE&Email=libgdata%2Edocuments%40gmail%2Ecom&Passwd=gdata%2Dgdata&service=writely&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182661
+< Soup-Debug: SoupMessage 3 (0x77f460)
+< Content-Type: text/plain
+< Cache-control: no-cache, no-store
+< Pragma: no-cache
+< Expires: Mon, 01-Jan-1990 00:00:00 GMT
+< Date: Tue, 30 Jul 2013 11:11:02 GMT
+< X-Content-Type-Options: nosniff
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 925
+< Server: GSE
+< 
+< 
SID=DQAAAM8AAAA4CeL5iVfEFZvMEcp0mI2fcQ7FQMVFpLByXyUsJrC3U2PGOLIa4G-QPhBGaWPLSnrTorJlNfl0fxMFo4RwiXYvcM1sbzBrqx1ojQ1lgXDkzXRGUMN0hzXviIvweAYPR44HvJebhd_NNqLwAni5Q_wlFMz2wzGDTC3rxo6kULdIQ-k81YLa5dL7ggVP-FTb7zE2aAWXjDD2YvJ2wVGDCRqvO4RzcW5y6Fi52EpJSpo1JQtGEb8a3Gj3YG2e1ASSXMHdNlPMd71GICUde-nne4wV
+< 
LSID=DQAAANEAAACKqCRA3rmkbjuCvnyjqPFgIe-sR-UGb_ewb6L4ftJuTKdFtR7uNfzc6tAiObQF58l1sD6imXzMjjXczSF1JhTjq1RX-D6MNHh6xkl09zY4GfjXmmq5Sy3F5v1qip_dYc6_DDH8bUjMiIN8S4uuHIqnD-JWAlfvHtnRZRi9VKWHZxYztV0vgo7jB5my5rmHem-Jd7RBJ973F6_TmDcexLvdQockBaIvs_1NdnI6onv7UXVav66WCKAI5wwATo5R-aMbl2bmweGEjCUkvlOPgCNffSWSEsjeojtXIGgvN9VyWA
+< 
Auth=DQAAANEAAACKqCRA3rmkbjuCvnyjqPFgIe-sR-UGb_ewb6L4ftJuTKdFtR7uNfzc6tAiObQF58l1sD6imXzMjjXczSF1JhTjIH12sXNe0HPgPd-BSBnTo5BuOmZ0qwqeBbnRpR0-Ww15Lg_EYIfet6qg2otcnxsIQp-jNKUdDs3d0CcEbX-xzM-l2t41Ko4IEaNJWEXUnKr5ycxp2t3S49MKWm3P5oLBYnoD8hS8CxUtkxahDOdE3-MtCmLvlliBHnhem_40h_CarN_k7MwHnkqyHUZ1OZ-EbT9yAu-edzQ_5ZXeo7JfGA
+  
diff --git a/gdata/tests/traces/documents/query-all-documents 
b/gdata/tests/traces/documents/query-all-documents
new file mode 100644
index 0000000..8a8085f
--- /dev/null
+++ b/gdata/tests/traces/documents/query-all-documents
@@ -0,0 +1,28 @@
+> GET /feeds/default/private/full HTTP/1.1
+> Soup-Debug-Timestamp: 1375182752
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 63 (0x77f370), SoupSocket 24 (0x7fffe400dca0)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182753
+< Soup-Debug: SoupMessage 63 (0x77f370)
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Expires: Tue, 30 Jul 2013 11:12:33 GMT
+< Date: Tue, 30 Jul 2013 11:12:33 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.0
+< ETag: W/"CEABQn44eCt7ImA9WhFWEUU."
+< Last-Modified: Tue, 30 Jul 2013 11:12:33 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:docs='http://schemas.google.com/docs/2007' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CEABQn44eCt7ImA9WhFWEUU.&quot;'><id>https://docs.google.com/feeds/default/private/full</id><updated>2013-07-30T11:12:33.030Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#item' 
label='item'/><title>Available Documents - libgdata documents gmail com</title><link rel='alternate' 
type='text/html' href='https://docs.google.com'/><link 
rel='http://schemas.google.com/g/2005#resumable-create-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full'/><link 
rel='http://schemas.google.com/docs/2007#alt-post' type='application/atom+xml' 
href='https://docs.google.com/feeds/up
 load/file/default/private/full'/><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://docs.google.com/feeds/default/private/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full'/><link rel='http://schemas.google.com/g/2005#batch' 
type='application/atom+xml' href='https://docs.google.com/feeds/default/private/full/batch'/><link rel='self' 
type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></author><openSearch:startIndex>1</openSearch:startIndex><entry 
gd:etag='&quot;A1RTQQwLQyt7ImBk&quot;'><id>https://docs.google.com/feeds/id/spreadsheet%3A0AjY2jgHHwMwYdC1oSkgwUGk5MXJwbzV3ZDdla1hmM0E</id><published>2013-07-30T11:12:20.245Z</published><updated>2013-07-30T11:12:21.033Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-
 30T11:12:21.064Z</app:edited><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#spreadsheet' 
label='spreadsheet'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Spreadsheet</title><content type='text/html' 
src='https://docs.google.com/feeds/download/spreadsheets/Export?key=0AjY2jgHHwMwYdC1oSkgwUGk5MXJwbzV3ZDdla1hmM0E'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdC1oSkgwUGk5MXJwbzV3ZDdla1hmM0E&amp;usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdC1oSkgwUGk5MXJwbzV3ZDdla1hmM0E&amp;output=html&amp;chrome=false&amp;widget=true'/><l
 ink rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_spreadsheet_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdC1oSkgwUGk5MXJwbzV3ZDdla1hmM0E'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdC1oSkgwUGk5MXJwbzV3ZDdla1hmM0E'/><link
 rel='http://schemas.google.com/spreadsheets/2006#worksheetsfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/worksheets/0AjY2jgHHwMwYdC1oSkgwUGk5MXJwbzV3ZDdla1hmM0E/private/full'/><link
 rel='http://schemas.google.com/spreadsheets/2006#tablesfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/0AjY2jgHHwMwYdC1oSkgwUGk5MXJwbzV
 3ZDdla1hmM0E/tables'/><link rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdC1oSkgwUGk5MXJwbzV3ZDdla1hmM0E'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdC1oSkgwUGk5MXJwbzV3ZDdla1hmM0E'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/spreadsheet%3A0AjY2jgHHwMwYdC1oSkgwUGk5MXJwbzV3ZDdla1hmM0E'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>spreadsheet:0AjY2jgHHwMwYdC1oSkgwUGk5MXJwbzV3ZDdla1hmM0E</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:12:21.033Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:12:20.245Z</gd:lastViewed><gd:q
 uotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite value='false'/><docs:hasForm 
value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdC1oSkgwUGk5MXJwbzV3ZDdla1hmM0E/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdC1oSkgwUGk5MXJwbzV3ZDdla1hmM0E/revisions'/></entry><entry
 
gd:etag='&quot;A1RTQQhCRSt7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A1VoElmmTgcAQ_lc9H5XZ_MiIhrRIF3icoKIrn0ciVSVA</id><published>2013-07-30T11:12:26.239Z</published><updated>2013-07-30T11:12:26.840Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:12:27.398Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/
 g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Arbitrary Document</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1VoElmmTgcAQ_lc9H5XZ_MiIhrRIF3icoKIrn0ciVSVA'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/1VoElmmTgcAQ_lc9H5XZ_MiIhrRIF3icoKIrn0ciVSVA/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/1VoElmmTgcAQ_lc9H5XZ_MiIhrRIF3icoKIrn0ciVSVA/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' href='https://
 
docs.google.com/feeds/upload/create-session/default/private/full/document%3A1VoElmmTgcAQ_lc9H5XZ_MiIhrRIF3icoKIrn0ciVSVA'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/document%3A1VoElmmTgcAQ_lc9H5XZ_MiIhrRIF3icoKIrn0ciVSVA'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1VoElmmTgcAQ_lc9H5XZ_MiIhrRIF3icoKIrn0ciVSVA&amp;v=1&amp;s=AMedNnoAAAAAUfe7wWoiD-vvJ-Aiu9REaO_nvFJ7NatN&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1VoElmmTgcAQ_lc9H5XZ_MiIhrRIF3icoKIrn0ciVSVA'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1VoElmmTgcAQ_lc9H5XZ_MiIhrRIF3icoKIrn0ciVSVA'/><link
 rel='edit-media' type='text/html' href='https://docs.google.
 
com/feeds/default/media/document%3A1VoElmmTgcAQ_lc9H5XZ_MiIhrRIF3icoKIrn0ciVSVA'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>document:1VoElmmTgcAQ_lc9H5XZ_MiIhrRIF3icoKIrn0ciVSVA</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:12:26.840Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:12:26.840Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A1VoElmmTgcAQ_lc9H5XZ_MiIhrRIF3icoKIrn0ciVSVA/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A1VoElmmTgcAQ_lc9H5XZ_Mi
 IhrRIF3icoKIrn0ciVSVA/revisions'/></entry><entry 
gd:etag='&quot;A1RTQQ9UHit7ImBk&quot;'><id>https://docs.google.com/feeds/id/presentation%3A1UtvbvrjiHzYyILshbHVrIWy2qOa9N7h_5myfmwmOGts</id><published>2013-07-30T11:12:22.443Z</published><updated>2013-07-30T11:12:23.127Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:12:23.166Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#presentation' 
label='presentation'/><title>Temporary Presentation</title><content type='text/html' 
src='https://docs.google.com/feeds/download/presentations/Export?id=1UtvbvrjiHzYyILshbHVrIWy2qOa9N7h_5myfmwmOGts'/><link
 rel='alternate' type='text/ht
 ml' 
href='https://docs.google.com/presentation/d/1UtvbvrjiHzYyILshbHVrIWy2qOa9N7h_5myfmwmOGts/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/presentation/d/1UtvbvrjiHzYyILshbHVrIWy2qOa9N7h_5myfmwmOGts/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_presentation_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/presentation%3A1UtvbvrjiHzYyILshbHVrIWy2qOa9N7h_5myfmwmOGts'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/presentation%3A1UtvbvrjiHzYyILshbHVrIWy2qOa9N7h_5myfmwmOGts'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' href='https://do
 
cs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1UtvbvrjiHzYyILshbHVrIWy2qOa9N7h_5myfmwmOGts&amp;v=2&amp;s=AMedNnoAAAAAUfe7wdy6PL5dlS5OU2vvF_FP0JMFZodR&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1UtvbvrjiHzYyILshbHVrIWy2qOa9N7h_5myfmwmOGts'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1UtvbvrjiHzYyILshbHVrIWy2qOa9N7h_5myfmwmOGts'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/presentation%3A1UtvbvrjiHzYyILshbHVrIWy2qOa9N7h_5myfmwmOGts'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>presentation:1UtvbvrjiHzYyILshbHVrIWy2qOa9N7h_5myfmwmOGts</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:12:23.127Z</docs:modifiedByMeDate><gd:lastModifiedBy><
 name>libgdata.documents</name><email>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:12:22.709Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1UtvbvrjiHzYyILshbHVrIWy2qOa9N7h_5myfmwmOGts/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1UtvbvrjiHzYyILshbHVrIWy2qOa9N7h_5myfmwmOGts/revisions'/></entry><entry
 
gd:etag='&quot;A1RTQQkNAit7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A1qrZth2ypmeG4SqS9N3XkZg5gWT3rnwlrtmEA7R331fg</id><published>2013-07-30T11:12:24.102Z</published><updated>2013-07-30T11:12:24.777Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:12:25.194Z</app:edited><category 
scheme='http://schemas.google.com/g
 /2005#kind' term='http://schemas.google.com/docs/2007#document' label='document'/><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary Text 
Document</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1qrZth2ypmeG4SqS9N3XkZg5gWT3rnwlrtmEA7R331fg'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/1qrZth2ypmeG4SqS9N3XkZg5gWT3rnwlrtmEA7R331fg/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/1qrZth2ypmeG4SqS9N3XkZg5gWT3rnwlrtmEA7R331fg/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_documen
 t_list.png'/><link rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1qrZth2ypmeG4SqS9N3XkZg5gWT3rnwlrtmEA7R331fg'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/document%3A1qrZth2ypmeG4SqS9N3XkZg5gWT3rnwlrtmEA7R331fg'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1qrZth2ypmeG4SqS9N3XkZg5gWT3rnwlrtmEA7R331fg&amp;v=1&amp;s=AMedNnoAAAAAUfe7wVeLAiu1ogSgHC2dvcjkn6w_BxWM&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1qrZth2ypmeG4SqS9N3XkZg5gWT3rnwlrtmEA7R331fg'/><link
 rel='edit' type='application/atom+xml' href='https://docs.google.com/feeds/default/private/full/doc
 ument%3A1qrZth2ypmeG4SqS9N3XkZg5gWT3rnwlrtmEA7R331fg'/><link rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A1qrZth2ypmeG4SqS9N3XkZg5gWT3rnwlrtmEA7R331fg'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>document:1qrZth2ypmeG4SqS9N3XkZg5gWT3rnwlrtmEA7R331fg</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:12:24.777Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:12:24.777Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A1qrZth2ypmeG4SqS9N3XkZg5gWT3rnwlrtmEA7R331fg/acl'/><gd:feedLink
 rel='http://schemas.go
 ogle.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A1qrZth2ypmeG4SqS9N3XkZg5gWT3rnwlrtmEA7R331fg/revisions'/></entry><entry
 
gd:etag='&quot;A1cbWRtXQit7ImBk&quot;'><id>https://docs.google.com/feeds/id/spreadsheet%3A0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c</id><published>2013-07-30T10:06:47.642Z</published><updated>2013-07-30T10:06:47.875Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T10:06:48.461Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/docs/2007#spreadsheet' label='spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Document (Spreadsheet)</title><content type='text/html' src='https://docs.goog
 le.com/feeds/download/spreadsheets/Export?key=0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c'/><link 
rel='alternate' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c&amp;usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c&amp;output=html&amp;chrome=false&amp;widget=true'/><link
 rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_spreadsheet_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/fil
 e/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c'/><link 
rel='http://schemas.google.com/docs/2007/thumbnail' type='image/jpeg' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c&amp;v=1&amp;s=AMedNnoAAAAAUfe7wV_76w7JBDQ_5VqiVziprLIne_bt&amp;sz=s220'/><link
 rel='http://schemas.google.com/spreadsheets/2006#worksheetsfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/worksheets/0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c/private/full'/><link
 rel='http://schemas.google.com/spreadsheets/2006#tablesfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c/tables'/><link 
rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c'/><link
 rel='edit' type='application/atom+xml' href='https://docs.google.c
 om/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c'/><link 
rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/spreadsheet%3A0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>spreadsheet:0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T10:06:47.875Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T10:06:46.869Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><docs:hasForm value='false'/><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMw
 YdHphQmpvR3VucnotdUNnLVlYVWdyV3c/acl'/><gd:feedLink rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c/revisions'/></entry><entry
 
gd:etag='&quot;A1cbTxtRESt7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E</id><published>2013-07-30T09:59:00.889Z</published><updated>2013-07-30T09:59:01.382Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:59:01.839Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Test Update file 
(/d
 ocuments/update/content-only/resumable)</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' href='https:
 
//docs.google.com/feeds/upload/file/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E&amp;v=1&amp;s=AMedNnoAAAAAUfe7wR4CiYM-ds8UzDtYLnXOJkLOo_nT&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></author><gd:resourceId>document:1EGoc0000krgqcdzuGYoIVX_-i7HQ
 X_mNOm8_4WPrD0E</gd:resourceId><docs:isShareable value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:59:01.382Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:59:01.382Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E/revisions'/></entry><entry
 
gd:etag='&quot;A1cbTwgLGCt7ImBk&quot;'><id>https://docs.google.com/feeds/id/spreadsheet%3A0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE</id><published>2013-07-30T09:48:48.323Z</p
 ublished><updated>2013-07-30T09:48:49.156Z</updated><app:edited 
xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:59:20.604Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/docs/2007#spreadsheet' label='spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Spreadsheet</title><content type='text/html' 
src='https://docs.google.com/feeds/download/spreadsheets/Export?key=0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE&amp;usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' href='https://docs.google.com/spreads
 
heet/ccc?key=0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE&amp;output=html&amp;chrome=false&amp;widget=true'/><link
 rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_spreadsheet_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/jpeg' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE&amp;v=1&amp;s=AMedNnoAAAAAUfe7wWSJEp1rqj5fb8mYAxnCYGX3z5HB&amp;sz=s220'/><link
 rel='
 http://schemas.google.com/spreadsheets/2006#worksheetsfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/worksheets/0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE/private/full'/><link
 rel='http://schemas.google.com/spreadsheets/2006#tablesfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE/tables'/><link 
rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/spreadsheet%3A0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></author><gd:resourceId>spreadshee
 t:0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:48:49.156Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:48:48.323Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><docs:hasForm value='false'/><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE/revisions'/></entry><entry
 
gd:etag='&quot;A1cbQhhZQSt7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A1CIIeiZMjsxXZbFHj83wNKx0
 
BqaT_YKkGJvpNKKnpwgg</id><published>2013-07-30T09:48:51.875Z</published><updated>2013-07-30T09:48:52.935Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:48:53.718Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary Text 
Document</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' 
 type='text/html' 
href='https://docs.google.com/document/d/1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/document%3A1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg&amp;v=1&amp;s=AMedNnoAAAAAUfe7waIGX2g7xWHpiQo7EMXUjpTivSxE&amp;sz=s220'/><link
 rel='self' 
 type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>document:1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:48:52.935Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:48:52.935Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCan
 Invite value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg/revisions'/></entry><entry
 
gd:etag='&quot;A1cbQh5fDSt7ImBk&quot;'><id>https://docs.google.com/feeds/id/presentation%3A1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc</id><published>2013-07-30T09:48:50.630Z</published><updated>2013-07-30T09:48:51.179Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:48:51.227Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' lab
 el='modified-by-me'/><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/docs/2007#presentation' label='presentation'/><title>Temporary 
Presentation</title><content type='text/html' 
src='https://docs.google.com/feeds/download/presentations/Export?id=1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/presentation/d/1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/presentation/d/1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_presentation_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/presen
 tation%3A1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc'/><link 
rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/presentation%3A1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc&amp;v=2&amp;s=AMedNnoAAAAAUfe7wUgDZfZK-GIEVsNMQ13yQc0TfpmG&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/presentation%3A1rcKrBFsUPW5mO1p
 8nQc7atfwvJRfymvyhci-9hGcXXc'/><author><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></author><gd:resourceId>presentation:1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:48:51.179Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:48:50.955Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc/revisions'/></ent
 ry><entry 
gd:etag='&quot;A1cUVR5VDit7ImBk&quot;'><id>https://docs.google.com/feeds/id/spreadsheet%3A0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c</id><published>2013-07-30T09:35:37.237Z</published><updated>2013-07-30T09:35:38.389Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:35:38.434Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/docs/2007#spreadsheet' label='spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Spreadsheet</title><content type='text/html' 
src='https://docs.google.com/feeds/download/spreadsheets/Export?key=0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c'/><link
 rel='alternate' type='text/html' href='https://docs.google.com/spreadshe
 et/ccc?key=0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c&amp;usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c&amp;output=html&amp;chrome=false&amp;widget=true'/><link
 rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_spreadsheet_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c'/><link
 rel='http://schemas.google.com/spreadsheets/2006#worksheetsfeed' type='applicatio
 n/atom+xml' 
href='https://spreadsheets.google.com/feeds/worksheets/0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c/private/full'/><link
 rel='http://schemas.google.com/spreadsheets/2006#tablesfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c/tables'/><link 
rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/spreadsheet%3A0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>spreadsheet:0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c</gd:resourceId><docs:isSharea
 ble value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:35:38.389Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:35:37.237Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><docs:hasForm value='false'/><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c/revisions'/></entry><entry
 
gd:etag='&quot;A1cUVRtMByt7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ</id><published>2013-07-30T09:35:40.939Z</published><upd
 ated>2013-07-30T09:35:42.104Z</updated><app:edited 
xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:35:42.565Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary Text 
Document</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/16stR_T6vw3sjEENdm
 XnONiKj3A6jtnfWSTMw1M961TQ/preview'/><link rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/document%3A16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ&amp;v=1&amp;s=AMedNnoAAAAAUfe7wRaRbYeBpDmITThe-70vHUET3Zi-&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' href='https://docs.google.com/feeds/default/priv
 ate/full/document%3A16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ'/><link rel='edit' 
type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>document:16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:35:42.104Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:35:42.104Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#a
 ccessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ/revisions'/></entry><entry
 
gd:etag='&quot;A1cUVRgLGyt7ImBk&quot;'><id>https://docs.google.com/feeds/id/presentation%3A1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U</id><published>2013-07-30T09:35:39.564Z</published><updated>2013-07-30T09:35:40.141Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:35:40.185Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><category 
scheme='http://schemas.google.com/g/2005#kind
 ' term='http://schemas.google.com/docs/2007#presentation' label='presentation'/><title>Temporary 
Presentation</title><content type='text/html' 
src='https://docs.google.com/feeds/download/presentations/Export?id=1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/presentation/d/1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/presentation/d/1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_presentation_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/presentation%3A1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U'/><link
 rel='http://sc
 hemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/presentation%3A1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U&amp;v=2&amp;s=AMedNnoAAAAAUfe7wRTRqFz0fZPIt-cjEkX_8ma9-Jpf&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/presentation%3A1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U'/><author><name>libgdata.documents</name><email
libgdata documents gmail 
com</email></author><gd:resourceId>presentation:1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U</gd:resourceId><docs:isShareable
value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:35:40.141Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:35:39.916Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U/acl'/><gd:feedLink
rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U/revisions'/></entry><entry
gd:etag='&quot;A1cURUhbECt7ImBk&quot;'><id>https://docs.google.com
 
/feeds/id/document%3A1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M</id><published>2013-07-30T09:23:00.901Z</published><updated>2013-07-30T09:23:01.523Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:23:02.344Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary Text 
Document</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M/edit?usp=docslist_api'/><link
 rel
 ='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/document%3A1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M&amp;v=1&amp;s=AMedNnoAAAAAUfe7wbk5t8Jkk80tgzA
 5Tbn999AfLEDJ&amp;sz=s220'/><link rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>document:1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:23:01.523Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:23:01.523Z</gd:lastViewed><gd:quotaBy
 tesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite value='false'/><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M/revisions'/></entry><entry
 
gd:etag='&quot;A1cURU5UHit7ImBk&quot;'><id>https://docs.google.com/feeds/id/presentation%3A1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI</id><published>2013-07-30T09:22:59.460Z</published><updated>2013-07-30T09:23:00.179Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:23:00.222Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005/labels' term='http://schemas
 .google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#presentation' 
label='presentation'/><title>Temporary Presentation</title><content type='text/html' 
src='https://docs.google.com/feeds/download/presentations/Export?id=1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/presentation/d/1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/presentation/d/1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_presentation_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/uplo
 ad/create-session/default/private/full/presentation%3A1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI'/><link 
rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/presentation%3A1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI&amp;v=2&amp;s=AMedNnoAAAAAUfe7wQapf8-u2zHOg7ZJM7kmD__pCAH6&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI'/><link
 rel='edit-media' type='text/html' href='https://docs.google.com/feeds/
 
default/media/presentation%3A1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>presentation:1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:23:00.179Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:22:59.831Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1_C-MBC8PaUj09JpN
 5EuIx8X0gEpabtZ99X7UAvCmFvI/revisions'/></entry><entry 
gd:etag='&quot;A1cURU8LBit7ImBk&quot;'><id>https://docs.google.com/feeds/id/spreadsheet%3A0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE</id><published>2013-07-30T09:22:57.202Z</published><updated>2013-07-30T09:22:58.095Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:22:58.142Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/docs/2007#spreadsheet' label='spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Spreadsheet</title><content type='text/html' 
src='https://docs.google.com/feeds/download/spreadsheets/Export?key=0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE'/><link
 rel='alternate' type='text/
 html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE&amp;usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE&amp;output=html&amp;chrome=false&amp;widget=true'/><link
 rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_spreadsheet_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE'/><link
 rel='http://schemas.google.com/sprea
 dsheets/2006#worksheetsfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/worksheets/0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE/private/full'/><link
 rel='http://schemas.google.com/spreadsheets/2006#tablesfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE/tables'/><link 
rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/spreadsheet%3A0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></author><gd:resourceId>spreadsheet:0AjY2jgHHwMwYdE5mNHhZUWtSdW5P
 SDRkS3JOODFONVE</gd:resourceId><docs:isShareable value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:22:58.095Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:22:57.202Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><docs:hasForm value='false'/><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE/revisions'/></entry><entry
 
gd:etag='&quot;A1cWWBtdGyt7ImBk&quot;'><id>https://docs.google.com/feeds/id/file%3A0BzY2jgHHwMwYVElmNWtjOExOWlk</id><published>2013-07-30T08:4
 2:01.106Z</published><updated>2013-07-30T08:42:01.106Z</updated><app:edited 
xmlns:app='http://www.w3.org/2007/app'>2013-07-30T08:42:02.757Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#file' 
label='application/x-vnd.oasis.opendocument.spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Document (Spreadsheet)</title><content type='application/x-vnd.oasis.opendocument.spreadsheet' 
src='https://doc-0g-4o-docs.googleusercontent.com/docs/securesc/p3gkcpm4vekih3vn1285g2jn1spuiriq/356jeo54n4vlgciodha7g0g352gpk9hs/1375178400000/04693666875216770588/04693666875216770588/0BzY2jgHHwMwYVElmNWtjOExOWlk?h=16653014193614665626&amp;e=download&amp;gd=true'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/file/d/0BzY2jgHHwMwYVElmNWtjOExOWlk/edit?usp=docslist_api'/><link 
rel='http://sch
 emas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/file%3A0BzY2jgHHwMwYVElmNWtjOExOWlk'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/file%3A0BzY2jgHHwMwYVElmNWtjOExOWlk'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYVElmNWtjOExOWlk'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYVElmNWtjOExOWlk'/><link 
rel='edit-media' type='application/x-vnd.oasis.opendocument.spreadsheet' 
href='https://docs.google.com/feeds/default/media/file%3A0BzY2jgHHwMwYVElmNWtjOExOWlk'/><author
<name>libgdata.documents</name><email>libgdata documents gmail 
com</email></author><gd:resourceId>file:0BzY2jgHHwMwYVElmNWtjOExOWlk</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T08:42:01.075Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>7564</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><docs:md5Checksum>950b2710b40e5b0b91b0bc1e509f7344</docs:md5Checksum><docs:filename>Temporary
Document (Spreadsheet)</docs:filename><docs:suggestedFilename>Temporary Document 
(Spreadsheet)</docs:suggestedFilename><docs:size>7564</docs:size><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYVElmNWtjOExOWlk/acl'/><gd:feedLink
rel='http://schemas.google.com/docs/2007/revisions' href='https://docs.google.com/fe
 eds/default/private/full/file%3A0BzY2jgHHwMwYVElmNWtjOExOWlk/revisions'/></entry><entry 
gd:etag='&quot;XVEKWUhPAit7ImBk&quot;'><id>https://docs.google.com/feeds/id/file%3A0BzY2jgHHwMwYY0Q5QlhIaWVUMk0</id><published>2012-07-21T09:57:43.392Z</published><updated>2012-07-21T09:57:43.392Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-07-21T09:57:43.590Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#file' 
label='application/x-vnd.oasis.opendocument.spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Document (Spreadsheet)</title><content type='application/x-vnd.oasis.opendocument.spreadsheet' 
src='https://doc-14-4o-docs.googleusercontent.com/docs/securesc/p3gkcpm4vekih3vn1285g2jn1spuiriq/07dsfisp3lub8ta1i3u2qf99d10dvp42/1375178400000/04693666875216770588/04693666875216770588/0
 BzY2jgHHwMwYY0Q5QlhIaWVUMk0?h=16653014193614665626&amp;e=download&amp;gd=true'/><link rel='alternate' 
type='text/html' 
href='https://docs.google.com/file/d/0BzY2jgHHwMwYY0Q5QlhIaWVUMk0/edit?usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/file%3A0BzY2jgHHwMwYY0Q5QlhIaWVUMk0'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/file%3A0BzY2jgHHwMwYY0Q5QlhIaWVUMk0'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYY0Q5QlhIaWVUMk0'/><link 
rel='edit' type='application/atom+xml' href='https://docs.google.com/feeds/def
 ault/private/full/file%3A0BzY2jgHHwMwYY0Q5QlhIaWVUMk0'/><link rel='edit-media' 
type='application/x-vnd.oasis.opendocument.spreadsheet' 
href='https://docs.google.com/feeds/default/media/file%3A0BzY2jgHHwMwYY0Q5QlhIaWVUMk0'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>file:0BzY2jgHHwMwYY0Q5QlhIaWVUMk0</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2012-07-21T09:57:43.378Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>7564</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><docs:md5Checksum>950b2710b40e5b0b91b0bc1e509f7344</docs:md5Checksum><docs:filename>Temporary 
Document (Spreadsheet)</docs:filename><docs:suggestedFilename>Temporary Document 
(Spreadsheet)</docs:suggestedFilename><docs:size>7564</docs:size><gd:feedLink rel='http://schemas.googl
 e.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYY0Q5QlhIaWVUMk0/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYY0Q5QlhIaWVUMk0/revisions'/></entry><entry
 
gd:etag='&quot;XVEKVkxTBit7ImBk&quot;'><id>https://docs.google.com/feeds/id/file%3A0BzY2jgHHwMwYb01zQkN4dmN1aEU</id><published>2012-07-21T09:55:17.743Z</published><updated>2012-07-21T09:55:17.743Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-07-21T09:55:18.002Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#file' 
label='application/x-vnd.oasis.opendocument.spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Document (Spreadsheet)</title><content type='applica
 tion/x-vnd.oasis.opendocument.spreadsheet' 
src='https://doc-0c-4o-docs.googleusercontent.com/docs/securesc/p3gkcpm4vekih3vn1285g2jn1spuiriq/rflbv3o031ej20mq3fsf7v8nuhjd1p6f/1375178400000/04693666875216770588/04693666875216770588/0BzY2jgHHwMwYb01zQkN4dmN1aEU?h=16653014193614665626&amp;e=download&amp;gd=true'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/file/d/0BzY2jgHHwMwYb01zQkN4dmN1aEU/edit?usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/file%3A0BzY2jgHHwMwYb01zQkN4dmN1aEU'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/file%3A0BzY2jgHHwMwYb01zQkN4dmN1
 aEU'/><link rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYb01zQkN4dmN1aEU'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYb01zQkN4dmN1aEU'/><link 
rel='edit-media' type='application/x-vnd.oasis.opendocument.spreadsheet' 
href='https://docs.google.com/feeds/default/media/file%3A0BzY2jgHHwMwYb01zQkN4dmN1aEU'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>file:0BzY2jgHHwMwYb01zQkN4dmN1aEU</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2012-07-21T09:55:17.738Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>7564</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><docs:md5Checksum>950b2710b40e5b0b91b0bc1e509f73
 44</docs:md5Checksum><docs:filename>Temporary Document 
(Spreadsheet)</docs:filename><docs:suggestedFilename>Temporary Document 
(Spreadsheet)</docs:suggestedFilename><docs:size>7564</docs:size><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYb01zQkN4dmN1aEU/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYb01zQkN4dmN1aEU/revisions'/></entry><entry
 
gd:etag='&quot;XVEKVE1THCt7ImBk&quot;'><id>https://docs.google.com/feeds/id/file%3A0BzY2jgHHwMwYclhjQTkwdzFSUDg</id><published>2012-07-21T09:53:42.779Z</published><updated>2012-07-21T09:53:42.779Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-07-21T09:53:43.388Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#file' 
label='application/x-vnd.oasis.opendocumen
 t.spreadsheet'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Document (Spreadsheet)</title><content type='application/x-vnd.oasis.opendocument.spreadsheet' 
src='https://doc-08-4o-docs.googleusercontent.com/docs/securesc/p3gkcpm4vekih3vn1285g2jn1spuiriq/a5j3fa9p14tjd93bn5v6u8sjbr97156o/1375178400000/04693666875216770588/04693666875216770588/0BzY2jgHHwMwYclhjQTkwdzFSUDg?h=16653014193614665626&amp;e=download&amp;gd=true'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/file/d/0BzY2jgHHwMwYclhjQTkwdzFSUDg/edit?usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/
 file%3A0BzY2jgHHwMwYclhjQTkwdzFSUDg'/><link rel='http://schemas.google.com/docs/2007#alt-edit-media' 
type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/file%3A0BzY2jgHHwMwYclhjQTkwdzFSUDg'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYclhjQTkwdzFSUDg'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYclhjQTkwdzFSUDg'/><link 
rel='edit-media' type='application/x-vnd.oasis.opendocument.spreadsheet' 
href='https://docs.google.com/feeds/default/media/file%3A0BzY2jgHHwMwYclhjQTkwdzFSUDg'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>file:0BzY2jgHHwMwYclhjQTkwdzFSUDg</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2012-07-21T09:53:42.753Z</docs:modifiedByMeDate><gd:lastModi
 fiedBy><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>7564</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><docs:md5Checksum>950b2710b40e5b0b91b0bc1e509f7344</docs:md5Checksum><docs:filename>Temporary 
Document (Spreadsheet)</docs:filename><docs:suggestedFilename>Temporary Document 
(Spreadsheet)</docs:suggestedFilename><docs:size>7564</docs:size><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYclhjQTkwdzFSUDg/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYclhjQTkwdzFSUDg/revisions'/></entry><entry
 
gd:etag='&quot;XVEKVApVRyt7ImBk&quot;'><id>https://docs.google.com/feeds/id/file%3A0BzY2jgHHwMwYRjh3c3lDYkZtdnc</id><published>2012-07-21T09:54:24.677Z</published><updated>2012-07-21T09:54:24.677Z</updated><app:
 edited xmlns:app='http://www.w3.org/2007/app'>2012-07-21T09:54:25.056Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#file' 
label='application/x-vnd.oasis.opendocument.spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Document (Spreadsheet)</title><content type='application/x-vnd.oasis.opendocument.spreadsheet' 
src='https://doc-0c-4o-docs.googleusercontent.com/docs/securesc/p3gkcpm4vekih3vn1285g2jn1spuiriq/6csqua0f5836pl4dd0fo8vp7u6q5o5pp/1375178400000/04693666875216770588/04693666875216770588/0BzY2jgHHwMwYRjh3c3lDYkZtdnc?h=16653014193614665626&amp;e=download&amp;gd=true'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/file/d/0BzY2jgHHwMwYRjh3c3lDYkZtdnc/edit?usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' href='https://ssl.gs
 tatic.com/docs/doclist/images/icon_10_generic_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/file%3A0BzY2jgHHwMwYRjh3c3lDYkZtdnc'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/file%3A0BzY2jgHHwMwYRjh3c3lDYkZtdnc'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYRjh3c3lDYkZtdnc'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYRjh3c3lDYkZtdnc'/><link 
rel='edit-media' type='application/x-vnd.oasis.opendocument.spreadsheet' 
href='https://docs.google.com/feeds/default/media/file%3A0BzY2jgHHwMwYRjh3c3lDYkZtdnc'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</
 email></author><gd:resourceId>file:0BzY2jgHHwMwYRjh3c3lDYkZtdnc</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2012-07-21T09:54:24.650Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>7564</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><docs:md5Checksum>950b2710b40e5b0b91b0bc1e509f7344</docs:md5Checksum><docs:filename>Temporary 
Document (Spreadsheet)</docs:filename><docs:suggestedFilename>Temporary Document 
(Spreadsheet)</docs:suggestedFilename><docs:size>7564</docs:size><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYRjh3c3lDYkZtdnc/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYRjh3c3lDYkZtdnc/revision
 s'/></entry></feed>
+  
diff --git a/gdata/tests/traces/documents/query-all-documents-async 
b/gdata/tests/traces/documents/query-all-documents-async
new file mode 100644
index 0000000..e530d36
--- /dev/null
+++ b/gdata/tests/traces/documents/query-all-documents-async
@@ -0,0 +1,28 @@
+> GET /feeds/default/private/full HTTP/1.1
+> Soup-Debug-Timestamp: 1375182829
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 138 (0x7fffe400cb80), SoupSocket 46 (0x7fffd80028e0)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182829
+< Soup-Debug: SoupMessage 138 (0x7fffe400cb80)
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Expires: Tue, 30 Jul 2013 11:13:49 GMT
+< Date: Tue, 30 Jul 2013 11:13:49 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.0
+< ETag: W/"CE8GSHgzcCt7ImA9WhFWEUU."
+< Last-Modified: Tue, 30 Jul 2013 11:13:49 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:docs='http://schemas.google.com/docs/2007' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CE8GSHgzcCt7ImA9WhFWEUU.&quot;'><id>https://docs.google.com/feeds/default/private/full</id><updated>2013-07-30T11:13:49.688Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#item' 
label='item'/><title>Available Documents - libgdata documents gmail com</title><link rel='alternate' 
type='text/html' href='https://docs.google.com'/><link 
rel='http://schemas.google.com/g/2005#resumable-create-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full'/><link 
rel='http://schemas.google.com/docs/2007#alt-post' type='application/atom+xml' 
href='https://docs.google.com/feeds/up
 load/file/default/private/full'/><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://docs.google.com/feeds/default/private/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full'/><link rel='http://schemas.google.com/g/2005#batch' 
type='application/atom+xml' href='https://docs.google.com/feeds/default/private/full/batch'/><link rel='self' 
type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></author><openSearch:startIndex>1</openSearch:startIndex><entry 
gd:etag='&quot;A1RTQxoMDSt7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4</id><published>2013-07-30T11:13:40.735Z</published><updated>2013-07-30T11:13:41.203Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T
 11:13:41.627Z</app:edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/docs/2007#document' label='document'/><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Arbitrary Document</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='
 image/png' href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4&amp;v=1&amp;s=AMedNnoAAAAAUfe8DVi4qAYFWK5WqVv0tIH6F5xO2llb&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4'/><link
 rel='edit' type='applic
 ation/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>document:160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:13:41.203Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:13:41.203Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A160jJ9Dwkr
 CVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4/acl'/><gd:feedLink rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4/revisions'/></entry><entry
 
gd:etag='&quot;A1RTQxlYGit7ImBk&quot;'><id>https://docs.google.com/feeds/id/presentation%3A1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q</id><published>2013-07-30T11:13:36.855Z</published><updated>2013-07-30T11:13:37.701Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:13:37.906Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#presentation' 
label='presentation'/><title>Temporary
  Presentation</title><content type='text/html' 
src='https://docs.google.com/feeds/download/presentations/Export?id=1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/presentation/d/1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/presentation/d/1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_presentation_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/presentation%3A1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google
 
.com/feeds/upload/file/default/private/full/presentation%3A1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q&amp;v=2&amp;s=AMedNnoAAAAAUfe8DTwj87Vvmt5PvfhyTR9d4t9f19Gq&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/presentation%3A1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></author><gd:resourceId>presentation:1XPewRH84xNNEKlaOBrHHz
 wusNbj2NpivWvP76WExj9Q</gd:resourceId><docs:isShareable value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:13:37.701Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:13:37.187Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q/revisions'/></entry><entry
 
gd:etag='&quot;A1RTQx9QHSt7ImBk&quot;'><id>https://docs.google.com/feeds/id/spreadsheet%3A0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE</id><published>2013-07-30T1
 1:13:34.842Z</published><updated>2013-07-30T11:13:35.568Z</updated><app:edited 
xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:13:35.599Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/docs/2007#spreadsheet' label='spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Spreadsheet</title><content type='text/html' 
src='https://docs.google.com/feeds/download/spreadsheets/Export?key=0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE&amp;usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' href='https://docs.goo
 
gle.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE&amp;output=html&amp;chrome=false&amp;widget=true'/><link
 rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_spreadsheet_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE'/><link
 rel='http://schemas.google.com/spreadsheets/2006#worksheetsfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/worksheets/0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE/private/full'/><link
 rel='http://schemas.google.com/spreadsh
 eets/2006#tablesfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE/tables'/><link 
rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/spreadsheet%3A0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>spreadsheet:0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:13:35.568Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</na
 me><email>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:13:34.842Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><docs:hasForm value='false'/><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE/revisions'/></entry><entry
 
gd:etag='&quot;A1RTQxhKECt7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c</id><published>2013-07-30T11:13:38.803Z</published><updated>2013-07-30T11:13:39.264Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:13:39.700Z</app:edited><category 
scheme='http://schemas.google.com/g
 /2005#kind' term='http://schemas.google.com/docs/2007#document' label='document'/><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary Text 
Document</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_documen
 t_list.png'/><link rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/document%3A1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c&amp;v=1&amp;s=AMedNnoAAAAAUfe8DbHL8h9CJFe_BBSt8AnvvkLBtKGN&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c'/><link
 rel='edit' type='application/atom+xml' href='https://docs.google.com/feeds/default/private/full/doc
 ument%3A1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c'/><link rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>document:1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:13:39.264Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:13:39.264Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c/acl'/><gd:feedLink
 rel='http://schemas.go
 ogle.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c/revisions'/></entry><entry
 
gd:etag='&quot;A1cbWRtXQit7ImBk&quot;'><id>https://docs.google.com/feeds/id/spreadsheet%3A0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c</id><published>2013-07-30T10:06:47.642Z</published><updated>2013-07-30T10:06:47.875Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T10:06:48.461Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/docs/2007#spreadsheet' label='spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Document (Spreadsheet)</title><content type='text/html' src='https://docs.goog
 le.com/feeds/download/spreadsheets/Export?key=0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c'/><link 
rel='alternate' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c&amp;usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c&amp;output=html&amp;chrome=false&amp;widget=true'/><link
 rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_spreadsheet_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/fil
 e/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c'/><link 
rel='http://schemas.google.com/docs/2007/thumbnail' type='image/jpeg' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c&amp;v=1&amp;s=AMedNnoAAAAAUfe8DSMnHLLZcMwom5XGGjvkPgUGxWqk&amp;sz=s220'/><link
 rel='http://schemas.google.com/spreadsheets/2006#worksheetsfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/worksheets/0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c/private/full'/><link
 rel='http://schemas.google.com/spreadsheets/2006#tablesfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c/tables'/><link 
rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c'/><link
 rel='edit' type='application/atom+xml' href='https://docs.google.c
 om/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c'/><link 
rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/spreadsheet%3A0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>spreadsheet:0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T10:06:47.875Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T10:06:46.869Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><docs:hasForm value='false'/><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMw
 YdHphQmpvR3VucnotdUNnLVlYVWdyV3c/acl'/><gd:feedLink rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c/revisions'/></entry><entry
 
gd:etag='&quot;A1cbTxtRESt7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E</id><published>2013-07-30T09:59:00.889Z</published><updated>2013-07-30T09:59:01.382Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:59:01.839Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Test Update file 
(/d
 ocuments/update/content-only/resumable)</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' href='https:
 
//docs.google.com/feeds/upload/file/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E&amp;v=1&amp;s=AMedNnoAAAAAUfe8DX1SZDBuvZesk_ZpC58aE7I2oJGn&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></author><gd:resourceId>document:1EGoc0000krgqcdzuGYoIVX_-i7HQ
 X_mNOm8_4WPrD0E</gd:resourceId><docs:isShareable value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:59:01.382Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:59:01.382Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E/revisions'/></entry><entry
 
gd:etag='&quot;A1cbTwgLGCt7ImBk&quot;'><id>https://docs.google.com/feeds/id/spreadsheet%3A0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE</id><published>2013-07-30T09:48:48.323Z</p
 ublished><updated>2013-07-30T09:48:49.156Z</updated><app:edited 
xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:59:20.604Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/docs/2007#spreadsheet' label='spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Spreadsheet</title><content type='text/html' 
src='https://docs.google.com/feeds/download/spreadsheets/Export?key=0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE&amp;usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' href='https://docs.google.com/spreads
 
heet/ccc?key=0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE&amp;output=html&amp;chrome=false&amp;widget=true'/><link
 rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_spreadsheet_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/jpeg' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE&amp;v=1&amp;s=AMedNnoAAAAAUfe8DVjlQ1V_y8cLMl3FIqCOT0ejoQCW&amp;sz=s220'/><link
 rel='
 http://schemas.google.com/spreadsheets/2006#worksheetsfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/worksheets/0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE/private/full'/><link
 rel='http://schemas.google.com/spreadsheets/2006#tablesfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE/tables'/><link 
rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/spreadsheet%3A0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></author><gd:resourceId>spreadshee
 t:0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:48:49.156Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:48:48.323Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><docs:hasForm value='false'/><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE/revisions'/></entry><entry
 
gd:etag='&quot;A1cbQhhZQSt7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A1CIIeiZMjsxXZbFHj83wNKx0
 
BqaT_YKkGJvpNKKnpwgg</id><published>2013-07-30T09:48:51.875Z</published><updated>2013-07-30T09:48:52.935Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:48:53.718Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary Text 
Document</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' 
 type='text/html' 
href='https://docs.google.com/document/d/1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/document%3A1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg&amp;v=1&amp;s=AMedNnoAAAAAUfe8DaQKLroJduuAJQKVh_Mr_Awp6gb5&amp;sz=s220'/><link
 rel='self' 
 type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>document:1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:48:52.935Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:48:52.935Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCan
 Invite value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg/revisions'/></entry><entry
 
gd:etag='&quot;A1cbQh5fDSt7ImBk&quot;'><id>https://docs.google.com/feeds/id/presentation%3A1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc</id><published>2013-07-30T09:48:50.630Z</published><updated>2013-07-30T09:48:51.179Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:48:51.227Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' lab
 el='modified-by-me'/><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/docs/2007#presentation' label='presentation'/><title>Temporary 
Presentation</title><content type='text/html' 
src='https://docs.google.com/feeds/download/presentations/Export?id=1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/presentation/d/1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/presentation/d/1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_presentation_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/presen
 tation%3A1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc'/><link 
rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/presentation%3A1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc&amp;v=2&amp;s=AMedNnoAAAAAUfe8DaOx-NvfuNvU30XJ5hvtG0Ppi87D&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/presentation%3A1rcKrBFsUPW5mO1p
 8nQc7atfwvJRfymvyhci-9hGcXXc'/><author><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></author><gd:resourceId>presentation:1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:48:51.179Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:48:50.955Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc/revisions'/></ent
 ry><entry 
gd:etag='&quot;A1cUVR5VDit7ImBk&quot;'><id>https://docs.google.com/feeds/id/spreadsheet%3A0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c</id><published>2013-07-30T09:35:37.237Z</published><updated>2013-07-30T09:35:38.389Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:35:38.434Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/docs/2007#spreadsheet' label='spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Spreadsheet</title><content type='text/html' 
src='https://docs.google.com/feeds/download/spreadsheets/Export?key=0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c'/><link
 rel='alternate' type='text/html' href='https://docs.google.com/spreadshe
 et/ccc?key=0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c&amp;usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c&amp;output=html&amp;chrome=false&amp;widget=true'/><link
 rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_spreadsheet_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c'/><link
 rel='http://schemas.google.com/spreadsheets/2006#worksheetsfeed' type='applicatio
 n/atom+xml' 
href='https://spreadsheets.google.com/feeds/worksheets/0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c/private/full'/><link
 rel='http://schemas.google.com/spreadsheets/2006#tablesfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c/tables'/><link 
rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/spreadsheet%3A0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>spreadsheet:0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c</gd:resourceId><docs:isSharea
 ble value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:35:38.389Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:35:37.237Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><docs:hasForm value='false'/><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c/revisions'/></entry><entry
 
gd:etag='&quot;A1cUVRtMByt7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ</id><published>2013-07-30T09:35:40.939Z</published><upd
 ated>2013-07-30T09:35:42.104Z</updated><app:edited 
xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:35:42.565Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary Text 
Document</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/16stR_T6vw3sjEENdm
 XnONiKj3A6jtnfWSTMw1M961TQ/preview'/><link rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/document%3A16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ&amp;v=1&amp;s=AMedNnoAAAAAUfe8DQk9h1C2kTKc38tfBHK07dewlM9M&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' href='https://docs.google.com/feeds/default/priv
 ate/full/document%3A16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ'/><link rel='edit' 
type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>document:16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:35:42.104Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:35:42.104Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#a
 ccessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ/revisions'/></entry><entry
 
gd:etag='&quot;A1cUVRgLGyt7ImBk&quot;'><id>https://docs.google.com/feeds/id/presentation%3A1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U</id><published>2013-07-30T09:35:39.564Z</published><updated>2013-07-30T09:35:40.141Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:35:40.185Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><category 
scheme='http://schemas.google.com/g/2005#kind
 ' term='http://schemas.google.com/docs/2007#presentation' label='presentation'/><title>Temporary 
Presentation</title><content type='text/html' 
src='https://docs.google.com/feeds/download/presentations/Export?id=1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/presentation/d/1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/presentation/d/1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_presentation_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/presentation%3A1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U'/><link
 rel='http://sc
 hemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/presentation%3A1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U&amp;v=2&amp;s=AMedNnoAAAAAUfe8Db-VFD_Z1Tk3RFCrGFbfSDNlh8KU&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/presentation%3A1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U'/><author><name>libgdata.documents</name><email
libgdata documents gmail 
com</email></author><gd:resourceId>presentation:1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U</gd:resourceId><docs:isShareable
value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:35:40.141Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:35:39.916Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U/acl'/><gd:feedLink
rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U/revisions'/></entry><entry
gd:etag='&quot;A1cURUhbECt7ImBk&quot;'><id>https://docs.google.com
 
/feeds/id/document%3A1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M</id><published>2013-07-30T09:23:00.901Z</published><updated>2013-07-30T09:23:01.523Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:23:02.344Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary Text 
Document</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M/edit?usp=docslist_api'/><link
 rel
 ='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/document%3A1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M&amp;v=1&amp;s=AMedNnoAAAAAUfe8DR-6lKA1sgjMhUq
 T6md1HYUE-JH9&amp;sz=s220'/><link rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>document:1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:23:01.523Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:23:01.523Z</gd:lastViewed><gd:quotaBy
 tesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite value='false'/><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M/revisions'/></entry><entry
 
gd:etag='&quot;A1cURU5UHit7ImBk&quot;'><id>https://docs.google.com/feeds/id/presentation%3A1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI</id><published>2013-07-30T09:22:59.460Z</published><updated>2013-07-30T09:23:00.179Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:23:00.222Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005/labels' term='http://schemas
 .google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#presentation' 
label='presentation'/><title>Temporary Presentation</title><content type='text/html' 
src='https://docs.google.com/feeds/download/presentations/Export?id=1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/presentation/d/1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/presentation/d/1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_presentation_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/uplo
 ad/create-session/default/private/full/presentation%3A1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI'/><link 
rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/presentation%3A1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI&amp;v=2&amp;s=AMedNnoAAAAAUfe8Db0Gs2qrNfjk4diwIAmiyjmKp3ia&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI'/><link
 rel='edit-media' type='text/html' href='https://docs.google.com/feeds/
 
default/media/presentation%3A1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>presentation:1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:23:00.179Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:22:59.831Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1_C-MBC8PaUj09JpN
 5EuIx8X0gEpabtZ99X7UAvCmFvI/revisions'/></entry><entry 
gd:etag='&quot;A1cURU8LBit7ImBk&quot;'><id>https://docs.google.com/feeds/id/spreadsheet%3A0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE</id><published>2013-07-30T09:22:57.202Z</published><updated>2013-07-30T09:22:58.095Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:22:58.142Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/docs/2007#spreadsheet' label='spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Spreadsheet</title><content type='text/html' 
src='https://docs.google.com/feeds/download/spreadsheets/Export?key=0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE'/><link
 rel='alternate' type='text/
 html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE&amp;usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE&amp;output=html&amp;chrome=false&amp;widget=true'/><link
 rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_spreadsheet_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE'/><link
 rel='http://schemas.google.com/sprea
 dsheets/2006#worksheetsfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/worksheets/0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE/private/full'/><link
 rel='http://schemas.google.com/spreadsheets/2006#tablesfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE/tables'/><link 
rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/spreadsheet%3A0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></author><gd:resourceId>spreadsheet:0AjY2jgHHwMwYdE5mNHhZUWtSdW5P
 SDRkS3JOODFONVE</gd:resourceId><docs:isShareable value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:22:58.095Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:22:57.202Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><docs:hasForm value='false'/><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE/revisions'/></entry><entry
 
gd:etag='&quot;A1cWWBtdGyt7ImBk&quot;'><id>https://docs.google.com/feeds/id/file%3A0BzY2jgHHwMwYVElmNWtjOExOWlk</id><published>2013-07-30T08:4
 2:01.106Z</published><updated>2013-07-30T08:42:01.106Z</updated><app:edited 
xmlns:app='http://www.w3.org/2007/app'>2013-07-30T08:42:02.757Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#file' 
label='application/x-vnd.oasis.opendocument.spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Document (Spreadsheet)</title><content type='application/x-vnd.oasis.opendocument.spreadsheet' 
src='https://doc-0g-4o-docs.googleusercontent.com/docs/securesc/p3gkcpm4vekih3vn1285g2jn1spuiriq/356jeo54n4vlgciodha7g0g352gpk9hs/1375178400000/04693666875216770588/04693666875216770588/0BzY2jgHHwMwYVElmNWtjOExOWlk?h=16653014193614665626&amp;e=download&amp;gd=true'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/file/d/0BzY2jgHHwMwYVElmNWtjOExOWlk/edit?usp=docslist_api'/><link 
rel='http://sch
 emas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/file%3A0BzY2jgHHwMwYVElmNWtjOExOWlk'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/file%3A0BzY2jgHHwMwYVElmNWtjOExOWlk'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYVElmNWtjOExOWlk'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYVElmNWtjOExOWlk'/><link 
rel='edit-media' type='application/x-vnd.oasis.opendocument.spreadsheet' 
href='https://docs.google.com/feeds/default/media/file%3A0BzY2jgHHwMwYVElmNWtjOExOWlk'/><author
<name>libgdata.documents</name><email>libgdata documents gmail 
com</email></author><gd:resourceId>file:0BzY2jgHHwMwYVElmNWtjOExOWlk</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T08:42:01.075Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>7564</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><docs:md5Checksum>950b2710b40e5b0b91b0bc1e509f7344</docs:md5Checksum><docs:filename>Temporary
Document (Spreadsheet)</docs:filename><docs:suggestedFilename>Temporary Document 
(Spreadsheet)</docs:suggestedFilename><docs:size>7564</docs:size><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYVElmNWtjOExOWlk/acl'/><gd:feedLink
rel='http://schemas.google.com/docs/2007/revisions' href='https://docs.google.com/fe
 eds/default/private/full/file%3A0BzY2jgHHwMwYVElmNWtjOExOWlk/revisions'/></entry><entry 
gd:etag='&quot;XVEKWUhPAit7ImBk&quot;'><id>https://docs.google.com/feeds/id/file%3A0BzY2jgHHwMwYY0Q5QlhIaWVUMk0</id><published>2012-07-21T09:57:43.392Z</published><updated>2012-07-21T09:57:43.392Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-07-21T09:57:43.590Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#file' 
label='application/x-vnd.oasis.opendocument.spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Document (Spreadsheet)</title><content type='application/x-vnd.oasis.opendocument.spreadsheet' 
src='https://doc-14-4o-docs.googleusercontent.com/docs/securesc/p3gkcpm4vekih3vn1285g2jn1spuiriq/07dsfisp3lub8ta1i3u2qf99d10dvp42/1375178400000/04693666875216770588/04693666875216770588/0
 BzY2jgHHwMwYY0Q5QlhIaWVUMk0?h=16653014193614665626&amp;e=download&amp;gd=true'/><link rel='alternate' 
type='text/html' 
href='https://docs.google.com/file/d/0BzY2jgHHwMwYY0Q5QlhIaWVUMk0/edit?usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/file%3A0BzY2jgHHwMwYY0Q5QlhIaWVUMk0'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/file%3A0BzY2jgHHwMwYY0Q5QlhIaWVUMk0'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYY0Q5QlhIaWVUMk0'/><link 
rel='edit' type='application/atom+xml' href='https://docs.google.com/feeds/def
 ault/private/full/file%3A0BzY2jgHHwMwYY0Q5QlhIaWVUMk0'/><link rel='edit-media' 
type='application/x-vnd.oasis.opendocument.spreadsheet' 
href='https://docs.google.com/feeds/default/media/file%3A0BzY2jgHHwMwYY0Q5QlhIaWVUMk0'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>file:0BzY2jgHHwMwYY0Q5QlhIaWVUMk0</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2012-07-21T09:57:43.378Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>7564</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><docs:md5Checksum>950b2710b40e5b0b91b0bc1e509f7344</docs:md5Checksum><docs:filename>Temporary 
Document (Spreadsheet)</docs:filename><docs:suggestedFilename>Temporary Document 
(Spreadsheet)</docs:suggestedFilename><docs:size>7564</docs:size><gd:feedLink rel='http://schemas.googl
 e.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYY0Q5QlhIaWVUMk0/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYY0Q5QlhIaWVUMk0/revisions'/></entry><entry
 
gd:etag='&quot;XVEKVkxTBit7ImBk&quot;'><id>https://docs.google.com/feeds/id/file%3A0BzY2jgHHwMwYb01zQkN4dmN1aEU</id><published>2012-07-21T09:55:17.743Z</published><updated>2012-07-21T09:55:17.743Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-07-21T09:55:18.002Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#file' 
label='application/x-vnd.oasis.opendocument.spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Document (Spreadsheet)</title><content type='applica
 tion/x-vnd.oasis.opendocument.spreadsheet' 
src='https://doc-0c-4o-docs.googleusercontent.com/docs/securesc/p3gkcpm4vekih3vn1285g2jn1spuiriq/rflbv3o031ej20mq3fsf7v8nuhjd1p6f/1375178400000/04693666875216770588/04693666875216770588/0BzY2jgHHwMwYb01zQkN4dmN1aEU?h=16653014193614665626&amp;e=download&amp;gd=true'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/file/d/0BzY2jgHHwMwYb01zQkN4dmN1aEU/edit?usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/file%3A0BzY2jgHHwMwYb01zQkN4dmN1aEU'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/file%3A0BzY2jgHHwMwYb01zQkN4dmN1
 aEU'/><link rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYb01zQkN4dmN1aEU'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYb01zQkN4dmN1aEU'/><link 
rel='edit-media' type='application/x-vnd.oasis.opendocument.spreadsheet' 
href='https://docs.google.com/feeds/default/media/file%3A0BzY2jgHHwMwYb01zQkN4dmN1aEU'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>file:0BzY2jgHHwMwYb01zQkN4dmN1aEU</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2012-07-21T09:55:17.738Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>7564</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><docs:md5Checksum>950b2710b40e5b0b91b0bc1e509f73
 44</docs:md5Checksum><docs:filename>Temporary Document 
(Spreadsheet)</docs:filename><docs:suggestedFilename>Temporary Document 
(Spreadsheet)</docs:suggestedFilename><docs:size>7564</docs:size><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYb01zQkN4dmN1aEU/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYb01zQkN4dmN1aEU/revisions'/></entry><entry
 
gd:etag='&quot;XVEKVE1THCt7ImBk&quot;'><id>https://docs.google.com/feeds/id/file%3A0BzY2jgHHwMwYclhjQTkwdzFSUDg</id><published>2012-07-21T09:53:42.779Z</published><updated>2012-07-21T09:53:42.779Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-07-21T09:53:43.388Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#file' 
label='application/x-vnd.oasis.opendocumen
 t.spreadsheet'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Document (Spreadsheet)</title><content type='application/x-vnd.oasis.opendocument.spreadsheet' 
src='https://doc-08-4o-docs.googleusercontent.com/docs/securesc/p3gkcpm4vekih3vn1285g2jn1spuiriq/a5j3fa9p14tjd93bn5v6u8sjbr97156o/1375178400000/04693666875216770588/04693666875216770588/0BzY2jgHHwMwYclhjQTkwdzFSUDg?h=16653014193614665626&amp;e=download&amp;gd=true'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/file/d/0BzY2jgHHwMwYclhjQTkwdzFSUDg/edit?usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/
 file%3A0BzY2jgHHwMwYclhjQTkwdzFSUDg'/><link rel='http://schemas.google.com/docs/2007#alt-edit-media' 
type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/file%3A0BzY2jgHHwMwYclhjQTkwdzFSUDg'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYclhjQTkwdzFSUDg'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYclhjQTkwdzFSUDg'/><link 
rel='edit-media' type='application/x-vnd.oasis.opendocument.spreadsheet' 
href='https://docs.google.com/feeds/default/media/file%3A0BzY2jgHHwMwYclhjQTkwdzFSUDg'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>file:0BzY2jgHHwMwYclhjQTkwdzFSUDg</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2012-07-21T09:53:42.753Z</docs:modifiedByMeDate><gd:lastModi
 fiedBy><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>7564</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><docs:md5Checksum>950b2710b40e5b0b91b0bc1e509f7344</docs:md5Checksum><docs:filename>Temporary 
Document (Spreadsheet)</docs:filename><docs:suggestedFilename>Temporary Document 
(Spreadsheet)</docs:suggestedFilename><docs:size>7564</docs:size><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYclhjQTkwdzFSUDg/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYclhjQTkwdzFSUDg/revisions'/></entry><entry
 
gd:etag='&quot;XVEKVApVRyt7ImBk&quot;'><id>https://docs.google.com/feeds/id/file%3A0BzY2jgHHwMwYRjh3c3lDYkZtdnc</id><published>2012-07-21T09:54:24.677Z</published><updated>2012-07-21T09:54:24.677Z</updated><app:
 edited xmlns:app='http://www.w3.org/2007/app'>2012-07-21T09:54:25.056Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#file' 
label='application/x-vnd.oasis.opendocument.spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Document (Spreadsheet)</title><content type='application/x-vnd.oasis.opendocument.spreadsheet' 
src='https://doc-0c-4o-docs.googleusercontent.com/docs/securesc/p3gkcpm4vekih3vn1285g2jn1spuiriq/6csqua0f5836pl4dd0fo8vp7u6q5o5pp/1375178400000/04693666875216770588/04693666875216770588/0BzY2jgHHwMwYRjh3c3lDYkZtdnc?h=16653014193614665626&amp;e=download&amp;gd=true'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/file/d/0BzY2jgHHwMwYRjh3c3lDYkZtdnc/edit?usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' href='https://ssl.gs
 tatic.com/docs/doclist/images/icon_10_generic_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/file%3A0BzY2jgHHwMwYRjh3c3lDYkZtdnc'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/file%3A0BzY2jgHHwMwYRjh3c3lDYkZtdnc'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYRjh3c3lDYkZtdnc'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYRjh3c3lDYkZtdnc'/><link 
rel='edit-media' type='application/x-vnd.oasis.opendocument.spreadsheet' 
href='https://docs.google.com/feeds/default/media/file%3A0BzY2jgHHwMwYRjh3c3lDYkZtdnc'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</
 email></author><gd:resourceId>file:0BzY2jgHHwMwYRjh3c3lDYkZtdnc</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2012-07-21T09:54:24.650Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>7564</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><docs:md5Checksum>950b2710b40e5b0b91b0bc1e509f7344</docs:md5Checksum><docs:filename>Temporary 
Document (Spreadsheet)</docs:filename><docs:suggestedFilename>Temporary Document 
(Spreadsheet)</docs:suggestedFilename><docs:size>7564</docs:size><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYRjh3c3lDYkZtdnc/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYRjh3c3lDYkZtdnc/revision
 s'/></entry></feed>
+  
diff --git a/gdata/tests/traces/documents/query-all-documents-async-progress-closure 
b/gdata/tests/traces/documents/query-all-documents-async-progress-closure
new file mode 100644
index 0000000..165e8b0
--- /dev/null
+++ b/gdata/tests/traces/documents/query-all-documents-async-progress-closure
@@ -0,0 +1,28 @@
+> GET /feeds/default/private/full HTTP/1.1
+> Soup-Debug-Timestamp: 1375182808
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 117 (0x7fffe400cd60), SoupSocket 39 (0x7fffe400da60)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182809
+< Soup-Debug: SoupMessage 117 (0x7fffe400cd60)
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Expires: Tue, 30 Jul 2013 11:13:29 GMT
+< Date: Tue, 30 Jul 2013 11:13:29 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.0
+< ETag: W/"CE8ESH8-cCt7ImA9WhFWEUU."
+< Last-Modified: Tue, 30 Jul 2013 11:13:29 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:docs='http://schemas.google.com/docs/2007' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CE8ESH8-cCt7ImA9WhFWEUU.&quot;'><id>https://docs.google.com/feeds/default/private/full</id><updated>2013-07-30T11:13:29.158Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#item' 
label='item'/><title>Available Documents - libgdata documents gmail com</title><link rel='alternate' 
type='text/html' href='https://docs.google.com'/><link 
rel='http://schemas.google.com/g/2005#resumable-create-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full'/><link 
rel='http://schemas.google.com/docs/2007#alt-post' type='application/atom+xml' 
href='https://docs.google.com/feeds/up
 load/file/default/private/full'/><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://docs.google.com/feeds/default/private/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full'/><link rel='http://schemas.google.com/g/2005#batch' 
type='application/atom+xml' href='https://docs.google.com/feeds/default/private/full/batch'/><link rel='self' 
type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></author><openSearch:startIndex>1</openSearch:startIndex><entry 
gd:etag='&quot;A1RTQgRUQSt7ImBk&quot;'><id>https://docs.google.com/feeds/id/presentation%3A1YzetMlPIXBACWyc8_geSHe7XlJZA9PpFb3Rj5rXX_3E</id><published>2013-07-30T11:13:18.212Z</published><updated>2013-07-30T11:13:18.845Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07
 -30T11:13:18.882Z</app:edited><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#presentation' 
label='presentation'/><title>Temporary Presentation</title><content type='text/html' 
src='https://docs.google.com/feeds/download/presentations/Export?id=1YzetMlPIXBACWyc8_geSHe7XlJZA9PpFb3Rj5rXX_3E'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/presentation/d/1YzetMlPIXBACWyc8_geSHe7XlJZA9PpFb3Rj5rXX_3E/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/presentation/d/1YzetMlPIXBACWyc8_geSHe7XlJZA9PpFb3Rj5rXX_3E/preview'/><link 
rel='http://schemas.google.com/docs/2007#i
 con' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_presentation_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/presentation%3A1YzetMlPIXBACWyc8_geSHe7XlJZA9PpFb3Rj5rXX_3E'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/presentation%3A1YzetMlPIXBACWyc8_geSHe7XlJZA9PpFb3Rj5rXX_3E'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1YzetMlPIXBACWyc8_geSHe7XlJZA9PpFb3Rj5rXX_3E&amp;v=2&amp;s=AMedNnoAAAAAUfe7-dHES2x2MuPbexyLaOJkX_cjY2Ji&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1YzetMlPIXBACWyc8_geSHe7XlJZA9PpFb3Rj5rXX_3E'/><l
 ink rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1YzetMlPIXBACWyc8_geSHe7XlJZA9PpFb3Rj5rXX_3E'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/presentation%3A1YzetMlPIXBACWyc8_geSHe7XlJZA9PpFb3Rj5rXX_3E'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>presentation:1YzetMlPIXBACWyc8_geSHe7XlJZA9PpFb3Rj5rXX_3E</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:13:18.845Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:13:18.584Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/def
 ault/private/full/presentation%3A1YzetMlPIXBACWyc8_geSHe7XlJZA9PpFb3Rj5rXX_3E/acl'/><gd:feedLink 
rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1YzetMlPIXBACWyc8_geSHe7XlJZA9PpFb3Rj5rXX_3E/revisions'/></entry><entry
 
gd:etag='&quot;A1RTQ09YHit7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A1pNQS6DzG-rYAuWONgtFDQExJBJMSRC5gkXk-ZnDvHdk</id><published>2013-07-30T11:13:22.421Z</published><updated>2013-07-30T11:13:23.055Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:13:23.646Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label
 ='modified-by-me'/><title>Temporary Arbitrary Document</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1pNQS6DzG-rYAuWONgtFDQExJBJMSRC5gkXk-ZnDvHdk'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/1pNQS6DzG-rYAuWONgtFDQExJBJMSRC5gkXk-ZnDvHdk/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/1pNQS6DzG-rYAuWONgtFDQExJBJMSRC5gkXk-ZnDvHdk/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1pNQS6DzG-rYAuWONgtFDQExJBJMSRC5gkXk-ZnDvHdk'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xm
 l' 
href='https://docs.google.com/feeds/upload/file/default/private/full/document%3A1pNQS6DzG-rYAuWONgtFDQExJBJMSRC5gkXk-ZnDvHdk'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1pNQS6DzG-rYAuWONgtFDQExJBJMSRC5gkXk-ZnDvHdk&amp;v=1&amp;s=AMedNnoAAAAAUfe7-QgyCXyUB1fHiNQ1BroSl8NCKNLK&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1pNQS6DzG-rYAuWONgtFDQExJBJMSRC5gkXk-ZnDvHdk'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1pNQS6DzG-rYAuWONgtFDQExJBJMSRC5gkXk-ZnDvHdk'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A1pNQS6DzG-rYAuWONgtFDQExJBJMSRC5gkXk-ZnDvHdk'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></author><gd:resourceId>document:1pNQS6DzG-rYAu
 WONgtFDQExJBJMSRC5gkXk-ZnDvHdk</gd:resourceId><docs:isShareable value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:13:23.055Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:13:23.055Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A1pNQS6DzG-rYAuWONgtFDQExJBJMSRC5gkXk-ZnDvHdk/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A1pNQS6DzG-rYAuWONgtFDQExJBJMSRC5gkXk-ZnDvHdk/revisions'/></entry><entry
 
gd:etag='&quot;A1RTQ01TByt7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A1KWApwXPABXm0yDL4OuM7uJe0j3KE5ipH3C2nXJa-Jco</id><published>2013-07-30T11:1
 3:19.852Z</published><updated>2013-07-30T11:13:20.599Z</updated><app:edited 
xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:13:21.313Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary Text 
Document</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1KWApwXPABXm0yDL4OuM7uJe0j3KE5ipH3C2nXJa-Jco'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/1KWApwXPABXm0yDL4OuM7uJe0j3KE5ipH3C2nXJa-Jco/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' href='https://docs.google.com/docu
 ment/d/1KWApwXPABXm0yDL4OuM7uJe0j3KE5ipH3C2nXJa-Jco/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1KWApwXPABXm0yDL4OuM7uJe0j3KE5ipH3C2nXJa-Jco'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/document%3A1KWApwXPABXm0yDL4OuM7uJe0j3KE5ipH3C2nXJa-Jco'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1KWApwXPABXm0yDL4OuM7uJe0j3KE5ipH3C2nXJa-Jco&amp;v=1&amp;s=AMedNnoAAAAAUfe7-UTQlN0ee_ZyDPr099nKvIDlCARJ&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' href='https://docs.goog
 le.com/feeds/default/private/full/document%3A1KWApwXPABXm0yDL4OuM7uJe0j3KE5ipH3C2nXJa-Jco'/><link rel='edit' 
type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1KWApwXPABXm0yDL4OuM7uJe0j3KE5ipH3C2nXJa-Jco'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A1KWApwXPABXm0yDL4OuM7uJe0j3KE5ipH3C2nXJa-Jco'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>document:1KWApwXPABXm0yDL4OuM7uJe0j3KE5ipH3C2nXJa-Jco</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:13:20.599Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:13:20.599Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://sche
 mas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A1KWApwXPABXm0yDL4OuM7uJe0j3KE5ipH3C2nXJa-Jco/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A1KWApwXPABXm0yDL4OuM7uJe0j3KE5ipH3C2nXJa-Jco/revisions'/></entry><entry
 
gd:etag='&quot;A1RTQgUKBCt7ImBk&quot;'><id>https://docs.google.com/feeds/id/spreadsheet%3A0AjY2jgHHwMwYdENWd0Jla0lhTEdUYXZiU1Q0N3ZrVUE</id><published>2013-07-30T11:13:15.394Z</published><updated>2013-07-30T11:13:16.742Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:13:16.780Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/docs/2007#spreadsheet' label='spreadsheet'/><category 
scheme='http://schemas.google.com
 /g/2005/labels' term='http://schemas.google.com/g/2005/labels#modified-by-me' 
label='modified-by-me'/><title>Temporary Spreadsheet</title><content type='text/html' 
src='https://docs.google.com/feeds/download/spreadsheets/Export?key=0AjY2jgHHwMwYdENWd0Jla0lhTEdUYXZiU1Q0N3ZrVUE'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdENWd0Jla0lhTEdUYXZiU1Q0N3ZrVUE&amp;usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdENWd0Jla0lhTEdUYXZiU1Q0N3ZrVUE&amp;output=html&amp;chrome=false&amp;widget=true'/><link
 rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_spreadsheet_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/spreadsheet%
 3A0AjY2jgHHwMwYdENWd0Jla0lhTEdUYXZiU1Q0N3ZrVUE'/><link 
rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdENWd0Jla0lhTEdUYXZiU1Q0N3ZrVUE'/><link
 rel='http://schemas.google.com/spreadsheets/2006#worksheetsfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/worksheets/0AjY2jgHHwMwYdENWd0Jla0lhTEdUYXZiU1Q0N3ZrVUE/private/full'/><link
 rel='http://schemas.google.com/spreadsheets/2006#tablesfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/0AjY2jgHHwMwYdENWd0Jla0lhTEdUYXZiU1Q0N3ZrVUE/tables'/><link 
rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdENWd0Jla0lhTEdUYXZiU1Q0N3ZrVUE'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdENWd0Jla0lhTEdUYXZi
 U1Q0N3ZrVUE'/><link rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/spreadsheet%3A0AjY2jgHHwMwYdENWd0Jla0lhTEdUYXZiU1Q0N3ZrVUE'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>spreadsheet:0AjY2jgHHwMwYdENWd0Jla0lhTEdUYXZiU1Q0N3ZrVUE</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:13:16.742Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:13:15.394Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><docs:hasForm value='false'/><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdENWd0Jla0lhTEdUYXZiU1Q0N3ZrVUE/acl'/><gd:feedLink
 rel='http://schemas.googl
 e.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdENWd0Jla0lhTEdUYXZiU1Q0N3ZrVUE/revisions'/></entry><entry
 
gd:etag='&quot;A1cbWRtXQit7ImBk&quot;'><id>https://docs.google.com/feeds/id/spreadsheet%3A0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c</id><published>2013-07-30T10:06:47.642Z</published><updated>2013-07-30T10:06:47.875Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T10:06:48.461Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/docs/2007#spreadsheet' label='spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Document (Spreadsheet)</title><content type='text/html' src='https://docs.goog
 le.com/feeds/download/spreadsheets/Export?key=0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c'/><link 
rel='alternate' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c&amp;usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c&amp;output=html&amp;chrome=false&amp;widget=true'/><link
 rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_spreadsheet_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/fil
 e/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c'/><link 
rel='http://schemas.google.com/docs/2007/thumbnail' type='image/jpeg' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c&amp;v=1&amp;s=AMedNnoAAAAAUfe7-b6GbaZxQc3BPm9aHWcMKmWFJjgv&amp;sz=s220'/><link
 rel='http://schemas.google.com/spreadsheets/2006#worksheetsfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/worksheets/0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c/private/full'/><link
 rel='http://schemas.google.com/spreadsheets/2006#tablesfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c/tables'/><link 
rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c'/><link
 rel='edit' type='application/atom+xml' href='https://docs.google.c
 om/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c'/><link 
rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/spreadsheet%3A0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>spreadsheet:0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T10:06:47.875Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T10:06:46.869Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><docs:hasForm value='false'/><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMw
 YdHphQmpvR3VucnotdUNnLVlYVWdyV3c/acl'/><gd:feedLink rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c/revisions'/></entry><entry
 
gd:etag='&quot;A1cbTxtRESt7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E</id><published>2013-07-30T09:59:00.889Z</published><updated>2013-07-30T09:59:01.382Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:59:01.839Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Test Update file 
(/d
 ocuments/update/content-only/resumable)</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' href='https:
 
//docs.google.com/feeds/upload/file/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E&amp;v=1&amp;s=AMedNnoAAAAAUfe7-fBKo3D49VYniaBwsgW0U08DwXkA&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></author><gd:resourceId>document:1EGoc0000krgqcdzuGYoIVX_-i7HQ
 X_mNOm8_4WPrD0E</gd:resourceId><docs:isShareable value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:59:01.382Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:59:01.382Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E/revisions'/></entry><entry
 
gd:etag='&quot;A1cbTwgLGCt7ImBk&quot;'><id>https://docs.google.com/feeds/id/spreadsheet%3A0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE</id><published>2013-07-30T09:48:48.323Z</p
 ublished><updated>2013-07-30T09:48:49.156Z</updated><app:edited 
xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:59:20.604Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/docs/2007#spreadsheet' label='spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Spreadsheet</title><content type='text/html' 
src='https://docs.google.com/feeds/download/spreadsheets/Export?key=0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE&amp;usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' href='https://docs.google.com/spreads
 
heet/ccc?key=0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE&amp;output=html&amp;chrome=false&amp;widget=true'/><link
 rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_spreadsheet_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/jpeg' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE&amp;v=1&amp;s=AMedNnoAAAAAUfe7-WaVDHl6CyZJ4-DY4XTvlwUjEK3Q&amp;sz=s220'/><link
 rel='
 http://schemas.google.com/spreadsheets/2006#worksheetsfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/worksheets/0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE/private/full'/><link
 rel='http://schemas.google.com/spreadsheets/2006#tablesfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE/tables'/><link 
rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/spreadsheet%3A0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></author><gd:resourceId>spreadshee
 t:0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:48:49.156Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:48:48.323Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><docs:hasForm value='false'/><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE/revisions'/></entry><entry
 
gd:etag='&quot;A1cbQhhZQSt7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A1CIIeiZMjsxXZbFHj83wNKx0
 
BqaT_YKkGJvpNKKnpwgg</id><published>2013-07-30T09:48:51.875Z</published><updated>2013-07-30T09:48:52.935Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:48:53.718Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary Text 
Document</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' 
 type='text/html' 
href='https://docs.google.com/document/d/1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/document%3A1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg&amp;v=1&amp;s=AMedNnoAAAAAUfe7-X9csa881_4ZrElL9QiqlSCEkD0a&amp;sz=s220'/><link
 rel='self' 
 type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>document:1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:48:52.935Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:48:52.935Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCan
 Invite value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg/revisions'/></entry><entry
 
gd:etag='&quot;A1cbQh5fDSt7ImBk&quot;'><id>https://docs.google.com/feeds/id/presentation%3A1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc</id><published>2013-07-30T09:48:50.630Z</published><updated>2013-07-30T09:48:51.179Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:48:51.227Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' lab
 el='modified-by-me'/><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/docs/2007#presentation' label='presentation'/><title>Temporary 
Presentation</title><content type='text/html' 
src='https://docs.google.com/feeds/download/presentations/Export?id=1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/presentation/d/1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/presentation/d/1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_presentation_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/presen
 tation%3A1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc'/><link 
rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/presentation%3A1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc&amp;v=2&amp;s=AMedNnoAAAAAUfe7-ZKC6DJ9WlWjSYHZC5H76zokbxJ4&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/presentation%3A1rcKrBFsUPW5mO1p
 8nQc7atfwvJRfymvyhci-9hGcXXc'/><author><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></author><gd:resourceId>presentation:1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:48:51.179Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:48:50.955Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc/revisions'/></ent
 ry><entry 
gd:etag='&quot;A1cUVR5VDit7ImBk&quot;'><id>https://docs.google.com/feeds/id/spreadsheet%3A0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c</id><published>2013-07-30T09:35:37.237Z</published><updated>2013-07-30T09:35:38.389Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:35:38.434Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/docs/2007#spreadsheet' label='spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Spreadsheet</title><content type='text/html' 
src='https://docs.google.com/feeds/download/spreadsheets/Export?key=0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c'/><link
 rel='alternate' type='text/html' href='https://docs.google.com/spreadshe
 et/ccc?key=0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c&amp;usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c&amp;output=html&amp;chrome=false&amp;widget=true'/><link
 rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_spreadsheet_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c'/><link
 rel='http://schemas.google.com/spreadsheets/2006#worksheetsfeed' type='applicatio
 n/atom+xml' 
href='https://spreadsheets.google.com/feeds/worksheets/0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c/private/full'/><link
 rel='http://schemas.google.com/spreadsheets/2006#tablesfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c/tables'/><link 
rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/spreadsheet%3A0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>spreadsheet:0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c</gd:resourceId><docs:isSharea
 ble value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:35:38.389Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:35:37.237Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><docs:hasForm value='false'/><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c/revisions'/></entry><entry
 
gd:etag='&quot;A1cUVRtMByt7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ</id><published>2013-07-30T09:35:40.939Z</published><upd
 ated>2013-07-30T09:35:42.104Z</updated><app:edited 
xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:35:42.565Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary Text 
Document</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/16stR_T6vw3sjEENdm
 XnONiKj3A6jtnfWSTMw1M961TQ/preview'/><link rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/document%3A16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ&amp;v=1&amp;s=AMedNnoAAAAAUfe7-cqoem8dAdwBmaqhRdPZ0kif5xIi&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' href='https://docs.google.com/feeds/default/priv
 ate/full/document%3A16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ'/><link rel='edit' 
type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>document:16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:35:42.104Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:35:42.104Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#a
 ccessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ/revisions'/></entry><entry
 
gd:etag='&quot;A1cUVRgLGyt7ImBk&quot;'><id>https://docs.google.com/feeds/id/presentation%3A1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U</id><published>2013-07-30T09:35:39.564Z</published><updated>2013-07-30T09:35:40.141Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:35:40.185Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><category 
scheme='http://schemas.google.com/g/2005#kind
 ' term='http://schemas.google.com/docs/2007#presentation' label='presentation'/><title>Temporary 
Presentation</title><content type='text/html' 
src='https://docs.google.com/feeds/download/presentations/Export?id=1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/presentation/d/1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/presentation/d/1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_presentation_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/presentation%3A1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U'/><link
 rel='http://sc
 hemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/presentation%3A1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U&amp;v=2&amp;s=AMedNnoAAAAAUfe7-d7DQPmFHhMFzdH3hR3CeFqYc0_k&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/presentation%3A1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U'/><author><name>libgdata.documents</name><email
libgdata documents gmail 
com</email></author><gd:resourceId>presentation:1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U</gd:resourceId><docs:isShareable
value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:35:40.141Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:35:39.916Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U/acl'/><gd:feedLink
rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U/revisions'/></entry><entry
gd:etag='&quot;A1cURUhbECt7ImBk&quot;'><id>https://docs.google.com
 
/feeds/id/document%3A1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M</id><published>2013-07-30T09:23:00.901Z</published><updated>2013-07-30T09:23:01.523Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:23:02.344Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary Text 
Document</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M/edit?usp=docslist_api'/><link
 rel
 ='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/document%3A1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M&amp;v=1&amp;s=AMedNnoAAAAAUfe7-aU_TmC85tpnjJI
 jtnJttIShKY3Q&amp;sz=s220'/><link rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>document:1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:23:01.523Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:23:01.523Z</gd:lastViewed><gd:quotaBy
 tesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite value='false'/><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M/revisions'/></entry><entry
 
gd:etag='&quot;A1cURU5UHit7ImBk&quot;'><id>https://docs.google.com/feeds/id/presentation%3A1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI</id><published>2013-07-30T09:22:59.460Z</published><updated>2013-07-30T09:23:00.179Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:23:00.222Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005/labels' term='http://schemas
 .google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#presentation' 
label='presentation'/><title>Temporary Presentation</title><content type='text/html' 
src='https://docs.google.com/feeds/download/presentations/Export?id=1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/presentation/d/1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/presentation/d/1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_presentation_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/uplo
 ad/create-session/default/private/full/presentation%3A1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI'/><link 
rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/presentation%3A1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI&amp;v=2&amp;s=AMedNnoAAAAAUfe7-ep_0VgO4kvVpJJIji_9Nck0QEVm&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI'/><link
 rel='edit-media' type='text/html' href='https://docs.google.com/feeds/
 
default/media/presentation%3A1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>presentation:1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:23:00.179Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:22:59.831Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1_C-MBC8PaUj09JpN
 5EuIx8X0gEpabtZ99X7UAvCmFvI/revisions'/></entry><entry 
gd:etag='&quot;A1cURU8LBit7ImBk&quot;'><id>https://docs.google.com/feeds/id/spreadsheet%3A0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE</id><published>2013-07-30T09:22:57.202Z</published><updated>2013-07-30T09:22:58.095Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:22:58.142Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/docs/2007#spreadsheet' label='spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Spreadsheet</title><content type='text/html' 
src='https://docs.google.com/feeds/download/spreadsheets/Export?key=0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE'/><link
 rel='alternate' type='text/
 html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE&amp;usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE&amp;output=html&amp;chrome=false&amp;widget=true'/><link
 rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_spreadsheet_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE'/><link
 rel='http://schemas.google.com/sprea
 dsheets/2006#worksheetsfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/worksheets/0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE/private/full'/><link
 rel='http://schemas.google.com/spreadsheets/2006#tablesfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE/tables'/><link 
rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/spreadsheet%3A0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></author><gd:resourceId>spreadsheet:0AjY2jgHHwMwYdE5mNHhZUWtSdW5P
 SDRkS3JOODFONVE</gd:resourceId><docs:isShareable value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:22:58.095Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:22:57.202Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><docs:hasForm value='false'/><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE/revisions'/></entry><entry
 
gd:etag='&quot;A1cWWBtdGyt7ImBk&quot;'><id>https://docs.google.com/feeds/id/file%3A0BzY2jgHHwMwYVElmNWtjOExOWlk</id><published>2013-07-30T08:4
 2:01.106Z</published><updated>2013-07-30T08:42:01.106Z</updated><app:edited 
xmlns:app='http://www.w3.org/2007/app'>2013-07-30T08:42:02.757Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#file' 
label='application/x-vnd.oasis.opendocument.spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Document (Spreadsheet)</title><content type='application/x-vnd.oasis.opendocument.spreadsheet' 
src='https://doc-0g-4o-docs.googleusercontent.com/docs/securesc/p3gkcpm4vekih3vn1285g2jn1spuiriq/356jeo54n4vlgciodha7g0g352gpk9hs/1375178400000/04693666875216770588/04693666875216770588/0BzY2jgHHwMwYVElmNWtjOExOWlk?h=16653014193614665626&amp;e=download&amp;gd=true'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/file/d/0BzY2jgHHwMwYVElmNWtjOExOWlk/edit?usp=docslist_api'/><link 
rel='http://sch
 emas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/file%3A0BzY2jgHHwMwYVElmNWtjOExOWlk'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/file%3A0BzY2jgHHwMwYVElmNWtjOExOWlk'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYVElmNWtjOExOWlk'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYVElmNWtjOExOWlk'/><link 
rel='edit-media' type='application/x-vnd.oasis.opendocument.spreadsheet' 
href='https://docs.google.com/feeds/default/media/file%3A0BzY2jgHHwMwYVElmNWtjOExOWlk'/><author
<name>libgdata.documents</name><email>libgdata documents gmail 
com</email></author><gd:resourceId>file:0BzY2jgHHwMwYVElmNWtjOExOWlk</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T08:42:01.075Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>7564</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><docs:md5Checksum>950b2710b40e5b0b91b0bc1e509f7344</docs:md5Checksum><docs:filename>Temporary
Document (Spreadsheet)</docs:filename><docs:suggestedFilename>Temporary Document 
(Spreadsheet)</docs:suggestedFilename><docs:size>7564</docs:size><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYVElmNWtjOExOWlk/acl'/><gd:feedLink
rel='http://schemas.google.com/docs/2007/revisions' href='https://docs.google.com/fe
 eds/default/private/full/file%3A0BzY2jgHHwMwYVElmNWtjOExOWlk/revisions'/></entry><entry 
gd:etag='&quot;XVEKWUhPAit7ImBk&quot;'><id>https://docs.google.com/feeds/id/file%3A0BzY2jgHHwMwYY0Q5QlhIaWVUMk0</id><published>2012-07-21T09:57:43.392Z</published><updated>2012-07-21T09:57:43.392Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-07-21T09:57:43.590Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#file' 
label='application/x-vnd.oasis.opendocument.spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Document (Spreadsheet)</title><content type='application/x-vnd.oasis.opendocument.spreadsheet' 
src='https://doc-14-4o-docs.googleusercontent.com/docs/securesc/p3gkcpm4vekih3vn1285g2jn1spuiriq/07dsfisp3lub8ta1i3u2qf99d10dvp42/1375178400000/04693666875216770588/04693666875216770588/0
 BzY2jgHHwMwYY0Q5QlhIaWVUMk0?h=16653014193614665626&amp;e=download&amp;gd=true'/><link rel='alternate' 
type='text/html' 
href='https://docs.google.com/file/d/0BzY2jgHHwMwYY0Q5QlhIaWVUMk0/edit?usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/file%3A0BzY2jgHHwMwYY0Q5QlhIaWVUMk0'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/file%3A0BzY2jgHHwMwYY0Q5QlhIaWVUMk0'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYY0Q5QlhIaWVUMk0'/><link 
rel='edit' type='application/atom+xml' href='https://docs.google.com/feeds/def
 ault/private/full/file%3A0BzY2jgHHwMwYY0Q5QlhIaWVUMk0'/><link rel='edit-media' 
type='application/x-vnd.oasis.opendocument.spreadsheet' 
href='https://docs.google.com/feeds/default/media/file%3A0BzY2jgHHwMwYY0Q5QlhIaWVUMk0'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>file:0BzY2jgHHwMwYY0Q5QlhIaWVUMk0</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2012-07-21T09:57:43.378Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>7564</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><docs:md5Checksum>950b2710b40e5b0b91b0bc1e509f7344</docs:md5Checksum><docs:filename>Temporary 
Document (Spreadsheet)</docs:filename><docs:suggestedFilename>Temporary Document 
(Spreadsheet)</docs:suggestedFilename><docs:size>7564</docs:size><gd:feedLink rel='http://schemas.googl
 e.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYY0Q5QlhIaWVUMk0/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYY0Q5QlhIaWVUMk0/revisions'/></entry><entry
 
gd:etag='&quot;XVEKVkxTBit7ImBk&quot;'><id>https://docs.google.com/feeds/id/file%3A0BzY2jgHHwMwYb01zQkN4dmN1aEU</id><published>2012-07-21T09:55:17.743Z</published><updated>2012-07-21T09:55:17.743Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-07-21T09:55:18.002Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#file' 
label='application/x-vnd.oasis.opendocument.spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Document (Spreadsheet)</title><content type='applica
 tion/x-vnd.oasis.opendocument.spreadsheet' 
src='https://doc-0c-4o-docs.googleusercontent.com/docs/securesc/p3gkcpm4vekih3vn1285g2jn1spuiriq/rflbv3o031ej20mq3fsf7v8nuhjd1p6f/1375178400000/04693666875216770588/04693666875216770588/0BzY2jgHHwMwYb01zQkN4dmN1aEU?h=16653014193614665626&amp;e=download&amp;gd=true'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/file/d/0BzY2jgHHwMwYb01zQkN4dmN1aEU/edit?usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/file%3A0BzY2jgHHwMwYb01zQkN4dmN1aEU'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/file%3A0BzY2jgHHwMwYb01zQkN4dmN1
 aEU'/><link rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYb01zQkN4dmN1aEU'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYb01zQkN4dmN1aEU'/><link 
rel='edit-media' type='application/x-vnd.oasis.opendocument.spreadsheet' 
href='https://docs.google.com/feeds/default/media/file%3A0BzY2jgHHwMwYb01zQkN4dmN1aEU'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>file:0BzY2jgHHwMwYb01zQkN4dmN1aEU</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2012-07-21T09:55:17.738Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>7564</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><docs:md5Checksum>950b2710b40e5b0b91b0bc1e509f73
 44</docs:md5Checksum><docs:filename>Temporary Document 
(Spreadsheet)</docs:filename><docs:suggestedFilename>Temporary Document 
(Spreadsheet)</docs:suggestedFilename><docs:size>7564</docs:size><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYb01zQkN4dmN1aEU/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYb01zQkN4dmN1aEU/revisions'/></entry><entry
 
gd:etag='&quot;XVEKVE1THCt7ImBk&quot;'><id>https://docs.google.com/feeds/id/file%3A0BzY2jgHHwMwYclhjQTkwdzFSUDg</id><published>2012-07-21T09:53:42.779Z</published><updated>2012-07-21T09:53:42.779Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-07-21T09:53:43.388Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#file' 
label='application/x-vnd.oasis.opendocumen
 t.spreadsheet'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Document (Spreadsheet)</title><content type='application/x-vnd.oasis.opendocument.spreadsheet' 
src='https://doc-08-4o-docs.googleusercontent.com/docs/securesc/p3gkcpm4vekih3vn1285g2jn1spuiriq/a5j3fa9p14tjd93bn5v6u8sjbr97156o/1375178400000/04693666875216770588/04693666875216770588/0BzY2jgHHwMwYclhjQTkwdzFSUDg?h=16653014193614665626&amp;e=download&amp;gd=true'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/file/d/0BzY2jgHHwMwYclhjQTkwdzFSUDg/edit?usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/
 file%3A0BzY2jgHHwMwYclhjQTkwdzFSUDg'/><link rel='http://schemas.google.com/docs/2007#alt-edit-media' 
type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/file%3A0BzY2jgHHwMwYclhjQTkwdzFSUDg'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYclhjQTkwdzFSUDg'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYclhjQTkwdzFSUDg'/><link 
rel='edit-media' type='application/x-vnd.oasis.opendocument.spreadsheet' 
href='https://docs.google.com/feeds/default/media/file%3A0BzY2jgHHwMwYclhjQTkwdzFSUDg'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>file:0BzY2jgHHwMwYclhjQTkwdzFSUDg</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2012-07-21T09:53:42.753Z</docs:modifiedByMeDate><gd:lastModi
 fiedBy><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>7564</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><docs:md5Checksum>950b2710b40e5b0b91b0bc1e509f7344</docs:md5Checksum><docs:filename>Temporary 
Document (Spreadsheet)</docs:filename><docs:suggestedFilename>Temporary Document 
(Spreadsheet)</docs:suggestedFilename><docs:size>7564</docs:size><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYclhjQTkwdzFSUDg/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYclhjQTkwdzFSUDg/revisions'/></entry><entry
 
gd:etag='&quot;XVEKVApVRyt7ImBk&quot;'><id>https://docs.google.com/feeds/id/file%3A0BzY2jgHHwMwYRjh3c3lDYkZtdnc</id><published>2012-07-21T09:54:24.677Z</published><updated>2012-07-21T09:54:24.677Z</updated><app:
 edited xmlns:app='http://www.w3.org/2007/app'>2012-07-21T09:54:25.056Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#file' 
label='application/x-vnd.oasis.opendocument.spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Document (Spreadsheet)</title><content type='application/x-vnd.oasis.opendocument.spreadsheet' 
src='https://doc-0c-4o-docs.googleusercontent.com/docs/securesc/p3gkcpm4vekih3vn1285g2jn1spuiriq/6csqua0f5836pl4dd0fo8vp7u6q5o5pp/1375178400000/04693666875216770588/04693666875216770588/0BzY2jgHHwMwYRjh3c3lDYkZtdnc?h=16653014193614665626&amp;e=download&amp;gd=true'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/file/d/0BzY2jgHHwMwYRjh3c3lDYkZtdnc/edit?usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' href='https://ssl.gs
 tatic.com/docs/doclist/images/icon_10_generic_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/file%3A0BzY2jgHHwMwYRjh3c3lDYkZtdnc'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/file%3A0BzY2jgHHwMwYRjh3c3lDYkZtdnc'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYRjh3c3lDYkZtdnc'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYRjh3c3lDYkZtdnc'/><link 
rel='edit-media' type='application/x-vnd.oasis.opendocument.spreadsheet' 
href='https://docs.google.com/feeds/default/media/file%3A0BzY2jgHHwMwYRjh3c3lDYkZtdnc'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</
 email></author><gd:resourceId>file:0BzY2jgHHwMwYRjh3c3lDYkZtdnc</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2012-07-21T09:54:24.650Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>7564</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><docs:md5Checksum>950b2710b40e5b0b91b0bc1e509f7344</docs:md5Checksum><docs:filename>Temporary 
Document (Spreadsheet)</docs:filename><docs:suggestedFilename>Temporary Document 
(Spreadsheet)</docs:suggestedFilename><docs:size>7564</docs:size><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYRjh3c3lDYkZtdnc/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYRjh3c3lDYkZtdnc/revision
 s'/></entry></feed>
+  
diff --git a/gdata/tests/traces/documents/query-all-documents-with-folder 
b/gdata/tests/traces/documents/query-all-documents-with-folder
new file mode 100644
index 0000000..a6936d3
--- /dev/null
+++ b/gdata/tests/traces/documents/query-all-documents-with-folder
@@ -0,0 +1,28 @@
+> GET /feeds/default/private/full?showdeleted=false&showfolders=true HTTP/1.1
+> Soup-Debug-Timestamp: 1375182771
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 81 (0x7fffe00120d0), SoupSocket 29 (0x7fffe4003de0)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182771
+< Soup-Debug: SoupMessage 81 (0x7fffe00120d0)
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Expires: Tue, 30 Jul 2013 11:12:51 GMT
+< Date: Tue, 30 Jul 2013 11:12:51 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.0
+< ETag: W/"CEADQHg9fit7ImA9WhFWEUU."
+< Last-Modified: Tue, 30 Jul 2013 11:12:51 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' xmlns:docs='http://schemas.google.com/docs/2007' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='W/&quot;CEADQHg9fit7ImA9WhFWEUU.&quot;'><id>https://docs.google.com/feeds/default/private/full</id><updated>2013-07-30T11:12:51.666Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#item' 
label='item'/><title>Available Documents - libgdata documents gmail com</title><link rel='alternate' 
type='text/html' href='https://docs.google.com'/><link 
rel='http://schemas.google.com/g/2005#resumable-create-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full'/><link 
rel='http://schemas.google.com/docs/2007#alt-post' type='application/atom+xml' 
href='https://docs.google.com/feeds/up
 load/file/default/private/full'/><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://docs.google.com/feeds/default/private/full'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full'/><link rel='http://schemas.google.com/g/2005#batch' 
type='application/atom+xml' href='https://docs.google.com/feeds/default/private/full/batch'/><link rel='self' 
type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full?showdeleted=false&amp;showfolders=true'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></author><openSearch:startIndex>1</openSearch:startIndex><entry 
gd:etag='&quot;A1RTQkRbGit7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A1Re0VF6R8i-J4BO26giaa36oCOucblTC5j-qRgPtoJ38</id><published>2013-07-30T11:12:45.208Z</published><updated>2013-07-30T11:12:45.652Z</updated><app:edited
 xmlns:app='
 http://www.w3.org/2007/app'>2013-07-30T11:12:46.030Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Arbitrary Document</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1Re0VF6R8i-J4BO26giaa36oCOucblTC5j-qRgPtoJ38'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/1Re0VF6R8i-J4BO26giaa36oCOucblTC5j-qRgPtoJ38/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/1Re0VF6R8i-J4BO26giaa36oCOucblTC5j-qRgPtoJ38/preview'/><link 
rel='http://sc
 hemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1Re0VF6R8i-J4BO26giaa36oCOucblTC5j-qRgPtoJ38'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/document%3A1Re0VF6R8i-J4BO26giaa36oCOucblTC5j-qRgPtoJ38'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1Re0VF6R8i-J4BO26giaa36oCOucblTC5j-qRgPtoJ38&amp;v=1&amp;s=AMedNnoAAAAAUfe706-zgl0yVNFIuiwANcDq0fh0k4tF&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1Re0VF6R8i-J4BO26giaa36oCOucblTC5j-qR
 gPtoJ38'/><link rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1Re0VF6R8i-J4BO26giaa36oCOucblTC5j-qRgPtoJ38'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A1Re0VF6R8i-J4BO26giaa36oCOucblTC5j-qRgPtoJ38'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>document:1Re0VF6R8i-J4BO26giaa36oCOucblTC5j-qRgPtoJ38</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:12:45.652Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:12:45.652Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/def
 ault/private/full/document%3A1Re0VF6R8i-J4BO26giaa36oCOucblTC5j-qRgPtoJ38/acl'/><gd:feedLink 
rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A1Re0VF6R8i-J4BO26giaa36oCOucblTC5j-qRgPtoJ38/revisions'/></entry><entry
 
gd:etag='&quot;A1RTQk9PTit7ImBk&quot;'><id>https://docs.google.com/feeds/id/folder%3A0BzY2jgHHwMwYVmxPNjNRcmJzOEE</id><published>2013-07-30T11:12:37.394Z</published><updated>2013-07-30T11:12:37.394Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:12:37.665Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#folder' 
label='folder'/><title>Temporary Folder</title><content type='application/atom+xml;type=feed' 
src='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYVmxPNjNRcmJzOEE/contents'/><link
 rel='alternate' type='text/html' href='https://docs.google.com/folderview?id=0BzY2jgHHwMwYVmxPNj
 NRcmJzOEE&amp;usp=docslist_api'/><link rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_collection_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-create-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/folder%3A0BzY2jgHHwMwYVmxPNjNRcmJzOEE/contents'/><link
 rel='http://schemas.google.com/docs/2007#alt-post' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/folder%3A0BzY2jgHHwMwYVmxPNjNRcmJzOEE/contents'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYVmxPNjNRcmJzOEE'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYVmxPNjNRcmJzOEE'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></author><gd:
 resourceId>folder:0BzY2jgHHwMwYVmxPNjNRcmJzOEE</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYVmxPNjNRcmJzOEE/acl'/></entry><entry
 
gd:etag='&quot;A1RTQkpOAyt7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A1wOoVOzHrXV_mNVNazCWKHuyNP2a9xKIGUdFKyobnKrA</id><published>2013-07-30T11:12:43.252Z</published><updated>2013-07-30T11:12:43.780Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:12:44.129Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google
 .com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary Text 
Document</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1wOoVOzHrXV_mNVNazCWKHuyNP2a9xKIGUdFKyobnKrA'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/1wOoVOzHrXV_mNVNazCWKHuyNP2a9xKIGUdFKyobnKrA/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/1wOoVOzHrXV_mNVNazCWKHuyNP2a9xKIGUdFKyobnKrA/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' href='https://
 
docs.google.com/feeds/upload/create-session/default/private/full/document%3A1wOoVOzHrXV_mNVNazCWKHuyNP2a9xKIGUdFKyobnKrA'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/document%3A1wOoVOzHrXV_mNVNazCWKHuyNP2a9xKIGUdFKyobnKrA'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1wOoVOzHrXV_mNVNazCWKHuyNP2a9xKIGUdFKyobnKrA&amp;v=1&amp;s=AMedNnoAAAAAUfe709thq3RbFflwEQWXyhNDrZanTELb&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1wOoVOzHrXV_mNVNazCWKHuyNP2a9xKIGUdFKyobnKrA'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1wOoVOzHrXV_mNVNazCWKHuyNP2a9xKIGUdFKyobnKrA'/><link
 rel='edit-media' type='text/html' href='https://docs.google.
 
com/feeds/default/media/document%3A1wOoVOzHrXV_mNVNazCWKHuyNP2a9xKIGUdFKyobnKrA'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>document:1wOoVOzHrXV_mNVNazCWKHuyNP2a9xKIGUdFKyobnKrA</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:12:43.780Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:12:43.780Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A1wOoVOzHrXV_mNVNazCWKHuyNP2a9xKIGUdFKyobnKrA/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A1wOoVOzHrXV_mNVNazCWKHu
 yNP2a9xKIGUdFKyobnKrA/revisions'/></entry><entry 
gd:etag='&quot;A1RTQktcACt7ImBk&quot;'><id>https://docs.google.com/feeds/id/presentation%3A1yY02jtzZYQ57aMNjAyuIbFGL04EoyoHjFoYS9Zov7cM</id><published>2013-07-30T11:12:41.659Z</published><updated>2013-07-30T11:12:42.295Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:12:42.332Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#presentation' 
label='presentation'/><title>Temporary Presentation</title><content type='text/html' 
src='https://docs.google.com/feeds/download/presentations/Export?id=1yY02jtzZYQ57aMNjAyuIbFGL04EoyoHjFoYS9Zov7cM'/><link
 rel='alternate' type='text/ht
 ml' 
href='https://docs.google.com/presentation/d/1yY02jtzZYQ57aMNjAyuIbFGL04EoyoHjFoYS9Zov7cM/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/presentation/d/1yY02jtzZYQ57aMNjAyuIbFGL04EoyoHjFoYS9Zov7cM/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_presentation_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/presentation%3A1yY02jtzZYQ57aMNjAyuIbFGL04EoyoHjFoYS9Zov7cM'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/presentation%3A1yY02jtzZYQ57aMNjAyuIbFGL04EoyoHjFoYS9Zov7cM'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' href='https://do
 
cs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1yY02jtzZYQ57aMNjAyuIbFGL04EoyoHjFoYS9Zov7cM&amp;v=2&amp;s=AMedNnoAAAAAUfe702ezFSX9uR_5JpmoNj1mXVVnm3Ik&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1yY02jtzZYQ57aMNjAyuIbFGL04EoyoHjFoYS9Zov7cM'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1yY02jtzZYQ57aMNjAyuIbFGL04EoyoHjFoYS9Zov7cM'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/presentation%3A1yY02jtzZYQ57aMNjAyuIbFGL04EoyoHjFoYS9Zov7cM'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>presentation:1yY02jtzZYQ57aMNjAyuIbFGL04EoyoHjFoYS9Zov7cM</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:12:42.295Z</docs:modifiedByMeDate><gd:lastModifiedBy><
 name>libgdata.documents</name><email>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:12:42.057Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1yY02jtzZYQ57aMNjAyuIbFGL04EoyoHjFoYS9Zov7cM/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1yY02jtzZYQ57aMNjAyuIbFGL04EoyoHjFoYS9Zov7cM/revisions'/></entry><entry
 
gd:etag='&quot;A1RTQklPGit7ImBk&quot;'><id>https://docs.google.com/feeds/id/spreadsheet%3A0AjY2jgHHwMwYdGhoNGxvSmZvVFpuWkVTdVhpY25ySnc</id><published>2013-07-30T11:12:39.176Z</published><updated>2013-07-30T11:12:40.240Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:12:40.270Z</app:edited><category 
scheme='http://schemas.google.co
 m/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#spreadsheet' 
label='spreadsheet'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Spreadsheet</title><content type='text/html' 
src='https://docs.google.com/feeds/download/spreadsheets/Export?key=0AjY2jgHHwMwYdGhoNGxvSmZvVFpuWkVTdVhpY25ySnc'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdGhoNGxvSmZvVFpuWkVTdVhpY25ySnc&amp;usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdGhoNGxvSmZvVFpuWkVTdVhpY25ySnc&amp;output=html&amp;chrome=false&amp;widget=true'/><link
 rel='http://schemas.google.com/docs/2007#icon' type='image/png' hre
 f='https://ssl.gstatic.com/docs/doclist/images/icon_11_spreadsheet_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGhoNGxvSmZvVFpuWkVTdVhpY25ySnc'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGhoNGxvSmZvVFpuWkVTdVhpY25ySnc'/><link
 rel='http://schemas.google.com/spreadsheets/2006#worksheetsfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/worksheets/0AjY2jgHHwMwYdGhoNGxvSmZvVFpuWkVTdVhpY25ySnc/private/full'/><link
 rel='http://schemas.google.com/spreadsheets/2006#tablesfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/0AjY2jgHHwMwYdGhoNGxvSmZvVFpuWkVTdVhpY25ySnc/tables'/><link 
rel='self' type='application/atom+xml' href
 
='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGhoNGxvSmZvVFpuWkVTdVhpY25ySnc'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGhoNGxvSmZvVFpuWkVTdVhpY25ySnc'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/spreadsheet%3A0AjY2jgHHwMwYdGhoNGxvSmZvVFpuWkVTdVhpY25ySnc'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>spreadsheet:0AjY2jgHHwMwYdGhoNGxvSmZvVFpuWkVTdVhpY25ySnc</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:12:40.240Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:12:39.176Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'
 /><docs:hasForm value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGhoNGxvSmZvVFpuWkVTdVhpY25ySnc/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGhoNGxvSmZvVFpuWkVTdVhpY25ySnc/revisions'/></entry><entry
 
gd:etag='&quot;A1caEk0LESt7ImBk&quot;'><id>https://docs.google.com/feeds/id/folder%3A0BzY2jgHHwMwYM0wzOFRscnNpTGs</id><published>2013-07-30T10:09:34.674Z</published><updated>2013-07-30T10:09:34.674Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T10:09:34.899Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#folder' 
label='folder'/><title>add_file_folder_move_folder</title><content type='application/atom+xml;type=feed' 
src='https://docs.google.com/feeds/default/priva
 te/full/folder%3A0BzY2jgHHwMwYM0wzOFRscnNpTGs/contents'/><link rel='alternate' type='text/html' 
href='https://docs.google.com/folderview?id=0BzY2jgHHwMwYM0wzOFRscnNpTGs&amp;usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_collection_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-create-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/folder%3A0BzY2jgHHwMwYM0wzOFRscnNpTGs/contents'/><link
 rel='http://schemas.google.com/docs/2007#alt-post' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/folder%3A0BzY2jgHHwMwYM0wzOFRscnNpTGs/contents'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYM0wzOFRscnNpTGs'/><link 
rel='edit' type='application/atom+xml' href='https://docs.google.com/fee
 
ds/default/private/full/folder%3A0BzY2jgHHwMwYM0wzOFRscnNpTGs'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>folder:0BzY2jgHHwMwYM0wzOFRscnNpTGs</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYM0wzOFRscnNpTGs/acl'/></entry><entry
 
gd:etag='&quot;A1cbWRtXQit7ImBk&quot;'><id>https://docs.google.com/feeds/id/spreadsheet%3A0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c</id><published>2013-07-30T10:06:47.642Z</published><updated>2013-07-30T10:06:47.875Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T10:06:48.461Z</app:edited><cat
 egory scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/docs/2007#spreadsheet' label='spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Document (Spreadsheet)</title><content type='text/html' 
src='https://docs.google.com/feeds/download/spreadsheets/Export?key=0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c&amp;usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c&amp;output=html&amp;chrome=false&amp;widget=true'/><link
 rel='http://schema
 s.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_spreadsheet_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/jpeg' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c&amp;v=1&amp;s=AMedNnoAAAAAUfe709gZphTOq6qh6rSu_y0zpZdrtHDb&amp;sz=s220'/><link
 rel='http://schemas.google.com/spreadsheets/2006#worksheetsfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/w
 orksheets/0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c/private/full'/><link 
rel='http://schemas.google.com/spreadsheets/2006#tablesfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c/tables'/><link 
rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/spreadsheet%3A0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>spreadsheet:0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe value='true'/><do
 
cs:modifiedByMeDate>2013-07-30T10:06:47.875Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T10:06:46.869Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><docs:hasForm value='false'/><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdHphQmpvR3VucnotdUNnLVlYVWdyV3c/revisions'/></entry><entry
 
gd:etag='&quot;A1cbVRNMTit7ImBk&quot;'><id>https://docs.google.com/feeds/id/folder%3A0BzY2jgHHwMwYMW9nSWxoOUlhcDg</id><published>2013-07-30T10:03:52.370Z</published><updated>2013-07-30T10:03:52.370Z</updated><app:edited
 xmlns:app='http://www.w3
 .org/2007/app'>2013-07-30T10:03:52.533Z</app:edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/docs/2007#folder' 
label='folder'/><title>add_file_folder_move_folder</title><content type='application/atom+xml;type=feed' 
src='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYMW9nSWxoOUlhcDg/contents'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/folderview?id=0BzY2jgHHwMwYMW9nSWxoOUlhcDg&amp;usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_collection_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-create-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/folder%3A0BzY2jgHHwMwYMW9nSWxoOUlhcDg/contents'/><link
 rel='http://schemas.google.com/docs/2007#alt-post' type='application/atom+xml' href='https://docs.google.
 com/feeds/upload/file/default/private/full/folder%3A0BzY2jgHHwMwYMW9nSWxoOUlhcDg/contents'/><link rel='self' 
type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYMW9nSWxoOUlhcDg'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYMW9nSWxoOUlhcDg'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>folder:0BzY2jgHHwMwYMW9nSWxoOUlhcDg</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYMW9nSWxoOUlhcDg/acl'/></entry><entry
 gd:etag='
 
&quot;A1cbTxtRESt7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E</id><published>2013-07-30T09:59:00.889Z</published><updated>2013-07-30T09:59:01.382Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:59:01.839Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Test Update file 
(/documents/update/content-only/resumable)</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><link
 rel='alternate' type='text/html' href='https://docs.google.
 com/document/d/1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E/edit?usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;
 
id=1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E&amp;v=1&amp;s=AMedNnoAAAAAUfe701uWpVSBra2a7B7xeNl4WQByWAWz&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>document:1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:59:01.382Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail com<
 
/email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:59:01.382Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E/revisions'/></entry><entry
 
gd:etag='&quot;A1cbTwgLGCt7ImBk&quot;'><id>https://docs.google.com/feeds/id/spreadsheet%3A0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE</id><published>2013-07-30T09:48:48.323Z</published><updated>2013-07-30T09:48:49.156Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:59:20.604Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' lab
 el='viewed'/><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/docs/2007#spreadsheet' label='spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Spreadsheet</title><content type='text/html' 
src='https://docs.google.com/feeds/download/spreadsheets/Export?key=0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE&amp;usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE&amp;output=html&amp;chrome=false&amp;widget=true'/><link
 rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_spreadsheet_list.pn
 g'/><link rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/jpeg' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE&amp;v=1&amp;s=AMedNnoAAAAAUfe703_BDu6BwPj_zh5Oe6O0xG4OrFX8&amp;sz=s220'/><link
 rel='http://schemas.google.com/spreadsheets/2006#worksheetsfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/worksheets/0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE/private/full'/><link
 rel='http://schemas.google.com/spreadsheets/200
 6#tablesfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE/tables'/><link 
rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/spreadsheet%3A0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>spreadsheet:0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:48:49.156Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><emai
 l>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:48:48.323Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><docs:hasForm value='false'/><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGFwXzl5UVRIN0xpd0ZoSkFtZjQyelE/revisions'/></entry><entry
 
gd:etag='&quot;A1cbQhhZQSt7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg</id><published>2013-07-30T09:48:51.875Z</published><updated>2013-07-30T09:48:52.935Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:48:53.718Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#ki
 nd' term='http://schemas.google.com/docs/2007#document' label='document'/><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary Text 
Document</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.p
 ng'/><link rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/document%3A1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg&amp;v=1&amp;s=AMedNnoAAAAAUfe700CC7Z0OZ38MRW8XGUMPI52cEF4w&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg'/><link
 rel='edit' type='application/atom+xml' href='https://docs.google.com/feeds/default/private/full/document%3A
 1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg'/><link rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>document:1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:48:52.935Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:48:52.935Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg/acl'/><gd:feedLink
 rel='http://schemas.google.com
 /docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A1CIIeiZMjsxXZbFHj83wNKx0BqaT_YKkGJvpNKKnpwgg/revisions'/></entry><entry
 
gd:etag='&quot;A1cbQkQPFSt7ImBk&quot;'><id>https://docs.google.com/feeds/id/folder%3A0BzY2jgHHwMwYYU9yQVJvaDVDejA</id><published>2013-07-30T09:48:46.773Z</published><updated>2013-07-30T09:48:46.773Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:48:46.991Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#folder' 
label='folder'/><title>Temporary Folder</title><content type='application/atom+xml;type=feed' 
src='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYYU9yQVJvaDVDejA/contents'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/folderview?id=0BzY2jgHHwMwYYU9yQVJvaDVDejA&amp;usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' href='https://ssl.gs
 tatic.com/docs/doclist/images/icon_11_collection_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-create-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/folder%3A0BzY2jgHHwMwYYU9yQVJvaDVDejA/contents'/><link
 rel='http://schemas.google.com/docs/2007#alt-post' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/folder%3A0BzY2jgHHwMwYYU9yQVJvaDVDejA/contents'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYYU9yQVJvaDVDejA'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYYU9yQVJvaDVDejA'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>folder:0BzY2jgHHwMwYYU9yQVJvaDVDejA</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe value='
 true'/><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYYU9yQVJvaDVDejA/acl'/></entry><entry
 
gd:etag='&quot;A1cbQh5fDSt7ImBk&quot;'><id>https://docs.google.com/feeds/id/presentation%3A1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc</id><published>2013-07-30T09:48:50.630Z</published><updated>2013-07-30T09:48:51.179Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:48:51.227Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><category s
 cheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#presentation' 
label='presentation'/><title>Temporary Presentation</title><content type='text/html' 
src='https://docs.google.com/feeds/download/presentations/Export?id=1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/presentation/d/1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/presentation/d/1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_presentation_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/presentation%3A1rcKrBFsUPW5mO1p8nQc7at
 fwvJRfymvyhci-9hGcXXc'/><link rel='http://schemas.google.com/docs/2007#alt-edit-media' 
type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/presentation%3A1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc&amp;v=2&amp;s=AMedNnoAAAAAUfe701XrINFtDtN_zHR0ZRezmE1Zxau0&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/presentation%3A1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc'/><
 author><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></author><gd:resourceId>presentation:1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:48:51.179Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:48:50.955Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1rcKrBFsUPW5mO1p8nQc7atfwvJRfymvyhci-9hGcXXc/revisions'/></entry><entry
 gd:etag='&quot;A1cUVR8
 
OTyt7ImBk&quot;'><id>https://docs.google.com/feeds/id/folder%3A0BzY2jgHHwMwYQklrU2RRS1N1SE0</id><published>2013-07-30T09:35:36.168Z</published><updated>2013-07-30T09:35:36.168Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:35:36.392Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#folder' 
label='folder'/><title>Temporary Folder</title><content type='application/atom+xml;type=feed' 
src='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYQklrU2RRS1N1SE0/contents'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/folderview?id=0BzY2jgHHwMwYQklrU2RRS1N1SE0&amp;usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_collection_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-create-media' type='application/atom+xml' 
href='https://docs.google.co
 m/feeds/upload/create-session/default/private/full/folder%3A0BzY2jgHHwMwYQklrU2RRS1N1SE0/contents'/><link 
rel='http://schemas.google.com/docs/2007#alt-post' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/folder%3A0BzY2jgHHwMwYQklrU2RRS1N1SE0/contents'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYQklrU2RRS1N1SE0'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYQklrU2RRS1N1SE0'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>folder:0BzY2jgHHwMwYQklrU2RRS1N1SE0</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite v
 alue='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYQklrU2RRS1N1SE0/acl'/></entry><entry
 
gd:etag='&quot;A1cUVR5VDit7ImBk&quot;'><id>https://docs.google.com/feeds/id/spreadsheet%3A0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c</id><published>2013-07-30T09:35:37.237Z</published><updated>2013-07-30T09:35:38.389Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:35:38.434Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/docs/2007#spreadsheet' label='spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Spreadsheet</title><content type='text/html' s
 
rc='https://docs.google.com/feeds/download/spreadsheets/Export?key=0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c&amp;usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c&amp;output=html&amp;chrome=false&amp;widget=true'/><link
 rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_spreadsheet_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google
 
.com/feeds/upload/file/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c'/><link
 rel='http://schemas.google.com/spreadsheets/2006#worksheetsfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/worksheets/0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c/private/full'/><link
 rel='http://schemas.google.com/spreadsheets/2006#tablesfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c/tables'/><link 
rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/spreadsheet%3A0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c'/>
 <author><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></author><gd:resourceId>spreadsheet:0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:35:38.389Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:35:37.237Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><docs:hasForm value='false'/><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5sUXpMSlJkeHRxMXpndnVTRjJBR3c/revisions'/></entry><e
 ntry 
gd:etag='&quot;A1cUVRtMByt7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ</id><published>2013-07-30T09:35:40.939Z</published><updated>2013-07-30T09:35:42.104Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:35:42.565Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary Text 
Document</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ'/><link
 rel='alternate' type='text/html' href='https://docs.google.com/document/d/16stR_T
 6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ/edit?usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/document%3A16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=16stR_T6vw3sjEENdmX
 nONiKj3A6jtnfWSTMw1M961TQ&amp;v=1&amp;s=AMedNnoAAAAAUfe7000kIOEcgO4yjVmjhAAxiamn-FZ9&amp;sz=s220'/><link 
rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>document:16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:35:42.104Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></gd:lastModifi
 
edBy><gd:lastViewed>2013-07-30T09:35:42.104Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A16stR_T6vw3sjEENdmXnONiKj3A6jtnfWSTMw1M961TQ/revisions'/></entry><entry
 
gd:etag='&quot;A1cUVRgLGyt7ImBk&quot;'><id>https://docs.google.com/feeds/id/presentation%3A1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U</id><published>2013-07-30T09:35:39.564Z</published><updated>2013-07-30T09:35:40.141Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:35:40.185Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><categor
 y scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#presentation' 
label='presentation'/><title>Temporary Presentation</title><content type='text/html' 
src='https://docs.google.com/feeds/download/presentations/Export?id=1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/presentation/d/1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/presentation/d/1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_presentation_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-medi
 a' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/presentation%3A1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/presentation%3A1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U&amp;v=2&amp;s=AMedNnoAAAAAUfe70wKMXfhr9Hec2IHqDrv-6amoWzLU&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U'/><link
  rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/presentation%3A1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>presentation:1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:35:40.141Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:35:39.916Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' href='https://docs
 
.google.com/feeds/default/private/full/presentation%3A1wZB2RWuUP_Afuay-QSMdmnYVUa7o9rYQ1gceo7DTE2U/revisions'/></entry><entry
 
gd:etag='&quot;A1cURUhbECt7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M</id><published>2013-07-30T09:23:00.901Z</published><updated>2013-07-30T09:23:01.523Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:23:02.344Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary Text 
Document</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1H8S-qvvvlc5a
 RuU7bKOWdEGitjnPnYDt-TtAn2sd77M'/><link rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/document%3A1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M'/><link
 rel='http://schemas.google.com/docs/
 2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M&amp;v=1&amp;s=AMedNnoAAAAAUfe702wI9EINsqZMAoaWCX6-tUVxVotH&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>document:1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe value='true'/><docs:modifiedByMeDate>2013-07-30T09:23:01.523Z</docs:modi
 fiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:23:01.523Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A1H8S-qvvvlc5aRuU7bKOWdEGitjnPnYDt-TtAn2sd77M/revisions'/></entry><entry
 
gd:etag='&quot;A1cURU5UHit7ImBk&quot;'><id>https://docs.google.com/feeds/id/presentation%3A1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI</id><published>2013-07-30T09:22:59.460Z</published><updated>2013-07-30T09:23:00.179Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:23:00.222Z</app:edited><category scheme
 ='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#presentation' 
label='presentation'/><title>Temporary Presentation</title><content type='text/html' 
src='https://docs.google.com/feeds/download/presentations/Export?id=1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/presentation/d/1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/presentation/d/1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' href='https://ssl.gstati
 c.com/docs/doclist/images/icon_11_presentation_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/presentation%3A1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/presentation%3A1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI&amp;v=2&amp;s=AMedNnoAAAAAUfe7077Rnopk1ICCwupW79F1nFUTQ_sJ&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI'/><link
 rel='edit' type='application/atom+xml' hre
 
f='https://docs.google.com/feeds/default/private/full/presentation%3A1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/presentation%3A1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>presentation:1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:23:00.179Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:22:59.831Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1_C-MBC8PaUj0
 9JpN5EuIx8X0gEpabtZ99X7UAvCmFvI/acl'/><gd:feedLink rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1_C-MBC8PaUj09JpN5EuIx8X0gEpabtZ99X7UAvCmFvI/revisions'/></entry><entry
 
gd:etag='&quot;A1cURU1XRCt7ImBk&quot;'><id>https://docs.google.com/feeds/id/folder%3A0BzY2jgHHwMwYUHpVb2pIODJuejg</id><published>2013-07-30T09:22:55.611Z</published><updated>2013-07-30T09:22:55.611Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:22:56.283Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#folder' 
label='folder'/><title>Temporary Folder</title><content type='application/atom+xml;type=feed' 
src='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYUHpVb2pIODJuejg/contents'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/folderview?id=0BzY2jgHHwMwYUHpVb2pIODJuejg&amp;usp=docslist_api'/><link
  rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_collection_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-create-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/folder%3A0BzY2jgHHwMwYUHpVb2pIODJuejg/contents'/><link
 rel='http://schemas.google.com/docs/2007#alt-post' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/folder%3A0BzY2jgHHwMwYUHpVb2pIODJuejg/contents'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYUHpVb2pIODJuejg'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYUHpVb2pIODJuejg'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></author><gd:resourceId>folder:0BzY2jgHHwMwYUHpVb2p
 IODJuejg</gd:resourceId><docs:isShareable value='true'/><docs:isShareableByMe 
value='true'/><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYUHpVb2pIODJuejg/acl'/></entry><entry
 
gd:etag='&quot;A1cURU8LBit7ImBk&quot;'><id>https://docs.google.com/feeds/id/spreadsheet%3A0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE</id><published>2013-07-30T09:22:57.202Z</published><updated>2013-07-30T09:22:58.095Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:22:58.142Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005#kind' term='http://sc
 hemas.google.com/docs/2007#spreadsheet' label='spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Spreadsheet</title><content type='text/html' 
src='https://docs.google.com/feeds/download/spreadsheets/Export?key=0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE&amp;usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE&amp;output=html&amp;chrome=false&amp;widget=true'/><link
 rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_spreadsheet_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='applicati
 on/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE'/><link
 rel='http://schemas.google.com/spreadsheets/2006#worksheetsfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/worksheets/0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE/private/full'/><link
 rel='http://schemas.google.com/spreadsheets/2006#tablesfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE/tables'/><link 
rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE'/><link
 rel='edit' type='application/atom+xml' 
 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/spreadsheet%3A0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>spreadsheet:0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:22:58.095Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:22:57.202Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><docs:hasForm value='false'/><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full
 /spreadsheet%3A0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE/acl'/><gd:feedLink 
rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdE5mNHhZUWtSdW5PSDRkS3JOODFONVE/revisions'/></entry><entry
 
gd:etag='&quot;A1cUERFOBCt7ImBk&quot;'><id>https://docs.google.com/feeds/id/folder%3A0BzY2jgHHwMwYOHFXNWhWaEotR00</id><published>2013-07-30T09:13:17.024Z</published><updated>2013-07-30T09:13:17.024Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:13:17.248Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#folder' 
label='folder'/><title>Temporary Folder for Uploading Documents</title><content 
type='application/atom+xml;type=feed' 
src='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYOHFXNWhWaEotR00/contents'/><link
 rel='alternate' type='text/html' href='https://docs.google.com/folderview?id=0BzY2j
 gHHwMwYOHFXNWhWaEotR00&amp;usp=docslist_api'/><link rel='http://schemas.google.com/docs/2007#icon' 
type='image/png' href='https://ssl.gstatic.com/docs/doclist/images/icon_11_collection_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-create-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/folder%3A0BzY2jgHHwMwYOHFXNWhWaEotR00/contents'/><link
 rel='http://schemas.google.com/docs/2007#alt-post' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/folder%3A0BzY2jgHHwMwYOHFXNWhWaEotR00/contents'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYOHFXNWhWaEotR00'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYOHFXNWhWaEotR00'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</email>
 </author><gd:resourceId>folder:0BzY2jgHHwMwYOHFXNWhWaEotR00</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYOHFXNWhWaEotR00/acl'/></entry><entry
 
gd:etag='&quot;A1cWWBtdGyt7ImBk&quot;'><id>https://docs.google.com/feeds/id/file%3A0BzY2jgHHwMwYVElmNWtjOExOWlk</id><published>2013-07-30T08:42:01.106Z</published><updated>2013-07-30T08:42:01.106Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T08:42:02.757Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#file' 
label='application/x-vnd.oasis.opendocument.spreadsheet'/><category 
 scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Document (Spreadsheet)</title><content type='application/x-vnd.oasis.opendocument.spreadsheet' 
src='https://doc-0g-4o-docs.googleusercontent.com/docs/securesc/p3gkcpm4vekih3vn1285g2jn1spuiriq/356jeo54n4vlgciodha7g0g352gpk9hs/1375178400000/04693666875216770588/04693666875216770588/0BzY2jgHHwMwYVElmNWtjOExOWlk?h=16653014193614665626&amp;e=download&amp;gd=true'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/file/d/0BzY2jgHHwMwYVElmNWtjOExOWlk/edit?usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/file%3A0BzY2jgHHwMwYVElmNW
 tjOExOWlk'/><link rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/file%3A0BzY2jgHHwMwYVElmNWtjOExOWlk'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYVElmNWtjOExOWlk'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYVElmNWtjOExOWlk'/><link 
rel='edit-media' type='application/x-vnd.oasis.opendocument.spreadsheet' 
href='https://docs.google.com/feeds/default/media/file%3A0BzY2jgHHwMwYVElmNWtjOExOWlk'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>file:0BzY2jgHHwMwYVElmNWtjOExOWlk</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T08:42:01.075Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.docu
 ments</name><email>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>7564</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><docs:md5Checksum>950b2710b40e5b0b91b0bc1e509f7344</docs:md5Checksum><docs:filename>Temporary 
Document (Spreadsheet)</docs:filename><docs:suggestedFilename>Temporary Document 
(Spreadsheet)</docs:suggestedFilename><docs:size>7564</docs:size><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYVElmNWtjOExOWlk/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYVElmNWtjOExOWlk/revisions'/></entry><entry
 
gd:etag='&quot;Cx4WRRNQQit7ImBk&quot;'><id>https://docs.google.com/feeds/id/folder%3A0BzY2jgHHwMwYLUN6bEJQdW00Yzg</id><published>2012-12-28T04:49:56.553Z</published><updated>2012-12-28T04:49:56.553Z</updated><app:edited
 xmlns:app='http:/
 /www.w3.org/2007/app'>2012-12-28T04:49:56.897Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#folder' 
label='folder'/><title>Temporary Folder for Uploading Documents</title><content 
type='application/atom+xml;type=feed' 
src='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYLUN6bEJQdW00Yzg/contents'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/folderview?id=0BzY2jgHHwMwYLUN6bEJQdW00Yzg&amp;usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_collection_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-create-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/folder%3A0BzY2jgHHwMwYLUN6bEJQdW00Yzg/contents'/><link
 rel='http://schemas.google.com/docs/2007#alt-post' type='application/atom+xml' href='
 
https://docs.google.com/feeds/upload/file/default/private/full/folder%3A0BzY2jgHHwMwYLUN6bEJQdW00Yzg/contents'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYLUN6bEJQdW00Yzg'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYLUN6bEJQdW00Yzg'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>folder:0BzY2jgHHwMwYLUN6bEJQdW00Yzg</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYLUN6bEJQdW00Yzg/acl'/></en
 try><entry 
gd:etag='&quot;Cx4WRAlTEyt7ImBk&quot;'><id>https://docs.google.com/feeds/id/folder%3A0BzY2jgHHwMwYWlZLN3JQNU1la00</id><published>2012-12-28T04:49:17.699Z</published><updated>2012-12-28T04:49:17.699Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-12-28T04:49:17.989Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#folder' 
label='folder'/><title>Temporary Folder for Uploading Documents</title><content 
type='application/atom+xml;type=feed' 
src='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYWlZLN3JQNU1la00/contents'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/folderview?id=0BzY2jgHHwMwYWlZLN3JQNU1la00&amp;usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_collection_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-create-media'
  type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/folder%3A0BzY2jgHHwMwYWlZLN3JQNU1la00/contents'/><link
 rel='http://schemas.google.com/docs/2007#alt-post' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/folder%3A0BzY2jgHHwMwYWlZLN3JQNU1la00/contents'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYWlZLN3JQNU1la00'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYWlZLN3JQNU1la00'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>folder:0BzY2jgHHwMwYWlZLN3JQNU1la00</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:quo
 taBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite value='false'/><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYWlZLN3JQNU1la00/acl'/></entry><entry
 
gd:etag='&quot;UEkKUARJTit7ImBk&quot;'><id>https://docs.google.com/feeds/id/folder%3A0BzY2jgHHwMwYbS1vMnJRaGw1X1U</id><published>2012-11-18T18:47:42.156Z</published><updated>2012-11-18T18:47:42.156Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-11-18T18:47:43.449Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#folder' 
label='folder'/><title>Temporary Folder for Uploading Documents</title><content 
type='application/atom+xml;type=feed' 
src='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYbS1vMnJRaGw1X1U/contents'/><link
 rel='alternate' type='text/html' href='https://docs.google.com/folderview?id=0BzY2jgHHwMwYbS1vMnJR
 aGw1X1U&amp;usp=docslist_api'/><link rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_collection_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-create-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/folder%3A0BzY2jgHHwMwYbS1vMnJRaGw1X1U/contents'/><link
 rel='http://schemas.google.com/docs/2007#alt-post' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/folder%3A0BzY2jgHHwMwYbS1vMnJRaGw1X1U/contents'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYbS1vMnJRaGw1X1U'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYbS1vMnJRaGw1X1U'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></author><gd:re
 sourceId>folder:0BzY2jgHHwMwYbS1vMnJRaGw1X1U</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYbS1vMnJRaGw1X1U/acl'/></entry><entry
 
gd:etag='&quot;UEkKUElXDit7ImBk&quot;'><id>https://docs.google.com/feeds/id/folder%3A0BzY2jgHHwMwYMFl6a2lkd2JBQWM</id><published>2012-11-18T18:47:04.076Z</published><updated>2012-11-18T18:47:04.076Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-11-18T18:47:04.378Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#folder' 
label='folder'/><title>Temporary Folder for Uploading Documents</title><content
  type='application/atom+xml;type=feed' 
src='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYMFl6a2lkd2JBQWM/contents'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/folderview?id=0BzY2jgHHwMwYMFl6a2lkd2JBQWM&amp;usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_collection_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-create-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/folder%3A0BzY2jgHHwMwYMFl6a2lkd2JBQWM/contents'/><link
 rel='http://schemas.google.com/docs/2007#alt-post' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/folder%3A0BzY2jgHHwMwYMFl6a2lkd2JBQWM/contents'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYMFl6a2lkd
 2JBQWM'/><link rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYMFl6a2lkd2JBQWM'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>folder:0BzY2jgHHwMwYMFl6a2lkd2JBQWM</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYMFl6a2lkd2JBQWM/acl'/></entry><entry
 
gd:etag='&quot;UBcSEwtCBCt7ImBk&quot;'><id>https://docs.google.com/feeds/id/folder%3A0BzY2jgHHwMwYMzh5UGRSODJoSG8</id><published>2012-11-02T19:55:47.414Z</published><updated>2012-11-02T19:55:47.414Z</updated><app:edited
 xmlns:app='htt
 p://www.w3.org/2007/app'>2012-11-02T19:55:48.208Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#folder' 
label='folder'/><title>Temporary Folder</title><content type='application/atom+xml;type=feed' 
src='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYMzh5UGRSODJoSG8/contents'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/folderview?id=0BzY2jgHHwMwYMzh5UGRSODJoSG8&amp;usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_collection_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-create-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/folder%3A0BzY2jgHHwMwYMzh5UGRSODJoSG8/contents'/><link
 rel='http://schemas.google.com/docs/2007#alt-post' type='application/atom+xml' href='https://docs.google.c
 om/feeds/upload/file/default/private/full/folder%3A0BzY2jgHHwMwYMzh5UGRSODJoSG8/contents'/><link rel='self' 
type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYMzh5UGRSODJoSG8'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYMzh5UGRSODJoSG8'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>folder:0BzY2jgHHwMwYMzh5UGRSODJoSG8</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYMzh5UGRSODJoSG8/acl'/></entry><entry
 gd:etag='&
 
quot;XlYaFxEDTyt7ImBk&quot;'><id>https://docs.google.com/feeds/id/folder%3A0BzY2jgHHwMwYbTVDZXFqNkRrWkE</id><published>2012-09-30T09:29:41.313Z</published><updated>2012-09-30T09:29:41.313Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-09-30T09:29:41.468Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#folder' 
label='folder'/><title>Temporary Folder for Uploading Documents</title><content 
type='application/atom+xml;type=feed' 
src='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYbTVDZXFqNkRrWkE/contents'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/folderview?id=0BzY2jgHHwMwYbTVDZXFqNkRrWkE&amp;usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_collection_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-create-media' type='application/at
 om+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/folder%3A0BzY2jgHHwMwYbTVDZXFqNkRrWkE/contents'/><link
 rel='http://schemas.google.com/docs/2007#alt-post' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/folder%3A0BzY2jgHHwMwYbTVDZXFqNkRrWkE/contents'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYbTVDZXFqNkRrWkE'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYbTVDZXFqNkRrWkE'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>folder:0BzY2jgHHwMwYbTVDZXFqNkRrWkE</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>0</gd:quo
 taBytesUsed><docs:writersCanInvite value='false'/><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYbTVDZXFqNkRrWkE/acl'/></entry><entry
 
gd:etag='&quot;XxJQFAlSHyt7ImBk&quot;'><id>https://docs.google.com/feeds/id/folder%3A0BzY2jgHHwMwYXzhOekgyUzNJRW8</id><published>2012-08-20T21:36:51.779Z</published><updated>2012-08-20T21:36:51.779Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-08-20T21:36:52.037Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#folder' 
label='folder'/><title>Temporary Folder for Uploading Documents</title><content 
type='application/atom+xml;type=feed' 
src='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYXzhOekgyUzNJRW8/contents'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/folderview?id=0BzY2jgHHwMwYXzhOekgyUzNJRW8&amp;usp=docsl
 ist_api'/><link rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_collection_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-create-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/folder%3A0BzY2jgHHwMwYXzhOekgyUzNJRW8/contents'/><link
 rel='http://schemas.google.com/docs/2007#alt-post' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/folder%3A0BzY2jgHHwMwYXzhOekgyUzNJRW8/contents'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYXzhOekgyUzNJRW8'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYXzhOekgyUzNJRW8'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></author><gd:resourceId>folder:0BzY2
 jgHHwMwYXzhOekgyUzNJRW8</gd:resourceId><docs:isShareable value='true'/><docs:isShareableByMe 
value='true'/><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYXzhOekgyUzNJRW8/acl'/></entry><entry
 
gd:etag='&quot;XVEJEQRAGyt7ImBk&quot;'><id>https://docs.google.com/feeds/id/folder%3A0BzY2jgHHwMwYU1drSDNaUE8yVlk</id><published>2012-07-21T10:00:41.095Z</published><updated>2012-07-21T10:00:41.095Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-07-21T10:00:41.313Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#folder' 
label='folder'/><title>Temporary Folder</title><content type='application/atom+xml;type=feed' src='h
 ttps://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYU1drSDNaUE8yVlk/contents'/><link 
rel='alternate' type='text/html' 
href='https://docs.google.com/folderview?id=0BzY2jgHHwMwYU1drSDNaUE8yVlk&amp;usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_collection_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-create-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/folder%3A0BzY2jgHHwMwYU1drSDNaUE8yVlk/contents'/><link
 rel='http://schemas.google.com/docs/2007#alt-post' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/folder%3A0BzY2jgHHwMwYU1drSDNaUE8yVlk/contents'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYU1drSDNaUE8yVlk'/><link 
rel='edit' type='application/a
 tom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYU1drSDNaUE8yVlk'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>folder:0BzY2jgHHwMwYU1drSDNaUE8yVlk</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYU1drSDNaUE8yVlk/acl'/></entry><entry
 
gd:etag='&quot;XVEKWUhPAit7ImBk&quot;'><id>https://docs.google.com/feeds/id/file%3A0BzY2jgHHwMwYY0Q5QlhIaWVUMk0</id><published>2012-07-21T09:57:43.392Z</published><updated>2012-07-21T09:57:43.392Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-07-21T09:57:43.59
 0Z</app:edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/docs/2007#file' 
label='application/x-vnd.oasis.opendocument.spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Document (Spreadsheet)</title><content type='application/x-vnd.oasis.opendocument.spreadsheet' 
src='https://doc-14-4o-docs.googleusercontent.com/docs/securesc/p3gkcpm4vekih3vn1285g2jn1spuiriq/07dsfisp3lub8ta1i3u2qf99d10dvp42/1375178400000/04693666875216770588/04693666875216770588/0BzY2jgHHwMwYY0Q5QlhIaWVUMk0?h=16653014193614665626&amp;e=download&amp;gd=true'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/file/d/0BzY2jgHHwMwYY0Q5QlhIaWVUMk0/edit?usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png'/><link rel='
 http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/file%3A0BzY2jgHHwMwYY0Q5QlhIaWVUMk0'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/file%3A0BzY2jgHHwMwYY0Q5QlhIaWVUMk0'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYY0Q5QlhIaWVUMk0'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYY0Q5QlhIaWVUMk0'/><link 
rel='edit-media' type='application/x-vnd.oasis.opendocument.spreadsheet' 
href='https://docs.google.com/feeds/default/media/file%3A0BzY2jgHHwMwYY0Q5QlhIaWVUMk0'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></author><gd:resourceId>file:0BzY2jgHHwMwYY0Q5QlhIaWVUMk0</gd:
 resourceId><docs:isShareable value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2012-07-21T09:57:43.378Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>7564</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><docs:md5Checksum>950b2710b40e5b0b91b0bc1e509f7344</docs:md5Checksum><docs:filename>Temporary 
Document (Spreadsheet)</docs:filename><docs:suggestedFilename>Temporary Document 
(Spreadsheet)</docs:suggestedFilename><docs:size>7564</docs:size><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYY0Q5QlhIaWVUMk0/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYY0Q5QlhIaWVUMk0/revisions'/></entry><entry
 gd:etag='&quot;XVEKVkxTBit7ImBk&quot;'><id>https:
 
//docs.google.com/feeds/id/file%3A0BzY2jgHHwMwYb01zQkN4dmN1aEU</id><published>2012-07-21T09:55:17.743Z</published><updated>2012-07-21T09:55:17.743Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-07-21T09:55:18.002Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#file' 
label='application/x-vnd.oasis.opendocument.spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Document (Spreadsheet)</title><content type='application/x-vnd.oasis.opendocument.spreadsheet' 
src='https://doc-0c-4o-docs.googleusercontent.com/docs/securesc/p3gkcpm4vekih3vn1285g2jn1spuiriq/rflbv3o031ej20mq3fsf7v8nuhjd1p6f/1375178400000/04693666875216770588/04693666875216770588/0BzY2jgHHwMwYb01zQkN4dmN1aEU?h=16653014193614665626&amp;e=download&amp;gd=true'/><link
 rel='alternate' type='text/html' href='https://docs
 .google.com/file/d/0BzY2jgHHwMwYb01zQkN4dmN1aEU/edit?usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/file%3A0BzY2jgHHwMwYb01zQkN4dmN1aEU'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/file%3A0BzY2jgHHwMwYb01zQkN4dmN1aEU'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYb01zQkN4dmN1aEU'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYb01zQkN4dmN1aEU'/><link 
rel='edit-media' type='application/x-vnd.oasis.opendocument.spreadsheet' hr
 
ef='https://docs.google.com/feeds/default/media/file%3A0BzY2jgHHwMwYb01zQkN4dmN1aEU'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>file:0BzY2jgHHwMwYb01zQkN4dmN1aEU</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2012-07-21T09:55:17.738Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>7564</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><docs:md5Checksum>950b2710b40e5b0b91b0bc1e509f7344</docs:md5Checksum><docs:filename>Temporary 
Document (Spreadsheet)</docs:filename><docs:suggestedFilename>Temporary Document 
(Spreadsheet)</docs:suggestedFilename><docs:size>7564</docs:size><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYb01zQkN4dmN1aEU/acl'/><gd:
 feedLink rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYb01zQkN4dmN1aEU/revisions'/></entry><entry
 
gd:etag='&quot;XVEKVE1THCt7ImBk&quot;'><id>https://docs.google.com/feeds/id/file%3A0BzY2jgHHwMwYclhjQTkwdzFSUDg</id><published>2012-07-21T09:53:42.779Z</published><updated>2012-07-21T09:53:42.779Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-07-21T09:53:43.388Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#file' 
label='application/x-vnd.oasis.opendocument.spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Document (Spreadsheet)</title><content type='application/x-vnd.oasis.opendocument.spreadsheet' 
src='https://doc-08-4o-docs.googleusercontent.com/docs/securesc/p3gkcpm4vekih3vn1285g2jn1spuir
 
iq/a5j3fa9p14tjd93bn5v6u8sjbr97156o/1375178400000/04693666875216770588/04693666875216770588/0BzY2jgHHwMwYclhjQTkwdzFSUDg?h=16653014193614665626&amp;e=download&amp;gd=true'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/file/d/0BzY2jgHHwMwYclhjQTkwdzFSUDg/edit?usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/file%3A0BzY2jgHHwMwYclhjQTkwdzFSUDg'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/file%3A0BzY2jgHHwMwYclhjQTkwdzFSUDg'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYclhjQTkwd
 zFSUDg'/><link rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYclhjQTkwdzFSUDg'/><link 
rel='edit-media' type='application/x-vnd.oasis.opendocument.spreadsheet' 
href='https://docs.google.com/feeds/default/media/file%3A0BzY2jgHHwMwYclhjQTkwdzFSUDg'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>file:0BzY2jgHHwMwYclhjQTkwdzFSUDg</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2012-07-21T09:53:42.753Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>7564</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><docs:md5Checksum>950b2710b40e5b0b91b0bc1e509f7344</docs:md5Checksum><docs:filename>Temporary 
Document (Spreadsheet)</docs:filename><docs:suggestedFilename>Temporary Document (Spreadshe
 et)</docs:suggestedFilename><docs:size>7564</docs:size><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYclhjQTkwdzFSUDg/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYclhjQTkwdzFSUDg/revisions'/></entry><entry
 
gd:etag='&quot;XVEKVApVRyt7ImBk&quot;'><id>https://docs.google.com/feeds/id/file%3A0BzY2jgHHwMwYRjh3c3lDYkZtdnc</id><published>2012-07-21T09:54:24.677Z</published><updated>2012-07-21T09:54:24.677Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2012-07-21T09:54:25.056Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#file' 
label='application/x-vnd.oasis.opendocument.spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' 
 label='modified-by-me'/><title>Temporary Document (Spreadsheet)</title><content 
type='application/x-vnd.oasis.opendocument.spreadsheet' 
src='https://doc-0c-4o-docs.googleusercontent.com/docs/securesc/p3gkcpm4vekih3vn1285g2jn1spuiriq/6csqua0f5836pl4dd0fo8vp7u6q5o5pp/1375178400000/04693666875216770588/04693666875216770588/0BzY2jgHHwMwYRjh3c3lDYkZtdnc?h=16653014193614665626&amp;e=download&amp;gd=true'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/file/d/0BzY2jgHHwMwYRjh3c3lDYkZtdnc/edit?usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/file%3A0BzY2jgHHwMwYRjh3c3lDYkZtdnc'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' href='ht
 tps://docs.google.com/feeds/upload/file/default/private/full/file%3A0BzY2jgHHwMwYRjh3c3lDYkZtdnc'/><link 
rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYRjh3c3lDYkZtdnc'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYRjh3c3lDYkZtdnc'/><link 
rel='edit-media' type='application/x-vnd.oasis.opendocument.spreadsheet' 
href='https://docs.google.com/feeds/default/media/file%3A0BzY2jgHHwMwYRjh3c3lDYkZtdnc'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>file:0BzY2jgHHwMwYRjh3c3lDYkZtdnc</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2012-07-21T09:54:24.650Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></gd:lastModifiedBy><gd:quotaBytesUsed>7564</gd:quotaByt
 esUsed><docs:writersCanInvite 
value='false'/><docs:md5Checksum>950b2710b40e5b0b91b0bc1e509f7344</docs:md5Checksum><docs:filename>Temporary 
Document (Spreadsheet)</docs:filename><docs:suggestedFilename>Temporary Document 
(Spreadsheet)</docs:suggestedFilename><docs:size>7564</docs:size><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYRjh3c3lDYkZtdnc/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYRjh3c3lDYkZtdnc/revisions'/></entry></feed>
+  
diff --git a/gdata/tests/traces/documents/setup-batch-async b/gdata/tests/traces/documents/setup-batch-async
new file mode 100644
index 0000000..cd9c6af
--- /dev/null
+++ b/gdata/tests/traces/documents/setup-batch-async
@@ -0,0 +1,33 @@
+> POST /feeds/default/private/full?convert=true HTTP/1.1
+> Soup-Debug-Timestamp: 1375182838
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 153 (0x7fffe0012760), SoupSocket 49 (0x7fffe4003c60)
+> Host: docs.google.com
+> X-Upload-Content-Length: 0
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:gd='http://schemas.google.com/g/2005'><title 
type='text'>A View from the Bridge</title><category term='http://schemas.google.com/docs/2007#document' 
scheme='http://schemas.google.com/g/2005#kind'/><docs:writersCanInvite value='false'/></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375182839
+< Soup-Debug: SoupMessage 153 (0x7fffe0012760)
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Tue, 30 Jul 2013 11:14:00 GMT
+< Date: Tue, 30 Jul 2013 11:14:00 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.0
+< ETag: "A1RTQwhTRyt7ImBk"
+< Location: 
https://docs.google.com/feeds/default/private/full/document%3A1hqrVr3TuOqc0r3R3J14xF7hz1_t-HJx9CuXW0VSs-QI
+< Content-Location: 
https://docs.google.com/feeds/default/private/full/document%3A1hqrVr3TuOqc0r3R3J14xF7hz1_t-HJx9CuXW0VSs-QI
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;A1RTQwhTRyt7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A1hqrVr3TuOqc0r3R3J14xF7hz1_t-HJx9CuXW0VSs-QI</id><published>2013-07-30T11:13:59.330Z</published><updated>2013-07-30T11:14:00.129Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:14:00.168Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>A View from the 
Bridge</title><content 
 type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1hqrVr3TuOqc0r3R3J14xF7hz1_t-HJx9CuXW0VSs-QI'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/1hqrVr3TuOqc0r3R3J14xF7hz1_t-HJx9CuXW0VSs-QI/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/1hqrVr3TuOqc0r3R3J14xF7hz1_t-HJx9CuXW0VSs-QI/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1hqrVr3TuOqc0r3R3J14xF7hz1_t-HJx9CuXW0VSs-QI'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full
 /document%3A1hqrVr3TuOqc0r3R3J14xF7hz1_t-HJx9CuXW0VSs-QI'/><link rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1hqrVr3TuOqc0r3R3J14xF7hz1_t-HJx9CuXW0VSs-QI'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1hqrVr3TuOqc0r3R3J14xF7hz1_t-HJx9CuXW0VSs-QI'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A1hqrVr3TuOqc0r3R3J14xF7hz1_t-HJx9CuXW0VSs-QI'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>document:1hqrVr3TuOqc0r3R3J14xF7hz1_t-HJx9CuXW0VSs-QI</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:14:00.129Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:13:59.
 687Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A1hqrVr3TuOqc0r3R3J14xF7hz1_t-HJx9CuXW0VSs-QI/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A1hqrVr3TuOqc0r3R3J14xF7hz1_t-HJx9CuXW0VSs-QI/revisions'/></entry>
+  
diff --git a/gdata/tests/traces/documents/setup-copy-document 
b/gdata/tests/traces/documents/setup-copy-document
new file mode 100644
index 0000000..e69de29
diff --git a/gdata/tests/traces/documents/setup-folders b/gdata/tests/traces/documents/setup-folders
new file mode 100644
index 0000000..b06d5d6
--- /dev/null
+++ b/gdata/tests/traces/documents/setup-folders
@@ -0,0 +1,45 @@
+> POST /feeds/default/private/full?convert=true HTTP/1.1
+> Soup-Debug-Timestamp: 1375178631
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 149 (0x7fffe0036670), SoupSocket 47 (0x7fffe400d3d0)
+> Host: docs.google.com
+> X-Upload-Content-Length: 0
+> Authorization: GoogleLogin 
auth=DQAAANAAAACJHT4RbPh4bT1QVmtYgqQpJe5l_9ZlfNabdeG4scm0V2Dlp89coYLUUup6t5bSHWiR2KBsmsJ-pJqmbxrRJGV_xoWV4IDFs1eTGYwfoL4xl3_XFn-q1Ip_5Rz5V2HJYjbQF_Dx3MpeDhADWZ8qGZkKhb_gwc5_PX8LaIV935UOa2BTRDr4XKZRDmluFsOZK4UxkhFt9VkWTU1heTmj1RgGPAQjvqMYUh7LP3P1PI61_cO5acs5pFl10o7pXrALL1LDmeKHVSuuDLTfepgUd0dX
+> GData-Version: 3
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:gd='http://schemas.google.com/g/2005'><title 
type='text'>add_file_folder_move_folder</title><category term='http://schemas.google.com/docs/2007#folder' 
scheme='http://schemas.google.com/g/2005#kind'/><docs:writersCanInvite value='false'/></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375178632
+< Soup-Debug: SoupMessage 149 (0x7fffe0036670)
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Tue, 30 Jul 2013 10:03:52 GMT
+< Date: Tue, 30 Jul 2013 10:03:52 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.0
+< ETag: "A1cbVRNMTit7ImBk"
+< Location: https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYMW9nSWxoOUlhcDg
+< Content-Location: https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYMW9nSWxoOUlhcDg
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;A1cbVRNMTit7ImBk&quot;'><id>https://docs.google.com/feeds/id/folder%3A0BzY2jgHHwMwYMW9nSWxoOUlhcDg</id><published>2013-07-30T10:03:52.370Z</published><updated>2013-07-30T10:03:52.370Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T10:03:52.533Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#folder' 
label='folder'/><title>add_file_folder_move_folder</title><content type='application/atom+xml;type=feed' 
src='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYMW9nSWxoOUlhcDg/contents'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/folderview?id=0BzY2jgHHwMwYMW9nSWxoOUlhcDg&amp;usp=docslist_api'/><link rel='ht
 tp://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_collection_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-create-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/folder%3A0BzY2jgHHwMwYMW9nSWxoOUlhcDg/contents'/><link
 rel='http://schemas.google.com/docs/2007#alt-post' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/folder%3A0BzY2jgHHwMwYMW9nSWxoOUlhcDg/contents'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYMW9nSWxoOUlhcDg'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYMW9nSWxoOUlhcDg'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></author><gd:resourceId>folder:0BzY2jgHHwMwYMW9nSWxoOUlhcDg
 </gd:resourceId><docs:isShareable value='true'/><docs:isShareableByMe 
value='true'/><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYMW9nSWxoOUlhcDg/acl'/></entry>
+  
+> POST /feeds/default/private/full HTTP/1.1
+> Soup-Debug-Timestamp: 1375178632
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 150 (0x77f4a0), SoupSocket 48 (0x7fffe40038a0)
+> Host: docs.google.com
+> Slug: test.odt
+> Transfer-Encoding: chunked
+> Content-Type: multipart/related; boundary=0003Z5W789deadbeefRTE456KlemsnoZV
+> Authorization: GoogleLogin 
auth=DQAAANAAAACJHT4RbPh4bT1QVmtYgqQpJe5l_9ZlfNabdeG4scm0V2Dlp89coYLUUup6t5bSHWiR2KBsmsJ-pJqmbxrRJGV_xoWV4IDFs1eTGYwfoL4xl3_XFn-q1Ip_5Rz5V2HJYjbQF_Dx3MpeDhADWZ8qGZkKhb_gwc5_PX8LaIV935UOa2BTRDr4XKZRDmluFsOZK4UxkhFt9VkWTU1heTmj1RgGPAQjvqMYUh7LP3P1PI61_cO5acs5pFl10o7pXrALL1LDmeKHVSuuDLTfepgUd0dX
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
diff --git a/gdata/tests/traces/documents/setup-temp-document-spreadsheet 
b/gdata/tests/traces/documents/setup-temp-document-spreadsheet
new file mode 100644
index 0000000..6666668
--- /dev/null
+++ b/gdata/tests/traces/documents/setup-temp-document-spreadsheet
@@ -0,0 +1,80 @@
+> POST /feeds/upload/create-session/default/private/full?convert=true HTTP/1.1
+> Soup-Debug-Timestamp: 1375182729
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 50 (0x77f280), SoupSocket 18 (0x7fffe400dbe0)
+> Host: docs.google.com
+> Slug: test.ods
+> X-Upload-Content-Type: application/x-vnd.oasis.opendocument.spreadsheet
+> X-Upload-Content-Length: 7564
+> Content-Type: application/atom+xml; charset=UTF-8
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182729
+< Soup-Debug: SoupMessage 50 (0x77f280)
+< Location: 
https://docs.google.com/feeds/upload/create-session/default/private/full?convert=true&upload_id=AEnB2Ur70-Y6uOIDNqXEYuPQdNzucRa8IcTppnRnCEuyI2UjvH8spe2lHtPz2qpqQtQdaBy8NWfT5OaEn_49yPeSnPmTzblYjw
+< Date: Tue, 30 Jul 2013 11:12:09 GMT
+< Server: HTTP Upload Server Built on Jul 21 2013 19:20:38 (1374459638)
+< Content-Length: 0
+< Content-Type: text/html; charset=UTF-8
+< 
+  
+> PUT 
/feeds/upload/create-session/default/private/full?convert=true&upload_id=AEnB2Ur70-Y6uOIDNqXEYuPQdNzucRa8IcTppnRnCEuyI2UjvH8spe2lHtPz2qpqQtQdaBy8NWfT5OaEn_49yPeSnPmTzblYjw
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375182729
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 51 (0x7fffe400c9a0), SoupSocket 18 (0x7fffe400dbe0)
+> Host: docs.google.com
+> Content-Type: application/x-vnd.oasis.opendocument.spreadsheet
+> Content-Length: 7564
+> Content-Range: bytes 0-7563/7564
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375182730
+< Soup-Debug: SoupMessage 51 (0x7fffe400c9a0)
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Tue, 30 Jul 2013 11:12:11 GMT
+< Date: Tue, 30 Jul 2013 11:12:11 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.0
+< ETag: "A1RTQRReDSt7ImBk"
+< Location: 
https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c
+< Content-Location: 
https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c
+< Content-Length: 3773
+< Server: HTTP Upload Server Built on Jul 21 2013 19:20:38 (1374459638)
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;A1RTQRReDSt7ImBk&quot;'><id>https://docs.google.com/feeds/id/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c</id><published>2013-07-30T11:12:10.389Z</published><updated>2013-07-30T11:12:10.389Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:12:11.159Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/docs/2007#spreadsheet' label='spreadsheet'/><title>Temporary Document 
(Spreadsheet)</title><content type='text/html' 
src='https://docs.google.com/feeds/download/spreadsheets/Export?key=0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1
 T3c'/><link rel='alternate' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c&amp;usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c&amp;output=html&amp;chrome=false&amp;widget=true'/><link
 rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_spreadsheet_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c'/><li
 nk rel='http://schemas.google.com/spreadsheets/2006#worksheetsfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/worksheets/0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c/private/full'/><link
 rel='http://schemas.google.com/spreadsheets/2006#tablesfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c/tables'/><link 
rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></author><gd:resourceId>sp
 readsheet:0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:12:10.389Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><docs:hasForm value='false'/><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c/revisions'/></entry>
+  
+> GET /feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c HTTP/1.1
+> Soup-Debug-Timestamp: 1375182735
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 52 (0x77f730), SoupSocket 18 (0x7fffe400dbe0)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182736
+< Soup-Debug: SoupMessage 52 (0x77f730)
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Tue, 30 Jul 2013 11:12:16 GMT
+< Date: Tue, 30 Jul 2013 11:12:16 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.0
+< ETag: "A1RTQRReDSt7ImBk"
+< Last-Modified: Tue, 30 Jul 2013 11:12:11 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;A1RTQRReDSt7ImBk&quot;'><id>https://docs.google.com/feeds/id/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c</id><published>2013-07-30T11:12:10.389Z</published><updated>2013-07-30T11:12:10.389Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:12:11.159Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/docs/2007#spreadsheet' label='spreadsheet'/><title>Temporary Document 
(Spreadsheet)</title><content type='text/html' 
src='https://docs.google.com/feeds/download/spreadsheets/Export?key=0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1
 T3c'/><link rel='alternate' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c&amp;usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c&amp;output=html&amp;chrome=false&amp;widget=true'/><link
 rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_spreadsheet_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c'/><li
 nk rel='http://schemas.google.com/spreadsheets/2006#worksheetsfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/worksheets/0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c/private/full'/><link
 rel='http://schemas.google.com/spreadsheets/2006#tablesfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c/tables'/><link 
rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></author><gd:resourceId>sp
 readsheet:0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:12:10.389Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><docs:hasForm value='false'/><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c/revisions'/></entry>
+  
diff --git a/gdata/tests/traces/documents/setup-temp-documents 
b/gdata/tests/traces/documents/setup-temp-documents
new file mode 100644
index 0000000..ce6caca
--- /dev/null
+++ b/gdata/tests/traces/documents/setup-temp-documents
@@ -0,0 +1,179 @@
+> POST /feeds/default/private/full?convert=true HTTP/1.1
+> Soup-Debug-Timestamp: 1375182813
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 129 (0x77f370), SoupSocket 41 (0x7fffe400dd60)
+> Host: docs.google.com
+> X-Upload-Content-Length: 0
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:gd='http://schemas.google.com/g/2005'><title 
type='text'>Temporary Spreadsheet</title><category term='http://schemas.google.com/docs/2007#spreadsheet' 
scheme='http://schemas.google.com/g/2005#kind'/><docs:writersCanInvite value='false'/></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375182815
+< Soup-Debug: SoupMessage 129 (0x77f370)
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Tue, 30 Jul 2013 11:13:35 GMT
+< Date: Tue, 30 Jul 2013 11:13:35 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.0
+< ETag: "A1RTQx9QHSt7ImBk"
+< Location: 
https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE
+< Content-Location: 
https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;A1RTQx9QHSt7ImBk&quot;'><id>https://docs.google.com/feeds/id/spreadsheet%3A0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE</id><published>2013-07-30T11:13:34.842Z</published><updated>2013-07-30T11:13:35.568Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:13:35.599Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/docs/2007#spreadsheet' label='spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Spreadsheet</title><
 content type='text/html' 
src='https://docs.google.com/feeds/download/spreadsheets/Export?key=0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE&amp;usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE&amp;output=html&amp;chrome=false&amp;widget=true'/><link
 rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_spreadsheet_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml'
  
href='https://docs.google.com/feeds/upload/file/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE'/><link
 rel='http://schemas.google.com/spreadsheets/2006#worksheetsfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/worksheets/0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE/private/full'/><link
 rel='http://schemas.google.com/spreadsheets/2006#tablesfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE/tables'/><link 
rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/spreadsheet%3A0AjY2jgHHwMwYdEtJUDAy
 QWlQNEdBaTlZZlhPZ3dWaFE'/><author><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></author><gd:resourceId>spreadsheet:0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:13:35.568Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:13:34.842Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><docs:hasForm value='false'/><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dW
 aFE/revisions'/></entry>
+  
+> POST /feeds/default/private/full?convert=true HTTP/1.1
+> Soup-Debug-Timestamp: 1375182815
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 130 (0x77f190), SoupSocket 42 (0x945a30)
+> Host: docs.google.com
+> X-Upload-Content-Length: 0
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:gd='http://schemas.google.com/g/2005'><title 
type='text'>Temporary Presentation</title><category term='http://schemas.google.com/docs/2007#presentation' 
scheme='http://schemas.google.com/g/2005#kind'/><docs:writersCanInvite value='false'/></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375182817
+< Soup-Debug: SoupMessage 130 (0x77f190)
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Tue, 30 Jul 2013 11:13:38 GMT
+< Date: Tue, 30 Jul 2013 11:13:38 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.0
+< ETag: "A1RTQxlYGit7ImBk"
+< Location: 
https://docs.google.com/feeds/default/private/full/presentation%3A1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q
+< Content-Location: 
https://docs.google.com/feeds/default/private/full/presentation%3A1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;A1RTQxlYGit7ImBk&quot;'><id>https://docs.google.com/feeds/id/presentation%3A1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q</id><published>2013-07-30T11:13:36.855Z</published><updated>2013-07-30T11:13:37.701Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:13:37.906Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#presentation' 
label='presentation'/><title>Temporary Presentation</tit
 le><content type='text/html' 
src='https://docs.google.com/feeds/download/presentations/Export?id=1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/presentation/d/1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/presentation/d/1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_presentation_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/presentation%3A1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/
 file/default/private/full/presentation%3A1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q'/><link 
rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q&amp;v=2&amp;s=AMedNnoAAAAAUfe8AgU9V50tQeRCHRQ-MzoCYllkOCt9&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/presentation%3A1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></author><gd:resourceId>presentation:1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WE
 xj9Q</gd:resourceId><docs:isShareable value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:13:37.701Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:13:37.187Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q/revisions'/></entry>
+  
+> POST /feeds/default/private/full?convert=true HTTP/1.1
+> Soup-Debug-Timestamp: 1375182817
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 131 (0x77f0a0), SoupSocket 43 (0x7fffe400dca0)
+> Host: docs.google.com
+> X-Upload-Content-Length: 0
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:gd='http://schemas.google.com/g/2005'><title 
type='text'>Temporary Text Document</title><category term='http://schemas.google.com/docs/2007#document' 
scheme='http://schemas.google.com/g/2005#kind'/><docs:writersCanInvite value='false'/></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375182819
+< Soup-Debug: SoupMessage 131 (0x77f0a0)
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Tue, 30 Jul 2013 11:13:39 GMT
+< Date: Tue, 30 Jul 2013 11:13:39 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.0
+< ETag: "A1RTQxhQFit7ImBk"
+< Location: 
https://docs.google.com/feeds/default/private/full/document%3A1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c
+< Content-Location: 
https://docs.google.com/feeds/default/private/full/document%3A1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;A1RTQxhQFit7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c</id><published>2013-07-30T11:13:38.803Z</published><updated>2013-07-30T11:13:39.449Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:13:39.478Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary Text 
Document</title><content
  type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/ful
 l/document%3A1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c'/><link rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>document:1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:13:39.449Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:13:39
 .035Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c/revisions'/></entry>
+  
+> POST /feeds/upload/create-session/default/private/full?convert=true HTTP/1.1
+> Soup-Debug-Timestamp: 1375182819
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 132 (0x7fffe400c9a0), SoupSocket 44 (0x7fffe400dfa0)
+> Host: docs.google.com
+> Slug: test.odt
+> X-Upload-Content-Type: application/vnd.oasis.opendocument.text
+> X-Upload-Content-Length: 8033
+> Content-Type: application/atom+xml; charset=UTF-8
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182819
+< Soup-Debug: SoupMessage 132 (0x7fffe400c9a0)
+< Location: 
https://docs.google.com/feeds/upload/create-session/default/private/full?convert=true&upload_id=AEnB2UpODS75yoSLYffIQ6L3hfCWlGpXwHbXQMtFtdUeOOqixWaOGeQuKGluEghO6KqtuUrG7NM-sa2krUXkRJlMIjMXulLeHg
+< Date: Tue, 30 Jul 2013 11:13:40 GMT
+< Server: HTTP Upload Server Built on Jul 21 2013 19:20:38 (1374459638)
+< Content-Length: 0
+< Content-Type: text/html; charset=UTF-8
+< 
+  
+> PUT 
/feeds/upload/create-session/default/private/full?convert=true&upload_id=AEnB2UpODS75yoSLYffIQ6L3hfCWlGpXwHbXQMtFtdUeOOqixWaOGeQuKGluEghO6KqtuUrG7NM-sa2krUXkRJlMIjMXulLeHg
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375182819
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 133 (0x77f460), SoupSocket 44 (0x7fffe400dfa0)
+> Host: docs.google.com
+> Content-Type: application/vnd.oasis.opendocument.text
+> Content-Length: 8033
+> Content-Range: bytes 0-8032/8033
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375182821
+< Soup-Debug: SoupMessage 133 (0x77f460)
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Tue, 30 Jul 2013 11:13:41 GMT
+< Date: Tue, 30 Jul 2013 11:13:41 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.0
+< ETag: "A1RTQxoLTyt7ImBk"
+< Location: 
https://docs.google.com/feeds/default/private/full/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4
+< Content-Location: 
https://docs.google.com/feeds/default/private/full/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4
+< Content-Length: 3458
+< Server: HTTP Upload Server Built on Jul 21 2013 19:20:38 (1374459638)
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;A1RTQxoLTyt7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4</id><published>2013-07-30T11:13:40.735Z</published><updated>2013-07-30T11:13:40.735Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:13:41.420Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Arbitrary Document</title><co
 ntent type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/privat
 e/full/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4'/><link rel='self' 
type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>document:160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:13:40.735Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:
 13:40.996Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4/revisions'/></entry>
+  
+> GET /feeds/default/private/full/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4 HTTP/1.1
+> Soup-Debug-Timestamp: 1375182826
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 134 (0x77f190), SoupSocket 44 (0x7fffe400dfa0)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182826
+< Soup-Debug: SoupMessage 134 (0x77f190)
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Tue, 30 Jul 2013 11:13:46 GMT
+< Date: Tue, 30 Jul 2013 11:13:46 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.0
+< ETag: "A1RTQxoMDSt7ImBk"
+< Last-Modified: Tue, 30 Jul 2013 11:13:41 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;A1RTQxoMDSt7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4</id><published>2013-07-30T11:13:40.735Z</published><updated>2013-07-30T11:13:41.203Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:13:41.627Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Arbitrary Document</title><co
 ntent type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/privat
 e/full/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4'/><link 
rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4&amp;v=1&amp;s=AMedNnoAAAAAUfe8CrPWbFL2PRei3-3f7R4tCgsMPcqO&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>document:160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4</gd:resourceId><docs:isShareable
 v
 alue='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:13:41.203Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:13:41.203Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4/revisions'/></entry>
+  
diff --git a/gdata/tests/traces/documents/setup-temp-folder b/gdata/tests/traces/documents/setup-temp-folder
new file mode 100644
index 0000000..e9bb1a5
--- /dev/null
+++ b/gdata/tests/traces/documents/setup-temp-folder
@@ -0,0 +1,33 @@
+> POST /feeds/default/private/full?convert=true HTTP/1.1
+> Soup-Debug-Timestamp: 1375182812
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 128 (0x7fffe0012760), SoupSocket 40 (0x7fffe400dd60)
+> Host: docs.google.com
+> X-Upload-Content-Length: 0
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:gd='http://schemas.google.com/g/2005'><title 
type='text'>Temporary Folder</title><category term='http://schemas.google.com/docs/2007#folder' 
scheme='http://schemas.google.com/g/2005#kind'/><docs:writersCanInvite value='false'/></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375182813
+< Soup-Debug: SoupMessage 128 (0x7fffe0012760)
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Tue, 30 Jul 2013 11:13:33 GMT
+< Date: Tue, 30 Jul 2013 11:13:33 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.0
+< ETag: "A1RTQxwIByt7ImBk"
+< Location: https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYSlFyaTBPTE9IRkU
+< Content-Location: https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYSlFyaTBPTE9IRkU
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;A1RTQxwIByt7ImBk&quot;'><id>https://docs.google.com/feeds/id/folder%3A0BzY2jgHHwMwYSlFyaTBPTE9IRkU</id><published>2013-07-30T11:13:33.498Z</published><updated>2013-07-30T11:13:33.498Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:13:33.697Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#folder' 
label='folder'/><title>Temporary Folder</title><content type='application/atom+xml;type=feed' 
src='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYSlFyaTBPTE9IRkU/contents'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/folderview?id=0BzY2jgHHwMwYSlFyaTBPTE9IRkU&amp;usp=docslist_api'/><link 
rel='http://schema
 s.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_collection_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-create-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/folder%3A0BzY2jgHHwMwYSlFyaTBPTE9IRkU/contents'/><link
 rel='http://schemas.google.com/docs/2007#alt-post' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/folder%3A0BzY2jgHHwMwYSlFyaTBPTE9IRkU/contents'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYSlFyaTBPTE9IRkU'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYSlFyaTBPTE9IRkU'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></author><gd:resourceId>folder:0BzY2jgHHwMwYSlFyaTBPTE9IRkU</gd:resour
 ceId><docs:isShareable value='true'/><docs:isShareableByMe 
value='true'/><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYSlFyaTBPTE9IRkU/acl'/></entry>
+  
diff --git a/gdata/tests/traces/documents/setup-update-document 
b/gdata/tests/traces/documents/setup-update-document
new file mode 100644
index 0000000..8937d88
--- /dev/null
+++ b/gdata/tests/traces/documents/setup-update-document
@@ -0,0 +1,80 @@
+> POST /feeds/upload/create-session/default/private/full?convert=true HTTP/1.1
+> Soup-Debug-Timestamp: 1375178339
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 56 (0x7903b0), SoupSocket 19 (0x7fffe4014490)
+> Host: docs.google.com
+> Slug: test.odt
+> X-Upload-Content-Type: application/vnd.oasis.opendocument.text
+> X-Upload-Content-Length: 8033
+> Content-Type: application/atom+xml; charset=UTF-8
+> Authorization: GoogleLogin 
auth=DQAAANAAAAAJCt54xdJJbCP_erzdO4CBO8eqfVgKKdV2SG6E0gX5hEUb8oTw99Vf5YX8S6ppNdkApAEGU31YnZmDTV_fIp20IGqSZwNZY5NUItnqhhGBfU19C792Kn9uAsy6mylacVR-8xUCGjSMrUELkddTt5S8yOruTrQljNjAty8yK64V_t9USorXG1n5__6K7bA97X7JIaT6BkmVuzOv7QztZKj28U2xiWoM5G8pZkMqwXqOx99Tuj_XhyTgDsIQrwzX6m5rwv14U52KYy1Ds8Zdblc5
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375178340
+< Soup-Debug: SoupMessage 56 (0x7903b0)
+< Location: 
https://docs.google.com/feeds/upload/create-session/default/private/full?convert=true&upload_id=AEnB2UrATbAqwNF7XjalnYA14dRNuKMhE7beirELyKHiLPwcrZm_rRTIRW4WAIPRS_P1O_XjazQJanM74jSMI3T31sBqdtNQ1A
+< Date: Tue, 30 Jul 2013 09:59:00 GMT
+< Server: HTTP Upload Server Built on Jul 21 2013 19:20:38 (1374459638)
+< Content-Length: 0
+< Content-Type: text/html; charset=UTF-8
+< 
+  
+> PUT 
/feeds/upload/create-session/default/private/full?convert=true&upload_id=AEnB2UrATbAqwNF7XjalnYA14dRNuKMhE7beirELyKHiLPwcrZm_rRTIRW4WAIPRS_P1O_XjazQJanM74jSMI3T31sBqdtNQ1A
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375178340
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 57 (0x7fffe4017b80), SoupSocket 19 (0x7fffe4014490)
+> Host: docs.google.com
+> Content-Type: application/vnd.oasis.opendocument.text
+> Content-Length: 8033
+> Content-Range: bytes 0-8032/8033
+> Authorization: GoogleLogin 
auth=DQAAANAAAAAJCt54xdJJbCP_erzdO4CBO8eqfVgKKdV2SG6E0gX5hEUb8oTw99Vf5YX8S6ppNdkApAEGU31YnZmDTV_fIp20IGqSZwNZY5NUItnqhhGBfU19C792Kn9uAsy6mylacVR-8xUCGjSMrUELkddTt5S8yOruTrQljNjAty8yK64V_t9USorXG1n5__6K7bA97X7JIaT6BkmVuzOv7QztZKj28U2xiWoM5G8pZkMqwXqOx99Tuj_XhyTgDsIQrwzX6m5rwv14U52KYy1Ds8Zdblc5
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375178341
+< Soup-Debug: SoupMessage 57 (0x7fffe4017b80)
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Tue, 30 Jul 2013 09:59:01 GMT
+< Date: Tue, 30 Jul 2013 09:59:01 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.0
+< ETag: "A1cbTxtfESt7ImBk"
+< Location: 
https://docs.google.com/feeds/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E
+< Content-Location: 
https://docs.google.com/feeds/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E
+< Content-Length: 3489
+< Server: HTTP Upload Server Built on Jul 21 2013 19:20:38 (1374459638)
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;A1cbTxtfESt7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E</id><published>2013-07-30T09:59:00.889Z</published><updated>2013-07-30T09:59:00.889Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:59:01.623Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Test Update file 
(/documents/update/con
 tent-only/resumable)</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/f
 eeds/upload/file/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><link 
rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>document:1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:59:00.889Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></gd:lastModifiedB
 
y><gd:lastViewed>2013-07-30T09:59:01.151Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E/revisions'/></entry>
+  
+> GET /feeds/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E HTTP/1.1
+> Soup-Debug-Timestamp: 1375178346
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 58 (0x790770), SoupSocket 19 (0x7fffe4014490)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANAAAAAJCt54xdJJbCP_erzdO4CBO8eqfVgKKdV2SG6E0gX5hEUb8oTw99Vf5YX8S6ppNdkApAEGU31YnZmDTV_fIp20IGqSZwNZY5NUItnqhhGBfU19C792Kn9uAsy6mylacVR-8xUCGjSMrUELkddTt5S8yOruTrQljNjAty8yK64V_t9USorXG1n5__6K7bA97X7JIaT6BkmVuzOv7QztZKj28U2xiWoM5G8pZkMqwXqOx99Tuj_XhyTgDsIQrwzX6m5rwv14U52KYy1Ds8Zdblc5
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375178346
+< Soup-Debug: SoupMessage 58 (0x790770)
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Tue, 30 Jul 2013 09:59:07 GMT
+< Date: Tue, 30 Jul 2013 09:59:07 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.0
+< ETag: "A1cbTxtRESt7ImBk"
+< Last-Modified: Tue, 30 Jul 2013 09:59:01 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;A1cbTxtRESt7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E</id><published>2013-07-30T09:59:00.889Z</published><updated>2013-07-30T09:59:01.382Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:59:01.839Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Test Update file 
(/documents/update/con
 tent-only/resumable)</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/f
 eeds/upload/file/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><link 
rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E&amp;v=1&amp;s=AMedNnoAAAAAUfeqi6eha2-LoyIABpv6_vpu3HraueFA&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></author><gd:resourceId>document:1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E</gd
 :resourceId><docs:isShareable value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:59:01.382Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:59:01.382Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A1EGoc0000krgqcdzuGYoIVX_-i7HQX_mNOm8_4WPrD0E/revisions'/></entry>
+  
diff --git a/gdata/tests/traces/documents/setup-upload-document 
b/gdata/tests/traces/documents/setup-upload-document
new file mode 100644
index 0000000..2a6c493
--- /dev/null
+++ b/gdata/tests/traces/documents/setup-upload-document
@@ -0,0 +1,33 @@
+> POST /feeds/default/private/full?convert=true HTTP/1.1
+> Soup-Debug-Timestamp: 1375175596
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 47 (0x764280), SoupSocket 19 (0x8de3b0)
+> Host: docs.google.com
+> X-Upload-Content-Length: 0
+> Authorization: GoogleLogin 
auth=DQAAANAAAAA5MDKK4E9xdZ1I5mgL3036VLF8H0MhPafg1ZDG2ZSa9YJD-eRWreXmtq9Dkr-pVdCCOpE58WulMukAnLUSLKaNf1K_5cD1irOA2YwqcSNoow57EMR-GsPzYz_5mLdtZI25DarmO4a484wRLuCUpVAGJjcXazsyVEhTG_kroOlRBDxxlbh-PTRomN4RYuOw1e7wSdLj4V-LnMMAqalFM3KtDCXsMPzLK4ucxNtU4ONV-zmxHPPJ3pWsBpsda-r76aFNRGNnFximisUska8ludDc
+> GData-Version: 3
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:gd='http://schemas.google.com/g/2005'><title 
type='text'>Temporary Folder for Uploading Documents</title><category 
term='http://schemas.google.com/docs/2007#folder' 
scheme='http://schemas.google.com/g/2005#kind'/><docs:writersCanInvite value='false'/></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375175597
+< Soup-Debug: SoupMessage 47 (0x764280)
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Tue, 30 Jul 2013 09:13:17 GMT
+< Date: Tue, 30 Jul 2013 09:13:17 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.0
+< ETag: "A1cUERFOBCt7ImBk"
+< Location: https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYOHFXNWhWaEotR00
+< Content-Location: https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYOHFXNWhWaEotR00
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;A1cUERFOBCt7ImBk&quot;'><id>https://docs.google.com/feeds/id/folder%3A0BzY2jgHHwMwYOHFXNWhWaEotR00</id><published>2013-07-30T09:13:17.024Z</published><updated>2013-07-30T09:13:17.024Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:13:17.248Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#folder' 
label='folder'/><title>Temporary Folder for Uploading Documents</title><content 
type='application/atom+xml;type=feed' 
src='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYOHFXNWhWaEotR00/contents'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/folderview?id=0BzY2jgHHwMwYOHFXNWhWaEotR00&amp;usp=docslist_api'/>
 <link rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_collection_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-create-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/folder%3A0BzY2jgHHwMwYOHFXNWhWaEotR00/contents'/><link
 rel='http://schemas.google.com/docs/2007#alt-post' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/folder%3A0BzY2jgHHwMwYOHFXNWhWaEotR00/contents'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYOHFXNWhWaEotR00'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYOHFXNWhWaEotR00'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></author><gd:resourceId>folder:0BzY2jgHHwMwYOH
 FXNWhWaEotR00</gd:resourceId><docs:isShareable value='true'/><docs:isShareableByMe 
value='true'/><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYOHFXNWhWaEotR00/acl'/></entry>
+  
diff --git a/gdata/tests/traces/documents/teardown-batch-async 
b/gdata/tests/traces/documents/teardown-batch-async
new file mode 100644
index 0000000..3766384
--- /dev/null
+++ b/gdata/tests/traces/documents/teardown-batch-async
@@ -0,0 +1,53 @@
+> GET /feeds/default/private/full/document%3A1hqrVr3TuOqc0r3R3J14xF7hz1_t-HJx9CuXW0VSs-QI HTTP/1.1
+> Soup-Debug-Timestamp: 1375182840
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 154 (0x7fffe400c9a0), SoupSocket 49 (0x7fffe4003c60)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182840
+< Soup-Debug: SoupMessage 154 (0x7fffe400c9a0)
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Tue, 30 Jul 2013 11:14:00 GMT
+< Date: Tue, 30 Jul 2013 11:14:00 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.0
+< ETag: "A1RTQwhTRyt7ImBk"
+< Last-Modified: Tue, 30 Jul 2013 11:14:00 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;A1RTQwhTRyt7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A1hqrVr3TuOqc0r3R3J14xF7hz1_t-HJx9CuXW0VSs-QI</id><published>2013-07-30T11:13:59.330Z</published><updated>2013-07-30T11:14:00.129Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:14:00.168Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>A View from the 
Bridge</title><content 
 type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1hqrVr3TuOqc0r3R3J14xF7hz1_t-HJx9CuXW0VSs-QI'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/1hqrVr3TuOqc0r3R3J14xF7hz1_t-HJx9CuXW0VSs-QI/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/1hqrVr3TuOqc0r3R3J14xF7hz1_t-HJx9CuXW0VSs-QI/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1hqrVr3TuOqc0r3R3J14xF7hz1_t-HJx9CuXW0VSs-QI'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full
 /document%3A1hqrVr3TuOqc0r3R3J14xF7hz1_t-HJx9CuXW0VSs-QI'/><link rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1hqrVr3TuOqc0r3R3J14xF7hz1_t-HJx9CuXW0VSs-QI'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1hqrVr3TuOqc0r3R3J14xF7hz1_t-HJx9CuXW0VSs-QI'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A1hqrVr3TuOqc0r3R3J14xF7hz1_t-HJx9CuXW0VSs-QI'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>document:1hqrVr3TuOqc0r3R3J14xF7hz1_t-HJx9CuXW0VSs-QI</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:14:00.129Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:13:59.
 687Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A1hqrVr3TuOqc0r3R3J14xF7hz1_t-HJx9CuXW0VSs-QI/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A1hqrVr3TuOqc0r3R3J14xF7hz1_t-HJx9CuXW0VSs-QI/revisions'/></entry>
+  
+> DELETE /feeds/default/private/full/document%3A1hqrVr3TuOqc0r3R3J14xF7hz1_t-HJx9CuXW0VSs-QI HTTP/1.1
+> Soup-Debug-Timestamp: 1375182840
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 155 (0x77f460), SoupSocket 49 (0x7fffe4003c60)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> If-Match: "A1RTQwhTRyt7ImBk"
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182841
+< Soup-Debug: SoupMessage 155 (0x77f460)
+< GData-Version: 3.0
+< Date: Tue, 30 Jul 2013 11:14:01 GMT
+< Expires: Tue, 30 Jul 2013 11:14:01 GMT
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 0
+< Server: GSE
+< Content-Type: text/html; charset=UTF-8
+< 
+  
diff --git a/gdata/tests/traces/documents/teardown-copy-document 
b/gdata/tests/traces/documents/teardown-copy-document
new file mode 100644
index 0000000..196eadc
--- /dev/null
+++ b/gdata/tests/traces/documents/teardown-copy-document
@@ -0,0 +1,53 @@
+> GET /feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGhTNXpndGNUbXJFZnJDdHc5N19BRGc HTTP/1.1
+> Soup-Debug-Timestamp: 1375182676
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 5 (0x77f550), SoupSocket 2 (0x945d30)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182677
+< Soup-Debug: SoupMessage 5 (0x77f550)
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Tue, 30 Jul 2013 11:11:17 GMT
+< Date: Tue, 30 Jul 2013 11:11:17 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.0
+< ETag: "A1RTGR5WRSt7ImBk"
+< Last-Modified: Tue, 30 Jul 2013 11:11:16 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;A1RTGR5WRSt7ImBk&quot;'><id>https://docs.google.com/feeds/id/spreadsheet%3A0AjY2jgHHwMwYdGhTNXpndGNUbXJFZnJDdHc5N19BRGc</id><published>2013-07-30T11:11:16.734Z</published><updated>2013-07-30T11:11:16.939Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:11:16.982Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/docs/2007#spreadsheet' label='spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Document (Spreadshee
 t)</title><content type='text/html' 
src='https://docs.google.com/feeds/download/spreadsheets/Export?key=0AjY2jgHHwMwYdGhTNXpndGNUbXJFZnJDdHc5N19BRGc'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdGhTNXpndGNUbXJFZnJDdHc5N19BRGc&amp;usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdGhTNXpndGNUbXJFZnJDdHc5N19BRGc&amp;output=html&amp;chrome=false&amp;widget=true'/><link
 rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_spreadsheet_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGhTNXpndGNUbXJFZnJDdHc5N19BRGc'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='applicatio
 n/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGhTNXpndGNUbXJFZnJDdHc5N19BRGc'/><link
 rel='http://schemas.google.com/spreadsheets/2006#worksheetsfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/worksheets/0AjY2jgHHwMwYdGhTNXpndGNUbXJFZnJDdHc5N19BRGc/private/full'/><link
 rel='http://schemas.google.com/spreadsheets/2006#tablesfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/0AjY2jgHHwMwYdGhTNXpndGNUbXJFZnJDdHc5N19BRGc/tables'/><link 
rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGhTNXpndGNUbXJFZnJDdHc5N19BRGc'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGhTNXpndGNUbXJFZnJDdHc5N19BRGc'/><link
 rel='edit-media' type='text/html' href='https://docs.google.com/feeds/default/media/spreadsheet%3A0AjY2jgHHw
 MwYdGhTNXpndGNUbXJFZnJDdHc5N19BRGc'/><author><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></author><gd:resourceId>spreadsheet:0AjY2jgHHwMwYdGhTNXpndGNUbXJFZnJDdHc5N19BRGc</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:11:16.939Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:11:16.348Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><docs:hasForm value='false'/><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGhTNXpndGNUbXJFZnJDdHc5N19BRGc/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGhTNXpndGNUbXJFZ
 nJDdHc5N19BRGc/revisions'/></entry>
+  
+> DELETE /feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGhTNXpndGNUbXJFZnJDdHc5N19BRGc HTTP/1.1
+> Soup-Debug-Timestamp: 1375182677
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 6 (0x77f460), SoupSocket 2 (0x945d30)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> If-Match: "A1RTGR5WRSt7ImBk"
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182677
+< Soup-Debug: SoupMessage 6 (0x77f460)
+< GData-Version: 3.0
+< Date: Tue, 30 Jul 2013 11:11:17 GMT
+< Expires: Tue, 30 Jul 2013 11:11:17 GMT
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 0
+< Server: GSE
+< Content-Type: text/html; charset=UTF-8
+< 
+  
diff --git a/gdata/tests/traces/documents/teardown-temp-document 
b/gdata/tests/traces/documents/teardown-temp-document
new file mode 100644
index 0000000..003c9d1
--- /dev/null
+++ b/gdata/tests/traces/documents/teardown-temp-document
@@ -0,0 +1,53 @@
+> GET /feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c HTTP/1.1
+> Soup-Debug-Timestamp: 1375182737
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 54 (0x77f190), SoupSocket 19 (0x7fffe4003c60)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182737
+< Soup-Debug: SoupMessage 54 (0x77f190)
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Tue, 30 Jul 2013 11:12:17 GMT
+< Date: Tue, 30 Jul 2013 11:12:17 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.0
+< ETag: "A1RTQRBAHSt7ImBk"
+< Last-Modified: Tue, 30 Jul 2013 11:12:17 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;A1RTQRBAHSt7ImBk&quot;'><id>https://docs.google.com/feeds/id/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c</id><published>2013-07-30T11:12:10.389Z</published><updated>2013-07-30T11:12:17.116Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:12:17.119Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/docs/2007#spreadsheet' label='spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#shared' 
label='shared'/><title>Temporary Document (Spreadsheet)</title><conte
 nt type='text/html' 
src='https://docs.google.com/feeds/download/spreadsheets/Export?key=0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c&amp;usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c&amp;output=html&amp;chrome=false&amp;widget=true'/><link
 rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_spreadsheet_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' href
 
='https://docs.google.com/feeds/upload/file/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c'/><link
 rel='http://schemas.google.com/spreadsheets/2006#worksheetsfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/worksheets/0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c/private/full'/><link
 rel='http://schemas.google.com/spreadsheets/2006#tablesfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c/tables'/><link 
rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYV
 klPVEJKWGh0VkY1T3c'/><author><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></author><gd:resourceId>spreadsheet:0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:12:10.389Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><docs:hasForm value='false'/><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c/revisions'/></entry>
+  
+> DELETE /feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdGY4aFVIRnpYVklPVEJKWGh0VkY1T3c HTTP/1.1
+> Soup-Debug-Timestamp: 1375182737
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 55 (0x77f730), SoupSocket 19 (0x7fffe4003c60)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> If-Match: "A1RTQRBAHSt7ImBk"
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182737
+< Soup-Debug: SoupMessage 55 (0x77f730)
+< GData-Version: 3.0
+< Date: Tue, 30 Jul 2013 11:12:18 GMT
+< Expires: Tue, 30 Jul 2013 11:12:18 GMT
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 0
+< Server: GSE
+< Content-Type: text/html; charset=UTF-8
+< 
+  
diff --git a/gdata/tests/traces/documents/teardown-temp-documents 
b/gdata/tests/traces/documents/teardown-temp-documents
new file mode 100644
index 0000000..0a653a8
--- /dev/null
+++ b/gdata/tests/traces/documents/teardown-temp-documents
@@ -0,0 +1,212 @@
+> GET /feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE HTTP/1.1
+> Soup-Debug-Timestamp: 1375182829
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 139 (0x7fffe400c9a0), SoupSocket 46 (0x7fffd80028e0)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182830
+< Soup-Debug: SoupMessage 139 (0x7fffe400c9a0)
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Tue, 30 Jul 2013 11:13:50 GMT
+< Date: Tue, 30 Jul 2013 11:13:50 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.0
+< ETag: "A1RTQx9QHSt7ImBk"
+< Last-Modified: Tue, 30 Jul 2013 11:13:35 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;A1RTQx9QHSt7ImBk&quot;'><id>https://docs.google.com/feeds/id/spreadsheet%3A0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE</id><published>2013-07-30T11:13:34.842Z</published><updated>2013-07-30T11:13:35.568Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:13:35.599Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://schemas.google.com/docs/2007#spreadsheet' label='spreadsheet'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Spreadsheet</title><
 content type='text/html' 
src='https://docs.google.com/feeds/download/spreadsheets/Export?key=0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE&amp;usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/spreadsheet/ccc?key=0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE&amp;output=html&amp;chrome=false&amp;widget=true'/><link
 rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_spreadsheet_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml'
  
href='https://docs.google.com/feeds/upload/file/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE'/><link
 rel='http://schemas.google.com/spreadsheets/2006#worksheetsfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/worksheets/0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE/private/full'/><link
 rel='http://schemas.google.com/spreadsheets/2006#tablesfeed' type='application/atom+xml' 
href='https://spreadsheets.google.com/feeds/0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE/tables'/><link 
rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/spreadsheet%3A0AjY2jgHHwMwYdEtJUDAy
 QWlQNEdBaTlZZlhPZ3dWaFE'/><author><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></author><gd:resourceId>spreadsheet:0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE</gd:resourceId><docs:isShareable
 value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:13:35.568Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:13:34.842Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><docs:hasForm value='false'/><gd:feedLink 
rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dW
 aFE/revisions'/></entry>
+  
+> DELETE /feeds/default/private/full/spreadsheet%3A0AjY2jgHHwMwYdEtJUDAyQWlQNEdBaTlZZlhPZ3dWaFE HTTP/1.1
+> Soup-Debug-Timestamp: 1375182830
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 140 (0x7fffe0012760), SoupSocket 46 (0x7fffd80028e0)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> If-Match: "A1RTQx9QHSt7ImBk"
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182830
+< Soup-Debug: SoupMessage 140 (0x7fffe0012760)
+< GData-Version: 3.0
+< Date: Tue, 30 Jul 2013 11:13:50 GMT
+< Expires: Tue, 30 Jul 2013 11:13:50 GMT
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 0
+< Server: GSE
+< Content-Type: text/html; charset=UTF-8
+< 
+  
+> GET /feeds/default/private/full/presentation%3A1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q HTTP/1.1
+> Soup-Debug-Timestamp: 1375182830
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 141 (0x7fffe400c9a0), SoupSocket 46 (0x7fffd80028e0)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182830
+< Soup-Debug: SoupMessage 141 (0x7fffe400c9a0)
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Tue, 30 Jul 2013 11:13:51 GMT
+< Date: Tue, 30 Jul 2013 11:13:51 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.0
+< ETag: "A1RTQxlYGit7ImBk"
+< Last-Modified: Tue, 30 Jul 2013 11:13:37 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;A1RTQxlYGit7ImBk&quot;'><id>https://docs.google.com/feeds/id/presentation%3A1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q</id><published>2013-07-30T11:13:36.855Z</published><updated>2013-07-30T11:13:37.701Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:13:37.906Z</app:edited><category 
scheme='http://schemas.google.com/g/2005/labels' term='http://schemas.google.com/g/2005/labels#viewed' 
label='viewed'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#presentation' 
label='presentation'/><title>Temporary Presentation</tit
 le><content type='text/html' 
src='https://docs.google.com/feeds/download/presentations/Export?id=1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/presentation/d/1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/presentation/d/1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_presentation_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/presentation%3A1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/
 file/default/private/full/presentation%3A1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q'/><link 
rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q&amp;v=2&amp;s=AMedNnoAAAAAUfe8D4UWrIg1jsZ9QQotwAR6wlyDRANv&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/presentation%3A1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></author><gd:resourceId>presentation:1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WE
 xj9Q</gd:resourceId><docs:isShareable value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:13:37.701Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:13:37.187Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/presentation%3A1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q/revisions'/></entry>
+  
+> DELETE /feeds/default/private/full/presentation%3A1XPewRH84xNNEKlaOBrHHzwusNbj2NpivWvP76WExj9Q HTTP/1.1
+> Soup-Debug-Timestamp: 1375182830
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 142 (0x77f460), SoupSocket 46 (0x7fffd80028e0)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> If-Match: "A1RTQxlYGit7ImBk"
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182831
+< Soup-Debug: SoupMessage 142 (0x77f460)
+< GData-Version: 3.0
+< Date: Tue, 30 Jul 2013 11:13:51 GMT
+< Expires: Tue, 30 Jul 2013 11:13:51 GMT
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 0
+< Server: GSE
+< Content-Type: text/html; charset=UTF-8
+< 
+  
+> GET /feeds/default/private/full/document%3A1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c HTTP/1.1
+> Soup-Debug-Timestamp: 1375182831
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 143 (0x7fffe400c9a0), SoupSocket 46 (0x7fffd80028e0)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182831
+< Soup-Debug: SoupMessage 143 (0x7fffe400c9a0)
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Tue, 30 Jul 2013 11:13:51 GMT
+< Date: Tue, 30 Jul 2013 11:13:51 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.0
+< ETag: "A1RTQxhKECt7ImBk"
+< Last-Modified: Tue, 30 Jul 2013 11:13:39 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;A1RTQxhKECt7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c</id><published>2013-07-30T11:13:38.803Z</published><updated>2013-07-30T11:13:39.264Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:13:39.700Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary Text 
Document</title><content
  type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/ful
 l/document%3A1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c'/><link 
rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c&amp;v=1&amp;s=AMedNnoAAAAAUfe8D6n_ndhlunqOhpqdWfhLQtdZooSx&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>document:1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c</gd:resourceId><docs:isShareable
 value=
 'true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:13:39.264Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:13:39.264Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c/revisions'/></entry>
+  
+> DELETE /feeds/default/private/full/document%3A1hZlZPaLOYoyUP6o4ZFt_7k1YjnqHalnW7afqreqJZ6c HTTP/1.1
+> Soup-Debug-Timestamp: 1375182831
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 144 (0x7fffe0012760), SoupSocket 46 (0x7fffd80028e0)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> If-Match: "A1RTQxhKECt7ImBk"
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182831
+< Soup-Debug: SoupMessage 144 (0x7fffe0012760)
+< GData-Version: 3.0
+< Date: Tue, 30 Jul 2013 11:13:52 GMT
+< Expires: Tue, 30 Jul 2013 11:13:52 GMT
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 0
+< Server: GSE
+< Content-Type: text/html; charset=UTF-8
+< 
+  
+> GET /feeds/default/private/full/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4 HTTP/1.1
+> Soup-Debug-Timestamp: 1375182831
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 145 (0x7fffe400c9a0), SoupSocket 46 (0x7fffd80028e0)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182831
+< Soup-Debug: SoupMessage 145 (0x7fffe400c9a0)
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Tue, 30 Jul 2013 11:13:52 GMT
+< Date: Tue, 30 Jul 2013 11:13:52 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.0
+< ETag: "A1RTQxoMDSt7ImBk"
+< Last-Modified: Tue, 30 Jul 2013 11:13:41 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;A1RTQxoMDSt7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4</id><published>2013-07-30T11:13:40.735Z</published><updated>2013-07-30T11:13:41.203Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:13:41.627Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Temporary 
Arbitrary Document</title><co
 ntent type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/privat
 e/full/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4'/><link 
rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4&amp;v=1&amp;s=AMedNnoAAAAAUfe8EKsFZyP9_Y-eOZgi2JQH_LoGVQod&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>document:160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4</gd:resourceId><docs:isShareable
 v
 alue='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T11:13:41.203Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T11:13:41.203Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4/revisions'/></entry>
+  
+> DELETE /feeds/default/private/full/document%3A160jJ9DwkrCVOcmvhQyF9-RZ-1O5R6HyCicIXU26lwk4 HTTP/1.1
+> Soup-Debug-Timestamp: 1375182831
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 146 (0x77f460), SoupSocket 46 (0x7fffd80028e0)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> If-Match: "A1RTQxoMDSt7ImBk"
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182832
+< Soup-Debug: SoupMessage 146 (0x77f460)
+< GData-Version: 3.0
+< Date: Tue, 30 Jul 2013 11:13:52 GMT
+< Expires: Tue, 30 Jul 2013 11:13:52 GMT
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 0
+< Server: GSE
+< Content-Type: text/html; charset=UTF-8
+< 
+  
diff --git a/gdata/tests/traces/documents/teardown-temp-folder 
b/gdata/tests/traces/documents/teardown-temp-folder
new file mode 100644
index 0000000..a079553
--- /dev/null
+++ b/gdata/tests/traces/documents/teardown-temp-folder
@@ -0,0 +1,53 @@
+> GET /feeds/default/private/full/folder%3A0BzY2jgHHwMwYSlFyaTBPTE9IRkU HTTP/1.1
+> Soup-Debug-Timestamp: 1375182832
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 147 (0x7fffe400c9a0), SoupSocket 46 (0x7fffd80028e0)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182832
+< Soup-Debug: SoupMessage 147 (0x7fffe400c9a0)
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Tue, 30 Jul 2013 11:13:52 GMT
+< Date: Tue, 30 Jul 2013 11:13:52 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.0
+< ETag: "A1RTQxwIByt7ImBk"
+< Last-Modified: Tue, 30 Jul 2013 11:13:33 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;A1RTQxwIByt7ImBk&quot;'><id>https://docs.google.com/feeds/id/folder%3A0BzY2jgHHwMwYSlFyaTBPTE9IRkU</id><published>2013-07-30T11:13:33.498Z</published><updated>2013-07-30T11:13:33.498Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T11:13:33.697Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#folder' 
label='folder'/><title>Temporary Folder</title><content type='application/atom+xml;type=feed' 
src='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYSlFyaTBPTE9IRkU/contents'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/folderview?id=0BzY2jgHHwMwYSlFyaTBPTE9IRkU&amp;usp=docslist_api'/><link 
rel='http://schema
 s.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_collection_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-create-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/folder%3A0BzY2jgHHwMwYSlFyaTBPTE9IRkU/contents'/><link
 rel='http://schemas.google.com/docs/2007#alt-post' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/folder%3A0BzY2jgHHwMwYSlFyaTBPTE9IRkU/contents'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYSlFyaTBPTE9IRkU'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYSlFyaTBPTE9IRkU'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></author><gd:resourceId>folder:0BzY2jgHHwMwYSlFyaTBPTE9IRkU</gd:resour
 ceId><docs:isShareable value='true'/><docs:isShareableByMe 
value='true'/><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYSlFyaTBPTE9IRkU/acl'/></entry>
+  
+> DELETE /feeds/default/private/full/folder%3A0BzY2jgHHwMwYSlFyaTBPTE9IRkU HTTP/1.1
+> Soup-Debug-Timestamp: 1375182832
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 148 (0x7fffe0012760), SoupSocket 46 (0x7fffd80028e0)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANEAAAAhXE1iPN2DO7U_my715oujK60sZIXpl5PBSiZcuefaxjRhx5sA2L0T1_Vg657oSkXwDkQPyiRmcPlxguiJhuUby19bTVOwrC1baeYQGhqYzswjtV5szl2cNEAKWNDXPlr6T6n2_2_cgCuzhdljoq8PIDMpD1hEhLIWYIVMm_zLvsCSQEGWRJ2d52igRI0tvItFaCN-7NE_PZ_8JYQPYenZqlNK4I6_cc7Nkd8-JOKzApTuF7dpG7VJCzpwgLGMTUWmzkVmocAFdjrA9o9PoQZDxkYkfqGTebuJ3udi-ubGug
+> GData-Version: 3
+> If-Match: "A1RTQxwIByt7ImBk"
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375182832
+< Soup-Debug: SoupMessage 148 (0x7fffe0012760)
+< GData-Version: 3.0
+< Date: Tue, 30 Jul 2013 11:13:53 GMT
+< Expires: Tue, 30 Jul 2013 11:13:53 GMT
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 0
+< Server: GSE
+< Content-Type: text/html; charset=UTF-8
+< 
+  
diff --git a/gdata/tests/traces/documents/teardown-update-document 
b/gdata/tests/traces/documents/teardown-update-document
new file mode 100644
index 0000000..511d263
--- /dev/null
+++ b/gdata/tests/traces/documents/teardown-update-document
@@ -0,0 +1,53 @@
+> GET /feeds/default/private/full/document%3A1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU HTTP/1.1
+> Soup-Debug-Timestamp: 1375178338
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 54 (0x7901d0), SoupSocket 18 (0x7fffe4014550)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANAAAAAJCt54xdJJbCP_erzdO4CBO8eqfVgKKdV2SG6E0gX5hEUb8oTw99Vf5YX8S6ppNdkApAEGU31YnZmDTV_fIp20IGqSZwNZY5NUItnqhhGBfU19C792Kn9uAsy6mylacVR-8xUCGjSMrUELkddTt5S8yOruTrQljNjAty8yK64V_t9USorXG1n5__6K7bA97X7JIaT6BkmVuzOv7QztZKj28U2xiWoM5G8pZkMqwXqOx99Tuj_XhyTgDsIQrwzX6m5rwv14U52KYy1Ds8Zdblc5
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375178339
+< Soup-Debug: SoupMessage 54 (0x7901d0)
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Tue, 30 Jul 2013 09:58:59 GMT
+< Date: Tue, 30 Jul 2013 09:58:59 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.0
+< ETag: "A1cbT0RWFSt7ImBk"
+< Last-Modified: Tue, 30 Jul 2013 09:58:54 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;A1cbT0RWFSt7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU</id><published>2013-07-30T09:58:47.450Z</published><updated>2013-07-30T09:58:54.087Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:58:54.095Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Updated Test 
Update file (/documents/up
 date/metadata-only/non-resumable)</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' href='https://docs
 
.google.com/feeds/upload/file/default/private/full/document%3A1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU&amp;v=2&amp;s=AMedNnoAAAAAUfeqg0MYl2gOJTd-65RuIBNM-NjJLT32&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></author><gd:resourceId>document:1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbb
 uJcWCXmfU</gd:resourceId><docs:isShareable value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:58:54.087Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:58:48.149Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU/revisions'/></entry>
+  
+> DELETE /feeds/default/private/full/document%3A1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU HTTP/1.1
+> Soup-Debug-Timestamp: 1375178339
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 55 (0x790770), SoupSocket 18 (0x7fffe4014550)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANAAAAAJCt54xdJJbCP_erzdO4CBO8eqfVgKKdV2SG6E0gX5hEUb8oTw99Vf5YX8S6ppNdkApAEGU31YnZmDTV_fIp20IGqSZwNZY5NUItnqhhGBfU19C792Kn9uAsy6mylacVR-8xUCGjSMrUELkddTt5S8yOruTrQljNjAty8yK64V_t9USorXG1n5__6K7bA97X7JIaT6BkmVuzOv7QztZKj28U2xiWoM5G8pZkMqwXqOx99Tuj_XhyTgDsIQrwzX6m5rwv14U52KYy1Ds8Zdblc5
+> GData-Version: 3
+> If-Match: "A1cbT0RWFSt7ImBk"
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375178339
+< Soup-Debug: SoupMessage 55 (0x790770)
+< GData-Version: 3.0
+< Date: Tue, 30 Jul 2013 09:58:59 GMT
+< Expires: Tue, 30 Jul 2013 09:58:59 GMT
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 0
+< Server: GSE
+< Content-Type: text/html; charset=UTF-8
+< 
+  
diff --git a/gdata/tests/traces/documents/teardown-upload-document 
b/gdata/tests/traces/documents/teardown-upload-document
new file mode 100644
index 0000000..c2e4e87
--- /dev/null
+++ b/gdata/tests/traces/documents/teardown-upload-document
@@ -0,0 +1,106 @@
+> GET /feeds/default/private/full/file%3A0BzY2jgHHwMwYZzRFSzJDV2ZHeVk HTTP/1.1
+> Soup-Debug-Timestamp: 1375175594
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 43 (0x764280), SoupSocket 18 (0x7fffe4013540)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANAAAAA5MDKK4E9xdZ1I5mgL3036VLF8H0MhPafg1ZDG2ZSa9YJD-eRWreXmtq9Dkr-pVdCCOpE58WulMukAnLUSLKaNf1K_5cD1irOA2YwqcSNoow57EMR-GsPzYz_5mLdtZI25DarmO4a484wRLuCUpVAGJjcXazsyVEhTG_kroOlRBDxxlbh-PTRomN4RYuOw1e7wSdLj4V-LnMMAqalFM3KtDCXsMPzLK4ucxNtU4ONV-zmxHPPJ3pWsBpsda-r76aFNRGNnFximisUska8ludDc
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375175594
+< Soup-Debug: SoupMessage 43 (0x764280)
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Tue, 30 Jul 2013 09:13:15 GMT
+< Date: Tue, 30 Jul 2013 09:13:15 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.0
+< ETag: "A1cUERtIDit7ImBk"
+< Last-Modified: Tue, 30 Jul 2013 09:13:09 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;A1cUERtIDit7ImBk&quot;'><id>https://docs.google.com/feeds/id/file%3A0BzY2jgHHwMwYZzRFSzJDV2ZHeVk</id><published>2013-07-30T09:13:09.406Z</published><updated>2013-07-30T09:13:09.406Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:13:09.406Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#file' 
label='application/vnd.oasis.opendocument.text'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' 
label='modified-by-me'/><title>Untitled</title><content type='application/vnd.oasis.opendocument.text' 
src='https://doc-08-4o-docs.googleusercontent.com/docs/securesc/p3gkcpm4vekih3vn1285g2jn1
 
spuiriq/qpte5edpmu3spgoojhu4013lkd0mbkif/1375171200000/04693666875216770588/04693666875216770588/0BzY2jgHHwMwYZzRFSzJDV2ZHeVk?h=16653014193614665626&amp;e=download&amp;gd=true'/><link
 rel='http://schemas.google.com/docs/2007#parent' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYRE45NjBPNXZxdkU' 
title='Temporary Folder for Uploading Documents'/><link rel='alternate' type='text/html' 
href='https://docs.google.com/file/d/0BzY2jgHHwMwYZzRFSzJDV2ZHeVk/edit?usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/file%3A0BzY2jgHHwMwYZzRFSzJDV2ZHeVk'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' href
 ='https://docs.google.com/feeds/upload/file/default/private/full/file%3A0BzY2jgHHwMwYZzRFSzJDV2ZHeVk'/><link 
rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYZzRFSzJDV2ZHeVk'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYZzRFSzJDV2ZHeVk'/><link 
rel='edit-media' type='application/vnd.oasis.opendocument.text' 
href='https://docs.google.com/feeds/default/media/file%3A0BzY2jgHHwMwYZzRFSzJDV2ZHeVk'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>file:0BzY2jgHHwMwYZzRFSzJDV2ZHeVk</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:13:09.399Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></gd:lastModifiedBy><gd:quotaBytesUsed>8033</gd:quotaBytesUse
 d><docs:writersCanInvite 
value='true'/><docs:md5Checksum>95439a6d6456a79d43980c05c9f25c7d</docs:md5Checksum><docs:filename>Untitled</docs:filename><docs:suggestedFilename>Untitled</docs:suggestedFilename><docs:size>8033</docs:size><gd:feedLink
 rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYZzRFSzJDV2ZHeVk/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYZzRFSzJDV2ZHeVk/revisions'/></entry>
+  
+> DELETE /feeds/default/private/full/file%3A0BzY2jgHHwMwYZzRFSzJDV2ZHeVk HTTP/1.1
+> Soup-Debug-Timestamp: 1375175594
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 44 (0x764280), SoupSocket 18 (0x7fffe4013540)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANAAAAA5MDKK4E9xdZ1I5mgL3036VLF8H0MhPafg1ZDG2ZSa9YJD-eRWreXmtq9Dkr-pVdCCOpE58WulMukAnLUSLKaNf1K_5cD1irOA2YwqcSNoow57EMR-GsPzYz_5mLdtZI25DarmO4a484wRLuCUpVAGJjcXazsyVEhTG_kroOlRBDxxlbh-PTRomN4RYuOw1e7wSdLj4V-LnMMAqalFM3KtDCXsMPzLK4ucxNtU4ONV-zmxHPPJ3pWsBpsda-r76aFNRGNnFximisUska8ludDc
+> GData-Version: 3
+> If-Match: "A1cUERtIDit7ImBk"
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375175595
+< Soup-Debug: SoupMessage 44 (0x764280)
+< GData-Version: 3.0
+< Date: Tue, 30 Jul 2013 09:13:15 GMT
+< Expires: Tue, 30 Jul 2013 09:13:15 GMT
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 0
+< Server: GSE
+< Content-Type: text/html; charset=UTF-8
+< 
+  
+> GET /feeds/default/private/full/folder%3A0BzY2jgHHwMwYRE45NjBPNXZxdkU HTTP/1.1
+> Soup-Debug-Timestamp: 1375175595
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 45 (0x764730), SoupSocket 18 (0x7fffe4013540)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANAAAAA5MDKK4E9xdZ1I5mgL3036VLF8H0MhPafg1ZDG2ZSa9YJD-eRWreXmtq9Dkr-pVdCCOpE58WulMukAnLUSLKaNf1K_5cD1irOA2YwqcSNoow57EMR-GsPzYz_5mLdtZI25DarmO4a484wRLuCUpVAGJjcXazsyVEhTG_kroOlRBDxxlbh-PTRomN4RYuOw1e7wSdLj4V-LnMMAqalFM3KtDCXsMPzLK4ucxNtU4ONV-zmxHPPJ3pWsBpsda-r76aFNRGNnFximisUska8ludDc
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375175595
+< Soup-Debug: SoupMessage 45 (0x764730)
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Tue, 30 Jul 2013 09:13:15 GMT
+< Date: Tue, 30 Jul 2013 09:13:15 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.0
+< ETag: "A1cUERhNGCt7ImBk"
+< Last-Modified: Tue, 30 Jul 2013 09:13:08 GMT
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;A1cUERhNGCt7ImBk&quot;'><id>https://docs.google.com/feeds/id/folder%3A0BzY2jgHHwMwYRE45NjBPNXZxdkU</id><published>2013-07-30T09:13:08.085Z</published><updated>2013-07-30T09:13:08.085Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:13:08.280Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#folder' 
label='folder'/><title>Temporary Folder for Uploading Documents</title><content 
type='application/atom+xml;type=feed' 
src='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYRE45NjBPNXZxdkU/contents'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/folderview?id=0BzY2jgHHwMwYRE45NjBPNXZxdkU&amp;usp=docslist_api'/>
 <link rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_collection_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-create-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/folder%3A0BzY2jgHHwMwYRE45NjBPNXZxdkU/contents'/><link
 rel='http://schemas.google.com/docs/2007#alt-post' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/file/default/private/full/folder%3A0BzY2jgHHwMwYRE45NjBPNXZxdkU/contents'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYRE45NjBPNXZxdkU'/><link 
rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYRE45NjBPNXZxdkU'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></author><gd:resourceId>folder:0BzY2jgHHwMwYRE
 45NjBPNXZxdkU</gd:resourceId><docs:isShareable value='true'/><docs:isShareableByMe 
value='true'/><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite 
value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYRE45NjBPNXZxdkU/acl'/></entry>
+  
+> DELETE /feeds/default/private/full/folder%3A0BzY2jgHHwMwYRE45NjBPNXZxdkU HTTP/1.1
+> Soup-Debug-Timestamp: 1375175595
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 46 (0x764730), SoupSocket 18 (0x7fffe4013540)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANAAAAA5MDKK4E9xdZ1I5mgL3036VLF8H0MhPafg1ZDG2ZSa9YJD-eRWreXmtq9Dkr-pVdCCOpE58WulMukAnLUSLKaNf1K_5cD1irOA2YwqcSNoow57EMR-GsPzYz_5mLdtZI25DarmO4a484wRLuCUpVAGJjcXazsyVEhTG_kroOlRBDxxlbh-PTRomN4RYuOw1e7wSdLj4V-LnMMAqalFM3KtDCXsMPzLK4ucxNtU4ONV-zmxHPPJ3pWsBpsda-r76aFNRGNnFximisUska8ludDc
+> GData-Version: 3
+> If-Match: "A1cUERhNGCt7ImBk"
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375175595
+< Soup-Debug: SoupMessage 46 (0x764730)
+< GData-Version: 3.0
+< Date: Tue, 30 Jul 2013 09:13:16 GMT
+< Expires: Tue, 30 Jul 2013 09:13:16 GMT
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 0
+< Server: GSE
+< Content-Type: text/html; charset=UTF-8
+< 
+  
diff --git a/gdata/tests/traces/documents/update b/gdata/tests/traces/documents/update
new file mode 100644
index 0000000..19fd313
--- /dev/null
+++ b/gdata/tests/traces/documents/update
@@ -0,0 +1,30 @@
+> PUT /feeds/default/private/full/document%3A1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU HTTP/1.1
+> Soup-Debug-Timestamp: 1375178333
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 53 (0x7903b0), SoupSocket 18 (0x7fffe4014550)
+> Host: docs.google.com
+> Authorization: GoogleLogin 
auth=DQAAANAAAAAJCt54xdJJbCP_erzdO4CBO8eqfVgKKdV2SG6E0gX5hEUb8oTw99Vf5YX8S6ppNdkApAEGU31YnZmDTV_fIp20IGqSZwNZY5NUItnqhhGBfU19C792Kn9uAsy6mylacVR-8xUCGjSMrUELkddTt5S8yOruTrQljNjAty8yK64V_t9USorXG1n5__6K7bA97X7JIaT6BkmVuzOv7QztZKj28U2xiWoM5G8pZkMqwXqOx99Tuj_XhyTgDsIQrwzX6m5rwv14U52KYy1Ds8Zdblc5
+> GData-Version: 3
+> If-Match: "A1cbT0hZByt7ImBk"
+> Content-Type: application/atom+xml
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:batch='http://schemas.google.com/gdata/batch' gd:etag='&quot;A1cbT0hZByt7ImBk&quot;'><title 
type='text'>Updated Test Update file 
(/documents/update/metadata-only/non-resumable)</title><id>https://docs.google.com/feeds/id/document%3A1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU</id><updated>2013-07-30T09:58:48Z</updated><published>2013-07-30T09:58:47Z</published><content
 type='text/plain' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU'/><category
 term='http://schemas.google.com/docs/2007#document' 
scheme='http://schemas.google.com/g/2005#kind'/><category 
term='http://schemas.google.com/g/2005/labels#viewed' scheme='http://schemas.google.com/g/2005/labels' 
label='viewed'/><category term='http://schemas.google.com/g/2005/labels#modi
 fied-by-me' scheme='http://schemas.google.com/g/2005/labels' label='modified-by-me'/><link 
href='https://docs.google.com/document/d/1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU/edit?usp=docslist_api' 
rel='http://www.iana.org/assignments/relation/alternate' type='text/html'/><link 
href='https://docs.google.com/document/d/1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU/preview' 
rel='http://schemas.google.com/docs/2007#embed' type='text/html'/><link 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png' 
rel='http://schemas.google.com/docs/2007#icon' type='image/png'/><link 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU'
 rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml'/><link 
href='https://docs.google.com/feeds/upload/file/default/private/full/document%3A1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU'
 rel='http://schemas.google.com/docs/
 2007#alt-edit-media' type='application/atom+xml'/><link 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU&amp;v=1&amp;s=AMedNnoAAAAAUfeqfX0s1uDj2B0co-WxraYHosE52RGk&amp;sz=s220'
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png'/><link 
href='https://docs.google.com/feeds/default/private/full/document%3A1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU'
 rel='http://www.iana.org/assignments/relation/self' type='application/atom+xml'/><link 
href='https://docs.google.com/feeds/default/private/full/document%3A1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU'
 rel='http://www.iana.org/assignments/relation/edit' type='application/atom+xml'/><link 
href='https://docs.google.com/feeds/default/media/document%3A1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU' 
rel='http://www.iana.org/assignments/relation/edit-media' type='text/html'/><link 
href='https://docs.google.com/feeds/default/private/full/document%3A1npOakO7xnVP
 h9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU/acl' rel='http://schemas.google.com/acl/2007#accessControlList'/><link 
href='https://docs.google.com/feeds/default/private/full/document%3A1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU/revisions'
 rel='http://schemas.google.com/docs/2007/revisions'/><author><name>libgdata.documents</name><email>libgdata 
documents gmail com</email></author><docs:writersCanInvite 
value='false'/><gd:resourceId>document:1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU</gd:resourceId><docs:isShareable
 value="true"/><docs:isShareableByMe 
value="true"/><docs:modifiedByMeDate>2013-07-30T09:58:48.149Z</docs:modifiedByMeDate></entry>
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375178333
+< Soup-Debug: SoupMessage 53 (0x7903b0)
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< GData-Version: 3.0
+< ETag: "A1cbT0RWFSt7ImBk"
+< Date: Tue, 30 Jul 2013 09:58:54 GMT
+< Expires: Tue, 30 Jul 2013 09:58:54 GMT
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< Transfer-Encoding: chunked
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;A1cbT0RWFSt7ImBk&quot;'><id>https://docs.google.com/feeds/id/document%3A1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU</id><published>2013-07-30T09:58:47.450Z</published><updated>2013-07-30T09:58:54.087Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:58:54.095Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#document' 
label='document'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#viewed' label='viewed'/><category 
scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' label='modified-by-me'/><title>Updated Test 
Update file (/documents/up
 date/metadata-only/non-resumable)</title><content type='text/html' 
src='https://docs.google.com/feeds/download/documents/export/Export?id=1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU'/><link
 rel='alternate' type='text/html' 
href='https://docs.google.com/document/d/1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU/edit?usp=docslist_api'/><link
 rel='http://schemas.google.com/docs/2007#embed' type='text/html' 
href='https://docs.google.com/document/d/1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU/preview'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_11_document_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/document%3A1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' href='https://docs
 
.google.com/feeds/upload/file/default/private/full/document%3A1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU'/><link
 rel='http://schemas.google.com/docs/2007/thumbnail' type='image/png' 
href='https://docs.google.com/feeds/vt?authuser=0&amp;gd=true&amp;id=1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU&amp;v=2&amp;s=AMedNnoAAAAAUfeqfprcfe310aqWMC3GkJa-fDyqW_yn&amp;sz=s220'/><link
 rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/document%3A1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU'/><link
 rel='edit-media' type='text/html' 
href='https://docs.google.com/feeds/default/media/document%3A1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail com</email></author><gd:resourceId>document:1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbb
 uJcWCXmfU</gd:resourceId><docs:isShareable value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:58:54.087Z</docs:modifiedByMeDate><gd:lastModifiedBy><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></gd:lastModifiedBy><gd:lastViewed>2013-07-30T09:58:48.149Z</gd:lastViewed><gd:quotaBytesUsed>0</gd:quotaBytesUsed><docs:writersCanInvite
 value='false'/><gd:feedLink rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/document%3A1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/document%3A1npOakO7xnVPh9vY3eJxm5zSCaFjAR-MTbbuJcWCXmfU/revisions'/></entry>
+  
diff --git a/gdata/tests/traces/documents/upload b/gdata/tests/traces/documents/upload
new file mode 100644
index 0000000..006c497
--- /dev/null
+++ b/gdata/tests/traces/documents/upload
@@ -0,0 +1,52 @@
+> POST 
/feeds/upload/create-session/default/private/full/folder%3A0BzY2jgHHwMwYRE45NjBPNXZxdkU/contents?convert=false
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375175588
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 41 (0x764370), SoupSocket 18 (0x7fffe4013540)
+> Host: docs.google.com
+> Slug: test.odt
+> X-Upload-Content-Type: application/vnd.oasis.opendocument.text
+> X-Upload-Content-Length: 8033
+> Content-Length: 0
+> Authorization: GoogleLogin 
auth=DQAAANAAAAA5MDKK4E9xdZ1I5mgL3036VLF8H0MhPafg1ZDG2ZSa9YJD-eRWreXmtq9Dkr-pVdCCOpE58WulMukAnLUSLKaNf1K_5cD1irOA2YwqcSNoow57EMR-GsPzYz_5mLdtZI25DarmO4a484wRLuCUpVAGJjcXazsyVEhTG_kroOlRBDxxlbh-PTRomN4RYuOw1e7wSdLj4V-LnMMAqalFM3KtDCXsMPzLK4ucxNtU4ONV-zmxHPPJ3pWsBpsda-r76aFNRGNnFximisUska8ludDc
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1375175588
+< Soup-Debug: SoupMessage 41 (0x764370)
+< Location: 
https://docs.google.com/feeds/upload/create-session/default/private/full/folder%3A0BzY2jgHHwMwYRE45NjBPNXZxdkU/contents?convert=false&upload_id=AEnB2Uopnnrt9t8yapdtOblzA9n4LKhgUsOxJelucfVKxg1srQmrRd1H3g7SF4DF51oEHRZdffM5GQio65rLNtA4pageK7Yr_A
+< Date: Tue, 30 Jul 2013 09:13:09 GMT
+< Server: HTTP Upload Server Built on Jul 21 2013 19:20:38 (1374459638)
+< Content-Length: 0
+< Content-Type: text/html; charset=UTF-8
+< 
+  
+> PUT 
/feeds/upload/create-session/default/private/full/folder%3A0BzY2jgHHwMwYRE45NjBPNXZxdkU/contents?convert=false&upload_id=AEnB2Uopnnrt9t8yapdtOblzA9n4LKhgUsOxJelucfVKxg1srQmrRd1H3g7SF4DF51oEHRZdffM5GQio65rLNtA4pageK7Yr_A
 HTTP/1.1
+> Soup-Debug-Timestamp: 1375175588
+> Soup-Debug: SoupSession 1 (0x6592c0), SoupMessage 42 (0x764640), SoupSocket 18 (0x7fffe4013540)
+> Host: docs.google.com
+> Content-Type: application/vnd.oasis.opendocument.text
+> Content-Length: 8033
+> Content-Range: bytes 0-8032/8033
+> Authorization: GoogleLogin 
auth=DQAAANAAAAA5MDKK4E9xdZ1I5mgL3036VLF8H0MhPafg1ZDG2ZSa9YJD-eRWreXmtq9Dkr-pVdCCOpE58WulMukAnLUSLKaNf1K_5cD1irOA2YwqcSNoow57EMR-GsPzYz_5mLdtZI25DarmO4a484wRLuCUpVAGJjcXazsyVEhTG_kroOlRBDxxlbh-PTRomN4RYuOw1e7wSdLj4V-LnMMAqalFM3KtDCXsMPzLK4ucxNtU4ONV-zmxHPPJ3pWsBpsda-r76aFNRGNnFximisUska8ludDc
+> GData-Version: 3
+> Accept-Encoding: gzip, deflate
+> Connection: Keep-Alive
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1375175589
+< Soup-Debug: SoupMessage 42 (0x764640)
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Tue, 30 Jul 2013 09:13:09 GMT
+< Date: Tue, 30 Jul 2013 09:13:09 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 3.0
+< ETag: "A1cUERtIDit7ImBk"
+< Location: 
https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYRE45NjBPNXZxdkU/contents/file%3A0BzY2jgHHwMwYZzRFSzJDV2ZHeVk
+< Content-Location: 
https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYRE45NjBPNXZxdkU/contents/file%3A0BzY2jgHHwMwYZzRFSzJDV2ZHeVk
+< Content-Length: 3684
+< Server: HTTP Upload Server Built on Jul 21 2013 19:20:38 (1374459638)
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:docs='http://schemas.google.com/docs/2007' xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:gd='http://schemas.google.com/g/2005' 
gd:etag='&quot;A1cUERtIDit7ImBk&quot;'><id>https://docs.google.com/feeds/id/file%3A0BzY2jgHHwMwYZzRFSzJDV2ZHeVk</id><published>2013-07-30T09:13:09.406Z</published><updated>2013-07-30T09:13:09.406Z</updated><app:edited
 xmlns:app='http://www.w3.org/2007/app'>2013-07-30T09:13:09.406Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/docs/2007#file' 
label='application/vnd.oasis.opendocument.text'/><category scheme='http://schemas.google.com/g/2005/labels' 
term='http://schemas.google.com/g/2005/labels#modified-by-me' 
label='modified-by-me'/><title>Untitled</title><content type='application/vnd.oasis.opendocument.text' 
src='https://doc-08-4o-docs.googleusercontent.com/docs/securesc/p3gkcpm4vekih3vn1285g2jn1
 
spuiriq/qpte5edpmu3spgoojhu4013lkd0mbkif/1375171200000/04693666875216770588/04693666875216770588/0BzY2jgHHwMwYZzRFSzJDV2ZHeVk?h=16653014193614665626&amp;e=download&amp;gd=true'/><link
 rel='http://schemas.google.com/docs/2007#parent' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYRE45NjBPNXZxdkU' 
title='Temporary Folder for Uploading Documents'/><link rel='alternate' type='text/html' 
href='https://docs.google.com/file/d/0BzY2jgHHwMwYZzRFSzJDV2ZHeVk/edit?usp=docslist_api'/><link 
rel='http://schemas.google.com/docs/2007#icon' type='image/png' 
href='https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png'/><link 
rel='http://schemas.google.com/g/2005#resumable-edit-media' type='application/atom+xml' 
href='https://docs.google.com/feeds/upload/create-session/default/private/full/file%3A0BzY2jgHHwMwYZzRFSzJDV2ZHeVk'/><link
 rel='http://schemas.google.com/docs/2007#alt-edit-media' type='application/atom+xml' href
 ='https://docs.google.com/feeds/upload/file/default/private/full/file%3A0BzY2jgHHwMwYZzRFSzJDV2ZHeVk'/><link 
rel='self' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYRE45NjBPNXZxdkU/contents/file%3A0BzY2jgHHwMwYZzRFSzJDV2ZHeVk'/><link
 rel='edit' type='application/atom+xml' 
href='https://docs.google.com/feeds/default/private/full/folder%3A0BzY2jgHHwMwYRE45NjBPNXZxdkU/contents/file%3A0BzY2jgHHwMwYZzRFSzJDV2ZHeVk'/><link
 rel='edit-media' type='application/vnd.oasis.opendocument.text' 
href='https://docs.google.com/feeds/default/contentmedia/folder%3A0BzY2jgHHwMwYRE45NjBPNXZxdkU/file%3A0BzY2jgHHwMwYZzRFSzJDV2ZHeVk'/><author><name>libgdata.documents</name><email>libgdata
 documents gmail 
com</email></author><gd:resourceId>file:0BzY2jgHHwMwYZzRFSzJDV2ZHeVk</gd:resourceId><docs:isShareable 
value='true'/><docs:isShareableByMe 
value='true'/><docs:modifiedByMeDate>2013-07-30T09:13:09.399Z</docs:modifiedByMeDate><gd:lastModifie
 dBy><name>libgdata.documents</name><email>libgdata documents gmail 
com</email></gd:lastModifiedBy><gd:quotaBytesUsed>8033</gd:quotaBytesUsed><docs:writersCanInvite 
value='true'/><docs:md5Checksum>95439a6d6456a79d43980c05c9f25c7d</docs:md5Checksum><docs:filename>Untitled</docs:filename><docs:suggestedFilename>Untitled</docs:suggestedFilename><docs:size>8033</docs:size><gd:feedLink
 rel='http://schemas.google.com/acl/2007#accessControlList' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYZzRFSzJDV2ZHeVk/acl'/><gd:feedLink
 rel='http://schemas.google.com/docs/2007/revisions' 
href='https://docs.google.com/feeds/default/private/full/file%3A0BzY2jgHHwMwYZzRFSzJDV2ZHeVk/revisions'/></entry>
+  



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]