浏览代码

Merge r25276 - r25278 from trunk

Brings in Zend_Service_Twitter changes



git-svn-id: http://framework.zend.com/svn/framework/standard/branches/release-1.12@25279 44c647ce-9c0f-0410-b52a-842ac1e357ba
matthew 13 年之前
父节点
当前提交
2ee4633318
共有 52 个文件被更改,包括 17499 次插入15666 次删除
  1. 802 556
      library/Zend/Service/Twitter.php
  2. 179 0
      library/Zend/Service/Twitter/Response.php
  3. 0 167
      library/Zend/Service/Twitter/Search.php
  4. 0 13
      tests/TestConfiguration.php.dist
  5. 0 2
      tests/Zend/Service/Twitter/AllTests.php
  6. 0 180
      tests/Zend/Service/Twitter/TwitterSearchTest.php
  7. 166 280
      tests/Zend/Service/Twitter/TwitterTest.php
  8. 110 0
      tests/Zend/Service/Twitter/_files/account.rate_limit_status.json
  9. 60 0
      tests/Zend/Service/Twitter/_files/account.verify_credentials.json
  10. 0 46
      tests/Zend/Service/Twitter/_files/account.verify_credentials.xml
  11. 0 9
      tests/Zend/Service/Twitter/_files/blocks.blocking.ids.xml
  12. 0 515
      tests/Zend/Service/Twitter/_files/blocks.blocking.xml
  13. 45 0
      tests/Zend/Service/Twitter/_files/blocks.create.twitter.json
  14. 0 48
      tests/Zend/Service/Twitter/_files/blocks.create.twitter.xml
  15. 45 0
      tests/Zend/Service/Twitter/_files/blocks.destroy.twitter.json
  16. 0 48
      tests/Zend/Service/Twitter/_files/blocks.destroy.twitter.xml
  17. 0 5
      tests/Zend/Service/Twitter/_files/blocks.exists.padraicb.xml
  18. 0 48
      tests/Zend/Service/Twitter/_files/blocks.exists.twitter.xml
  19. 14 0
      tests/Zend/Service/Twitter/_files/blocks.ids.json
  20. 908 0
      tests/Zend/Service/Twitter/_files/blocks.list.json
  21. 70 0
      tests/Zend/Service/Twitter/_files/favorites.create.json
  22. 0 46
      tests/Zend/Service/Twitter/_files/favorites.create.xml
  23. 70 0
      tests/Zend/Service/Twitter/_files/favorites.destroy.json
  24. 0 46
      tests/Zend/Service/Twitter/_files/favorites.destroy.xml
  25. 1192 0
      tests/Zend/Service/Twitter/_files/favorites.list.json
  26. 0 768
      tests/Zend/Service/Twitter/_files/favorites.xml
  27. 87 0
      tests/Zend/Service/Twitter/_files/friendships.create.twitter.json
  28. 0 48
      tests/Zend/Service/Twitter/_files/friendships.create.twitter.xml
  29. 87 0
      tests/Zend/Service/Twitter/_files/friendships.destroy.twitter.json
  30. 0 48
      tests/Zend/Service/Twitter/_files/friendships.destroy.twitter.xml
  31. 0 1
      tests/Zend/Service/Twitter/_files/friendships.exists.twitter.xml
  32. 0 909
      tests/Zend/Service/Twitter/_files/public_timeline.xml
  33. 0 7
      tests/Zend/Service/Twitter/_files/rate_limit_status.xml
  34. 1887 0
      tests/Zend/Service/Twitter/_files/search.tweets.json
  35. 74 0
      tests/Zend/Service/Twitter/_files/statuses.destroy.json
  36. 0 46
      tests/Zend/Service/Twitter/_files/statuses.destroy.xml
  37. 0 4605
      tests/Zend/Service/Twitter/_files/statuses.followers.xml
  38. 0 4655
      tests/Zend/Service/Twitter/_files/statuses.friends.xml
  39. 0 868
      tests/Zend/Service/Twitter/_files/statuses.friends_timeline.page.xml
  40. 2739 0
      tests/Zend/Service/Twitter/_files/statuses.home_timeline.page.json
  41. 0 903
      tests/Zend/Service/Twitter/_files/statuses.mentions.xml
  42. 2280 0
      tests/Zend/Service/Twitter/_files/statuses.mentions_timeline.json
  43. 1534 0
      tests/Zend/Service/Twitter/_files/statuses.sample.json
  44. 89 0
      tests/Zend/Service/Twitter/_files/statuses.show.json
  45. 0 46
      tests/Zend/Service/Twitter/_files/statuses.show.xml
  46. 89 0
      tests/Zend/Service/Twitter/_files/statuses.update.json
  47. 0 46
      tests/Zend/Service/Twitter/_files/statuses.update.xml
  48. 2454 0
      tests/Zend/Service/Twitter/_files/statuses.user_timeline.mwop.json
  49. 0 659
      tests/Zend/Service/Twitter/_files/user_timeline.twitter.xml
  50. 2429 0
      tests/Zend/Service/Twitter/_files/users.search.json
  51. 89 0
      tests/Zend/Service/Twitter/_files/users.show.mwop.json
  52. 0 48
      tests/Zend/Service/Twitter/_files/users.show.twitter.xml

文件差异内容过多而无法显示
+ 802 - 556
library/Zend/Service/Twitter.php


+ 179 - 0
library/Zend/Service/Twitter/Response.php

@@ -0,0 +1,179 @@
+<?php
+/**
+ * Zend Framework
+ *
+ * LICENSE
+ *
+ * This source file is subject to the new BSD license that is bundled
+ * with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://framework.zend.com/license/new-bsd
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to license@zend.com so we can send you a copy immediately.
+ *
+ * @category   Zend
+ * @package    Zend_Service
+ * @subpackage Twitter
+ * @copyright  Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license    http://framework.zend.com/license/new-bsd     New BSD License
+ * @version    $Id$
+ */
+
+/**
+ * @see Zend_Http_Response
+ */
+require_once 'Zend/Http/Response.php';
+
+/**
+ * @see Zend_Json
+ */
+require_once 'Zend/Json.php';
+
+/**
+ * Representation of a response from Twitter.
+ *
+ * Provides:
+ *
+ * - method for testing if we have a successful call
+ * - method for retrieving errors, if any
+ * - method for retrieving the raw JSON
+ * - method for retrieving the decoded response
+ * - proxying to elements of the decoded response via property overloading
+ *
+ * @category   Zend
+ * @package    Zend_Service
+ * @subpackage Twitter
+ * @copyright  Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license    http://framework.zend.com/license/new-bsd     New BSD License
+ */
+class Zend_Service_Twitter_Response
+{
+    /**
+     * @var Zend_Http_Response
+     */
+    protected $httpResponse;
+
+    /**
+     * @var array|stdClass
+     */
+    protected $jsonBody;
+
+    /**
+     * @var string
+     */
+    protected $rawBody;
+
+    /**
+     * Constructor
+     *
+     * Assigns the HTTP response to a property, as well as the body
+     * representation. It then attempts to decode the body as JSON.
+     *
+     * @param  Zend_Http_Response $httpResponse
+     * @throws Zend_Service_Twitter_Exception if unable to decode JSON response
+     */
+    public function __construct(Zend_Http_Response $httpResponse)
+    {
+        $this->httpResponse = $httpResponse;
+        $this->rawBody      = $httpResponse->getBody();
+        try {
+            $jsonBody = Zend_Json::decode($this->rawBody, Zend_Json::TYPE_OBJECT);
+            $this->jsonBody = $jsonBody;
+        } catch (Zend_Json_Exception $e) {
+            require_once 'Zend/Service/Twitter/Exception.php';
+            throw new Zend_Service_Twitter_Exception(sprintf(
+                'Unable to decode response from twitter: %s',
+                $e->getMessage()
+            ), 0, $e);
+        }
+    }
+
+    /**
+     * Property overloading to JSON elements
+     *
+     * If a named property exists within the JSON response returned,
+     * proxies to it. Otherwise, returns null.
+     *
+     * @param  string $name
+     * @return mixed
+     */
+    public function __get($name)
+    {
+        if (null === $this->jsonBody) {
+            return null;
+        }
+        if (!isset($this->jsonBody->{$name})) {
+            return null;
+        }
+        return $this->jsonBody->{$name};
+    }
+
+    /**
+     * Was the request successful?
+     *
+     * @return bool
+     */
+    public function isSuccess()
+    {
+        return $this->httpResponse->isSuccessful();
+    }
+
+    /**
+     * Did an error occur in the request?
+     *
+     * @return bool
+     */
+    public function isError()
+    {
+        return !$this->httpResponse->isSuccessful();
+    }
+
+    /**
+     * Retrieve the errors.
+     *
+     * Twitter _should_ return a standard error object, which contains an
+     * "errors" property pointing to an array of errors. This method will
+     * return that array if present, and raise an exception if not detected.
+     *
+     * If the response was successful, an empty array is returned.
+     *
+     * @return array
+     * @throws Exception\DomainException if unable to detect structure of error response
+     */
+    public function getErrors()
+    {
+        if (!$this->isError()) {
+            return array();
+        }
+        if (null === $this->jsonBody
+            || !isset($this->jsonBody->errors)
+        ) {
+            require_once 'Zend/Service/Twitter/Exception.php';
+            throw new Zend_Service_Twitter_Exception(
+                'Either no JSON response received, or JSON error response is malformed; cannot return errors'
+            );
+        }
+        return $this->jsonBody->errors;
+    }
+
+    /**
+     * Retrieve the raw response body
+     *
+     * @return string
+     */
+    public function getRawResponse()
+    {
+        return $this->rawBody;
+    }
+
+    /**
+     * Retun the decoded response body
+     *
+     * @return array|stdClass
+     */
+    public function toValue()
+    {
+        return $this->jsonBody;
+    }
+}

+ 0 - 167
library/Zend/Service/Twitter/Search.php

@@ -1,167 +0,0 @@
-<?php
-/**
- * Zend Framework
- *
- * LICENSE
- *
- * This source file is subject to the new BSD license that is bundled
- * with this package in the file LICENSE.txt.
- * It is also available through the world-wide-web at this URL:
- * http://framework.zend.com/license/new-bsd
- * If you did not receive a copy of the license and are unable to
- * obtain it through the world-wide-web, please send an email
- * to license@zend.com so we can send you a copy immediately.
- *
- * @category   Zend
- * @package    Zend_Service
- * @subpackage Twitter
- * @copyright  Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
- * @license    http://framework.zend.com/license/new-bsd     New BSD License
- * @version    $Id$
- */
-
-/**
- * @see Zend_Http_Client
- */
-require_once 'Zend/Rest/Client.php';
-
-/**
- * @see Zend_Json
- */
-require_once 'Zend/Json.php';
-
-/**
- * @see Zend_Feed
- */
-require_once 'Zend/Feed.php';
-
-/**
- * @category   Zend
- * @package    Zend_Service
- * @subpackage Twitter
- * @copyright  Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
- * @license    http://framework.zend.com/license/new-bsd     New BSD License
- */
-
-class Zend_Service_Twitter_Search extends Zend_Rest_Client
-{
-    /**
-     * Return Type
-     * @var String
-     */
-    protected $_responseType = 'json';
-
-    /**
-     * Response Format Types
-     * @var array
-     */
-    protected $_responseTypes = array(
-        'atom',
-        'json'
-    );
-
-    /**
-     * Uri Compoent
-     *
-     * @var Zend_Uri_Http
-     */
-    protected $_uri;
-
-    /**
-     * Constructor
-     *
-     * @param  string $returnType
-     * @return void
-     */
-    public function __construct($responseType = 'json')
-    {
-        $this->setResponseType($responseType);
-        $this->setUri("http://search.twitter.com");
-
-        $this->setHeaders('Accept-Charset', 'ISO-8859-1,utf-8');
-    }
-
-    /**
-     * set responseType
-     *
-     * @param string $responseType
-     * @throws Zend_Service_Twitter_Exception
-     * @return Zend_Service_Twitter_Search
-     */
-    public function setResponseType($responseType = 'json')
-    {
-        if(!in_array($responseType, $this->_responseTypes, TRUE)) {
-            require_once 'Zend/Service/Twitter/Exception.php';
-            throw new Zend_Service_Twitter_Exception('Invalid Response Type');
-        }
-        $this->_responseType = $responseType;
-        return $this;
-    }
-
-    /**
-     * Retrieve responseType
-     *
-     * @return string
-     */
-    public function getResponseType()
-    {
-        return $this->_responseType;
-    }
-
-    /**
-     * Get the current twitter trends.  Currnetly only supports json as the return.
-     *
-     * @throws Zend_Http_Client_Exception
-     * @return array
-     */
-    public function trends()
-    {
-        $response     = $this->restGet('/trends.json');
-
-        return Zend_Json::decode($response->getBody());
-    }
-
-    /**
-     * Performs a Twitter search query.
-     *
-     * @throws Zend_Http_Client_Exception
-     */
-    public function search($query, array $params = array())
-    {
-
-        $_query = array();
-
-        $_query['q'] = $query;
-
-        foreach($params as $key=>$param) {
-            switch($key) {
-                case 'geocode':
-                case 'lang':
-                case 'since_id':
-                    $_query[$key] = $param;
-                    break;
-                case 'rpp':
-                    $_query[$key] = (intval($param) > 100) ? 100 : intval($param);
-                    break;
-                case 'page':
-                    $_query[$key] = intval($param);
-                    break;
-                case 'show_user':
-                    $_query[$key] = 'true';
-            }
-        }
-
-        $response = $this->restGet('/search.' . $this->_responseType, $_query);
-
-        switch($this->_responseType) {
-            case 'json':
-                return Zend_Json::decode($response->getBody());
-                break;
-            case 'atom':
-                return Zend_Feed::importString($response->getBody());
-                break;
-        }
-
-        return ;
-    }
-}

+ 0 - 13
tests/TestConfiguration.php.dist

@@ -703,19 +703,6 @@ defined('TESTS_ZEND_SERVICE_SLIDESHARE_TAG') || define('TESTS_ZEND_SERVICE_SLIDE
 defined('TESTS_ZEND_SERVICE_SLIDESHARE_GROUP') || define('TESTS_ZEND_SERVICE_SLIDESHARE_GROUP', '');
 
 /**
- * Zend_Service_Twitter tests
- *
- * ONLINE_ENABLED indicates whether or not to run tests requiring a network
- * connection.
- *
- * TWITTER_USER and TWITTER_PASS are valid Twitter credentials you wish to use
- * when testing.
- */
-defined('TESTS_ZEND_SERVICE_TWITTER_ONLINE_ENABLED') || define('TESTS_ZEND_SERVICE_TWITTER_ONLINE_ENABLED', false);
-defined('TESTS_ZEND_SERVICE_TWITTER_USER') || define('TESTS_ZEND_SERVICE_TWITTER_USER', 'zftestuser');
-defined('TESTS_ZEND_SERVICE_TWITTER_PASS') || define('TESTS_ZEND_SERVICE_TWITTER_PASS', 'zftestuser');
-
-/**
  * Zend_Service_WindowsAzure  tests
  */
 

+ 0 - 2
tests/Zend/Service/Twitter/AllTests.php

@@ -25,7 +25,6 @@ if (!defined('PHPUnit_MAIN_METHOD')) {
 }
 
 require_once 'Zend/Service/Twitter/TwitterTest.php';
-require_once 'Zend/Service/Twitter/TwitterSearchTest.php';
 
 /**
  * @category   Zend
@@ -58,7 +57,6 @@ class Zend_Service_Twitter_AllTests
         $suite = new PHPUnit_Framework_TestSuite('Zend Framework - Zend_Service_Twitter');
 
         $suite->addTestSuite('Zend_Service_Twitter_TwitterTest');
-        $suite->addTestSuite('Zend_Service_Twitter_TwitterSearchTest');
 
         return $suite;
     }

+ 0 - 180
tests/Zend/Service/Twitter/TwitterSearchTest.php

@@ -1,180 +0,0 @@
-<?php
-/**
- * Zend Framework
- *
- * LICENSE
- *
- * This source file is subject to the new BSD license that is bundled
- * with this package in the file LICENSE.txt.
- * It is also available through the world-wide-web at this URL:
- * http://framework.zend.com/license/new-bsd
- * If you did not receive a copy of the license and are unable to
- * obtain it through the world-wide-web, please send an email
- * to license@zend.com so we can send you a copy immediately.
- *
- * @category   Zend
- * @package    Zend_Service_Twitter_Search
- * @subpackage UnitTests
- * @copyright  Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
- * @license    http://framework.zend.com/license/new-bsd     New BSD License
- * @version    $Id$
- */
-
-if (!defined('PHPUnit_MAIN_METHOD')) {
-    define('PHPUnit_MAIN_METHOD', 'Zend_Service_Twitter_TwitterSearchTest::main');
-}
-
-/** Zend_Service_Twitter_Search */
-require_once 'Zend/Service/Twitter/Search.php';
-
-/** Zend_Http_Client */
-require_once 'Zend/Http/Client.php';
-
-/** Zend_Http_Client_Adapter_Test */
-require_once 'Zend/Http/Client/Adapter/Test.php';
-
-/**
- * @category   Zend
- * @package    Zend_Service_Twitter
- * @subpackage UnitTests
- * @copyright  Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
- * @license    http://framework.zend.com/license/new-bsd     New BSD License
- * @group      Zend_Service
- * @group      Zend_Service_Twitter
- */
-class Zend_Service_Twitter_TwitterSearchTest extends PHPUnit_Framework_TestCase
-{
-    /**
-     * Runs the test methods of this class.
-     *
-     * @return void
-     */
-    public static function main()
-    {
-        $suite  = new PHPUnit_Framework_TestSuite(__CLASS__);
-        $result = PHPUnit_TextUI_TestRunner::run($suite);
-    }
-
-    /**
-     * Sets up the fixture, for example, open a network connection.
-     * This method is called before a test is executed.
-     *
-     * @return void
-     */
-    protected function setUp()
-    {
-        if (!defined('TESTS_ZEND_SERVICE_TWITTER_ONLINE_ENABLED')
-            || !constant('TESTS_ZEND_SERVICE_TWITTER_ONLINE_ENABLED')
-        ) {
-            $this->markTestSkipped('Twitter tests are not enabled');
-            return;
-        }
-
-        $this->twitter = new Zend_Service_Twitter_Search();
-    }
-
-    public function testSetResponseTypeToJSON()
-    {
-        $this->twitter->setResponseType('json');
-        $this->assertEquals('json', $this->twitter->getResponseType());
-    }
-
-    public function testSetResponseTypeToATOM()
-    {
-        $this->twitter->setResponseType('atom');
-        $this->assertEquals('atom', $this->twitter->getResponseType());
-    }
-
-    public function testInvalidResponseTypeShouldThrowException()
-    {
-        try {
-            $this->twitter->setResponseType('xml');
-            $this->fail('Setting an invalid response type should throw an exception');
-        } catch(Exception $e) {
-        }
-    }
-
-    public function testValidResponseTypeShouldNotThrowException()
-    {
-        try {
-            $this->twitter->setResponseType('atom');
-        } catch(Exception $e) {
-            $this->fail('Setting a valid response type should not throw an exception');
-        }
-    }
-
-    public function testSearchTrendsReturnsArray()
-    {
-        $response = $this->twitter->trends();
-        $this->assertType('array', $response);
-    }
-
-    public function testJsonSearchContainsWordReturnsArray()
-    {
-        $this->twitter->setResponseType('json');
-        $response = $this->twitter->search('zend');
-        $this->assertType('array', $response);
-
-    }
-
-    public function testAtomSearchContainsWordReturnsObject()
-    {
-        $this->twitter->setResponseType('atom');
-        $response = $this->twitter->search('zend');
-
-        $this->assertTrue($response instanceof Zend_Feed_Atom);
-
-    }
-
-    public function testJsonSearchRestrictsLanguageReturnsArray()
-    {
-        $this->twitter->setResponseType('json');
-        $response = $this->twitter->search('zend', array('lang' => 'de'));
-        $this->assertType('array', $response);
-        $this->assertTrue((isset($response['results'][0]) && $response['results'][0]['iso_language_code'] == "de"));
-    }
-
-    public function testAtomSearchRestrictsLanguageReturnsObject()
-    {
-        $this->twitter->setResponseType('atom');
-        /* @var $response Zend_Feed_Atom */
-        $response = $this->twitter->search('zend', array('lang' => 'de'));
-
-        $this->assertTrue($response instanceof Zend_Feed_Atom);
-        $this->assertTrue((strpos($response->link('self'), 'lang=de') !== false));
-
-    }
-
-    public function testJsonSearchReturnThirtyResultsReturnsArray()
-    {
-        $this->twitter->setResponseType('json');
-        $response = $this->twitter->search('zend', array('rpp' => '30'));
-        $this->assertType('array', $response);
-        $this->assertTrue((count($response['results']) == 30));
-    }
-
-    public function testAtomSearchReturnThirtyResultsReturnsObject()
-    {
-        $this->twitter->setResponseType('atom');
-        /* @var $response Zend_Feed_Atom */
-        $response = $this->twitter->search('zend', array('rpp' => '30'));
-
-        $this->assertTrue($response instanceof Zend_Feed_Atom);
-        $this->assertTrue(($response->count() == 30));
-
-    }
-
-    public function testAtomSearchShowUserReturnsObject()
-    {
-        $this->twitter->setResponseType('atom');
-        /* @var $response Zend_Feed_Atom */
-        $response = $this->twitter->search('zend', array('show_user' => 'true'));
-
-        $this->assertTrue($response instanceof Zend_Feed_Atom);
-
-    }
-}
-
-if (PHPUnit_MAIN_METHOD == 'Zend_Service_TwitterSearchTest::main') {
-    Zend_Service_TwitterSearchTest::main();
-}

+ 166 - 280
tests/Zend/Service/Twitter/TwitterTest.php

@@ -21,11 +21,12 @@
  */
 
 if (!defined('PHPUnit_MAIN_METHOD')) {
-    define('PHPUnit_MAIN_METHOD', 'Zend_Service_Twitter_TwitterTest2::main');
+    define('PHPUnit_MAIN_METHOD', 'Zend_Service_Twitter_TwitterTest::main');
 }
 
 /** Zend_Service_Twitter */
 require_once 'Zend/Service/Twitter.php';
+require_once 'Zend/Service/Twitter/Response.php';
 
 /** Zend_Http_Client */
 require_once 'Zend/Http/Client.php';
@@ -37,8 +38,6 @@ require_once 'Zend/Http/Client/Adapter/Test.php';
  * @category   Zend
  * @package    Zend_Service_Twitter
  * @subpackage UnitTests
- * @copyright  Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
- * @license    http://framework.zend.com/license/new-bsd     New BSD License
  * @group      Zend_Service
  * @group      Zend_Service_Twitter
  */
@@ -56,16 +55,11 @@ class Zend_Service_Twitter_TwitterTest extends PHPUnit_Framework_TestCase
         $result = PHPUnit_TextUI_TestRunner::run($suite);
     }
 
-    public function teardown()
-    {
-        Zend_Service_Abstract::setHttpClient(new Zend_Http_Client);
-    }
-
     /**
      * Quick reusable Twitter Service stub setup. Its purpose is to fake
      * interactions with Twitter so the component can focus on what matters:
      * 1. Makes correct requests (URI, parameters and HTTP method)
-     * 2. Parses all responses and returns a Zend_Rest_Client_Result
+     * 2. Parses all responses and returns a Zend_Service_Twitter_Response
      * 3. TODO: Correctly utilises all optional parameters
      *
      * If used correctly, tests will be fast, efficient, and focused on
@@ -79,19 +73,19 @@ class Zend_Service_Twitter_TwitterTest extends PHPUnit_Framework_TestCase
      * @param array $params Expected GET/POST parameters for the request
      * @return Zend_Http_Client
      */
-    protected function _stubTwitter($path, $method, $responseFile = null, array $params = null)
+    protected function stubTwitter($path, $method, $responseFile = null, array $params = null)
     {
         $client = $this->getMock('Zend_Oauth_Client', array(), array(), '', false);
         $client->expects($this->any())->method('resetParameters')
             ->will($this->returnValue($client));
         $client->expects($this->once())->method('setUri')
-            ->with('https://api.twitter.com/1/' . $path);
+            ->with('https://api.twitter.com/1.1/' . $path);
         $response = $this->getMock('Zend_Http_Response', array(), array(), '', false);
         if (!is_null($params)) {
             $setter = 'setParameter' . ucfirst(strtolower($method));
             $client->expects($this->once())->method($setter)->with($params);
         }
-        $client->expects($this->once())->method('request')->with($method)
+        $client->expects($this->once())->method('request')->with()
             ->will($this->returnValue($response));
         $response->expects($this->any())->method('getBody')
             ->will($this->returnValue(
@@ -109,10 +103,11 @@ class Zend_Service_Twitter_TwitterTest extends PHPUnit_Framework_TestCase
         $token = $this->getMock('Zend_Oauth_Token_Access', array(), array(), '', false);
         $client = $this->getMock('Zend_Oauth_Client', array(), array(), '', false);
         $token->expects($this->once())->method('getHttpClient')
-            ->with(array('accessToken'=>$token, 'opt1'=>'val1', 'siteUrl'=>'https://api.twitter.com/oauth'))
+            ->with(array('token'=>$token, 'siteUrl'=>'https://api.twitter.com/oauth'))
             ->will($this->returnValue($client));
+
         $twitter = new Zend_Service_Twitter(array('accessToken'=>$token, 'opt1'=>'val1'));
-        $this->assertTrue($client === $twitter->getLocalHttpClient());
+        $this->assertTrue($client === $twitter->getHttpClient());
     }
 
     public function testNotAuthorisedWithoutToken()
@@ -126,8 +121,9 @@ class Zend_Service_Twitter_TwitterTest extends PHPUnit_Framework_TestCase
         $token = $this->getMock('Zend_Oauth_Token_Access', array(), array(), '', false);
         $client = $this->getMock('Zend_Oauth_Client', array(), array(), '', false);
         $token->expects($this->once())->method('getHttpClient')
-            ->with(array('accessToken'=>$token, 'siteUrl'=>'https://api.twitter.com/oauth'))
+            ->with(array('token'=>$token, 'siteUrl'=>'https://api.twitter.com/oauth'))
             ->will($this->returnValue($client));
+
         $twitter = new Zend_Service_Twitter(array('accessToken'=>$token));
         $this->assertTrue($twitter->isAuthorised());
     }
@@ -140,6 +136,7 @@ class Zend_Service_Twitter_TwitterTest extends PHPUnit_Framework_TestCase
         $oauth->expects($this->once())->method('redirect')->will($this->returnValue('foo'));
         $oauth->expects($this->once())->method('getAccessToken')->will($this->returnValue('foo'));
         $oauth->expects($this->once())->method('getToken')->will($this->returnValue('foo'));
+
         $twitter = new Zend_Service_Twitter(array('opt1'=>'val1'), $oauth);
         $this->assertEquals('foo', $twitter->getRequestToken());
         $this->assertEquals('foo', $twitter->getRedirectUrl());
@@ -150,24 +147,24 @@ class Zend_Service_Twitter_TwitterTest extends PHPUnit_Framework_TestCase
 
     public function testResetsHttpClientOnReceiptOfAccessTokenToOauthClient()
     {
+        $this->markTestIncomplete('Problem with resolving classes for mocking');
         $oauth = $this->getMock('Zend_Oauth_Consumer', array(), array(), '', false);
         $client = $this->getMock('Zend_Oauth_Client', array(), array(), '', false);
         $token = $this->getMock('Zend_Oauth_Token_Access', array(), array(), '', false);
         $token->expects($this->once())->method('getHttpClient')->will($this->returnValue($client));
         $oauth->expects($this->once())->method('getAccessToken')->will($this->returnValue($token));
         $client->expects($this->once())->method('setHeaders')->with('Accept-Charset', 'ISO-8859-1,utf-8');
+
         $twitter = new Zend_Service_Twitter(array(), $oauth);
         $twitter->getAccessToken(array(), $this->getMock('Zend_Oauth_Token_Request'));
-        $this->assertTrue($client === $twitter->getLocalHttpClient());
+        $this->assertTrue($client === $twitter->getHttpClient());
     }
 
-    /**
-     * @expectedException Zend_Service_Twitter_Exception
-     */
     public function testAuthorisationFailureWithUsernameAndNoAccessToken()
     {
+        $this->setExpectedException('Zend_Service_Twitter_Exception');
         $twitter = new Zend_Service_Twitter(array('username'=>'me'));
-        $twitter->statusPublicTimeline();
+        $twitter->statusesPublicTimeline();
     }
 
     /**
@@ -176,11 +173,13 @@ class Zend_Service_Twitter_TwitterTest extends PHPUnit_Framework_TestCase
     public function testUserNameNotRequired()
     {
         $twitter = new Zend_Service_Twitter();
-        $twitter->setLocalHttpClient($this->_stubTwitter(
-            'users/show.xml', Zend_Http_Client::GET, 'users.show.twitter.xml',
-            array('id'=>'twitter')
+        $twitter->setHttpClient($this->stubTwitter(
+            'users/show.json', Zend_Http_Client::GET, 'users.show.mwop.json',
+            array('screen_name' => 'mwop')
         ));
-        $exists = $twitter->user->show('twitter')->id() !== null;
+        $response = $twitter->users->show('mwop');
+        $this->assertType('Zend_Service_Twitter_Response', $response);
+        $exists = $response->id !== null;
         $this->assertTrue($exists);
     }
 
@@ -190,20 +189,20 @@ class Zend_Service_Twitter_TwitterTest extends PHPUnit_Framework_TestCase
     public function testRetrievingStatusesWithValidScreenNameThrowsNoInvalidScreenNameException()
     {
         $twitter = new Zend_Service_Twitter();
-        $twitter->setLocalHttpClient($this->_stubTwitter(
-            'statuses/user_timeline.xml', Zend_Http_Client::GET, 'user_timeline.twitter.xml'
+        $twitter->setHttpClient($this->stubTwitter(
+            'statuses/user_timeline.json', Zend_Http_Client::GET, 'statuses.user_timeline.mwop.json'
         ));
-        $twitter->status->userTimeline(array('screen_name' => 'twitter'));
+        $twitter->statuses->userTimeline(array('screen_name' => 'mwop'));
     }
 
     /**
      * @group ZF-7781
-     * @expectedException Zend_Service_Twitter_Exception
      */
     public function testRetrievingStatusesWithInvalidScreenNameCharacterThrowsInvalidScreenNameException()
     {
+        $this->setExpectedException('Zend_Service_Twitter_Exception');
         $twitter = new Zend_Service_Twitter();
-        $twitter->status->userTimeline(array('screen_name' => 'abc.def'));
+        $twitter->statuses->userTimeline(array('screen_name' => 'abc.def'));
     }
 
     /**
@@ -213,7 +212,7 @@ class Zend_Service_Twitter_TwitterTest extends PHPUnit_Framework_TestCase
     {
         $this->setExpectedException('Zend_Service_Twitter_Exception');
         $twitter = new Zend_Service_Twitter();
-        $twitter->status->userTimeline(array('screen_name' => 'abcdef_abc123_abc123x'));
+        $twitter->statuses->userTimeline(array('screen_name' => 'abcdef_abc123_abc123x'));
     }
 
     /**
@@ -222,17 +221,16 @@ class Zend_Service_Twitter_TwitterTest extends PHPUnit_Framework_TestCase
     public function testStatusUserTimelineConstructsExpectedGetUriAndOmitsInvalidParams()
     {
         $twitter = new Zend_Service_Twitter;
-        $twitter->setLocalHttpClient($this->_stubTwitter(
-            'statuses/user_timeline/783214.xml', Zend_Http_Client::GET, 'user_timeline.twitter.xml', array(
-                'page' => '1',
+        $twitter->setHttpClient($this->stubTwitter(
+            'statuses/user_timeline.json', Zend_Http_Client::GET, 'statuses.user_timeline.mwop.json', array(
                 'count' => '123',
-                'user_id' => '783214',
+                'user_id' => 783214,
                 'since_id' => '10000',
                 'max_id' => '20000',
                 'screen_name' => 'twitter'
             )
         ));
-        $twitter->status->userTimeline(array(
+        $twitter->statuses->userTimeline(array(
             'id' => '783214',
             'since' => '+2 days', /* invalid param since Apr 2009 */
             'page' => '1',
@@ -247,24 +245,20 @@ class Zend_Service_Twitter_TwitterTest extends PHPUnit_Framework_TestCase
     public function testOverloadingGetShouldReturnObjectInstanceWithValidMethodType()
     {
         $twitter = new Zend_Service_Twitter;
-        $return = $twitter->status;
+        $return = $twitter->statuses;
         $this->assertSame($twitter, $return);
     }
 
-    /**
-     * @expectedException Zend_Service_Twitter_Exception
-     */
     public function testOverloadingGetShouldthrowExceptionWithInvalidMethodType()
     {
+        $this->setExpectedException('Zend_Service_Twitter_Exception');
         $twitter = new Zend_Service_Twitter;
         $return = $twitter->foo;
     }
 
-    /**
-     * @expectedException Zend_Service_Twitter_Exception
-     */
     public function testOverloadingGetShouldthrowExceptionWithInvalidFunction()
     {
+        $this->setExpectedException('Zend_Service_Twitter_Exception');
         $twitter = new Zend_Service_Twitter;
         $return = $twitter->foo();
     }
@@ -272,70 +266,58 @@ class Zend_Service_Twitter_TwitterTest extends PHPUnit_Framework_TestCase
     public function testMethodProxyingDoesNotThrowExceptionsWithValidMethods()
     {
         $twitter = new Zend_Service_Twitter;
-        $twitter->setLocalHttpClient($this->_stubTwitter(
-            'statuses/public_timeline.xml', Zend_Http_Client::GET, 'public_timeline.xml'
+        $twitter->setHttpClient($this->stubTwitter(
+            'statuses/sample.json', Zend_Http_Client::GET, 'statuses.sample.json'
         ));
-        $twitter->status->publicTimeline();
+        $twitter->statuses->sample();
     }
 
-    /**
-     * @expectedException Zend_Service_Twitter_Exception
-     */
     public function testMethodProxyingThrowExceptionsWithInvalidMethods()
     {
+        $this->setExpectedException('Zend_Service_Twitter_Exception');
         $twitter = new Zend_Service_Twitter;
-        $twitter->status->foo();
+        $twitter->statuses->foo();
     }
 
     public function testVerifiedCredentials()
     {
         $twitter = new Zend_Service_Twitter;
-        $twitter->setLocalHttpClient($this->_stubTwitter(
-            'account/verify_credentials.xml', Zend_Http_Client::GET, 'account.verify_credentials.xml'
+        $twitter->setHttpClient($this->stubTwitter(
+            'account/verify_credentials.json', Zend_Http_Client::GET, 'account.verify_credentials.json'
         ));
         $response = $twitter->account->verifyCredentials();
-        $this->assertTrue($response instanceof Zend_Rest_Client_Result);
+        $this->assertTrue($response instanceof Zend_Service_Twitter_Response);
     }
 
-    public function testPublicTimelineStatusReturnsResults()
+    public function testSampleTimelineStatusReturnsResults()
     {
         $twitter = new Zend_Service_Twitter;
-        $twitter->setLocalHttpClient($this->_stubTwitter(
-            'statuses/public_timeline.xml', Zend_Http_Client::GET, 'public_timeline.xml'
+        $twitter->setHttpClient($this->stubTwitter(
+            'statuses/sample.json', Zend_Http_Client::GET, 'statuses.sample.json'
         ));
-        $response = $twitter->status->publicTimeline();
-        $this->assertTrue($response instanceof Zend_Rest_Client_Result);
+        $response = $twitter->statuses->sample();
+        $this->assertTrue($response instanceof Zend_Service_Twitter_Response);
     }
 
     public function testRateLimitStatusReturnsResults()
     {
         $twitter = new Zend_Service_Twitter;
-        $twitter->setLocalHttpClient($this->_stubTwitter(
-            'account/rate_limit_status.xml', Zend_Http_Client::GET, 'rate_limit_status.xml'
+        $twitter->setHttpClient($this->stubTwitter(
+            'account/rate_limit_status.json', Zend_Http_Client::GET, 'account.rate_limit_status.json'
         ));
         $response = $twitter->account->rateLimitStatus();
-        $this->assertTrue($response instanceof Zend_Rest_Client_Result);
+        $this->assertTrue($response instanceof Zend_Service_Twitter_Response);
     }
 
     public function testRateLimitStatusHasHitsLeft()
     {
         $twitter = new Zend_Service_Twitter;
-        $twitter->setLocalHttpClient($this->_stubTwitter(
-            'account/rate_limit_status.xml', Zend_Http_Client::GET, 'rate_limit_status.xml'
+        $twitter->setHttpClient($this->stubTwitter(
+            'account/rate_limit_status.json', Zend_Http_Client::GET, 'account.rate_limit_status.json'
         ));
         $response = $twitter->account->rateLimitStatus();
-        $remaining_hits = $response->toValue($response->{'remaining-hits'});
-        $this->assertEquals(150, $remaining_hits);
-    }
-
-    public function testAccountEndSession()
-    {
-        $twitter = new Zend_Service_Twitter;
-        $twitter->setLocalHttpClient($this->_stubTwitter(
-            'account/end_session', Zend_Http_Client::GET
-        ));
-        $response = $twitter->account->endSession();
-        $this->assertTrue($response);
+        $status = $response->toValue();
+        $this->assertEquals(180, $status->resources->statuses->{'/statuses/user_timeline'}->remaining);
     }
 
     /**
@@ -345,42 +327,23 @@ class Zend_Service_Twitter_TwitterTest extends PHPUnit_Framework_TestCase
     public function testFriendshipCreate()
     {
         $twitter = new Zend_Service_Twitter;
-        $twitter->setLocalHttpClient($this->_stubTwitter(
-            'friendships/create/twitter.xml', Zend_Http_Client::POST, 'friendships.create.twitter.xml'
+        $twitter->setHttpClient($this->stubTwitter(
+            'friendships/create.json', Zend_Http_Client::POST, 'friendships.create.twitter.json',
+            array('screen_name' => 'twitter')
         ));
-        $response = $twitter->friendship->create('twitter');
-        $this->assertTrue($response instanceof Zend_Rest_Client_Result);
+        $response = $twitter->friendships->create('twitter');
+        $this->assertTrue($response instanceof Zend_Service_Twitter_Response);
     }
 
-    /**
-     * TODO: Mismatched behaviour from API. Per the API this can assert the
-     * existence of a friendship between any two users (not just the current
-     * user). We should expand the method or add a better fit method for
-     * general use.
-     */
-    public function testFriendshipExists()
-    {
-        $twitter = new Zend_Service_Twitter(array('username'=>'padraicb'));
-        $twitter->setLocalHttpClient($this->_stubTwitter(
-            'friendships/exists.xml', Zend_Http_Client::GET, 'friendships.exists.twitter.xml',
-            array('user_a'=>'padraicb', 'user_b'=>'twitter')
-        ));
-        $response = $twitter->friendship->exists('twitter');
-        $this->assertTrue($response instanceof Zend_Rest_Client_Result);
-    }
-
-    /**
-     * TODO: Add verification for ALL optional parameters
-     */
-    public function testFriendsTimelineWithPageReturnsResults()
+    public function testHomeTimelineWithCountReturnsResults()
     {
         $twitter = new Zend_Service_Twitter;
-        $twitter->setLocalHttpClient($this->_stubTwitter(
-            'statuses/friends_timeline.xml', Zend_Http_Client::GET, 'statuses.friends_timeline.page.xml',
-            array('page'=>3)
+        $twitter->setHttpClient($this->stubTwitter(
+            'statuses/home_timeline.json', Zend_Http_Client::GET, 'statuses.home_timeline.page.json',
+            array('count' => 3)
         ));
-        $response = $twitter->status->friendsTimeline(array('page' => 3));
-        $this->assertTrue($response instanceof Zend_Rest_Client_Result);
+        $response = $twitter->statuses->homeTimeline(array('count' => 3));
+        $this->assertTrue($response instanceof Zend_Service_Twitter_Response);
     }
 
     /**
@@ -389,11 +352,12 @@ class Zend_Service_Twitter_TwitterTest extends PHPUnit_Framework_TestCase
     public function testUserTimelineReturnsResults()
     {
         $twitter = new Zend_Service_Twitter;
-        $twitter->setLocalHttpClient($this->_stubTwitter(
-            'statuses/user_timeline/twitter.xml', Zend_Http_Client::GET, 'user_timeline.twitter.xml'
+        $twitter->setHttpClient($this->stubTwitter(
+            'statuses/user_timeline.json', Zend_Http_Client::GET, 'statuses.user_timeline.mwop.json',
+            array('screen_name' => 'mwop')
         ));
-        $response = $twitter->status->userTimeline(array('id' => 'twitter'));
-        $this->assertTrue($response instanceof Zend_Rest_Client_Result);
+        $response = $twitter->statuses->userTimeline(array('screen_name' => 'mwop'));
+        $this->assertTrue($response instanceof Zend_Service_Twitter_Response);
     }
 
     /**
@@ -402,134 +366,113 @@ class Zend_Service_Twitter_TwitterTest extends PHPUnit_Framework_TestCase
     public function testPostStatusUpdateReturnsResponse()
     {
         $twitter = new Zend_Service_Twitter;
-        $twitter->setLocalHttpClient($this->_stubTwitter(
-            'statuses/update.xml', Zend_Http_Client::POST, 'statuses.update.xml',
+        $twitter->setHttpClient($this->stubTwitter(
+            'statuses/update.json', Zend_Http_Client::POST, 'statuses.update.json',
             array('status'=>'Test Message 1')
         ));
-        $response = $twitter->status->update('Test Message 1');
-        $this->assertTrue($response instanceof Zend_Rest_Client_Result);
+        $response = $twitter->statuses->update('Test Message 1');
+        $this->assertTrue($response instanceof Zend_Service_Twitter_Response);
     }
 
-    /**
-     * @expectedException Zend_Service_Twitter_Exception
-     */
     public function testPostStatusUpdateToLongShouldThrowException()
     {
+        $this->setExpectedException('Zend_Service_Twitter_Exception');
         $twitter = new Zend_Service_Twitter;
-        $twitter->status->update('Test Message - ' . str_repeat(' Hello ', 140));
+        $twitter->statuses->update('Test Message - ' . str_repeat(' Hello ', 140));
     }
 
-    /**
-     * @expectedException Zend_Service_Twitter_Exception
-     */
     public function testPostStatusUpdateEmptyShouldThrowException()
     {
+        $this->setExpectedException('Zend_Service_Twitter_Exception');
         $twitter = new Zend_Service_Twitter;
-        $twitter->status->update('');
+        $twitter->statuses->update('');
     }
 
     public function testShowStatusReturnsResponse()
     {
         $twitter = new Zend_Service_Twitter;
-        $twitter->setLocalHttpClient($this->_stubTwitter(
-            'statuses/show/15042159587.xml', Zend_Http_Client::GET, 'statuses.show.xml'
+        $twitter->setHttpClient($this->stubTwitter(
+            'statuses/show/307529814640840705.json', Zend_Http_Client::GET, 'statuses.show.json'
         ));
-        $response = $twitter->status->show(15042159587);
-        $this->assertTrue($response instanceof Zend_Rest_Client_Result);
+        $response = $twitter->statuses->show(307529814640840705);
+        $this->assertTrue($response instanceof Zend_Service_Twitter_Response);
     }
 
     public function testCreateFavoriteStatusReturnsResponse()
     {
         $twitter = new Zend_Service_Twitter;
-        $twitter->setLocalHttpClient($this->_stubTwitter(
-            'favorites/create/15042159587.xml', Zend_Http_Client::POST, 'favorites.create.xml'
+        $twitter->setHttpClient($this->stubTwitter(
+            'favorites/create.json', Zend_Http_Client::POST, 'favorites.create.json',
+            array('id' => 15042159587)
         ));
-        $response = $twitter->favorite->create(15042159587);
-        $this->assertTrue($response instanceof Zend_Rest_Client_Result);
+        $response = $twitter->favorites->create(15042159587);
+        $this->assertTrue($response instanceof Zend_Service_Twitter_Response);
     }
 
-    public function testFavoriteFavoriesReturnsResponse()
+    public function testFavoritesListReturnsResponse()
     {
         $twitter = new Zend_Service_Twitter;
-        $twitter->setLocalHttpClient($this->_stubTwitter(
-            'favorites.xml', Zend_Http_Client::GET, 'favorites.xml'
+        $twitter->setHttpClient($this->stubTwitter(
+            'favorites/list.json', Zend_Http_Client::GET, 'favorites.list.json'
         ));
-        $response = $twitter->favorite->favorites();
-        $this->assertTrue($response instanceof Zend_Rest_Client_Result);
+        $response = $twitter->favorites->list();
+        $this->assertTrue($response instanceof Zend_Service_Twitter_Response);
     }
 
-    /**
-     * TODO: Can we use a HTTP DELETE?
-     */
     public function testDestroyFavoriteReturnsResponse()
     {
         $twitter = new Zend_Service_Twitter;
-        $twitter->setLocalHttpClient($this->_stubTwitter(
-            'favorites/destroy/15042159587.xml', Zend_Http_Client::POST, 'favorites.destroy.xml'
+        $twitter->setHttpClient($this->stubTwitter(
+            'favorites/destroy.json', Zend_Http_Client::POST, 'favorites.destroy.json',
+            array('id' => 15042159587)
         ));
-        $response = $twitter->favorite->destroy(15042159587);
-        $this->assertTrue($response instanceof Zend_Rest_Client_Result);
+        $response = $twitter->favorites->destroy(15042159587);
+        $this->assertTrue($response instanceof Zend_Service_Twitter_Response);
     }
 
     public function testStatusDestroyReturnsResult()
     {
         $twitter = new Zend_Service_Twitter;
-        $twitter->setLocalHttpClient($this->_stubTwitter(
-            'statuses/destroy/15042159587.xml', Zend_Http_Client::POST, 'statuses.destroy.xml'
+        $twitter->setHttpClient($this->stubTwitter(
+            'statuses/destroy/15042159587.json', Zend_Http_Client::POST, 'statuses.destroy.json'
         ));
-        $response = $twitter->status->destroy(15042159587);
-        $this->assertTrue($response instanceof Zend_Rest_Client_Result);
+        $response = $twitter->statuses->destroy(15042159587);
+        $this->assertTrue($response instanceof Zend_Service_Twitter_Response);
     }
 
-    /**
-     * TODO: Add verification for ALL optional parameters
-     */
-    public function testUserFriendsReturnsResults()
-    {
-        $twitter = new Zend_Service_Twitter;
-        $twitter->setLocalHttpClient($this->_stubTwitter(
-            'statuses/friends.xml', Zend_Http_Client::GET, 'statuses.friends.xml'
-        ));
-        $response = $twitter->user->friends();
-        $this->assertTrue($response instanceof Zend_Rest_Client_Result);
-    }
-
-    /**
-     * TODO: Add verification for ALL optional parameters
-     * Note: Implementation does not currently accept ANY optional parameters
-     */
-    public function testUserFollowersReturnsResults()
+    public function testStatusHomeTimelineWithNoOptionsReturnsResults()
     {
         $twitter = new Zend_Service_Twitter;
-        $twitter->setLocalHttpClient($this->_stubTwitter(
-            'statuses/followers.xml', Zend_Http_Client::GET, 'statuses.followers.xml'
+        $twitter->setHttpClient($this->stubTwitter(
+            'statuses/home_timeline.json', Zend_Http_Client::GET, 'statuses.home_timeline.page.json'
         ));
-        $response = $twitter->user->followers();
-        $this->assertTrue($response instanceof Zend_Rest_Client_Result);
+        $response = $twitter->statuses->homeTimeline();
+        $this->assertTrue($response instanceof Zend_Service_Twitter_Response);
     }
 
     public function testUserShowByIdReturnsResults()
     {
         $twitter = new Zend_Service_Twitter;
-        $twitter->setLocalHttpClient($this->_stubTwitter(
-            'users/show.xml', Zend_Http_Client::GET, 'users.show.twitter.xml',
-            array('id'=>'twitter')
+        $twitter->setHttpClient($this->stubTwitter(
+            'users/show.json', Zend_Http_Client::GET, 'users.show.mwop.json',
+            array('screen_name' => 'mwop')
         ));
-        $response = $twitter->user->show('twitter');
-        $this->assertTrue($response instanceof Zend_Rest_Client_Result);
+        $response = $twitter->users->show('mwop');
+        $this->assertTrue($response instanceof Zend_Service_Twitter_Response);
     }
 
     /**
      * TODO: Add verification for ALL optional parameters
+     * @todo rename to "mentions_timeline"
      */
-    public function testStatusRepliesReturnsResults()
+    public function testStatusMentionsReturnsResults()
     {
         $twitter = new Zend_Service_Twitter;
-        $twitter->setLocalHttpClient($this->_stubTwitter(
-            'statuses/mentions.xml', Zend_Http_Client::GET, 'statuses.mentions.xml'
+        $twitter->setHttpClient($this->stubTwitter(
+            'statuses/mentions_timeline.json', Zend_Http_Client::GET, 'statuses.mentions_timeline.json'
         ));
-        $response = $twitter->status->replies();
-        $this->assertTrue($response instanceof Zend_Rest_Client_Result);
+        $response = $twitter->statuses->mentionsTimeline();
+        $this->assertTrue($response instanceof Zend_Service_Twitter_Response);
     }
 
     /**
@@ -538,81 +481,57 @@ class Zend_Service_Twitter_TwitterTest extends PHPUnit_Framework_TestCase
     public function testFriendshipDestroy()
     {
         $twitter = new Zend_Service_Twitter;
-        $twitter->setLocalHttpClient($this->_stubTwitter(
-            'friendships/destroy/twitter.xml', Zend_Http_Client::POST, 'friendships.destroy.twitter.xml'
+        $twitter->setHttpClient($this->stubTwitter(
+            'friendships/destroy.json', Zend_Http_Client::POST, 'friendships.destroy.twitter.json',
+            array('screen_name' => 'twitter')
         ));
-        $response = $twitter->friendship->destroy('twitter');
-        $this->assertTrue($response instanceof Zend_Rest_Client_Result);
+        $response = $twitter->friendships->destroy('twitter');
+        $this->assertTrue($response instanceof Zend_Service_Twitter_Response);
     }
 
     public function testBlockingCreate()
     {
         $twitter = new Zend_Service_Twitter;
-        $twitter->setLocalHttpClient($this->_stubTwitter(
-            'blocks/create/twitter.xml', Zend_Http_Client::POST, 'blocks.create.twitter.xml'
-        ));
-        $response = $twitter->block->create('twitter');
-        $this->assertTrue($response instanceof Zend_Rest_Client_Result);
-    }
-
-    public function testBlockingExistsReturnsTrueWhenBlockExists()
-    {
-        $twitter = new Zend_Service_Twitter;
-        $twitter->setLocalHttpClient($this->_stubTwitter(
-            'blocks/exists/twitter.xml', Zend_Http_Client::GET, 'blocks.exists.twitter.xml'
+        $twitter->setHttpClient($this->stubTwitter(
+            'blocks/create.json', Zend_Http_Client::POST, 'blocks.create.twitter.json',
+            array('screen_name' => 'twitter')
         ));
-        $this->assertTrue($twitter->block->exists('twitter'));
+        $response = $twitter->blocks->create('twitter');
+        $this->assertTrue($response instanceof Zend_Service_Twitter_Response);
     }
 
-    public function testBlockingBlocked()
+    public function testBlockingList()
     {
         $twitter = new Zend_Service_Twitter;
-        $twitter->setLocalHttpClient($this->_stubTwitter(
-            'blocks/blocking.xml', Zend_Http_Client::GET, 'blocks.blocking.xml'
+        $twitter->setHttpClient($this->stubTwitter(
+            'blocks/list.json', Zend_Http_Client::GET, 'blocks.list.json',
+            array('cursor' => -1)
         ));
-        $response = $twitter->block->blocking();
-        $this->assertTrue($response instanceof Zend_Rest_Client_Result);
+        $response = $twitter->blocks->list();
+        $this->assertTrue($response instanceof Zend_Service_Twitter_Response);
     }
 
-    public function testBlockingBlockedReturnsIds()
+    public function testBlockingIds()
     {
         $twitter = new Zend_Service_Twitter;
-        $twitter->setLocalHttpClient($this->_stubTwitter(
-            'blocks/blocking/ids.xml', Zend_Http_Client::GET, 'blocks.blocking.ids.xml',
-            array('page'=>1)
+        $twitter->setHttpClient($this->stubTwitter(
+            'blocks/ids.json', Zend_Http_Client::GET, 'blocks.ids.json',
+            array('cursor' => -1)
         ));
-        $response = $twitter->block->blocking(1, true);
-        $this->assertTrue($response instanceof Zend_Rest_Client_Result);
-        $this->assertEquals('23836616', (string) $response->id);
+        $response = $twitter->blocks->ids();
+        $this->assertTrue($response instanceof Zend_Service_Twitter_Response);
+        $this->assertContains('23836616', $response->ids);
     }
 
     public function testBlockingDestroy()
     {
         $twitter = new Zend_Service_Twitter;
-        $twitter->setLocalHttpClient($this->_stubTwitter(
-            'blocks/destroy/twitter.xml', Zend_Http_Client::POST, 'blocks.destroy.twitter.xml'
-        ));
-        $response = $twitter->block->destroy('twitter');
-        $this->assertTrue($response instanceof Zend_Rest_Client_Result);
-    }
-
-    public function testBlockingExistsReturnsFalseWhenBlockDoesNotExists()
-    {
-        $twitter = new Zend_Service_Twitter;
-        $twitter->setLocalHttpClient($this->_stubTwitter(
-            'blocks/exists/padraicb.xml', Zend_Http_Client::GET, 'blocks.exists.padraicb.xml'
+        $twitter->setHttpClient($this->stubTwitter(
+            'blocks/destroy.json', Zend_Http_Client::POST, 'blocks.destroy.twitter.json',
+            array('screen_name' => 'twitter')
         ));
-        $this->assertFalse($twitter->block->exists('padraicb'));
-    }
-
-    public function testBlockingExistsReturnsObjectWhenFlagPassed()
-    {
-        $twitter = new Zend_Service_Twitter;
-        $twitter->setLocalHttpClient($this->_stubTwitter(
-            'blocks/exists/padraicb.xml', Zend_Http_Client::GET, 'blocks.exists.padraicb.xml'
-        ));
-        $response = $twitter->block->exists('padraicb', true);
-        $this->assertTrue($response instanceof Zend_Rest_Client_Result);
+        $response = $twitter->blocks->destroy('twitter');
+        $this->assertTrue($response instanceof Zend_Service_Twitter_Response);
     }
 
     /**
@@ -622,65 +541,32 @@ class Zend_Service_Twitter_TwitterTest extends PHPUnit_Framework_TestCase
     {
         $twitter1 = new Zend_Service_Twitter(array('username'=>'zftestuser1'));
         $twitter2 = new Zend_Service_Twitter(array('username'=>'zftestuser2'));
-        $this->assertFalse($twitter1->getLocalHttpClient() === $twitter2->getLocalHttpClient());
+        $this->assertFalse($twitter1->getHttpClient() === $twitter2->getHttpClient());
     }
 
-    /**
-     * @group ZF-10644
-     */
-    public function testStatusUserTimelineShouldHonorAllFlags()
-    {
-        $params = array(
-            'screen_name'      => 'allzend',
-            'page'             => 1,
-            'include_rts'      => '1',
-            'trim_user'        => '1',
-            'include_entities' => '1',
-        );
-        $twitter = new Zend_Service_Twitter();
-        $twitter->setLocalHttpClient($this->_stubTwitter(
-            'statuses/user_timeline.xml', Zend_Http_Client::GET, 'user_timeline.twitter.xml',
-            $params
+    public function testSearchTweets()
+    {
+        $twitter = new Zend_Service_Twitter;
+        $twitter->setHttpClient($this->stubTwitter(
+            'search/tweets.json', Zend_Http_Client::GET, 'search.tweets.json',
+            array('q' => '#zf2')
         ));
-
-        // Assertions are part of mocking
-        $timeline = $twitter->statusUserTimeline($params);
+        $response = $twitter->search->tweets('#zf2');
+        $this->assertTrue($response instanceof Zend_Service_Twitter_Response);
     }
 
-    /**
-     * @group ZF-11014
-     */
-    public function testStatusFriendsTimelineShouldHonorAllFlags()
-    {
-        $params = array(
-            'page'             => 3,
-            'include_rts'      => '1',
-            'trim_user'        => '1',
-            'include_entities' => '1',
-        );
-        $twitter = new Zend_Service_Twitter();
-        $twitter->setLocalHttpClient($this->_stubTwitter(
-            'statuses/friends_timeline.xml', Zend_Http_Client::GET, 'statuses.friends_timeline.page.xml',
-            $params
-        ));  
-
-        // Assertions are part of mocking
-        $timeline = $twitter->statusFriendsTimeline($params);
-    }
-
-    /**
-     * @group ZF-11023
-     */
-    public function testConstructorPassedObjectZendConfig()
+    public function testUsersSearch()
     {
-        require_once 'Zend/Config.php';
-        $config = new Zend_Config(array('username' => 'zf'));
-        $twitter = new Zend_Service_Twitter($config);
-        $this->assertEquals('zf', $twitter->getUsername());
+        $twitter = new Zend_Service_Twitter;
+        $twitter->setHttpClient($this->stubTwitter(
+            'users/search.json', Zend_Http_Client::GET, 'users.search.json',
+            array('q' => 'Zend')
+        ));
+        $response = $twitter->users->search('Zend');
+        $this->assertTrue($response instanceof Zend_Service_Twitter_Response);
     }
-          
 }
 
-if (PHPUnit_MAIN_METHOD == 'Zend_Service_TwitterTest2::main') {
-    Zend_Service_TwitterTest2::main();
+if (PHPUnit_MAIN_METHOD == 'Zend_Service_TwitterTest::main') {
+    Zend_Service_TwitterTest::main();
 }

+ 110 - 0
tests/Zend/Service/Twitter/_files/account.rate_limit_status.json

@@ -0,0 +1,110 @@
+{
+  "rate_limit_context": {
+    "access_token": "119476949-oYGCs2M5duG5QalbOAK2YUZh8zG3ur7DPYo5qIFN"
+  },
+  "resources": {
+    "help": {
+      "/help/privacy": {
+        "remaining": 15,
+        "reset": 1346439527,
+        "limit": 15
+      },
+      "/help/configuration": {
+        "remaining": 15,
+        "reset": 1346439527,
+        "limit": 15
+      },
+      "/help/tos": {
+        "remaining": 15,
+        "reset": 1346439527,
+        "limit": 15
+      },
+      "/help/languages": {
+        "remaining": 15,
+        "reset": 1346439527,
+        "limit": 15
+      }
+    },
+    "statuses": {
+      "/statuses/oembed": {
+        "remaining": 180,
+        "reset": 1346439527,
+        "limit": 180
+      },
+      "/statuses/user_timeline": {
+        "remaining": 180,
+        "reset": 1346439527,
+        "limit": 180
+      },
+      "/statuses/mentions_timeline": {
+        "remaining": 15,
+        "reset": 1346439527,
+        "limit": 15
+      },
+      "/statuses/home_timeline": {
+        "remaining": 15,
+        "reset": 1346439527,
+        "limit": 15
+      },
+      "/statuses/show/:id": {
+        "remaining": 180,
+        "reset": 1346439527,
+        "limit": 180
+      },
+      "/statuses/retweets/:id": {
+        "remaining": 15,
+        "reset": 1346439527,
+        "limit": 15
+      }
+    },
+    "users": {
+      "/users/show": {
+        "remaining": 180,
+        "reset": 1346439527,
+        "limit": 180
+      },
+      "/users/search": {
+        "remaining": 180,
+        "reset": 1346439527,
+        "limit": 180
+      },
+      "/users/suggestions": {
+        "remaining": 15,
+        "reset": 1346439527,
+        "limit": 15
+      },
+      "/users/contributors": {
+        "remaining": 15,
+        "reset": 1346439527,
+        "limit": 15
+      },
+      "/users/suggestions/:slug/members": {
+        "remaining": 15,
+        "reset": 1346439527,
+        "limit": 15
+      },
+      "/users/suggestions/:slug": {
+        "remaining": 15,
+        "reset": 1346439527,
+        "limit": 15
+      },
+      "/users/contributees": {
+        "remaining": 15,
+        "reset": 1346439527,
+        "limit": 15
+      },
+      "/users/lookup": {
+        "remaining": 180,
+        "reset": 1346439527,
+        "limit": 180
+      }
+    },
+    "search": {
+      "/search/tweets": {
+        "remaining": 180,
+        "reset": 1346439527,
+        "limit": 180
+      }
+    }
+  }
+}

+ 60 - 0
tests/Zend/Service/Twitter/_files/account.verify_credentials.json

@@ -0,0 +1,60 @@
+{
+  "contributors_enabled": false,
+  "created_at": "Mon Sep 24 19:35:22 +0000 2007",
+  "default_profile": false,
+  "default_profile_image": false,
+  "description": "PHP Developer, Open Source Contributor, and FS Audit Consultant",
+  "favourites_count": 20,
+  "follow_request_sent": null,
+  "followers_count": 847,
+  "following": false,
+  "friends_count": 468,
+  "geo_enabled": false,
+  "id": 9075802,
+  "id_str": "9075802",
+  "is_translator": false,
+  "lang": "en",
+  "listed_count": 0,
+  "location": "Dublin, Ireland, Europe!",
+  "name": "Pádraic Brady",
+  "notifications": null,
+  "profile_background_color": "022330",
+  "profile_background_image_url": "http://a0.twimg.com/a/1274899949/images/themes/theme15/bg.png",
+  "profile_background_image_url_https": "https://si0.twimg.com/a/1274899949/images/themes/theme15/bg.png",
+  "profile_background_tile": false,
+  "profile_image_url": "http://a1.twimg.com/profile_images/374757042/twitterProfilePhoto_normal.jpg",
+  "profile_image_url_https": "https://si1.twimg.com/profile_images/374757042/twitterProfilePhoto_normal.jpg",
+  "profile_link_color": "0084B4",
+  "profile_sidebar_border_color": "a8c7f7",
+  "profile_sidebar_fill_color": "C0DFEC",
+  "profile_text_color": "333333",
+  "profile_use_backgroudn_image": true,
+  "protected": false,
+  "screen_name": "padraicb",
+  "show_all_inline_media": true,
+  "status": {
+    "contributors": null,
+    "coordinates": null,
+    "created_at": "Sat May 29 18:05:59 +0000 2010",
+    "favorited": false,
+    "geo": null,
+    "id": 14990035001,
+    "id_str": "14990035001",
+    "in_reply_to_screen_name": null,
+    "in_reply_to_status_id": null,
+    "in_reply_to_status_id_str": "",
+    "in_reply_to_user_id": null,
+    "in_reply_to_user_id_str": "",
+    "place": null,
+    "retweet_count": 0,
+    "retweeted": false,
+    "source": "<a href=\"http://www.seesmic.com/\" rel=\"nofollow\">Seesmic</a>",
+    "text": "Dennis Hopper is no longer with us? :( RIP.",
+    "truncated": false
+  },
+  "statuses_count": 5927,
+  "time_zone": "Dublin",
+  "url": "http://blog.astrumfutura.com",
+  "utc_offset": 0,
+  "verified": false
+}

+ 0 - 46
tests/Zend/Service/Twitter/_files/account.verify_credentials.xml

@@ -1,46 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<user>
-  <id>9075802</id>
-  <name>Pádraic Brady</name>
-  <screen_name>padraicb</screen_name>
-  <location>Dublin, Ireland, Europe!</location>
-  <description>PHP Developer, Open Source Contributor, and FS Audit Consultant</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/374757042/twitterProfilePhoto_normal.jpg</profile_image_url>
-  <url>http://blog.astrumfutura.com</url>
-  <protected>false</protected>
-  <followers_count>847</followers_count>
-  <profile_background_color>022330</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>0084B4</profile_link_color>
-  <profile_sidebar_fill_color>C0DFEC</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>a8c7f7</profile_sidebar_border_color>
-  <friends_count>468</friends_count>
-  <created_at>Mon Sep 24 19:35:22 +0000 2007</created_at>
-  <favourites_count>20</favourites_count>
-  <utc_offset>0</utc_offset>
-  <time_zone>Dublin</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme15/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>5927</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 29 18:05:59 +0000 2010</created_at>
-    <id>14990035001</id>
-    <text>Dennis Hopper is no longer with us? :( RIP.</text>
-    <source>&lt;a href="http://www.seesmic.com/" rel="nofollow"&gt;Seesmic&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>

+ 0 - 9
tests/Zend/Service/Twitter/_files/blocks.blocking.ids.xml

@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<ids>
-<id>23836616</id>
-<id>95515577</id>
-<id>16136505</id>
-<id>82974000</id>
-<id>40165170</id>
-<id>56703639</id>
-</ids>

+ 0 - 515
tests/Zend/Service/Twitter/_files/blocks.blocking.xml

@@ -1,515 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<users type="array">
-<user>
-  <id>783214</id>
-  <name>Twitter</name>
-  <screen_name>twitter</screen_name>
-  <location>San Francisco, CA</location>
-  <description>Always wondering what's happening. </description>
-  <profile_image_url>http://a1.twimg.com/profile_images/878669694/twitter_bird_normal.jpg</profile_image_url>
-  <url>http://twitter.com</url>
-  <protected>false</protected>
-  <followers_count>3230113</followers_count>
-  <profile_background_color>ACDED6</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>038543</profile_link_color>
-  <profile_sidebar_fill_color>F6F6F6</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>EEEEEE</profile_sidebar_border_color>
-  <friends_count>247</friends_count>
-  <created_at>Tue Feb 20 14:35:54 +0000 2007</created_at>
-  <favourites_count>2</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme18/bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications/>
-  <geo_enabled>false</geo_enabled>
-  <verified>true</verified>
-  <following/>
-  <statuses_count>745</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>true</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 21:14:05 +0000 2010</created_at>
-    <id>14932507266</id>
-    <text>Good news for people everywhere http://bit.ly/b1Cf9A</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors>
-      <user_id>16739704</user_id>
-    </contributors>
-  </status>
-</user>
-<user>
-  <id>16136505</id>
-  <name>Nate Harding</name>
-  <screen_name>nateharding</screen_name>
-  <location>East Side</location>
-  <description>where we pick cash from the money tree of internet marketing...metaphorically speaking of course,</description>
-  <profile_image_url>http://s.twimg.com/a/1274899949/images/default_profile_0_normal.png</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>28</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>4</friends_count>
-  <created_at>Thu Sep 04 22:37:58 +0000 2008</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-18000</utc_offset>
-  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>460</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat Feb 20 09:25:54 +0000 2010</created_at>
-    <id>9377514336</id>
-    <text>Wuttup Twitter World?  Hey, @robertplank how'd the webinar go?  I couldn't make it.  Is there a recording I can check out?</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>23836616</id>
-  <name>Ian McGahon</name>
-  <screen_name>ianmcgahon</screen_name>
-  <location>Bray, Co Wicklow, Ireland</location>
-  <description/>
-  <profile_image_url>http://a1.twimg.com/profile_images/623139340/ian_normal.jpg</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>211</followers_count>
-  <profile_background_color>C6E2EE</profile_background_color>
-  <profile_text_color>663B12</profile_text_color>
-  <profile_link_color>1F98C7</profile_link_color>
-  <profile_sidebar_fill_color>DAECF4</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>C6E2EE</profile_sidebar_border_color>
-  <friends_count>332</friends_count>
-  <created_at>Wed Mar 11 21:46:11 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>0</utc_offset>
-  <time_zone>Dublin</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/5566801/n52950876433_9929.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>561</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 14:30:18 +0000 2010</created_at>
-    <id>15044593156</id>
-    <text>@ChristineBohan ;-) - A Libertarian in FF! - The increasing amount of libertarians astounds me, perhaps I'm just reading too much boards.ie</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>14999351526</in_reply_to_status_id>
-    <in_reply_to_user_id>14395202</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>ChristineBohan</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>40165170</id>
-  <name>Richard Lee</name>
-  <screen_name>RichardLee4</screen_name>
-  <location/>
-  <description/>
-  <profile_image_url>http://s.twimg.com/a/1274899949/images/default_profile_3_normal.png</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>10</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>2</friends_count>
-  <created_at>Fri May 15 03:25:00 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset/>
-  <time_zone/>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>277</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Thu Oct 15 23:34:39 +0000 2009</created_at>
-    <id>4901594956</id>
-    <text>Road_and_Track: SNOUJMESNOUMESNOUME</text>
-    <source>&lt;a href="/devices" rel="nofollow"&gt;txt&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>56212353</id>
-  <name>Wicked Girl</name>
-  <screen_name>KelliKanyon5</screen_name>
-  <location/>
-  <description>I love to Swallow</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/310487971/member5_normal.jpg</profile_image_url>
-  <url>http://www.Kellikanyon.net</url>
-  <protected>false</protected>
-  <followers_count>0</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>0</friends_count>
-  <created_at>Sun Jul 12 22:39:28 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset/>
-  <time_zone/>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>2381</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-</user>
-<user>
-  <id>56703639</id>
-  <name>s r</name>
-  <screen_name>smrn9290</screen_name>
-  <location/>
-  <description/>
-  <profile_image_url>http://s.twimg.com/a/1274144130/images/default_profile_6_normal.png</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>858</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>0</friends_count>
-  <created_at>Tue Jul 14 14:13:36 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset/>
-  <time_zone/>
-  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>76801</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Thu Apr 29 22:31:28 +0000 2010</created_at>
-    <id>13093509801</id>
-    <text>Society - WoW Gold Wizard World Of Warcraft Complete Auction House Farming Guide. http://tinyurl.com/22v3rhe</text>
-    <source>&lt;a href="http://www.ping.fm/" rel="nofollow"&gt;Ping.fm&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>63492591</id>
-  <name>Billy Jacobs</name>
-  <screen_name>billy_ja</screen_name>
-  <location>New York</location>
-  <description>I'm a lawyer. I love women and good food, and I love Ney York's bars.</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/351857976/dork1_normal.jpg</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>0</followers_count>
-  <profile_background_color>352726</profile_background_color>
-  <profile_text_color>3E4415</profile_text_color>
-  <profile_link_color>D02B55</profile_link_color>
-  <profile_sidebar_fill_color>99CC33</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>829D5E</profile_sidebar_border_color>
-  <friends_count>0</friends_count>
-  <created_at>Thu Aug 06 17:50:22 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-18000</utc_offset>
-  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme5/bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>5680</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-</user>
-<user>
-  <id>82974000</id>
-  <name>gWave Hottie</name>
-  <screen_name>gWaveHottie</screen_name>
-  <location/>
-  <description/>
-  <profile_image_url>http://a1.twimg.com/profile_images/475062666/sexy_pink_lips_real_large_normal.jpg</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>9</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>39</friends_count>
-  <created_at>Fri Oct 16 21:09:46 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset/>
-  <time_zone/>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>188</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Mon May 03 17:08:38 +0000 2010</created_at>
-    <id>13315799357</id>
-    <text>RT @dealsplus: Win an Apple iPhone today! Just retweet this and follow @dealsplus to be entered. Details here: http://bit.ly/9aq1Su  #Ap ...</text>
-    <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
-    <truncated>true</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <retweeted_status>
-      <created_at>Mon May 03 14:23:18 +0000 2010</created_at>
-      <id>13307896708</id>
-      <text>Win an Apple iPhone today! Just retweet this and follow @dealsplus to be entered. Details here: http://bit.ly/9aq1Su  #Apple #iPhone</text>
-      <source>web</source>
-      <truncated>false</truncated>
-      <in_reply_to_status_id/>
-      <in_reply_to_user_id/>
-      <favorited>false</favorited>
-      <in_reply_to_screen_name/>
-      <geo/>
-      <coordinates/>
-      <place/>
-      <contributors/>
-    </retweeted_status>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>89470889</id>
-  <name>ARBITRARY</name>
-  <screen_name>the_arbitrator</screen_name>
-  <location/>
-  <description>EVERYTHING IS ARBITRARY</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/523546277/IMG_0972_c_normal.jpg</profile_image_url>
-  <url>http://everythingisarbitrary.com</url>
-  <protected>false</protected>
-  <followers_count>0</followers_count>
-  <profile_background_color>C0DEED</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>0084B4</profile_link_color>
-  <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
-  <friends_count>0</friends_count>
-  <created_at>Thu Nov 12 15:37:58 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-21600</utc_offset>
-  <time_zone>Central Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/53416759/IMG_0988.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>24065</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-</user>
-<user>
-  <id>89781386</id>
-  <name>CockSuckBritney</name>
-  <screen_name>mkrxwnhuovet</screen_name>
-  <location/>
-  <description/>
-  <profile_image_url>http://a3.twimg.com/profile_images/525201671/pic_normal.jpg</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>0</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>0</friends_count>
-  <created_at>Fri Nov 13 20:08:25 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset/>
-  <time_zone/>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>130</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-</user>
-<user>
-  <id>92871705</id>
-  <name>metric60923</name>
-  <screen_name>metric60923</screen_name>
-  <location/>
-  <description/>
-  <profile_image_url>http://a1.twimg.com/profile_images/545691202/pic_normal.jpg</profile_image_url>
-  <url>http://cli.gs/NhRYM</url>
-  <protected>false</protected>
-  <followers_count>0</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>0</friends_count>
-  <created_at>Fri Nov 27 00:57:21 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-32400</utc_offset>
-  <time_zone>Alaska</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>913</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-</user>
-<user>
-  <id>94547675</id>
-  <name>rendition96892</name>
-  <screen_name>rendition96892</screen_name>
-  <location/>
-  <description/>
-  <profile_image_url>http://s.twimg.com/a/1274899949/images/default_profile_5_normal.png</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>0</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>0</friends_count>
-  <created_at>Fri Dec 04 12:22:10 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset/>
-  <time_zone/>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>128</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-</user>
-<user>
-  <id>95515577</id>
-  <name>Bob</name>
-  <screen_name>coinsclub777</screen_name>
-  <location>LO, Cali</location>
-  <description/>
-  <profile_image_url>http://a1.twimg.com/profile_images/565428644/coins2_normal.jpg</profile_image_url>
-  <url>http://www.numisone.com/theconnector</url>
-  <protected>false</protected>
-  <followers_count>2003</followers_count>
-  <profile_background_color>C0DEED</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>0084B4</profile_link_color>
-  <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
-  <friends_count>2198</friends_count>
-  <created_at>Tue Dec 08 22:19:53 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/62814552/twitter_background.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>555</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 22:07:21 +0000 2010</created_at>
-    <id>14935035855</id>
-    <text>Youtube - Miracle of Science http://ht.ly/1RoSf</text>
-    <source>&lt;a href="http://www.hootsuite.com" rel="nofollow"&gt;HootSuite&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-</users>

+ 45 - 0
tests/Zend/Service/Twitter/_files/blocks.create.twitter.json

@@ -0,0 +1,45 @@
+{
+  "contributors_enabled": true,
+  "created_at": "Tue Feb 20 14:35:54 +0000 2007",
+  "default_profile": false,
+  "default_profile_image": false,
+  "description": "Always wondering what's happening. ",
+  "entities": {
+      "description": {
+          "urls": []
+      }
+  },
+  "favourites_count": 2,
+  "followers_count": 3229496,
+  "following": false,
+  "follow_request_sent": false,
+  "friends_count": 247,
+  "geo_enabled": false,
+  "id": 783214,
+  "id_str": "783214",
+  "is_translator": false,
+  "lang": "en",
+  "listed_count": 0,
+  "location": "San Francisco, CA",
+  "name": "Twitter",
+  "notifications": false,
+  "profile_background_color": "ACDED6",
+  "profile_background_image_url": "http://a0.twimg.com/a/1274899949/images/themes/theme18/bg.gif",
+  "profile_background_image_url_https": "https://si0.twimg.com/a/1274899949/images/themes/theme18/bg.gif",
+  "profile_background_tile": false,
+  "profile_image_url": "http://a1.twimg.com/profile_images/878669694/twitter_bird_normal.jpg",
+  "profile_image_url_https": "https://si1.twimg.com/profile_images/878669694/twitter_bird_normal.jpg",
+  "profile_link_color": "038543",
+  "profile_sidebar_border_color": "EEEEEE",
+  "profile_sidebar_fill_color": "F6F6F6",
+  "profile_text_color": "333333",
+  "profile_use_background_image": true,
+  "protected": false,
+  "screen_name": "twitter",
+  "show_all_inline_media": true,
+  "statuses_count": 745,
+  "time_zone": "Pacific Time (US &amp; Canada)",
+  "url": "http://twitter.com",
+  "utc_offset": -28800,
+  "verified": true
+}

+ 0 - 48
tests/Zend/Service/Twitter/_files/blocks.create.twitter.xml

@@ -1,48 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<user>
-  <id>783214</id>
-  <name>Twitter</name>
-  <screen_name>twitter</screen_name>
-  <location>San Francisco, CA</location>
-  <description>Always wondering what's happening. </description>
-  <profile_image_url>http://a1.twimg.com/profile_images/878669694/twitter_bird_normal.jpg</profile_image_url>
-  <url>http://twitter.com</url>
-  <protected>false</protected>
-  <followers_count>3229496</followers_count>
-  <profile_background_color>ACDED6</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>038543</profile_link_color>
-  <profile_sidebar_fill_color>F6F6F6</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>EEEEEE</profile_sidebar_border_color>
-  <friends_count>247</friends_count>
-  <created_at>Tue Feb 20 14:35:54 +0000 2007</created_at>
-  <favourites_count>2</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme18/bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>true</verified>
-  <following>false</following>
-  <statuses_count>745</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>true</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 21:14:05 +0000 2010</created_at>
-    <id>14932507266</id>
-    <text>Good news for people everywhere http://bit.ly/b1Cf9A</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors>
-      <user_id>16739704</user_id>
-    </contributors>
-  </status>
-</user>

+ 45 - 0
tests/Zend/Service/Twitter/_files/blocks.destroy.twitter.json

@@ -0,0 +1,45 @@
+{
+  "contributors_enabled": true,
+  "created_at": "Tue Feb 20 14:35:54 +0000 2007",
+  "default_profile": false,
+  "default_profile_image": false,
+  "description": "Always wondering what's happening. ",
+  "entities": {
+      "description": {
+          "urls": []
+      }
+  },
+  "favourites_count": 2,
+  "followers_count": 3229503,
+  "following": null,
+  "follow_request_sent": false,
+  "friends_count": 247,
+  "geo_enabled": false,
+  "id": 783214,
+  "id_str": "783214",
+  "is_translator": false,
+  "lang": "en",
+  "listed_count": 0,
+  "location": "San Francisco, CA",
+  "name": "Twitter",
+  "notifications": null,
+  "profile_background_color": "ACDED6",
+  "profile_background_image_url": "http://a0.twimg.com/a/1274899949/images/themes/theme18/bg.gif",
+  "profile_background_image_url_https": "https://si0.twimg.com/a/1274899949/images/themes/theme18/bg.gif",
+  "profile_background_tile": false,
+  "profile_image_url": "http://a1.twimg.com/profile_images/878669694/twitter_bird_normal.jpg",
+  "profile_image_url_https": "https://si1.twimg.com/profile_images/878669694/twitter_bird_normal.jpg",
+  "profile_link_color": "038543",
+  "profile_sidebar_border_color": "EEEEEE",
+  "profile_sidebar_fill_color": "F6F6F6",
+  "profile_text_color": "333333",
+  "profile_use_background_image": true,
+  "protected": false,
+  "screen_name": "twitter",
+  "show_all_inline_media": true,
+  "statuses_count": 745,
+  "time_zone": "Pacific Time (US &amp; Canada)",
+  "url": "http://twitter.com",
+  "utc_offset": -28800,
+  "verified": true
+}

+ 0 - 48
tests/Zend/Service/Twitter/_files/blocks.destroy.twitter.xml

@@ -1,48 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<user>
-  <id>783214</id>
-  <name>Twitter</name>
-  <screen_name>twitter</screen_name>
-  <location>San Francisco, CA</location>
-  <description>Always wondering what's happening. </description>
-  <profile_image_url>http://a1.twimg.com/profile_images/878669694/twitter_bird_normal.jpg</profile_image_url>
-  <url>http://twitter.com</url>
-  <protected>false</protected>
-  <followers_count>3229503</followers_count>
-  <profile_background_color>ACDED6</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>038543</profile_link_color>
-  <profile_sidebar_fill_color>F6F6F6</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>EEEEEE</profile_sidebar_border_color>
-  <friends_count>247</friends_count>
-  <created_at>Tue Feb 20 14:35:54 +0000 2007</created_at>
-  <favourites_count>2</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme18/bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications/>
-  <geo_enabled>false</geo_enabled>
-  <verified>true</verified>
-  <following/>
-  <statuses_count>745</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>true</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 21:14:05 +0000 2010</created_at>
-    <id>14932507266</id>
-    <text>Good news for people everywhere http://bit.ly/b1Cf9A</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors>
-      <user_id>16739704</user_id>
-    </contributors>
-  </status>
-</user>

+ 0 - 5
tests/Zend/Service/Twitter/_files/blocks.exists.padraicb.xml

@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<hash>
-  <request>/1/blocks/exists/padraicb.xml</request>
-  <error>You are not blocking this user.</error>
-</hash>

+ 0 - 48
tests/Zend/Service/Twitter/_files/blocks.exists.twitter.xml

@@ -1,48 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<user>
-  <id>783214</id>
-  <name>Twitter</name>
-  <screen_name>twitter</screen_name>
-  <location>San Francisco, CA</location>
-  <description>Always wondering what's happening. </description>
-  <profile_image_url>http://a1.twimg.com/profile_images/878669694/twitter_bird_normal.jpg</profile_image_url>
-  <url>http://twitter.com</url>
-  <protected>false</protected>
-  <followers_count>3229498</followers_count>
-  <profile_background_color>ACDED6</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>038543</profile_link_color>
-  <profile_sidebar_fill_color>F6F6F6</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>EEEEEE</profile_sidebar_border_color>
-  <friends_count>247</friends_count>
-  <created_at>Tue Feb 20 14:35:54 +0000 2007</created_at>
-  <favourites_count>2</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme18/bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications/>
-  <geo_enabled>false</geo_enabled>
-  <verified>true</verified>
-  <following/>
-  <statuses_count>745</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>true</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 21:14:05 +0000 2010</created_at>
-    <id>14932507266</id>
-    <text>Good news for people everywhere http://bit.ly/b1Cf9A</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors>
-      <user_id>16739704</user_id>
-    </contributors>
-  </status>
-</user>

+ 14 - 0
tests/Zend/Service/Twitter/_files/blocks.ids.json

@@ -0,0 +1,14 @@
+{
+    "previous_cursor": 0,
+    "ids": [
+        "23836616",
+        "95515577",
+        "16136505",
+        "82974000",
+        "40165170",
+        "56703639"
+    ],
+    "previous_cursor_str": "0",
+    "next_cursor": 0,
+    "next_cursor_str": "0"
+}

+ 908 - 0
tests/Zend/Service/Twitter/_files/blocks.list.json

@@ -0,0 +1,908 @@
+{
+    "users": [
+        {
+            "contributors_enabled": true,
+            "created_at": "Tue Feb 20 14:35:54 +0000 2007",
+            "default_profile": true,
+            "default_profile_image": true,
+            "description": "Always wondering what's happening. ",
+            "entities": {
+                "description": {
+                    "urls": [
+                    ]
+                }
+            },
+            "favourites_count": 2,
+            "followers_count": 3230113,
+            "following": null,
+            "follow_request_sent": false,
+            "friends_count": 247,
+            "geo_enabled": false,
+            "id": 783214,
+            "id_str": "783214",
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "location": "San Francisco, CA",
+            "name": "Twitter",
+            "notifications": false,
+            "profile_background_color": "ACDED6",
+            "profile_background_image_url": "http:\/\/a1.twimg.com\/a\/1274899949\/images\/themes\/theme18\/bg.gif",
+            "profile_background_image_url_https": "https:\/\/si1.twimg.com\/a\/1274899949\/images\/themes\/theme18\/bg.gif",
+            "profile_background_tile": false,
+            "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/878669694\/twitter_bird_normal.jpg",
+            "profile_image_url_https": "https:\/\/si1.twimg.com\/profile_images\/878669694\/twitter_bird_normal.jpg",
+            "profile_link_color": "038543",
+            "profile_sidebar_border_color": "EEEEEE",
+            "profile_sidebar_fill_color": "F6F6F6",
+            "profile_text_color": "333333",
+            "profile_use_background_image": true,
+            "protected": false,
+            "screen_name": "twitter",
+            "status": {
+                "contributors": [
+                    {
+                        "id": 16739704,
+                        "id_str": "16739704",
+                        "screen_name": "jennadawn"
+                    }
+                ],
+                "coordinates": null,
+                "created_at": "Fri May 28 21:14:05 +0000 2010",
+                "entities": {
+                    "hashtags": [
+                    ],
+                    "urls": [
+                        {
+                            "url": "http://bit.ly/b1Cf9A",
+                            "indices": [
+                                33,
+                                52
+                            ]
+                        }
+                    ],
+                    "user_mentions": [
+                    ]
+                },
+                "favorited": false,
+                "geo": null,
+                "id": 14932507266,
+                "id_str": "14932507266",
+                "in_reply_to_screen_name": null,
+                "in_reply_to_status_id": null,
+                "in_reply_to_status_id_str": null,
+                "in_reply_to_user_id": null,
+                "in_reply_to_user_id_str": null,
+                "place": null,
+                "retweet_count": 0,
+                "retweeted": false,
+                "source": "web",
+                "text": "Good news for people everywhere http://bit.ly/b1Cf9A",
+                "truncated": false
+            },
+            "statuses_count": 745,
+            "time_zone": "Pacific Time (US &amp; Canada)",
+            "url": "http://twitter.com",
+            "utc_offset": -28800,
+            "verified": true
+        },
+        {
+            "contributors_enabled": false,
+            "created_at": "Thu Sep 04 22:37:58 +0000 2008",
+            "default_profile": true,
+            "default_profile_image": true,
+            "description": "where we pick cash from the money tree of internet marketing...metaphorically speaking of course,",
+            "entities": {
+                "description": {
+                    "urls": [
+                    ]
+                }
+            },
+            "favourites_count": 0,
+            "followers_count": 28,
+            "following": null,
+            "follow_request_sent": false,
+            "friends_count": 4,
+            "geo_enabled": false,
+            "id": 16136505,
+            "id_str": "16136505",
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "location": "East Side",
+            "name": "Nate Harding",
+            "notifications": false,
+            "profile_background_color": "9ae4e8",
+            "profile_background_image_url": "http:\/\/a0.twimg.com\/a\/1274899949\/images\/themes\/theme1\/bg.png",
+            "profile_background_image_url_https": "https:\/\/si0.twimg.com\/a\/1274899949\/images\/themes\/theme1\/bg.png",
+            "profile_background_tile": false,
+            "profile_image_url": "http:\/\/a0.twimg.com\/a\/1274899949\/images\/default_profile_0_normal.png",
+            "profile_image_url_https": "https:\/\/si0.twimg.com\/a\/1274899949\/images\/default_profile_0_normal.png",
+            "profile_link_color": "0000ff",
+            "profile_sidebar_border_color": "87bc44",
+            "profile_sidebar_fill_color": "e0ff92",
+            "profile_text_color": "000000",
+            "profile_use_background_image": true,
+            "protected": false,
+            "screen_name": "nateharding",
+            "status": {
+                "contributors": null,
+                "coordinates": null,
+                "created_at": "Sat Feb 20 09:25:54 +0000 2010",
+                "favorited": false,
+                "geo": null,
+                "id": 9377514336,
+                "id_str": "9377514336",
+                "in_reply_to_screen_name": null,
+                "in_reply_to_status_id": null,
+                "in_reply_to_status_id_str": null,
+                "in_reply_to_user_id": null,
+                "in_reply_to_user_id_str": null,
+                "place": null,
+                "retweet_count": 0,
+                "retweeted": false,
+                "source": "web",
+                "text": "Wuttup Twitter World?  Hey, @robertplank how'd the webinar go?  I couldn't make it.  Is there a recording I can check out?",
+                "truncated": false
+            },
+            "statuses_count": 460,
+            "time_zone": "Eastern Time (US &amp; Canada)",
+            "url": null,
+            "utc_offset": -18000,
+            "verified": false
+        },
+        {
+            "contributors_enabled": false,
+            "created_at": "Wed Mar 11 21:46:11 +0000 2009",
+            "default_profile": true,
+            "default_profile_image": true,
+            "description": null,
+            "entities": {
+                "description": {
+                    "urls": [
+                    ]
+                }
+            },
+            "favourites_count": 0,
+            "followers_count": 211,
+            "following": false,
+            "follow_request_sent": false,
+            "friends_count": 332,
+            "geo_enabled": false,
+            "id": 23836616,
+            "id_str": "23836616",
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "location": "Bray, Co Wicklow, Ireland",
+            "name": "Ian McGahon",
+            "notifications": false,
+            "profile_background_color": "C6E2EE",
+            "profile_background_image_url": "http:\/\/a3.twimg.com\/profile_background_images\/5566801\/n52950876433_9929.jpg",
+            "profile_background_image_url_https": "https:\/\/si3.twimg.com\/profile_background_images\/5566801\/n52950876433_9929.jpg",
+            "profile_background_tile": false,
+            "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/623139340\/ian_normal.jpg",
+            "profile_image_url_https": "https:\/\/si1.twimg.com\/profile_images\/623139340\/ian_normal.jpg",
+            "profile_link_color": "1F98C7",
+            "profile_sidebar_border_color": "C6E2EE",
+            "profile_sidebar_fill_color": "DAECF4",
+            "profile_text_color": "663B12",
+            "profile_use_background_image": true,
+            "protected": false,
+            "screen_name": "ianmcgahon",
+            "status": {
+                "contributors": null,
+                "coordinates": null,
+                "created_at": "Sun May 30 14:30:18 +0000 2010",
+                "entities": {
+                    "hashtags": [
+                    ],
+                    "urls": [
+                    ],
+                    "user_mentions": [
+                        {
+                            "id": 14395202,
+                            "id_str": "14395202",
+                            "name": "Christine Bohan",
+                            "indices": [
+                                0,
+                                14
+                            ],
+                            "screen_name": "ChristineBohan"
+                        }
+                    ]
+                },
+                "favorited": false,
+                "geo": null,
+                "id": 15044593156,
+                "id_str": "15044593156",
+                "in_reply_to_screen_name": "ChristineBohan",
+                "in_reply_to_status_id": 14999351526,
+                "in_reply_to_status_id_str": "14999351526",
+                "in_reply_to_user_id": 14395202,
+                "in_reply_to_user_id_str": "14395202",
+                "place": null,
+                "retweet_count": 0,
+                "retweeted": false,
+                "source": "web",
+                "text": "@ChristineBohan ;-) - A Libertarian in FF! - The increasing amount of libertarians astounds me, perhaps I'm just reading too much boards.ie",
+                "truncated": false
+            },
+            "statuses_count": 561,
+            "time_zone": "Dublin",
+            "url": null,
+            "utc_offset": 0,
+            "verified": false
+        },
+        {
+            "contributors_enabled": false,
+            "created_at": "Fri May 15 03:25:00 +0000 2009",
+            "default_profile": true,
+            "default_profile_image": true,
+            "description": null,
+            "entities": {
+                "description": {
+                    "urls": [
+                    ]
+                }
+            },
+            "favourites_count": 0,
+            "followers_count": 10,
+            "following": false,
+            "follow_request_sent": false,
+            "friends_count": 2,
+            "geo_enabled": false,
+            "id": 40165170,
+            "id_str": "40165170",
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "location": null,
+            "name": "Richard Lee",
+            "notifications": false,
+            "profile_background_color": "9ae4e8",
+            "profile_background_image_url": "http:\/\/a0.twimg.com\/a\/1274899949\/images\/themes\/theme1\/bg.png",
+            "profile_background_image_url_https": "https:\/\/si0.twimg.com\/a\/1274899949\/images\/themes\/theme1\/bg.png",
+            "profile_background_tile": false,
+            "profile_image_url": "http:\/\/a0.twimg.com\/a\/1274899949\/images\/default_profile_3_normal.png",
+            "profile_image_url_https": "https:\/\/si0.twimg.com\/a\/1274899949\/images\/default_profile_3_normal.png",
+            "profile_link_color": "0000ff",
+            "profile_sidebar_border_color": "87bc44",
+            "profile_sidebar_fill_color": "e0ff92",
+            "profile_text_color": "000000",
+            "profile_use_background_image": true,
+            "protected": false,
+            "screen_name": "RichardLee4",
+            "status": {
+                "contributors": null,
+                "coordinates": null,
+                "created_at": "Thu Oct 15 23:34:39 +0000 2009",
+                "entities": {
+                    "hashtags": [
+                    ],
+                    "urls": [
+                    ],
+                    "user_mentions": [
+                    ]
+                },
+                "favorited": false,
+                "geo": null,
+                "id": 4901594956,
+                "id_str": "4901594956",
+                "in_reply_to_screen_name": null,
+                "in_reply_to_status_id": null,
+                "in_reply_to_status_id_str": null,
+                "in_reply_to_user_id": null,
+                "in_reply_to_user_id_str": null,
+                "place": null,
+                "source": "\u003Ca href=\"\/devices\" rel=\"nofollow\"\u003Etxt\u003C\/a\u003E",
+                "text": "Road_and_Track: SNOUJMESNOUMESNOUME",
+                "truncated": false
+            },
+            "statuses_count": 277,
+            "time_zone": null,
+            "url": null,
+            "utc_offset": null,
+            "verified": false
+        },
+        {
+            "contributors_enabled": false,
+            "created_at": "Sun Jul 12 22:39:28 +0000 2009",
+            "default_profile": true,
+            "default_profile_image": true,
+            "description": "I love to Swallow",
+            "entities": {
+                "description": {
+                    "urls": [
+                    ]
+                }
+            },
+            "favourites_count": 0,
+            "followers_count": 0,
+            "following": false,
+            "follow_request_sent": false,
+            "friends_count": 0,
+            "geo_enabled": false,
+            "id": 56212353,
+            "id_str": "56212353",
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "location": null,
+            "name": "Wicked Girl",
+            "notifications": false,
+            "profile_background_color": "9ae4e8",
+            "profile_background_image_url": "http:\/\/a0.twimg.com\/a\/1274899949\/images\/themes\/theme1\/bg.png",
+            "profile_background_image_url_https": "https:\/\/si0.twimg.com\/a\/1274899949\/images\/themes\/theme1\/bg.png",
+            "profile_background_tile": false,
+            "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/310487971\/member5_normal.jpg",
+            "profile_image_url_https": "https:\/\/si3.twimg.com\/profile_images\/310487971\/member5_normal.jpg",
+            "profile_link_color": "0000ff",
+            "profile_sidebar_border_color": "87bc44",
+            "profile_sidebar_fill_color": "e0ff92",
+            "profile_text_color": "000000",
+            "profile_use_background_image": true,
+            "protected": false,
+            "screen_name": "KelliKanyon5",
+            "status": null,
+            "statuses_count": 2381,
+            "time_zone": null,
+            "url": "http://www.Kellikanyon.net",
+            "utc_offset": null,
+            "verified": false
+        },
+        {
+            "contributors_enabled": false,
+            "created_at": "Tue Jul 14 14:13:36 +0000 2009",
+            "default_profile": true,
+            "default_profile_image": true,
+            "description": null,
+            "entities": {
+                "description": {
+                    "urls": [
+                    ]
+                }
+            },
+            "favourites_count": 0,
+            "followers_count": 858,
+            "following": false,
+            "follow_request_sent": false,
+            "friends_count": 0,
+            "geo_enabled": false,
+            "id": 56703639,
+            "id_str": "56703639",
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "location": null,
+            "name": "s r",
+            "notifications": false,
+            "profile_background_color": "9ae4e8",
+            "profile_background_image_url": "http:\/\/a0.twimg.com\/a\/1274144130\/images\/themes\/theme1\/bg.png",
+            "profile_background_image_url_https": "https:\/\/si0.twimg.com\/a\/1274144130\/images\/themes\/theme1\/bg.png",
+            "profile_background_tile": false,
+            "profile_image_url": "http:\/\/a0.twimg.com\/a\/1274144130\/images\/default_profile_6_normal.png",
+            "profile_image_url_https": "https:\/\/si0.twimg.com\/a\/1274144130\/images\/default_profile_6_normal.png",
+            "profile_link_color": "0000ff",
+            "profile_sidebar_border_color": "87bc44",
+            "profile_sidebar_fill_color": "e0ff92",
+            "profile_text_color": "000000",
+            "profile_use_background_image": true,
+            "protected": false,
+            "screen_name": "smrn9290",
+            "status": {
+                "contributors": null,
+                "coordinates": null,
+                "created_at": "Thu Apr 29 22:31:28 +0000 2010",
+                "entities": {
+                    "hashtags": [
+                    ],
+                    "urls": [
+                        {
+                            "url": "http://tinyurl.com/22v3rhe",
+                            "indices": [
+                                83,
+                                108
+                            ]
+                        }
+                    ],
+                    "user_mentions": [
+                    ]
+                },
+                "favorited": false,
+                "geo": null,
+                "id": 13093509801,
+                "id_str": "13093509801",
+                "in_reply_to_screen_name": null,
+                "in_reply_to_status_id": null,
+                "in_reply_to_status_id_str": null,
+                "in_reply_to_user_id": null,
+                "in_reply_to_user_id_str": null,
+                "place": null,
+                "retweet_count": 0,
+                "retweeted": false,
+                "source": "\u003Ca href=\"http:\/\/www.ping.fm\/\" rel=\"nofollow\"\u003EPing.fm\u003C\/a\u003E",
+                "text": "Society - WoW Gold Wizard World Of Warcraft Complete Auction House Farming Guide. http://tinyurl.com/22v3rhe",
+                "truncated": false
+            },
+            "statuses_count": 76801,
+            "time_zone": null,
+            "url": null,
+            "utc_offset": null,
+            "verified": false
+        },
+        {
+            "contributors_enabled": false,
+            "created_at": "Thu Aug 06 17:50:22 +0000 2009",
+            "default_profile": true,
+            "default_profile_image": true,
+            "description": "I'm a lawyer. I love women and good food, and I love Ney York's bars.",
+            "entities": {
+                "description": {
+                    "urls": [
+                    ]
+                }
+            },
+            "favourites_count": 0,
+            "followers_count": 0,
+            "following": false,
+            "follow_request_sent": false,
+            "friends_count": 0,
+            "geo_enabled": false,
+            "id": 63492591,
+            "id_str": "63492591",
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "location": "New York",
+            "name": "Billy Jacobs",
+            "notifications": false,
+            "profile_background_color": 352726,
+            "profile_background_image_url": "http:\/\/a0.twimg.com\/a\/1274899949\/images\/themes\/theme5\/bg.gif",
+            "profile_background_image_url_https": "https:\/\/si0.twimg.com\/a\/1274899949\/images\/themes\/theme5\/bg.gif",
+            "profile_background_tile": false,
+            "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/351857976\/dork1_normal.jpg",
+            "profile_image_url_https": "https:\/\/si1.twimg.com\/profile_images\/351857976\/dork1_normal.jpg",
+            "profile_link_color": "D02B55",
+            "profile_sidebar_border_color": "829D5E",
+            "profile_sidebar_fill_color": "99CC33",
+            "profile_text_color": "3E4415",
+            "profile_use_background_image": true,
+            "protected": false,
+            "screen_name": "billy_ja",
+            "status": null,
+            "statuses_count": 5680,
+            "time_zone": "Eastern Time (US &amp; Canada)",
+            "url": null,
+            "utc_offset": -18000,
+            "verified": false
+        },
+        {
+            "contributors_enabled": false,
+            "created_at": "Fri Oct 16 21:09:46 +0000 2009",
+            "default_profile": true,
+            "default_profile_image": true,
+            "description": null,
+            "entities": {
+                "description": {
+                    "urls": [
+                    ]
+                }
+            },
+            "favourites_count": 0,
+            "followers_count": 9,
+            "following": false,
+            "follow_request_sent": false,
+            "friends_count": 39,
+            "geo_enabled": false,
+            "id": 82974000,
+            "id_str": "82974000",
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "location": null,
+            "name": "gWave Hottie",
+            "notifications": false,
+            "profile_background_color": "9ae4e8",
+            "profile_background_image_url": "http:\/\/a0.twimg.com\/a\/1274899949\/images\/themes\/theme1\/bg.png",
+            "profile_background_image_url_https": "https:\/\/si0.twimg.com\/a\/1274899949\/images\/themes\/theme1\/bg.png",
+            "profile_background_tile": false,
+            "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/475062666\/sexy_pink_lips_real_large_normal.jpg",
+            "profile_image_url_https": "https:\/\/si1.twimg.com\/profile_images\/475062666\/sexy_pink_lips_real_large_normal.jpg",
+            "profile_link_color": "0000ff",
+            "profile_sidebar_border_color": "87bc44",
+            "profile_sidebar_fill_color": "e0ff92",
+            "profile_text_color": "000000",
+            "profile_use_background_image": true,
+            "protected": false,
+            "screen_name": "gWaveHottie",
+            "status": {
+                "contributors": null,
+                "coordinates": null,
+                "created_at": "Mon May 03 17:08:38 +0000 2010",
+                "entities": {
+                    "hashtags": [
+                        {
+                            "text": "Apple",
+                            "indices": [
+                                134,
+                                139
+                            ]
+                        },
+                        {
+                            "text": "iPhone",
+                            "indices": [
+                                141,
+                                147
+                            ]
+                        }
+                    ],
+                    "urls": [
+                        {
+                            "url": "http://bit.ly/9aq1Su",
+                            "indices": [
+                                112,
+                                131
+                            ]
+                        }
+                    ],
+                    "user_mentions": [
+                        {
+                            "id": 1985381,
+                            "id_str": "1985381",
+                            "name": "dealsplus",
+                            "indices": [
+                                3,
+                                12
+                            ],
+                            "screen_name": "dealsplus"
+                        }
+                    ]
+                },
+                "favorited": false,
+                "geo": null,
+                "id": 13315799357,
+                "id_str": "13315799357",
+                "in_reply_to_screen_name": null,
+                "in_reply_to_status_id": null,
+                "in_reply_to_status_id_str": null,
+                "in_reply_to_user_id": null,
+                "in_reply_to_user_id_str": null,
+                "place": null,
+                "retweet_count": 0,
+                "retweeted": true,
+                "retweeted_status": {
+                    "contributors": null,
+                    "coordinates": null,
+                    "created_at": "Mon May 03 14:23:18 +0000 2010",
+                    "entities": {
+                        "hashtags": [
+                            {
+                                "text": "Apple",
+                                "indices": [
+                                    119,
+                                    124
+                                ]
+                            },
+                            {
+                                "text": "iPhone",
+                                "indices": [
+                                    126,
+                                    132
+                                ]
+                            }
+                        ],
+                        "urls": [
+                            {
+                                "url": "http://bit.ly/9aq1Su",
+                                "indices": [
+                                    97,
+                                    116
+                                ]
+                            }
+                        ],
+                        "user_mentions": [
+                            {
+                                "id": 1985381,
+                                "id_str": "1985381",
+                                "name": "dealsplus",
+                                "indices": [
+                                    57,
+                                    66
+                                ],
+                                "screen_name": "dealsplus"
+                            }
+                        ]
+                    },
+                    "favorited": false,
+                    "geo": null,
+                    "id": 13307896708,
+                    "id_str": "13307896708",
+                    "in_reply_to_screen_name": null,
+                    "in_reply_to_status_id": null,
+                    "in_reply_to_status_id_str": null,
+                    "in_reply_to_user_id": null,
+                    "in_reply_to_user_id_str": null,
+                    "place": null,
+                    "retweet_count": 1,
+                    "retweeted": false,
+                    "source": "web",
+                    "text": "Win an Apple iPhone today! Just retweet this and follow @dealsplus to be entered. Details here: http://bit.ly/9aq1Su  #Apple #iPhone",
+                    "truncated": false
+                },
+                "source": "\u003Ca href=\"http:\/\/apiwiki.twitter.com\/\" rel=\"nofollow\"\u003EAPI\u003C\/a\u003E",
+                "text": "RT @dealsplus: Win an Apple iPhone today! Just retweet this and follow @dealsplus to be entered. Details here: http://bit.ly/9aq1Su  #Ap ...",
+                "truncated": true
+            },
+            "statuses_count": 188,
+            "time_zone": null,
+            "url": null,
+            "utc_offset": null,
+            "verified": false
+        },
+        {
+            "contributors_enabled": false,
+            "created_at": "Thu Nov 12 15:37:58 +0000 2009",
+            "default_profile": true,
+            "default_profile_image": true,
+            "description": "EVERYTHING IS ARBITRARY",
+            "entities": {
+                "description": {
+                    "urls": [
+                    ]
+                }
+            },
+            "favourites_count": 0,
+            "followers_count": 0,
+            "following": false,
+            "follow_request_sent": false,
+            "friends_count": 0,
+            "geo_enabled": false,
+            "id": 89470889,
+            "id_str": "89470889",
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "location": null,
+            "name": "ARBITRARY",
+            "notifications": false,
+            "profile_background_color": "C0DEED",
+            "profile_background_image_url": "http:\/\/a3.twimg.com\/profile_background_images\/53416759\/IMG_0988.jpg",
+            "profile_background_image_url_https": "https:\/\/si3.twimg.com\/profile_background_images\/53416759\/IMG_0988.jpg",
+            "profile_background_tile": false,
+            "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/523546277\/IMG_0972_c_normal.jpg",
+            "profile_image_url_https": "https:\/\/si3.twimg.com\/profile_images\/523546277\/IMG_0972_c_normal.jpg",
+            "profile_link_color": "0084B4",
+            "profile_sidebar_border_color": "C0DEED",
+            "profile_sidebar_fill_color": "DDEEF6",
+            "profile_text_color": 333333,
+            "profile_use_background_image": true,
+            "protected": false,
+            "screen_name": "the_arbitrator",
+            "status": null,
+            "statuses_count": 24065,
+            "time_zone": "Central Time (US &amp; Canada)",
+            "url": "http://everythingisarbitrary.com",
+            "utc_offset": -21600,
+            "verified": false
+        },
+        {
+            "contributors_enabled": false,
+            "created_at": "Fri Nov 13 20:08:25 +0000 2009",
+            "default_profile": true,
+            "default_profile_image": true,
+            "description": null,
+            "entities": {
+                "description": {
+                    "urls": [
+                    ]
+                }
+            },
+            "favourites_count": 0,
+            "followers_count": 0,
+            "following": false,
+            "follow_request_sent": false,
+            "friends_count": 0,
+            "geo_enabled": false,
+            "id": 89781386,
+            "id_str": "89781386",
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "location": null,
+            "name": "CockSuckBritney",
+            "notifications": false,
+            "profile_background_color": "9ae4e8",
+            "profile_background_image_url": "http:\/\/a0.twimg.com\/a\/1274899949\/images\/themes\/theme1\/bg.png",
+            "profile_background_image_url_https": "https:\/\/si0.twimg.com\/a\/1274899949\/images\/themes\/theme1\/bg.png",
+            "profile_background_tile": false,
+            "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/525201671\/pic_normal.jpg",
+            "profile_image_url_https": "https:\/\/si3.twimg.com\/profile_images\/525201671\/pic_normal.jpg",
+            "profile_link_color": "0000ff",
+            "profile_sidebar_border_color": "87bc44",
+            "profile_sidebar_fill_color": "e0ff92",
+            "profile_text_color": "000000",
+            "profile_use_background_image": true,
+            "protected": false,
+            "screen_name": "mkrxwnhuovet",
+            "status": null,
+            "statuses_count": 130,
+            "time_zone": null,
+            "url": null,
+            "utc_offset": null,
+            "verified": false
+        },
+        {
+            "contributors_enabled": false,
+            "created_at": "Fri Nov 27 00:57:21 +0000 2009",
+            "default_profile": true,
+            "default_profile_image": true,
+            "description": null,
+            "entities": {
+                "description": {
+                    "urls": [
+                    ]
+                }
+            },
+            "favourites_count": 0,
+            "followers_count": 0,
+            "following": false,
+            "follow_request_sent": false,
+            "friends_count": 0,
+            "geo_enabled": false,
+            "id": 92871705,
+            "id_str": "92871705",
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "location": null,
+            "name": "metric60923",
+            "notifications": false,
+            "profile_background_color": "9ae4e8",
+            "profile_background_image_url": "http:\/\/a0.twimg.com\/a\/1274899949\/images\/themes\/theme1\/bg.png",
+            "profile_background_image_url_https": "https:\/\/si0.twimg.com\/a\/1274899949\/images\/themes\/theme1\/bg.png",
+            "profile_background_tile": false,
+            "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/545691202\/pic_normal.jpg",
+            "profile_image_url_https": "https:\/\/si1.twimg.com\/profile_images\/545691202\/pic_normal.jpg",
+            "profile_link_color": "0000ff",
+            "profile_sidebar_border_color": "87bc44",
+            "profile_sidebar_fill_color": "e0ff92",
+            "profile_text_color": "000000",
+            "profile_use_background_image": true,
+            "protected": false,
+            "screen_name": "metric60923",
+            "status": null,
+            "statuses_count": 913,
+            "time_zone": "Alaska",
+            "url": "http://cli.gs/NhRYM",
+            "utc_offset": -32400,
+            "verified": false
+        },
+        {
+            "contributors_enabled": false,
+            "created_at": "Fri Dec 04 12:22:10 +0000 2009",
+            "default_profile": true,
+            "default_profile_image": true,
+            "description": null,
+            "entities": {
+                "description": {
+                    "urls": [
+                    ]
+                }
+            },
+            "favourites_count": 0,
+            "followers_count": 0,
+            "following": false,
+            "follow_request_sent": false,
+            "friends_count": 0,
+            "geo_enabled": false,
+            "id": 94547675,
+            "id_str": "94547675",
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "location": null,
+            "name": "rendition96892",
+            "notifications": false,
+            "profile_background_color": "9ae4e8",
+            "profile_background_image_url": "http:\/\/a0.twimg.com\/a\/1274899949\/images\/themes\/theme1\/bg.png",
+            "profile_background_image_url_https": "https:\/\/si0.twimg.com\/a\/1274899949\/images\/themes\/theme1\/bg.png",
+            "profile_background_tile": false,
+            "profile_image_url": "http:\/\/a0.twimg.com\/a\/1274899949\/images\/default_profile_5_normal.png",
+            "profile_image_url_https": "https:\/\/si0.twimg.com\/a\/1274899949\/images\/default_profile_5_normal.png",
+            "profile_link_color": "0000ff",
+            "profile_sidebar_border_color": "87bc44",
+            "profile_sidebar_fill_color": "e0ff92",
+            "profile_text_color": "000000",
+            "profile_use_background_image": true,
+            "protected": false,
+            "screen_name": "rendition96892",
+            "status": null,
+            "statuses_count": 128,
+            "time_zone": null,
+            "url": null,
+            "utc_offset": null,
+            "verified": false
+        },
+        {
+            "contributors_enabled": false,
+            "created_at": "Tue Dec 08 22:19:53 +0000 2009",
+            "default_profile": true,
+            "default_profile_image": true,
+            "description": null,
+            "entities": {
+                "description": {
+                    "urls": [
+                    ]
+                }
+            },
+            "favourites_count": 0,
+            "followers_count": 2003,
+            "following": false,
+            "follow_request_sent": false,
+            "friends_count": 2198,
+            "geo_enabled": false,
+            "id": 95515577,
+            "id_str": "95515577",
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "location": "LO, Cali",
+            "name": "Bob",
+            "notifications": false,
+            "profile_background_color": "C0DEED",
+            "profile_background_image_url": "http:\/\/a1.twimg.com\/profile_background_images\/62814552\/twitter_background.jpg",
+            "profile_background_image_url_https": "https:\/\/si1.twimg.com\/profile_background_images\/62814552\/twitter_background.jpg",
+            "profile_background_tile": false,
+            "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/565428644\/coins2_normal.jpg",
+            "profile_image_url_https": "https:\/\/si1.twimg.com\/profile_images\/565428644\/coins2_normal.jpg",
+            "profile_link_color": "0084B4",
+            "profile_sidebar_border_color": "C0DEED",
+            "profile_sidebar_fill_color": "DDEEF6",
+            "profile_text_color": 333333,
+            "profile_use_background_image": true,
+            "protected": false,
+            "screen_name": "coinsclub777",
+            "status": {
+                "contributors": null,
+                "coordinates": null,
+                "created_at": "Fri May 28 22:07:21 +0000 2010",
+                "entities": {
+                    "hashtags": [
+                    ],
+                    "urls": [
+                        {
+                            "url": "http://ht.ly/1RoSf",
+                            "indices": [
+                                30,
+                                47
+                            ]
+                        }
+                    ],
+                    "user_mentions": [
+                    ]
+                },
+                "favorited": false,
+                "geo": null,
+                "id": 14935035855,
+                "id_str": "14935035855",
+                "in_reply_to_screen_name": null,
+                "in_reply_to_status_id": null,
+                "in_reply_to_status_id_str": null,
+                "in_reply_to_user_id": null,
+                "in_reply_to_user_id_str": null,
+                "place": null,
+                "retweet_count": 0,
+                "retweeted": false,
+                "source": "\u003Ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003EHootSuite\u003C\/a\u003E",
+                "text": "Youtube - Miracle of Science http://ht.ly/1RoSf",
+                "truncated": false
+            },
+            "statuses_count": 555,
+            "time_zone": "Pacific Time (US &amp; Canada)",
+            "url": "http://www.numisone.com/theconnector",
+            "utc_offset": -28800,
+            "verified": false
+        }
+    ]
+}

+ 70 - 0
tests/Zend/Service/Twitter/_files/favorites.create.json

@@ -0,0 +1,70 @@
+{
+    "contributors": null,
+    "coordinates": null,
+    "created_at": "Sun May 30 13:48:40 +0000 2010",
+    "entities": {
+        "hashtags": [],
+        "urls": [],
+        "user_mentions": []
+    },
+    "favorited": true,
+    "geo": null,
+    "id": 15042159587,
+    "id_str": "15042159587",
+    "in_reply_to_screen_name": null,
+    "in_reply_to_status_id": null,
+    "in_reply_to_status_id_str": null,
+    "in_reply_to_user_id": null,
+    "in_reply_to_user_id_str": null,
+    "place": null,
+    "retweet_count": 0,
+    "retweeted": false,
+    "source": "<a href=\"http://apiwiki.twitter.com/\" rel=\"nofollow\">API</a>",
+    "text": "Test Message 1",
+    "truncated": false,
+    "user": {
+        "contributors_enabled": false,
+        "created_at": "Mon Sep 24 19:35:22 +0000 2007",
+        "default_profile": false,
+        "default_profile_image": false,
+        "description": "PHP Developer, Open Source Contributor, and FS Audit Consultant",
+        "entities": {
+            "description": {
+                "urls": []
+            }
+        },
+        "favourites_count": 21,
+        "followers_count": 848,
+        "following": false,
+        "follow_request_sent": false,
+        "friends_count": 469,
+        "geo_enabled": false,
+        "id": 9075802,
+        "id_str": "9075802",
+        "is_translator": false,
+        "lang": "en",
+        "listed_count": 0,
+        "location": "Dublin, Ireland, Europe!",
+        "name": "Pádraic Brady",
+        "notifications": false,
+        "profile_background_color": "022330",
+        "profile_background_image_url": "http:\/\/a0.twimg.com\/a\/1274899949\/images\/themes\/theme15\/bg.png",
+        "profile_background_image_url_https": "https:\/\/si0.twimg.com\/a\/1274899949\/images\/themes\/theme15\/bg.png",
+        "profile_background_tile": false,
+        "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/374757042\/twitterProfilePhoto_normal.jpg",
+        "profile_image_url_https": "https:\/\/si1.twimg.com\/profile_images\/374757042\/twitterProfilePhoto_normal.jpg",
+        "profile_link_color": "0084B4",
+        "profile_sidebar_border_color": "a8c7f7",
+        "profile_sidebar_fill_color": "C0DFEC",
+        "profile_text_color": "333333",
+        "profile_use_background_image": true,
+        "protected": false,
+        "screen_name": "padraicb",
+        "show_all_inline_media": true,
+        "statuses_count": 5929,
+        "time_zone": "Dublin",
+        "url": "http://blog.astrumfutura.com",
+        "utc_offset": 0,
+        "verified": false
+    }
+}

+ 0 - 46
tests/Zend/Service/Twitter/_files/favorites.create.xml

@@ -1,46 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<status>
-  <created_at>Sun May 30 13:48:40 +0000 2010</created_at>
-  <id>15042159587</id>
-  <text>Test Message 1</text>
-  <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>true</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>9075802</id>
-    <name>Pádraic Brady</name>
-    <screen_name>padraicb</screen_name>
-    <location>Dublin, Ireland, Europe!</location>
-    <description>PHP Developer, Open Source Contributor, and FS Audit Consultant</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/374757042/twitterProfilePhoto_normal.jpg</profile_image_url>
-    <url>http://blog.astrumfutura.com</url>
-    <protected>false</protected>
-    <followers_count>848</followers_count>
-    <profile_background_color>022330</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>0084B4</profile_link_color>
-    <profile_sidebar_fill_color>C0DFEC</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>a8c7f7</profile_sidebar_border_color>
-    <friends_count>469</friends_count>
-    <created_at>Mon Sep 24 19:35:22 +0000 2007</created_at>
-    <favourites_count>21</favourites_count>
-    <utc_offset>0</utc_offset>
-    <time_zone>Dublin</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme15/bg.png</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>false</following>
-    <statuses_count>5929</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>

+ 70 - 0
tests/Zend/Service/Twitter/_files/favorites.destroy.json

@@ -0,0 +1,70 @@
+{
+    "contributors": null,
+    "coordinates": null,
+    "created_at": "Sun May 30 13:48:40 +0000 2010",
+    "entities": {
+        "hashtags": [],
+        "urls": [],
+        "user_mentions": []
+    },
+    "favorited": false,
+    "geo": null,
+    "id": 15042159587,
+    "id_str": "15042159587",
+    "in_reply_to_screen_name": null,
+    "in_reply_to_status_id": null,
+    "in_reply_to_status_id_str": null,
+    "in_reply_to_user_id": null,
+    "in_reply_to_user_id_str": null,
+    "place": null,
+    "retweet_count": 0,
+    "retweeted": false,
+    "source": "<a href=\"http://apiwiki.twitter.com/\" rel=\"nofollow\">API</a>",
+    "text": "Test Message 1",
+    "truncated": false,
+    "user": {
+        "contributors_enabled": false,
+        "created_at": "Mon Sep 24 19:35:22 +0000 2007",
+        "default_profile": false,
+        "default_profile_image": false,
+        "description": "PHP Developer, Open Source Contributor, and FS Audit Consultant",
+        "entities": {
+            "description": {
+                "urls": []
+            }
+        },
+        "favourites_count": 21,
+        "followers_count": 848,
+        "following": false,
+        "follow_request_sent": false,
+        "friends_count": 469,
+        "geo_enabled": false,
+        "id": 9075802,
+        "id_str": "9075802",
+        "is_translator": false,
+        "lang": "en",
+        "listed_count": 0,
+        "location": "Dublin, Ireland, Europe!",
+        "name": "Pádraic Brady",
+        "notifications": false,
+        "profile_background_color": "022330",
+        "profile_background_image_url": "http:\/\/a0.twimg.com\/a\/1274899949\/images\/themes\/theme15\/bg.png",
+        "profile_background_image_url_https": "https:\/\/si0.twimg.com\/a\/1274899949\/images\/themes\/theme15\/bg.png",
+        "profile_background_tile": false,
+        "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/374757042\/twitterProfilePhoto_normal.jpg",
+        "profile_image_url_https": "https:\/\/si1.twimg.com\/profile_images\/374757042\/twitterProfilePhoto_normal.jpg",
+        "profile_link_color": "0084B4",
+        "profile_sidebar_border_color": "a8c7f7",
+        "profile_sidebar_fill_color": "C0DFEC",
+        "profile_text_color": "333333",
+        "profile_use_background_image": true,
+        "protected": false,
+        "screen_name": "padraicb",
+        "show_all_inline_media": true,
+        "statuses_count": 5929,
+        "time_zone": "Dublin",
+        "url": "http://blog.astrumfutura.com",
+        "utc_offset": 0,
+        "verified": false
+    }
+}

+ 0 - 46
tests/Zend/Service/Twitter/_files/favorites.destroy.xml

@@ -1,46 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<status>
-  <created_at>Sun May 30 13:48:40 +0000 2010</created_at>
-  <id>15042159587</id>
-  <text>Test Message 1</text>
-  <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>9075802</id>
-    <name>Pádraic Brady</name>
-    <screen_name>padraicb</screen_name>
-    <location>Dublin, Ireland, Europe!</location>
-    <description>PHP Developer, Open Source Contributor, and FS Audit Consultant</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/374757042/twitterProfilePhoto_normal.jpg</profile_image_url>
-    <url>http://blog.astrumfutura.com</url>
-    <protected>false</protected>
-    <followers_count>848</followers_count>
-    <profile_background_color>022330</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>0084B4</profile_link_color>
-    <profile_sidebar_fill_color>C0DFEC</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>a8c7f7</profile_sidebar_border_color>
-    <friends_count>469</friends_count>
-    <created_at>Mon Sep 24 19:35:22 +0000 2007</created_at>
-    <favourites_count>21</favourites_count>
-    <utc_offset>0</utc_offset>
-    <time_zone>Dublin</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme15/bg.png</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>false</following>
-    <statuses_count>5929</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>

+ 1192 - 0
tests/Zend/Service/Twitter/_files/favorites.list.json

@@ -0,0 +1,1192 @@
+[
+    {
+        "contributors": null,
+        "coordinates": null,
+        "created_at": "Sun May 30 13:48:40 +0000 2010",
+        "entities": {
+            "hashtags": [],
+            "urls": [],
+            "user_mentions": []
+        },
+        "favorited": true,
+        "geo": null,
+        "id": 15042159587,
+        "id_str": "15042159587",
+        "in_reply_to_screen_name": null,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "source": "<a href=\"http://apiwiki.twitter.com/\" rel=\"nofollow\">API</a>",
+        "text": "Test Message 1",
+        "truncated": false,
+        "user": {
+            "contributors_enabled": false,
+            "created_at": "Mon Sep 24 19:35:22 +0000 2007",
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": "PHP Developer, Open Source Contributor, and FS Audit Consultant",
+            "entities": {
+                "description": {
+                    "urls": []
+                }
+            },
+            "favourites_count": 21,
+            "followers_count": 848,
+            "following": false,
+            "follow_request_sent": false,
+            "friends_count": 469,
+            "geo_enabled": false,
+            "id": 9075802,
+            "id_str": "9075802",
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "location": "Dublin, Ireland, Europe!",
+            "name": "Pádraic Brady",
+            "notifications": false,
+            "profile_background_color": "022330",
+            "profile_background_image_url": "http://a0.twimg.com/a/1274899949/images/themes/theme15/bg.png",
+            "profile_background_image_url_https": "https://si0.twimg.com/a/1274899949/images/themes/theme15/bg.png",
+            "profile_background_tile": false,
+            "profile_image_url": "http://a1.twimg.com/profile_images/374757042/twitterProfilePhoto_normal.jpg",
+            "profile_image_url_https": "https://si1.twimg.com/profile_images/374757042/twitterProfilePhoto_normal.jpg",
+            "profile_link_color": "0084B4",
+            "profile_sidebar_border_color": "a8c7f7",
+            "profile_sidebar_fill_color": "C0DFEC",
+            "profile_text_color": "333333",
+            "profile_use_background_image": true,
+            "protected": false,
+            "screen_name": "padraicb",
+            "show_all_inline_media": true,
+            "statuses_count": 5929,
+            "time_zone": "Dublin",
+            "url": "http://blog.astrumfutura.com",
+            "utc_offset": 0,
+            "verified": false
+        }
+    },
+    {
+        "contributors": null,
+        "coordinates": null,
+        "created_at": "Thu Mar 25 06:27:15 +0000 2010",
+        "entities": {
+            "hashtags": [],
+            "urls": [],
+            "user_mentions": []
+        },
+        "favorited": true,
+        "geo": null,
+        "id": 11021735076,
+        "id_str": "11021735076",
+        "in_reply_to_screen_name": null,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "source": "<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>",
+        "text": "A flight of nine stouts and then another of six strong ales, tonight. #Beer juding complete. #BJCP",
+        "truncated": false,
+        "user": {
+            "contributors_enabled": false,
+            "created_at": "Sat Mar 29 03:52:29 +0000 2008",
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": "Web, Beer.",
+            "entities": {
+                "description": {
+                    "urls": []
+                }
+            },
+            "favourites_count": 25,
+            "followers_count": 918,
+            "following": true,
+            "follow_request_sent": false,
+            "friends_count": 225,
+            "geo_enabled": true,
+            "id": 14249124,
+            "id_st": "14249124",
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "location": "Montreal",
+            "name": "Sean Coates",
+            "notifications": false,
+            "profile_background_color": "7BCDCD",
+            "profile_background_image_url": "http://a3.twimg.com/profile_background_images/2696809/whalecopter.png",
+            "profile_background_image_url_https": "https://si3.twimg.com/profile_background_images/2696809/whalecopter.png",
+            "profile_background_tile": true,
+            "profile_image_url": "http://a1.twimg.com/profile_images/641929118/me_icon_normal.jpg",
+            "profile_image_url_https": "https://si1.twimg.com/profile_images/641929118/me_icon_normal.jpg",
+            "profile_link_color": "0000ff",
+            "profile_sidebar_border_color": "009999",
+            "profile_sidebar_fill_color": "FFFFFF",
+            "profile_text_color": "000000",
+            "profile_use_background_image": true,
+            "protected": false,
+            "screen_name": "coates",
+            "show_all_inline_media": true,
+            "statuses_count": 5630,
+            "time_zone": "Eastern Time (US &amp; Canada)",
+            "url": "http://seancoates.com",
+            "utc_offset": "-18000",
+            "verified": false
+        }
+    },
+    {
+        "contributors": null,
+        "coordinates": null,
+        "created_at": "Tue Feb 09 16:42:06 +0000 2010",
+        "entities": {
+            "hashtags": [],
+            "urls": [],
+            "user_mentions": []
+        },
+        "favorited": true,
+        "geo": null,
+        "id": 8861422763,
+        "id_str": "8861422763",
+        "in_reply_to_screen_name": null,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "source": "<a href=\"http://apiwiki.twitter.com/\" rel=\"nofollow\">API</a>",
+        "text": "What personality is that blog?... http://typealyzer.com/",
+        "truncated": false,
+        "user": {
+            "contributors_enabled": false,
+            "created_at": "Tue Jan 27 03:40:24 +0000 2009",
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": "Tweeting the hottest from Hacker News (YC)",
+            "entities": {
+                "description": {
+                    "urls": []
+                }
+            },
+            "favourites_count": 0,
+            "followers_count": 3035,
+            "following": true,
+            "follow_request_sent": false,
+            "friends_count": 0,
+            "geo_enabled": false,
+            "id": 19575586,
+            "id_str": "19575586",
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "location": "Internetz",
+            "name": "Hacker News Bot",
+            "notifications": false,
+            "profile_background_color": "9ae4e8",
+            "profile_background_image_url": "http://a0.twimg.com/a/1274899949/images/themes/theme1/bg.png",
+            "profile_background_image_url_https": "https://si0.twimg.com/a/1274899949/images/themes/theme1/bg.png",
+            "profile_background_tile": false,
+            "profile_image_url": "http://a1.twimg.com/profile_images/73596050/yc500_normal.jpg",
+            "profile_image_url_https": "https://si1.twimg.com/profile_images/73596050/yc500_normal.jpg",
+            "profile_link_color": "0000ff",
+            "profile_sidebar_border_color": "87bc44",
+            "profile_sidebar_fill_color": "e0ff92",
+            "profile_text_color": "000000",
+            "profile_use_background_image": true,
+            "protected": false,
+            "screen_name": "hackernewsbot",
+            "show_all_inline_media": true,
+            "statuses_count": 10943,
+            "time_zone": "Central Time (US &amp; Canada)",
+            "url": "http://news.ycombinator.com",
+            "utc_offset": "-21600",
+            "verified": false
+        }
+    },
+    {
+        "contributors": null,
+        "coordinates": null,
+        "created_at": "Sun Jan 31 04:24:18 +0000 2010",
+        "entities": {
+            "hashtags": [],
+            "urls": [],
+            "user_mentions": []
+        },
+        "favorited": true,
+        "geo": null,
+        "id": 8439151704,
+        "id_str": "8439151704",
+        "in_reply_to_screen_name": null,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "source": "<a href=\"http://itunes.apple.com/app/twitter/id333903271?mt=8\" rel=\"nofollow\">Twitter for iPhone</a>",
+        "text": "People who demand that Flash be replaced by H.264 for video playing in the name of openness are hilarious.",
+        "truncated": false,
+        "user": {
+            "contributors_enabled": false,
+            "created_at": "Wed Apr 23 12:03:22 +0000 2008",
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": "Galactic Garbage Collector and Chief Janitor at @phparch (http://phparch.com) and @blueparabola (http://blueparabola.com).",
+            "entities": {
+                "description": {
+                    "urls": []
+                }
+            },
+            "favourites_count": 95,
+            "followers_count": 1383,
+            "following": true,
+            "follow_request_sent": false,
+            "friends_count": 373,
+            "geo_enabled": true,
+            "id": 14492118,
+            "id_str": "14492118",
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "location": "Toronto, Canada",
+            "name": "Marco Tabini",
+            "notifications": false,
+            "profile_background_color": "9ae4e8",
+            "profile_background_image_url": "http://a0.twimg.com/a/1274144130/images/themes/theme1/bg.png",
+            "profile_background_image_url_https": "https://si0.twimg.com/a/1274144130/images/themes/theme1/bg.png",
+            "profile_background_tile": false,
+            "profile_image_url": "http://a3.twimg.com/profile_images/727751399/c7d3a27cd4f2f0fa792bcd8916a87fbc_normal.png",
+            "profile_image_url_https": "https://si3.twimg.com/profile_images/727751399/c7d3a27cd4f2f0fa792bcd8916a87fbc_normal.png",
+            "profile_link_color": "0000ff",
+            "profile_sidebar_border_color": "87bc44",
+            "profile_sidebar_fill_color": "e0ff92",
+            "profile_text_color": "000000",
+            "profile_use_background_image": true,
+            "protected": false,
+            "screen_name": "mtabini",
+            "show_all_inline_media": true,
+            "statuses_count": 6713,
+            "time_zone": "Eastern Time (US &amp; Canada)",
+            "url": "http://blog.tabini.ca",
+            "utc_offset": "-18000",
+            "verified": false
+        }
+    },
+    {
+        "contributors": null,
+        "coordinates": null,
+        "created_at": "Thu Jan 28 00:55:37 +0000 2010",
+        "entities": {
+            "hashtags": [],
+            "urls": [],
+            "user_mentions": []
+        },
+        "favorited": true,
+        "geo": null,
+        "id": 8302314489,
+        "id_str": "8302314489",
+        "in_reply_to_screen_name": null,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "source": "<a href=\"http://www.hootsuite.com\" rel=\"nofollow\">HootSuite</a>",
+        "text": "10 Feed Publishing Best Practices http://ow.ly/16rbQJ",
+        "truncated": false,
+        "user": {
+            "contributors_enabled": false,
+            "created_at": "Fri May 29 21:46:48 +0000 2009",
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": "Real-time feed parsing in the cloud for web-developers",
+            "entities": {
+                "description": {
+                    "urls": []
+                }
+            },
+            "favourites_count": 11,
+            "followers_count": 1734,
+            "following": true,
+            "follow_request_sent": false,
+            "friends_count": 1694,
+            "geo_enabled": false,
+            "id": 43417156,
+            "id_str": "43417156",
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "location": "San Francisco",
+            "name": "superfeedr",
+            "notifications": false,
+            "profile_background_color": "1A1B1F",
+            "profile_background_image_url": "http://a0.twimg.com/a/1274130900/images/themes/theme9/bg.gif",
+            "profile_background_image_url_https": "https://si0.twimg.com/a/1274130900/images/themes/theme9/bg.gif",
+            "profile_background_tile": false,
+            "profile_image_url": "http://a1.twimg.com/profile_images/330719094/g12951_normal.png",
+            "profile_image_url_https": "https://si1.twimg.com/profile_images/330719094/g12951_normal.png",
+            "profile_link_color": "2FC2EF",
+            "profile_sidebar_border_color": "181A1E",
+            "profile_sidebar_fill_color": "252429",
+            "profile_text_color": "666666",
+            "profile_use_background_image": true,
+            "protected": false,
+            "screen_name": "superfeedr",
+            "show_all_inline_media": true,
+            "statuses_count": 3308,
+            "time_zone": "Pacific Time (US &amp; Canada)",
+            "url": "http://superfeedr.com",
+            "utc_offset": "-28800",
+            "verified": false
+        }
+    },
+    {
+        "contributors": null,
+        "coordinates": null,
+        "created_at": "Fri Dec 18 20:23:33 +0000 2009",
+        "entities": {
+            "hashtags": [],
+            "urls": [],
+            "user_mentions": []
+        },
+        "favorited": true,
+        "geo": null,
+        "id": 6807246064,
+        "id_str": 6807246064,
+        "in_reply_to_screen_name": "timbray",
+        "in_reply_to_status_id": 6806688768,
+        "in_reply_to_status_id_str": "6806688768",
+        "in_reply_to_user_id": 1235521,
+        "in_reply_to_user_id_str": "1235521",
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "source": "<a href=\"http://echofon.com/\" rel=\"nofollow\">Echofon</a>",
+        "text": "RT: @timbray: Here's yer geek holiday reading: http://www.tbray.org/ongoing/When/200x/2009/12/17/Tab-Sweep-Tech",
+        "truncated": false,
+        "user": {
+            "contributors_enabled": false,
+            "created_at": "Thu Jan 04 17:13:11 +0000 2007",
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": "http://dehora.net/journal/about",
+            "entities": {
+                "description": {
+                    "urls": []
+                }
+            },
+            "favourites_count": 46,
+            "followers_count": 1054,
+            "following": true,
+            "follow_request_sent": false,
+            "friends_count": 509,
+            "geo_enabled": false,
+            "id": 546313,
+            "id_str": "546313",
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "location": "iPhone: 53.272644,-6.244568",
+            "name": "Bill de hOra",
+            "notifications": false,
+            "profile_background_color": "ffffff",
+            "profile_background_image_url": "http://a3.twimg.com/profile_background_images/59194327/twilk_background.jpg",
+            "profile_background_image_url_https": "https://si3.twimg.com/profile_background_images/59194327/twilk_background.jpg",
+            "profile_background_tile": true,
+            "profile_image_url": "http://a3.twimg.com/profile_images/247287093/P1020452_normal.JPG",
+            "profile_image_url_https": "https://si3.twimg.com/profile_images/247287093/P1020452_normal.JPG",
+            "profile_link_color": "0000ff",
+            "profile_sidebar_border_color": "4b4b4b",
+            "profile_sidebar_fill_color": "ffffff",
+            "profile_text_color": "000000",
+            "profile_use_background_image": true,
+            "protected": false,
+            "screen_name": "dehora",
+            "show_all_inline_media": true,
+            "statuses_count": 2151,
+            "time_zone": "Dublin",
+            "url": "http://dehora.net/journal",
+            "utc_offset": 0,
+            "verified": false
+        }
+    },
+    {
+        "contributors": null,
+        "coordinates": null,
+        "created_at": "Fri Dec 18 15:23:36 +0000 2009",
+        "entities": {
+            "hashtags": [],
+            "urls": [],
+            "user_mentions": []
+        },
+        "favorited": true,
+        "geo": null,
+        "id": 6798914244,
+        "id_str": "6798914244",
+        "in_reply_to_screen_name": null,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "source": "<a href=\"http://identi.ca\" rel=\"nofollow\">identica</a>",
+        "text": "Overview of OpenMicroBlogging standard (OMB) 0.9 will be ActivityStreams / Atom based with PubSubHubbub+Salmon /via @evan #statusmtl",
+        "truncated": false,
+        "user": {
+            "contributors_enabled": false,
+            "created_at": "Thu Jan 18 00:10:45 +0000 2007",
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": "CTO and Co-founder of Praized Media. Internet, opensource, media &amp; geo geek. Je Tweet en FR @sylvaincarle aussi. Tweets are CC-BY-SA http://bit.ly/ccbysa3",
+            "entities": {
+                "description": {
+                    "urls": []
+                }
+            },
+            "favourites_count": 525,
+            "followers_count": 2085,
+            "following": false,
+            "follow_request_sent": false,
+            "friends_count": 1717,
+            "geo_enabled": true,
+            "id": 657693,
+            "id_str": "657693",
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "location": "Montreal",
+            "name": "Sylvain Carle",
+            "notifications": false,
+            "profile_background_color": "000000",
+            "profile_background_image_url": "http://a1.twimg.com/profile_background_images/2416056/praized-tribe-twitter.png",
+            "profile_background_image_url_https": "https://si1.twimg.com/profile_background_images/2416056/praized-tribe-twitter.png",
+            "profile_background_tile": false,
+            "profile_image_url": "http://a3.twimg.com/profile_images/346376501/sylvaincarle-wordcamp-shadow_normal.png",
+            "profile_image_url_https": "https://si3.twimg.com/profile_images/346376501/sylvaincarle-wordcamp-shadow_normal.png",
+            "profile_link_color": "196900",
+            "profile_sidebar_border_color": "8F8F8F",
+            "profile_sidebar_fill_color": "FFFFFF",
+            "profile_text_color": "000000",
+            "profile_use_background_image": true,
+            "protected": false,
+            "screen_name": "afrognthevalley",
+            "show_all_inline_media": true,
+            "statuses_count": 5675,
+            "time_zone": "Eastern Time (US &amp; Canada)",
+            "url": "http://afroginthevalley.com/",
+            "utc_offset": "-18000",
+            "verified": false
+        }
+    },
+    {
+        "contributors": null,
+        "coordinates": null,
+        "created_at": "Sun Dec 13 01:29:58 +0000 2009",
+        "entities": {
+            "hashtags": [],
+            "urls": [],
+            "user_mentions": []
+        },
+        "favorited": true,
+        "geo": null,
+        "id": 6615439448,
+        "id_str": 6615439448,
+        "in_reply_to_screen_name": null,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "source": "web",
+        "text": "Just cleared up some longstanding tickets in the Drupal HTML Purifier queue. My apologies to all of you who had to wait.",
+        "truncated": false,
+        "user": {
+            "contributors_enabled": false,
+            "created_at": "Wed May 28 05:22:04 +0000 2008",
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": "MIT student who plays oboe and spends an inordinate amount of time fiddling with software",
+            "entities": {
+                "description": {
+                    "urls": []
+                }
+            },
+            "favourites_count": 0,
+            "followers_count": 168,
+            "following": true,
+            "friends_count": 87,
+            "follow_request_sent": false,
+            "geo_enabled": false,
+            "id": 14930686,
+            "id_str": "14930686",
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "location": "Cambridge, MA",
+            "name": "Edward Z. Yang",
+            "notifications": false,
+            "profile_background_color": "4A6282",
+            "profile_background_image_url": "http://a3.twimg.com/profile_background_images/2580349/logo-large.png",
+            "profile_background_image_url_https": "https://si3.twimg.com/profile_background_images/2580349/logo-large.png",
+            "profile_background_tile": false,
+            "profile_image_url": "http://a1.twimg.com/profile_images/54757734/gravatar_normal.jpg",
+            "profile_image_url_https": "https://si1.twimg.com/profile_images/54757734/gravatar_normal.jpg",
+            "profile_link_color": "0000ff",
+            "profile_sidebar_border_color": "7084AA",
+            "profile_sidebar_fill_color": "B1C0DF",
+            "profile_text_color": "000000",
+            "profile_use_background_image": true,
+            "protected": false,
+            "screen_name": "ezyang",
+            "show_all_inline_media": true,
+            "statuses_count": 260,
+            "time_zone": "Eastern Time (US &amp; Canada)",
+            "url": "http://ezyang.com",
+            "utc_offset": "-18000",
+            "verified": false
+        }
+    },
+    {
+        "contributors": null,
+        "coordinates": null,
+        "created_at": "Fri Dec 04 23:42:04 +0000 2009",
+        "entities": {
+            "hashtags": [],
+            "urls": [],
+            "user_mentions": []
+        },
+        "favorited": true,
+        "geo": null,
+        "id": 6353225351,
+        "id_str": "6353225351",
+        "in_reply_to_screen_name": null,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "source": "<a href=\"http://apiwiki.twitter.com/\" rel=\"nofollow\">API</a>",
+        "text": "Rails 3 : Vaporware To Awesome... http://www.slideshare.net/wycats/vaporware-to-awesome",
+        "truncated": false,
+        "user": {
+            "contributors_enabled": false,
+            "created_at": "Tue Jan 27 03:40:24 +0000 2009",
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": "Tweeting the hottest from Hacker News (YC)",
+            "entities": {
+                "description": {
+                    "urls": []
+                }
+            },
+            "favourites_count": 0,
+            "followers_count": 3035,
+            "following": true,
+            "follow_request_sent": false,
+            "friends_count": 0,
+            "geo_enabled": false,
+            "id": 19575586,
+            "id_str": "19575586",
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "location": "Internetz",
+            "name": "Hacker News Bot",
+            "notifications": false,
+            "profile_background_color": "9ae4e8",
+            "profile_background_image_url": "http://a0.twimg.com/a/1274899949/images/themes/theme1/bg.png",
+            "profile_background_image_url_https": "https://si0.twimg.com/a/1274899949/images/themes/theme1/bg.png",
+            "profile_background_tile": false,
+            "profile_image_url": "http://a1.twimg.com/profile_images/73596050/yc500_normal.jpg",
+            "profile_image_url_https": "https://si1.twimg.com/profile_images/73596050/yc500_normal.jpg",
+            "profile_link_color": "0000ff",
+            "profile_sidebar_border_color": "87bc44",
+            "profile_sidebar_fill_color": "e0ff92",
+            "profile_text_color": "000000",
+            "profile_use_background_image": true,
+            "protected": false,
+            "screen_name": "hackernewsbot",
+            "show_all_inline_media": true,
+            "statuses_count": 10943,
+            "time_zone": "Central Time (US &amp; Canada)",
+            "url": "http://news.ycombinator.com",
+            "utc_offset": "-21600",
+            "verified": false
+        }
+    },
+    {
+        "contributors": null,
+        "coordinates": null,
+        "created_at": "Wed Nov 11 01:02:50 +0000 2009",
+        "entities": {
+            "hashtags": [],
+            "urls": [],
+            "user_mentions": []
+        },
+        "favorited": true,
+        "geo": null,
+        "id": 5605372257,
+        "id_str": "5605372257",
+        "in_reply_to_screen_name": null,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "source": "<a href=\"http://www.tweetdeck.com/\" rel=\"nofollow\">TweetDeck</a>",
+        "text": "#PHP standards group have published final proposal http://bit.ly/2wI4DE. I've been following their talks and it ended exactly as I wanted :)",
+        "truncated": false,
+        "user": {
+            "contributors_enabled": false,
+            "created_at": "Tue Apr 21 14:57:11 +0000 2009",
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": "Random ideas, scripts and facts",
+            "entities": {
+                "description": {
+                    "urls": []
+                }
+            },
+            "favourites_count": 0,
+            "followers_count": 551,
+            "following": true,
+            "follow_request_sent": false,
+            "friends_count": 248,
+            "geo_enabled": false,
+            "id": 33927626,
+            "id_str": "33927626",
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "location": "Edinburgh, UK",
+            "name": "Juozas Kaziukenas",
+            "notifications": false,
+            "profile_background_color": "EBEBEB",
+            "profile_background_image_url": "http://a1.twimg.com/profile_background_images/9419692/march-09-clinging_to_colour-nocal-1920x1200.jpg",
+            "profile_background_image_url_https": "https://si1.twimg.com/profile_background_images/9419692/march-09-clinging_to_colour-nocal-1920x1200.jpg",
+            "profile_background_tile": false,
+            "profile_image_url": "http://a3.twimg.com/profile_images/293691113/profile_normal.jpg",
+            "profile_image_url_https": "https://si3.twimg.com/profile_images/293691113/profile_normal.jpg",
+            "profile_link_color": "990000",
+            "profile_sidebar_border_color": "DFDFDF",
+            "profile_sidebar_fill_color": "F3F3F3",
+            "profile_text_color": "333333",
+            "profile_use_background_image": true,
+            "protected": false,
+            "screen_name": "juokaz",
+            "show_all_inline_media": true,
+            "statuses_count": 2598,
+            "time_zone": "Edinburgh",
+            "url": "http://www.juokaz.com",
+            "utc_offset": 0,
+            "verified": false
+        }
+    },
+    {
+        "contributors": null,
+        "coordinates": null,
+        "created_at": "Tue Nov 10 11:53:48 +0000 2009",
+        "entities": {
+            "hashtags": [],
+            "urls": [],
+            "user_mentions": []
+        },
+        "favorited": true,
+        "geo": null,
+        "id": 5586709670,
+        "id_str": "5586709670",
+        "in_reply_to_screen_name": null,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "source": "web",
+        "text": "Nice blog post by @davegardnerisme about setting up continuous integration using Hudson http://is.gd/4RyN3 #hudson #ci (via @raphaelstolt)",
+        "truncated": false,
+        "user": {
+            "contributors_enabled": false,
+            "created_at": "Mon Dec 15 13:13:48 +0000 2008",
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": "Software Developer",
+            "entities": {
+                "description": {
+                    "urls": []
+                }
+            },
+            "favourites_count": 2,
+            "followers_count": 292,
+            "following": true,
+            "follow_request_sent": false,
+            "friends_count": 106,
+            "geo_enabled": false,
+            "id": 18136020,
+            "id_str": "18136020",
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "location": "London, UK",
+            "name": "Federico Cargnelutti",
+            "notifications": false,
+            "profile_background_color": "1A1B1F",
+            "profile_background_image_url": "http://a0.twimg.com/a/1274899949/images/themes/theme9/bg.gif",
+            "profile_background_image_url_https": "https://si0.twimg.com/a/1274899949/images/themes/theme9/bg.gif",
+            "profile_background_tile": false,
+            "profile_image_url": "http://a3.twimg.com/profile_images/913196735/fede-pic2_normal.jpg",
+            "profile_image_url_https": "https://si3.twimg.com/profile_images/913196735/fede-pic2_normal.jpg",
+            "profile_link_color": "067fa1",
+            "profile_sidebar_border_color": "353536",
+            "profile_sidebar_fill_color": "000000",
+            "profile_text_color": "636163",
+            "profile_use_background_image": true,
+            "protected": false,
+            "screen_name": "fedecarg",
+            "show_all_inline_media": true,
+            "statuses_count": 605,
+            "time_zone": "London",
+            "url": "http://www.fedecarg.com",
+            "utc_offset": 0,
+            "verified": false
+        }
+    },
+    {
+        "contributors": null,
+        "coordinates": null,
+        "created_at": "Tue Oct 27 22:54:58 +0000 2009",
+        "entities": {
+            "hashtags": [],
+            "urls": [],
+            "user_mentions": []
+        },
+        "favorited": true,
+        "geo": null,
+        "id": 5213696169,
+        "id_str": "5213696169",
+        "in_reply_to_screen_name": null,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "source": "web",
+        "text": "YouTube video of my talk this morning at #140conf. http://r2.ly/n8cv",
+        "truncated": false,
+        "user": {
+            "contributors_enabled": false,
+            "created_at": "Sat Aug 05 23:04:08 +0000 2006",
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": "Media Hackerer, Twitterer, NYU scholar",
+            "entities": {
+                "description": {
+                    "urls": []
+                }
+            },
+            "favourites_count": 17,
+            "followers_count": 30623,
+            "following": true,
+            "follow_request_sent": false,
+            "friends_count": 1296,
+            "geo_enabled": true,
+            "id": 3839,
+            "id_str": "3839",
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "location": "NYC",
+            "name": "Dave Winer",
+            "notifications": false,
+            "profile_background_color": "9ae4e8",
+            "profile_background_image_url": "http://a3.twimg.com/profile_background_images/99323235/niagara.jpg",
+            "profile_background_image_url_https": "https://si3.twimg.com/profile_background_images/99323235/niagara.jpg",
+            "profile_background_tile": true,
+            "profile_image_url": "http://a1.twimg.com/profile_images/557815118/headshot_normal.jpg",
+            "profile_image_url_https": "https://si1.twimg.com/profile_images/557815118/headshot_normal.jpg",
+            "profile_link_color": "7f7f90",
+            "profile_sidebar_border_color": "a6aaa1",
+            "profile_sidebar_fill_color": "e1e1df",
+            "profile_text_color": "000000",
+            "profile_use_background_image": true,
+            "protected": false,
+            "screen_name": "davewiner",
+            "show_all_inline_media": true,
+            "statuses_count": 25591,
+            "time_zone": "Pacific Time (US &amp; Canada)",
+            "url": "http://scripting.com/",
+            "utc_offset": "-28800",
+            "verified": false
+        }
+    },
+    {
+        "contributors": null,
+        "coordinates": null,
+        "created_at": "Wed Oct 21 06:29:46 +0000 2009",
+        "entities": {
+            "hashtags": [],
+            "urls": [],
+            "user_mentions": []
+        },
+        "favorited": true,
+        "geo": null,
+        "id": 5038508334,
+        "id_str": "5038508334",
+        "in_reply_to_screen_name": null,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "source": "<a href=\"http://www.tweetdeck.com/\" rel=\"nofollow\">TweetDeck</a>",
+        "text": "Damn you @revrev for showing me the beautifully great Machinarium point &amp; click puzzler http://bit.ly/2m8xlT",
+        "truncated": false,
+        "user": {
+            "contributors_enabled": false,
+            "created_at": "Wed Feb 14 21:28:40 +0000 2007",
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": "Manage X PRIZE Foundation sites. Drupal &amp; Wordpress Fanboy. I run Lifestreamblog.com &amp; my avatar makes me look hipper than I really am.",
+            "entities": {
+                "description": {
+                    "urls": []
+                }
+            },
+            "favourites_count": 246,
+            "followers_count": 2089,
+            "following": true,
+            "follow_request_sent": false,
+            "friends_count": 1071,
+            "geo_enabled": true,
+            "id": 772681,
+            "id_str": "772681",
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "location": "Chatsworth, CA",
+            "name": "Mark Krynsky",
+            "notifications": false,
+            "profile_background_color": "ffffff",
+            "profile_background_image_url": "http://a3.twimg.com/profile_background_images/93245565/twitter_background_krynsky_v3.png",
+            "profile_background_image_url_https": "https://si3.twimg.com/profile_background_images/93245565/twitter_background_krynsky_v3.png",
+            "profile_background_tile": false,
+            "profile_image_url": "http://a3.twimg.com/profile_images/684895249/mark_drinking_ces_normal.jpg",
+            "profile_image_url_https": "https://si3.twimg.com/profile_images/684895249/mark_drinking_ces_normal.jpg",
+            "profile_link_color": "0000ff",
+            "profile_sidebar_border_color": "87bc44",
+            "profile_sidebar_fill_color": "e0ff92",
+            "profile_text_color": "000000",
+            "profile_use_background_image": true,
+            "protected": false,
+            "screen_name": "krynsky",
+            "show_all_inline_media": true,
+            "statuses_count": 7406,
+            "time_zone": "Pacific Time (US &amp; Canada)",
+            "url": "http://lifestreamblog.com",
+            "utc_offset": "-28800",
+            "verified": false
+        }
+    },
+    {
+        "contributors": null,
+        "coordinates": null,
+        "created_at": "Mon Oct 19 14:14:33 +0000 2009",
+        "entities": {
+            "hashtags": [],
+            "urls": [],
+            "user_mentions": []
+        },
+        "favorited": true,
+        "geo": null,
+        "id": 4991744144,
+        "id_str": "4991744144",
+        "in_reply_to_screen_name": null,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "source": "<a href=\"http://www.seesmic.com/\" rel=\"nofollow\">Seesmic</a>",
+        "text": "RT @AdFreak: One of the better ads you'll see in support of gay marriage. From Ireland. http://bit.ly/2UyyEE #gay #lgbt /// Love it !",
+        "truncated": false,
+        "user": {
+            "contributors_enabled": false,
+            "created_at": "Thu Nov 13 00:35:16 +0000 2008",
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": "Geek de formation smiley-addict fuyant la vie préfabriquée. J'adore la Suisse et @AriMcd. Ah oui, les #jeudiconfession... c'est ma faute! Sorry! :$",
+            "entities": {
+                "description": {
+                    "urls": []
+                }
+            },
+            "favourites_count": 87,
+            "followers_count": 1055,
+            "following": true,
+            "follow_request_sent": false,
+            "friends_count": 500,
+            "geo_enabled": false,
+            "id": 17352896,
+            "id_str": "17352896",
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "location": "Montréal",
+            "name": "Simon Villeneuve",
+            "notifications": false,
+            "profile_background_color": "C0DEED",
+            "profile_background_image_url": "http://a0.twimg.com/a/1274899949/images/themes/theme1/bg.png",
+            "profile_background_image_url_https": "https://si0.twimg.com/a/1274899949/images/themes/theme1/bg.png",
+            "profile_background_tile": false,
+            "profile_image_url": "http://a1.twimg.com/profile_images/910317396/me-may18b-474px_normal.jpg",
+            "profile_image_url_https": "https://si1.twimg.com/profile_images/910317396/me-may18b-474px_normal.jpg",
+            "profile_link_color": "0084B4",
+            "profile_sidebar_border_color": "C0DEED",
+            "profile_sidebar_fill_color": "DDEEF6",
+            "profile_text_color": "333333",
+            "profile_use_background_image": true,
+            "protected": false,
+            "screen_name": "SimonVilleneuve",
+            "show_all_inline_media": true,
+            "statuses_count": 12821,
+            "time_zone": "Eastern Time (US &amp; Canada)",
+            "url": "http://www.simonvilleneuve.ca/",
+            "utc_offset": "-18000",
+            "verified": false
+        }
+    },
+    {
+        "contributors": null,
+        "coordinates": null,
+        "created_at": "Fri Oct 16 06:26:57 +0000 2009",
+        "entities": {
+            "hashtags": [],
+            "urls": [],
+            "user_mentions": []
+        },
+        "favorited": true,
+        "geo": null,
+        "id": 4910076661,
+        "id_str": 4910076661,
+        "in_reply_to_screen_name": null,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "source": "<a href=\"http://www.seesmic.com/\" rel=\"nofollow\">Seesmic</a>",
+        "text": "wow, my \"if it ain't broken\" blog post is getting record amounts of visitors",
+        "truncated": false,
+        "user": {
+            "contributors_enabled": false,
+            "created_at": "Mon Mar 19 16:28:14 +0000 2007",
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": "open source, php, geek, music, symfony, buzzer, dad, conference speaker, vegetarian, fc utrecht, entrepreneur, freelancer",
+            "entities": {
+                "description": {
+                    "urls": []
+                }
+            },
+            "favourites_count": 31,
+            "followers_count": 1283,
+            "following": true,
+            "follow_request_sent": false,
+            "friends_count": 1492,
+            "geo_enabled": true,
+            "id": 1524641,
+            "id_str": "1524641",
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "location": "Woudenberg, Netherlands",
+            "name": "Stefan",
+            "notifications": false,
+            "profile_background_color": "000000",
+            "profile_background_image_url": "http://a0.twimg.com/a/1274144130/images/themes/theme1/bg.png",
+            "profile_background_image_url_https": "https://si0.twimg.com/a/1274144130/images/themes/theme1/bg.png",
+            "profile_background_tile": false,
+            "profile_image_url": "http://a3.twimg.com/profile_images/921970573/5d3c68fa-7d96-4f95-8f26-7c6d47496cd7_normal.png",
+            "profile_image_url_https": "https://si3.twimg.com/profile_images/921970573/5d3c68fa-7d96-4f95-8f26-7c6d47496cd7_normal.png",
+            "profile_link_color": "323232",
+            "profile_sidebar_border_color": "CDCDCD",
+            "profile_sidebar_fill_color": "999999",
+            "profile_text_color": "000000",
+            "profile_use_background_image": true,
+            "protected": false,
+            "screen_name": "skoop",
+            "show_all_inline_media": true,
+            "statuses_count": 25592,
+            "time_zone": "Amsterdam",
+            "url": "http://www.leftontheweb.com/",
+            "utc_offset": 3600,
+            "verified": false
+        }
+    },
+    {
+        "contributors": null,
+        "coordinates": null,
+        "created_at": "Fri Oct 16 02:32:39 +0000 2009",
+        "entities": {
+            "hashtags": [],
+            "urls": [],
+            "user_mentions": []
+        },
+        "favorited": true,
+        "geo": null,
+        "id": 4905752912,
+        "id_str": "4905752912",
+        "in_reply_to_screen_name": null,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "source": "<a href=\"http://itunes.apple.com/app/twitter/id333903271?mt=8\" rel=\"nofollow\">Twitter for iPhone</a>",
+        "text": "Working on my PHP AtomPub library. I'll be ready to push some stuff to github in the near future. You'll be the first to know.",
+        "truncated": false,
+        "user": {
+            "contributors_enabled": false,
+            "created_at": "Sun Jul 29 02:44:40 +0000 2007",
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": "Senior Software Architect at @Moontoast. Author, speaker, blogger, web geek, beer aficionado, home brewer, literature nut, liberty lover, &amp; most of all, a dad.",
+            "entities": {
+                "description": {
+                    "urls": []
+                }
+            },
+            "favourites_count": 83,
+            "followers_count": 1348,
+            "following": true,
+            "follow_request_sent": false,
+            "friends_count": 172,
+            "geo_enabled": true,
+            "id": 7794552,
+            "id_str": "7794552",
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "location": "Nashville, TN",
+            "name": "Ben Ramsey",
+            "notifications": false,
+            "profile_background_color": "666666",
+            "profile_background_image_url": "http://a0.twimg.com/a/1274899949/images/themes/theme1/bg.png",
+            "profile_background_image_url_https": "https://si0.twimg.com/a/1274899949/images/themes/theme1/bg.png",
+            "profile_background_tile": false,
+            "profile_image_url": "http://a3.twimg.com/profile_images/938351463/bramsey-square_normal.png",
+            "profile_image_url_https": "https://si3.twimg.com/profile_images/938351463/bramsey-square_normal.png",
+            "profile_link_color": "0066CC",
+            "profile_sidebar_border_color": "33cc00",
+            "profile_sidebar_fill_color": "99ff66",
+            "profile_text_color": "000000",
+            "profile_use_background_image": true,
+            "protected": false,
+            "screen_name": "ramsey",
+            "show_all_inline_media": true,
+            "statuses_count": 9307,
+            "time_zone": "Central Time (US &amp; Canada)",
+            "url": "http://benramsey.com/",
+            "utc_offset": "-21600",
+            "verified": false
+        }
+    },
+    {
+        "contributors": null,
+        "coordinates": null,
+        "created_at": "Thu Sep 17 12:54:45 +0000 2009",
+        "entities": {
+            "hashtags": [],
+            "urls": [],
+            "user_mentions": []
+        },
+        "favorited": true,
+        "geo": null,
+        "id": 4053276261,
+        "id_str": "4053276261",
+        "in_reply_to_screen_name": null,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "source": "<a href=\"http://www.posterous.com\" rel=\"nofollow\">Posterous</a>",
+        "text": "The Missing Manual author guidelines = top rate advice for ANY tutorial author http://post.ly/5PfX",
+        "truncated": false,
+        "user": {
+            "contributors_enabled": false,
+            "created_at": "Mon Sep 11 15:18:01 +0000 2006",
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": "PacktPub.com acquisition editor.  Mainly tweeting about WRITING and GAME DEVELOPMENT.",
+            "entities": {
+                "description": {
+                    "urls": []
+                }
+            },
+            "favourites_count": 2,
+            "followers_count": 590,
+            "following": true,
+            "follow_request_sent": false,
+            "friends_count": 427,
+            "geo_enabled": false,
+            "id": 5808,
+            "id_str": "5808",
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "location": "Birmingham, UK",
+            "name": "David Barnes",
+            "notifications": false,
+            "profile_background_color": "B2DFDA",
+            "profile_background_image_url": "http://a0.twimg.com/a/1274144130/images/themes/theme13/bg.gif",
+            "profile_background_image_url_https": "https://si0.twimg.com/a/1274144130/images/themes/theme13/bg.gif",
+            "profile_background_tile": false,
+            "profile_image_url": "http://a1.twimg.com/profile_images/683503668/DSC00010_normal.jpg",
+            "profile_image_url_https": "https://si1.twimg.com/profile_images/683503668/DSC00010_normal.jpg",
+            "profile_link_color": "93A644",
+            "profile_sidebar_border_color": "eeeeee",
+            "profile_sidebar_fill_color": "ffffff",
+            "profile_text_color": "333333",
+            "profile_use_background_image": true,
+            "protected": false,
+            "screen_name": "DRB",
+            "show_all_inline_media": true,
+            "statuses_count": 1620,
+            "time_zone": "London",
+            "url": "http://davidbarneswork.posterous.com/",
+            "utc_offset": 0,
+            "verified": false
+        }
+    }
+]

+ 0 - 768
tests/Zend/Service/Twitter/_files/favorites.xml

@@ -1,768 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<statuses type="array">
-<status>
-  <created_at>Sun May 30 13:48:40 +0000 2010</created_at>
-  <id>15042159587</id>
-  <text>Test Message 1</text>
-  <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>true</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>9075802</id>
-    <name>Pádraic Brady</name>
-    <screen_name>padraicb</screen_name>
-    <location>Dublin, Ireland, Europe!</location>
-    <description>PHP Developer, Open Source Contributor, and FS Audit Consultant</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/374757042/twitterProfilePhoto_normal.jpg</profile_image_url>
-    <url>http://blog.astrumfutura.com</url>
-    <protected>false</protected>
-    <followers_count>848</followers_count>
-    <profile_background_color>022330</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>0084B4</profile_link_color>
-    <profile_sidebar_fill_color>C0DFEC</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>a8c7f7</profile_sidebar_border_color>
-    <friends_count>469</friends_count>
-    <created_at>Mon Sep 24 19:35:22 +0000 2007</created_at>
-    <favourites_count>21</favourites_count>
-    <utc_offset>0</utc_offset>
-    <time_zone>Dublin</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme15/bg.png</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>false</following>
-    <statuses_count>5929</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Thu Mar 25 06:27:15 +0000 2010</created_at>
-  <id>11021735076</id>
-  <text>A flight of nine stouts and then another of six strong ales, tonight. #Beer juding complete. #BJCP</text>
-  <source>&lt;a href="http://www.echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>true</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>14249124</id>
-    <name>Sean Coates</name>
-    <screen_name>coates</screen_name>
-    <location>Montreal</location>
-    <description>Web, Beer.</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/641929118/me_icon_normal.jpg</profile_image_url>
-    <url>http://seancoates.com</url>
-    <protected>false</protected>
-    <followers_count>918</followers_count>
-    <profile_background_color>7BCDCD</profile_background_color>
-    <profile_text_color>000000</profile_text_color>
-    <profile_link_color>0000ff</profile_link_color>
-    <profile_sidebar_fill_color>FFFFFF</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>009999</profile_sidebar_border_color>
-    <friends_count>225</friends_count>
-    <created_at>Sat Mar 29 03:52:29 +0000 2008</created_at>
-    <favourites_count>25</favourites_count>
-    <utc_offset>-18000</utc_offset>
-    <time_zone>Eastern Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://a3.twimg.com/profile_background_images/2696809/whalecopter.png</profile_background_image_url>
-    <profile_background_tile>true</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>true</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>5630</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Tue Feb 09 16:42:06 +0000 2010</created_at>
-  <id>8861422763</id>
-  <text>What personality is that blog?... http://typealyzer.com/</text>
-  <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>true</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>19575586</id>
-    <name>Hacker News Bot</name>
-    <screen_name>hackernewsbot</screen_name>
-    <location>Internetz</location>
-    <description>Tweeting the hottest from Hacker News (YC)</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/73596050/yc500_normal.jpg</profile_image_url>
-    <url>http://news.ycombinator.com</url>
-    <protected>false</protected>
-    <followers_count>3035</followers_count>
-    <profile_background_color>9ae4e8</profile_background_color>
-    <profile_text_color>000000</profile_text_color>
-    <profile_link_color>0000ff</profile_link_color>
-    <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-    <friends_count>0</friends_count>
-    <created_at>Tue Jan 27 03:40:24 +0000 2009</created_at>
-    <favourites_count>0</favourites_count>
-    <utc_offset>-21600</utc_offset>
-    <time_zone>Central Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>10943</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun Jan 31 04:24:18 +0000 2010</created_at>
-  <id>8439151704</id>
-  <text>People who demand that Flash be replaced by H.264 for video playing in the name of openness are hilarious.</text>
-  <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>true</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>14492118</id>
-    <name>Marco Tabini</name>
-    <screen_name>mtabini</screen_name>
-    <location>Toronto, Canada</location>
-    <description>Galactic Garbage Collector and Chief Janitor at @phparch (http://phparch.com) and @blueparabola (http://blueparabola.com).</description>
-    <profile_image_url>http://a3.twimg.com/profile_images/727751399/c7d3a27cd4f2f0fa792bcd8916a87fbc_normal.png</profile_image_url>
-    <url>http://blog.tabini.ca</url>
-    <protected>false</protected>
-    <followers_count>1383</followers_count>
-    <profile_background_color>9ae4e8</profile_background_color>
-    <profile_text_color>000000</profile_text_color>
-    <profile_link_color>0000ff</profile_link_color>
-    <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-    <friends_count>373</friends_count>
-    <created_at>Wed Apr 23 12:03:22 +0000 2008</created_at>
-    <favourites_count>95</favourites_count>
-    <utc_offset>-18000</utc_offset>
-    <time_zone>Eastern Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>true</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>6713</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Thu Jan 28 00:55:37 +0000 2010</created_at>
-  <id>8302314489</id>
-  <text>10 Feed Publishing Best Practices http://ow.ly/16rbQJ</text>
-  <source>&lt;a href="http://www.hootsuite.com" rel="nofollow"&gt;HootSuite&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>true</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>43417156</id>
-    <name>superfeedr</name>
-    <screen_name>superfeedr</screen_name>
-    <location>San Francisco</location>
-    <description>Real-time feed parsing in the cloud for web-developers</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/330719094/g12951_normal.png</profile_image_url>
-    <url>http://superfeedr.com</url>
-    <protected>false</protected>
-    <followers_count>1734</followers_count>
-    <profile_background_color>1A1B1F</profile_background_color>
-    <profile_text_color>666666</profile_text_color>
-    <profile_link_color>2FC2EF</profile_link_color>
-    <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
-    <friends_count>1694</friends_count>
-    <created_at>Fri May 29 21:46:48 +0000 2009</created_at>
-    <favourites_count>11</favourites_count>
-    <utc_offset>-28800</utc_offset>
-    <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274130900/images/themes/theme9/bg.gif</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>3308</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Fri Dec 18 20:23:33 +0000 2009</created_at>
-  <id>6807246064</id>
-  <text>RT: @timbray: Here's yer geek holiday reading: http://www.tbray.org/ongoing/When/200x/2009/12/17/Tab-Sweep-Tech</text>
-  <source>&lt;a href="http://echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id>6806688768</in_reply_to_status_id>
-  <in_reply_to_user_id>1235521</in_reply_to_user_id>
-  <favorited>true</favorited>
-  <in_reply_to_screen_name>timbray</in_reply_to_screen_name>
-  <user>
-    <id>546313</id>
-    <name>Bill de hOra</name>
-    <screen_name>dehora</screen_name>
-    <location>iPhone: 53.272644,-6.244568</location>
-    <description>http://dehora.net/journal/about</description>
-    <profile_image_url>http://a3.twimg.com/profile_images/247287093/P1020452_normal.JPG</profile_image_url>
-    <url>http://dehora.net/journal</url>
-    <protected>false</protected>
-    <followers_count>1054</followers_count>
-    <profile_background_color>ffffff</profile_background_color>
-    <profile_text_color>000000</profile_text_color>
-    <profile_link_color>0000ff</profile_link_color>
-    <profile_sidebar_fill_color>ffffff</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>4b4b4b</profile_sidebar_border_color>
-    <friends_count>509</friends_count>
-    <created_at>Thu Jan 04 17:13:11 +0000 2007</created_at>
-    <favourites_count>46</favourites_count>
-    <utc_offset>0</utc_offset>
-    <time_zone>Dublin</time_zone>
-    <profile_background_image_url>http://a3.twimg.com/profile_background_images/59194327/twilk_background.jpg</profile_background_image_url>
-    <profile_background_tile>true</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>2151</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Fri Dec 18 15:23:36 +0000 2009</created_at>
-  <id>6798914244</id>
-  <text>Overview of OpenMicroBlogging standard (OMB) 0.9 will be ActivityStreams / Atom based with PubSubHubbub+Salmon /via @evan #statusmtl</text>
-  <source>&lt;a href="http://identi.ca" rel="nofollow"&gt;identica&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>true</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>657693</id>
-    <name>Sylvain Carle</name>
-    <screen_name>afrognthevalley</screen_name>
-    <location>Montreal</location>
-    <description>CTO and Co-founder of Praized Media. Internet, opensource, media &amp; geo geek. Je Tweet en FR @sylvaincarle aussi. Tweets are CC-BY-SA http://bit.ly/ccbysa3</description>
-    <profile_image_url>http://a3.twimg.com/profile_images/346376501/sylvaincarle-wordcamp-shadow_normal.png</profile_image_url>
-    <url>http://afroginthevalley.com/</url>
-    <protected>false</protected>
-    <followers_count>2085</followers_count>
-    <profile_background_color>000000</profile_background_color>
-    <profile_text_color>000000</profile_text_color>
-    <profile_link_color>196900</profile_link_color>
-    <profile_sidebar_fill_color>FFFFFF</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>8F8F8F</profile_sidebar_border_color>
-    <friends_count>1717</friends_count>
-    <created_at>Thu Jan 18 00:10:45 +0000 2007</created_at>
-    <favourites_count>525</favourites_count>
-    <utc_offset>-18000</utc_offset>
-    <time_zone>Eastern Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://a1.twimg.com/profile_background_images/2416056/praized-tribe-twitter.png</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>true</geo_enabled>
-    <verified>false</verified>
-    <following>false</following>
-    <statuses_count>5675</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun Dec 13 01:29:58 +0000 2009</created_at>
-  <id>6615439448</id>
-  <text>Just cleared up some longstanding tickets in the Drupal HTML Purifier queue. My apologies to all of you who had to wait.</text>
-  <source>web</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>true</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>14930686</id>
-    <name>Edward Z. Yang</name>
-    <screen_name>ezyang</screen_name>
-    <location>Cambridge, MA</location>
-    <description>MIT student who plays oboe and spends an inordinate amount of time fiddling with software</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/54757734/gravatar_normal.jpg</profile_image_url>
-    <url>http://ezyang.com</url>
-    <protected>false</protected>
-    <followers_count>168</followers_count>
-    <profile_background_color>4A6282</profile_background_color>
-    <profile_text_color>000000</profile_text_color>
-    <profile_link_color>0000ff</profile_link_color>
-    <profile_sidebar_fill_color>B1C0DF</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>7084AA</profile_sidebar_border_color>
-    <friends_count>87</friends_count>
-    <created_at>Wed May 28 05:22:04 +0000 2008</created_at>
-    <favourites_count>0</favourites_count>
-    <utc_offset>-18000</utc_offset>
-    <time_zone>Eastern Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://a3.twimg.com/profile_background_images/2580349/logo-large.png</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>260</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Fri Dec 04 23:42:04 +0000 2009</created_at>
-  <id>6353225351</id>
-  <text>Rails 3 : Vaporware To Awesome... http://www.slideshare.net/wycats/vaporware-to-awesome</text>
-  <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>true</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>19575586</id>
-    <name>Hacker News Bot</name>
-    <screen_name>hackernewsbot</screen_name>
-    <location>Internetz</location>
-    <description>Tweeting the hottest from Hacker News (YC)</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/73596050/yc500_normal.jpg</profile_image_url>
-    <url>http://news.ycombinator.com</url>
-    <protected>false</protected>
-    <followers_count>3035</followers_count>
-    <profile_background_color>9ae4e8</profile_background_color>
-    <profile_text_color>000000</profile_text_color>
-    <profile_link_color>0000ff</profile_link_color>
-    <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-    <friends_count>0</friends_count>
-    <created_at>Tue Jan 27 03:40:24 +0000 2009</created_at>
-    <favourites_count>0</favourites_count>
-    <utc_offset>-21600</utc_offset>
-    <time_zone>Central Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>10943</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Wed Nov 11 01:02:50 +0000 2009</created_at>
-  <id>5605372257</id>
-  <text>#PHP standards group have published final proposal http://bit.ly/2wI4DE. I've been following their talks and it ended exactly as I wanted :)</text>
-  <source>&lt;a href="http://www.tweetdeck.com/" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>true</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>33927626</id>
-    <name>Juozas Kaziukenas</name>
-    <screen_name>juokaz</screen_name>
-    <location>Edinburgh, UK</location>
-    <description>Random ideas, scripts and facts</description>
-    <profile_image_url>http://a3.twimg.com/profile_images/293691113/profile_normal.jpg</profile_image_url>
-    <url>http://www.juokaz.com</url>
-    <protected>false</protected>
-    <followers_count>551</followers_count>
-    <profile_background_color>EBEBEB</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>990000</profile_link_color>
-    <profile_sidebar_fill_color>F3F3F3</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>DFDFDF</profile_sidebar_border_color>
-    <friends_count>248</friends_count>
-    <created_at>Tue Apr 21 14:57:11 +0000 2009</created_at>
-    <favourites_count>0</favourites_count>
-    <utc_offset>0</utc_offset>
-    <time_zone>Edinburgh</time_zone>
-    <profile_background_image_url>http://a1.twimg.com/profile_background_images/9419692/march-09-clinging_to_colour-nocal-1920x1200.jpg</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>2598</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Tue Nov 10 11:53:48 +0000 2009</created_at>
-  <id>5586709670</id>
-  <text>Nice blog post by @davegardnerisme about setting up continuous integration using Hudson http://is.gd/4RyN3 #hudson #ci (via @raphaelstolt)</text>
-  <source>web</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>true</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>18136020</id>
-    <name>Federico Cargnelutti</name>
-    <screen_name>fedecarg</screen_name>
-    <location>London, UK</location>
-    <description>Software Developer</description>
-    <profile_image_url>http://a3.twimg.com/profile_images/913196735/fede-pic2_normal.jpg</profile_image_url>
-    <url>http://www.fedecarg.com</url>
-    <protected>false</protected>
-    <followers_count>292</followers_count>
-    <profile_background_color>1A1B1F</profile_background_color>
-    <profile_text_color>636163</profile_text_color>
-    <profile_link_color>067fa1</profile_link_color>
-    <profile_sidebar_fill_color>000000</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>353536</profile_sidebar_border_color>
-    <friends_count>106</friends_count>
-    <created_at>Mon Dec 15 13:13:48 +0000 2008</created_at>
-    <favourites_count>2</favourites_count>
-    <utc_offset>0</utc_offset>
-    <time_zone>London</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme9/bg.gif</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>605</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Tue Oct 27 22:54:58 +0000 2009</created_at>
-  <id>5213696169</id>
-  <text>YouTube video of my talk this morning at #140conf. http://r2.ly/n8cv</text>
-  <source>web</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>true</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>3839</id>
-    <name>Dave Winer</name>
-    <screen_name>davewiner</screen_name>
-    <location>NYC</location>
-    <description>Media Hackerer, Twitterer, NYU scholar</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/557815118/headshot_normal.jpg</profile_image_url>
-    <url>http://scripting.com/</url>
-    <protected>false</protected>
-    <followers_count>30623</followers_count>
-    <profile_background_color>9ae4e8</profile_background_color>
-    <profile_text_color>000000</profile_text_color>
-    <profile_link_color>7f7f90</profile_link_color>
-    <profile_sidebar_fill_color>e1e1df</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>a6aaa1</profile_sidebar_border_color>
-    <friends_count>1296</friends_count>
-    <created_at>Sat Aug 05 23:04:08 +0000 2006</created_at>
-    <favourites_count>17</favourites_count>
-    <utc_offset>-28800</utc_offset>
-    <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://a3.twimg.com/profile_background_images/99323235/niagara.jpg</profile_background_image_url>
-    <profile_background_tile>true</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>true</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>25591</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Wed Oct 21 06:29:46 +0000 2009</created_at>
-  <id>5038508334</id>
-  <text>Damn you @revrev for showing me the beautifully great Machinarium point &amp; click puzzler http://bit.ly/2m8xlT</text>
-  <source>&lt;a href="http://www.tweetdeck.com/" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>true</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>772681</id>
-    <name>Mark Krynsky</name>
-    <screen_name>krynsky</screen_name>
-    <location>Chatsworth, CA</location>
-    <description>Manage X PRIZE Foundation sites. Drupal &amp; Wordpress Fanboy. I run Lifestreamblog.com &amp; my avatar makes me look hipper than I really am.</description>
-    <profile_image_url>http://a3.twimg.com/profile_images/684895249/mark_drinking_ces_normal.jpg</profile_image_url>
-    <url>http://lifestreamblog.com</url>
-    <protected>false</protected>
-    <followers_count>2089</followers_count>
-    <profile_background_color>ffffff</profile_background_color>
-    <profile_text_color>000000</profile_text_color>
-    <profile_link_color>0000ff</profile_link_color>
-    <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-    <friends_count>1071</friends_count>
-    <created_at>Wed Feb 14 21:28:40 +0000 2007</created_at>
-    <favourites_count>246</favourites_count>
-    <utc_offset>-28800</utc_offset>
-    <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://a3.twimg.com/profile_background_images/93245565/twitter_background_krynsky_v3.png</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>true</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>7406</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Mon Oct 19 14:14:33 +0000 2009</created_at>
-  <id>4991744144</id>
-  <text>RT @AdFreak: One of the better ads you'll see in support of gay marriage. From Ireland. http://bit.ly/2UyyEE #gay #lgbt /// Love it !</text>
-  <source>&lt;a href="http://www.seesmic.com/" rel="nofollow"&gt;Seesmic&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>true</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>17352896</id>
-    <name>Simon Villeneuve</name>
-    <screen_name>SimonVilleneuve</screen_name>
-    <location>Montréal</location>
-    <description>Geek de formation smiley-addict fuyant la vie préfabriquée. J'adore la Suisse et @AriMcd. Ah oui, les #jeudiconfession... c'est ma faute! Sorry! :$</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/910317396/me-may18b-474px_normal.jpg</profile_image_url>
-    <url>http://www.simonvilleneuve.ca/</url>
-    <protected>false</protected>
-    <followers_count>1055</followers_count>
-    <profile_background_color>C0DEED</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>0084B4</profile_link_color>
-    <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
-    <friends_count>500</friends_count>
-    <created_at>Thu Nov 13 00:35:16 +0000 2008</created_at>
-    <favourites_count>87</favourites_count>
-    <utc_offset>-18000</utc_offset>
-    <time_zone>Eastern Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>12821</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Fri Oct 16 06:26:57 +0000 2009</created_at>
-  <id>4910076661</id>
-  <text>wow, my "if it ain't broken" blog post is getting record amounts of visitors</text>
-  <source>&lt;a href="http://www.seesmic.com/" rel="nofollow"&gt;Seesmic&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>true</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>1524641</id>
-    <name>Stefan</name>
-    <screen_name>skoop</screen_name>
-    <location>Woudenberg, Netherlands</location>
-    <description>open source, php, geek, music, symfony, buzzer, dad, conference speaker, vegetarian, fc utrecht, entrepreneur, freelancer</description>
-    <profile_image_url>http://a3.twimg.com/profile_images/921970573/5d3c68fa-7d96-4f95-8f26-7c6d47496cd7_normal.png</profile_image_url>
-    <url>http://www.leftontheweb.com/</url>
-    <protected>false</protected>
-    <followers_count>1283</followers_count>
-    <profile_background_color>000000</profile_background_color>
-    <profile_text_color>000000</profile_text_color>
-    <profile_link_color>323232</profile_link_color>
-    <profile_sidebar_fill_color>999999</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>CDCDCD</profile_sidebar_border_color>
-    <friends_count>1492</friends_count>
-    <created_at>Mon Mar 19 16:28:14 +0000 2007</created_at>
-    <favourites_count>31</favourites_count>
-    <utc_offset>3600</utc_offset>
-    <time_zone>Amsterdam</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>true</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>25592</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Fri Oct 16 02:32:39 +0000 2009</created_at>
-  <id>4905752912</id>
-  <text>Working on my PHP AtomPub library. I'll be ready to push some stuff to github in the near future. You'll be the first to know.</text>
-  <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>true</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>7794552</id>
-    <name>Ben Ramsey</name>
-    <screen_name>ramsey</screen_name>
-    <location>Nashville, TN</location>
-    <description>Senior Software Architect at @Moontoast. Author, speaker, blogger, web geek, beer aficionado, home brewer, literature nut, liberty lover, &amp; most of all, a dad.</description>
-    <profile_image_url>http://a3.twimg.com/profile_images/938351463/bramsey-square_normal.png</profile_image_url>
-    <url>http://benramsey.com/</url>
-    <protected>false</protected>
-    <followers_count>1348</followers_count>
-    <profile_background_color>666666</profile_background_color>
-    <profile_text_color>000000</profile_text_color>
-    <profile_link_color>0066CC</profile_link_color>
-    <profile_sidebar_fill_color>99ff66</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>33cc00</profile_sidebar_border_color>
-    <friends_count>172</friends_count>
-    <created_at>Sun Jul 29 02:44:40 +0000 2007</created_at>
-    <favourites_count>83</favourites_count>
-    <utc_offset>-21600</utc_offset>
-    <time_zone>Central Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>true</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>9307</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Thu Sep 17 12:54:45 +0000 2009</created_at>
-  <id>4053276261</id>
-  <text>The Missing Manual author guidelines = top rate advice for ANY tutorial author http://post.ly/5PfX</text>
-  <source>&lt;a href="http://www.posterous.com" rel="nofollow"&gt;Posterous&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>true</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>5808</id>
-    <name>David Barnes</name>
-    <screen_name>DRB</screen_name>
-    <location>Birmingham, UK</location>
-    <description>PacktPub.com acquisition editor.  Mainly tweeting about WRITING and GAME DEVELOPMENT.</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/683503668/DSC00010_normal.jpg</profile_image_url>
-    <url>http://davidbarneswork.posterous.com/</url>
-    <protected>false</protected>
-    <followers_count>590</followers_count>
-    <profile_background_color>B2DFDA</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>93A644</profile_link_color>
-    <profile_sidebar_fill_color>ffffff</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>eeeeee</profile_sidebar_border_color>
-    <friends_count>427</friends_count>
-    <created_at>Mon Sep 11 15:18:01 +0000 2006</created_at>
-    <favourites_count>2</favourites_count>
-    <utc_offset>0</utc_offset>
-    <time_zone>London</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme13/bg.gif</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>1620</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-</statuses>

+ 87 - 0
tests/Zend/Service/Twitter/_files/friendships.create.twitter.json

@@ -0,0 +1,87 @@
+{
+    "contributors_enabled": true,
+    "created_at": "Tue Feb 20 14:35:54 +0000 2007",
+    "default_profile": false,
+    "default_profile_image": false,
+    "description": "Always wondering what's happening. ",
+    "entities": {
+        "hashtags": [],
+        "urls": [],
+        "user_mentions": []
+    },
+    "favourites_count": 2,
+    "followers_count": 3228781,
+    "following": true,
+    "follow_request_sent": false,
+    "friends_count": 247,
+    "geo_enabled": false,
+    "id": 783214,
+    "id_str": "783214",
+    "is_translator": false,
+    "lang": "en",
+    "listed_count": 0,
+    "location": "San Francisco, CA",
+    "name": "Twitter",
+    "notifications": false,
+    "profile_background_color": "ACDED6",
+    "profile_background_image_url": "http://a0.twimg.com/a/1274899949/images/themes/theme18/bg.gif",
+    "profile_background_image_url_https": "https://si0.twimg.com/a/1274899949/images/themes/theme18/bg.gif",
+    "profile_background_tile": false,
+    "profile_image_url": "http://a1.twimg.com/profile_images/878669694/twitter_bird_normal.jpg",
+    "profile_image_url_https": "https://si1.twimg.com/profile_images/878669694/twitter_bird_normal.jpg",
+    "profile_link_color": "038543",
+    "profile_sidebar_border_color": "EEEEEE",
+    "profile_sidebar_fill_color": "F6F6F6",
+    "profile_text_color": 333333,
+    "profile_use_background_image": true,
+    "protected": false,
+    "screen_name": "twitter",
+    "show_all_inline_media": true,
+    "status": {
+        "contributors": [
+            {
+                "id": 16739704,
+                "id_str": "16739704",
+                "screen_name": "jennadawn"
+            }
+        ],
+        "coordinates": null,
+        "created_at": "Fri May 28 21:14:05 +0000 2010",
+        "entities": {
+            "hashtags": [],
+            "media": [],
+            "urls": [
+                {
+                    "url": "http://bit.ly/b1Cf9A",
+                    "indices": [
+                        32,
+                        52
+                    ]
+                }
+            ],
+            "user_mentions": []
+        },
+        "favorited": false,
+        "geo": null,
+        "id": 14932507266,
+        "id_str": "14932507266",
+        "in_reply_to_screen_name": null,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "place": null,
+        "possibly_sensitive_editable": false,
+        "possibly_sensitive": false,
+        "retweet_count": 0,
+        "retweeted": false,
+        "source": "web",
+        "text": "Good news for people everywhere http://bit.ly/b1Cf9A",
+        "truncated": false
+    },
+    "statuses_count": 745,
+    "time_zone": "Pacific Time (US &amp; Canada)",
+    "url": "http://twitter.com",
+    "utc_offset": "-28800",
+    "verified": true
+}

+ 0 - 48
tests/Zend/Service/Twitter/_files/friendships.create.twitter.xml

@@ -1,48 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<user>
-  <id>783214</id>
-  <name>Twitter</name>
-  <screen_name>twitter</screen_name>
-  <location>San Francisco, CA</location>
-  <description>Always wondering what's happening. </description>
-  <profile_image_url>http://a1.twimg.com/profile_images/878669694/twitter_bird_normal.jpg</profile_image_url>
-  <url>http://twitter.com</url>
-  <protected>false</protected>
-  <followers_count>3228781</followers_count>
-  <profile_background_color>ACDED6</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>038543</profile_link_color>
-  <profile_sidebar_fill_color>F6F6F6</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>EEEEEE</profile_sidebar_border_color>
-  <friends_count>247</friends_count>
-  <created_at>Tue Feb 20 14:35:54 +0000 2007</created_at>
-  <favourites_count>2</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme18/bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>true</verified>
-  <following>true</following>
-  <statuses_count>745</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>true</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 21:14:05 +0000 2010</created_at>
-    <id>14932507266</id>
-    <text>Good news for people everywhere http://bit.ly/b1Cf9A</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors>
-      <user_id>16739704</user_id>
-    </contributors>
-  </status>
-</user>

+ 87 - 0
tests/Zend/Service/Twitter/_files/friendships.destroy.twitter.json

@@ -0,0 +1,87 @@
+{
+    "contributors_enabled": true,
+    "created_at": "Tue Feb 20 14:35:54 +0000 2007",
+    "default_profile": false,
+    "default_profile_image": false,
+    "description": "Always wondering what's happening. ",
+    "entities": {
+        "hashtags": [],
+        "urls": [],
+        "user_mentions": []
+    },
+    "favourites_count": 2,
+    "followers_count": 3230090,
+    "following": true,
+    "follow_request_sent": false,
+    "friends_count": 247,
+    "geo_enabled": false,
+    "id": 783214,
+    "id_str": "783214",
+    "is_translator": false,
+    "lang": "en",
+    "listed_count": 0,
+    "location": "San Francisco, CA",
+    "name": "Twitter",
+    "notifications": false,
+    "profile_background_color": "ACDED6",
+    "profile_background_image_url": "http://a0.twimg.com/a/1274899949/images/themes/theme18/bg.gif",
+    "profile_background_image_url_https": "https://si0.twimg.com/a/1274899949/images/themes/theme18/bg.gif",
+    "profile_background_tile": false,
+    "profile_image_url": "http://a1.twimg.com/profile_images/878669694/twitter_bird_normal.jpg",
+    "profile_image_url_https": "https://si1.twimg.com/profile_images/878669694/twitter_bird_normal.jpg",
+    "profile_link_color": "038543",
+    "profile_sidebar_border_color": "EEEEEE",
+    "profile_sidebar_fill_color": "F6F6F6",
+    "profile_text_color": 333333,
+    "profile_use_background_image": true,
+    "protected": false,
+    "screen_name": "twitter",
+    "show_all_inline_media": true,
+    "status": {
+        "contributors": [
+            {
+                "id": 16739704,
+                "id_str": "16739704",
+                "screen_name": "jennadawn"
+            }
+        ],
+        "coordinates": null,
+        "created_at": "Fri May 28 21:14:05 +0000 2010",
+        "entities": {
+            "hashtags": [],
+            "media": [],
+            "urls": [
+                {
+                    "url": "http://bit.ly/b1Cf9A",
+                    "indices": [
+                        32,
+                        52
+                    ]
+                }
+            ],
+            "user_mentions": []
+        },
+        "favorited": false,
+        "geo": null,
+        "id": 14932507266,
+        "id_str": "14932507266",
+        "in_reply_to_screen_name": null,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "place": null,
+        "possibly_sensitive_editable": false,
+        "possibly_sensitive": false,
+        "retweet_count": 0,
+        "retweeted": false,
+        "source": "web",
+        "text": "Good news for people everywhere http://bit.ly/b1Cf9A",
+        "truncated": false
+    },
+    "statuses_count": 745,
+    "time_zone": "Pacific Time (US &amp; Canada)",
+    "url": "http://twitter.com",
+    "utc_offset": "-28800",
+    "verified": true
+}

+ 0 - 48
tests/Zend/Service/Twitter/_files/friendships.destroy.twitter.xml

@@ -1,48 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<user>
-  <id>783214</id>
-  <name>Twitter</name>
-  <screen_name>twitter</screen_name>
-  <location>San Francisco, CA</location>
-  <description>Always wondering what's happening. </description>
-  <profile_image_url>http://a1.twimg.com/profile_images/878669694/twitter_bird_normal.jpg</profile_image_url>
-  <url>http://twitter.com</url>
-  <protected>false</protected>
-  <followers_count>3230090</followers_count>
-  <profile_background_color>ACDED6</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>038543</profile_link_color>
-  <profile_sidebar_fill_color>F6F6F6</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>EEEEEE</profile_sidebar_border_color>
-  <friends_count>247</friends_count>
-  <created_at>Tue Feb 20 14:35:54 +0000 2007</created_at>
-  <favourites_count>2</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme18/bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>true</verified>
-  <following>true</following>
-  <statuses_count>745</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>true</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 21:14:05 +0000 2010</created_at>
-    <id>14932507266</id>
-    <text>Good news for people everywhere http://bit.ly/b1Cf9A</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors>
-      <user_id>16739704</user_id>
-    </contributors>
-  </status>
-</user>

+ 0 - 1
tests/Zend/Service/Twitter/_files/friendships.exists.twitter.xml

@@ -1 +0,0 @@
-<friends>true</friends>

+ 0 - 909
tests/Zend/Service/Twitter/_files/public_timeline.xml

@@ -1,909 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<statuses type="array">
-<status>
-  <created_at>Sun May 30 00:31:38 +0000 2010</created_at>
-  <id>15007779000</id>
-  <text>Vamos x la 2da peliculita  http://myloc.me/7AsT6</text>
-  <source>&lt;a href="http://ubertwitter.com" rel="nofollow"&gt;UberTwitter&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>78485547</id>
-    <name>veronica martinez</name>
-    <screen_name>PillitaMartinez</screen_name>
-    <location>ÜT: 19.830304,-90.532719</location>
-    <description/>
-    <profile_image_url>http://a1.twimg.com/profile_images/825836252/DSCF3118_normal.JPG</profile_image_url>
-    <url/>
-    <protected>false</protected>
-    <followers_count>118</followers_count>
-    <profile_background_color>DBE9ED</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>CC3366</profile_link_color>
-    <profile_sidebar_fill_color>E6F6F9</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>DBE9ED</profile_sidebar_border_color>
-    <friends_count>238</friends_count>
-    <created_at>Wed Sep 30 02:10:26 +0000 2009</created_at>
-    <favourites_count>1</favourites_count>
-    <utc_offset>-21600</utc_offset>
-    <time_zone>Central Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme17/bg.gif</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>true</geo_enabled>
-    <verified>false</verified>
-    <following>false</following>
-    <statuses_count>1163</statuses_count>
-    <lang>es</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo xmlns:georss="http://www.georss.org/georss">
-    <georss:point>19.830304 -90.532719</georss:point>
-  </geo>
-  <coordinates xmlns:georss="http://www.georss.org/georss">
-    <georss:point>19.830304 -90.532719</georss:point>
-  </coordinates>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 00:31:37 +0000 2010</created_at>
-  <id>15007778000</id>
-  <text>vh1 classic es una buena forma de matar el aburrimiento o de despertar de una siesta</text>
-  <source>web</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>27191178</id>
-    <name>sinistro iturralde</name>
-    <screen_name>sinistrobjj</screen_name>
-    <location>arround the world</location>
-    <description>multiple times BJJ WORLD CHAMP</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/879992980/28159_413740013932_591928932_5147275_6661219_n_1__normal.jpg</profile_image_url>
-    <url>http://www.alliance-ecuador.blogspot.com</url>
-    <protected>false</protected>
-    <followers_count>99</followers_count>
-    <profile_background_color>1A1B1F</profile_background_color>
-    <profile_text_color>666666</profile_text_color>
-    <profile_link_color>2FC2EF</profile_link_color>
-    <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
-    <friends_count>89</friends_count>
-    <created_at>Sat Mar 28 06:25:43 +0000 2009</created_at>
-    <favourites_count>2</favourites_count>
-    <utc_offset>-21600</utc_offset>
-    <time_zone>Central Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://a3.twimg.com/profile_background_images/50908903/_MG_4623.jpg</profile_background_image_url>
-    <profile_background_tile>true</profile_background_tile>
-    <notifications/>
-    <geo_enabled>true</geo_enabled>
-    <verified>false</verified>
-    <following/>
-    <statuses_count>945</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 00:31:35 +0000 2010</created_at>
-  <id>15007777000</id>
-  <text>at home watching eurovision missed it so yea :/ :L lol haha</text>
-  <source>web</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>63556065</id>
-    <name>rebekah n</name>
-    <screen_name>destinyxcyrus</screen_name>
-    <location/>
-    <description/>
-    <profile_image_url>http://a3.twimg.com/profile_images/930881677/100410_172128_normal.jpg</profile_image_url>
-    <url/>
-    <protected>false</protected>
-    <followers_count>24</followers_count>
-    <profile_background_color>131516</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>009999</profile_link_color>
-    <profile_sidebar_fill_color>efefef</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>eeeeee</profile_sidebar_border_color>
-    <friends_count>67</friends_count>
-    <created_at>Thu Aug 06 22:11:37 +0000 2009</created_at>
-    <favourites_count>0</favourites_count>
-    <utc_offset/>
-    <time_zone/>
-    <profile_background_image_url>http://a3.twimg.com/profile_background_images/67769949/zwbra7.jpg</profile_background_image_url>
-    <profile_background_tile>true</profile_background_tile>
-    <notifications/>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following/>
-    <statuses_count>458</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 00:31:31 +0000 2010</created_at>
-  <id>15007774000</id>
-  <text>Milhares de pessoas prestigiam lançamento do programa Minha Casa, Minha Vida em Juazeiro. www.sertaocentral.com.br</text>
-  <source>web</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>79738493</id>
-    <name>Site Sertão Central</name>
-    <screen_name>sertao_central</screen_name>
-    <location>Brasil</location>
-    <description>Higo Carlos</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/661970544/logo_normal.jpg</profile_image_url>
-    <url>http://www.sertaocentral.com.br</url>
-    <protected>false</protected>
-    <followers_count>761</followers_count>
-    <profile_background_color>022330</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>0084B4</profile_link_color>
-    <profile_sidebar_fill_color>C0DFEC</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>a8c7f7</profile_sidebar_border_color>
-    <friends_count>1996</friends_count>
-    <created_at>Sun Oct 04 14:12:27 +0000 2009</created_at>
-    <favourites_count>6</favourites_count>
-    <utc_offset>-14400</utc_offset>
-    <time_zone>Santiago</time_zone>
-    <profile_background_image_url>http://a3.twimg.com/profile_background_images/44248325/higo.jpg</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications/>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following/>
-    <statuses_count>1126</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 00:31:30 +0000 2010</created_at>
-  <id>15007773000</id>
-  <text>Wonderin why my nipple hurtin my dumb ass had money stuck in my ring lmao*</text>
-  <source>&lt;a href="http://blackberry.com/twitter" rel="nofollow"&gt;Twitter for BlackBerry®&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>127754413</id>
-    <name>*Coco*</name>
-    <screen_name>thiicknic69</screen_name>
-    <location>Harlem home of the Greatest*</location>
-    <description>Bad chocolate bitch nuff said*  href=http://mylikes.com/signup?token=thiicknic69img src=http://mylikes.com/images/mylikes125.png//</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/880181726/100391586_normal.jpg</profile_image_url>
-    <url>http://null</url>
-    <protected>false</protected>
-    <followers_count>366</followers_count>
-    <profile_background_color>C0DEED</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>0084B4</profile_link_color>
-    <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
-    <friends_count>360</friends_count>
-    <created_at>Tue Mar 30 04:10:19 +0000 2010</created_at>
-    <favourites_count>0</favourites_count>
-    <utc_offset/>
-    <time_zone/>
-    <profile_background_image_url>http://a1.twimg.com/profile_background_images/88880974/Jan23_014.jpg</profile_background_image_url>
-    <profile_background_tile>true</profile_background_tile>
-    <notifications/>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following/>
-    <statuses_count>4170</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 00:31:29 +0000 2010</created_at>
-  <id>15007772000</id>
-  <text>ハルピン・トゥルルルソン?</text>
-  <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>128592391</id>
-    <name>ピザまん</name>
-    <screen_name>pizaman_</screen_name>
-    <location>せいろ</location>
-    <description>蒸したてあつあつのピザまんだよ!【自動botです。なにかありましたらDMをお送りください】</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/790683386/o0350046010331203264_1__normal.jpg</profile_image_url>
-    <url>http://pleurer.web.fc2.com/newdir/pizaman.html</url>
-    <protected>false</protected>
-    <followers_count>89</followers_count>
-    <profile_background_color>9ae4e8</profile_background_color>
-    <profile_text_color>000000</profile_text_color>
-    <profile_link_color>0000ff</profile_link_color>
-    <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-    <friends_count>93</friends_count>
-    <created_at>Thu Apr 01 15:47:08 +0000 2010</created_at>
-    <favourites_count>0</favourites_count>
-    <utc_offset>-36000</utc_offset>
-    <time_zone>Hawaii</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications/>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following/>
-    <statuses_count>3890</statuses_count>
-    <lang>ja</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 00:31:27 +0000 2010</created_at>
-  <id>15007771000</id>
-  <text>irei fazer um formspring.me para o #euja_ ok? hahaha :)</text>
-  <source>web</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>142114624</id>
-    <name>euja...</name>
-    <screen_name>euja_</screen_name>
-    <location/>
-    <description>Um twitter feito por @karol_arantes e @analuiza_farias , no dia 09.05.10 ; com a inteção de sempre postar... eu já quis.. auehaieuhaeiuha. :) </description>
-    <profile_image_url>http://a3.twimg.com/profile_images/939283957/e_normal.jpg</profile_image_url>
-    <url/>
-    <protected>false</protected>
-    <followers_count>349</followers_count>
-    <profile_background_color>ACDED6</profile_background_color>
-    <profile_text_color>ff6a3d</profile_text_color>
-    <profile_link_color>038543</profile_link_color>
-    <profile_sidebar_fill_color>e1bbf0</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>1cc758</profile_sidebar_border_color>
-    <friends_count>281</friends_count>
-    <created_at>Mon May 10 00:54:47 +0000 2010</created_at>
-    <favourites_count>1</favourites_count>
-    <utc_offset>-14400</utc_offset>
-    <time_zone>Santiago</time_zone>
-    <profile_background_image_url>http://a1.twimg.com/profile_background_images/106463556/3487472232_05ea679f3c.jpg</profile_background_image_url>
-    <profile_background_tile>true</profile_background_tile>
-    <notifications/>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following/>
-    <statuses_count>1186</statuses_count>
-    <lang>es</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 00:31:26 +0000 2010</created_at>
-  <id>15007770000</id>
-  <text>本日、「SOLAR FREQUENCY 」スガユウスケは13時より90分Playします。  http://www.techno.vc/</text>
-  <source>web</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>123203587</id>
-    <name>SilentMusicTW</name>
-    <screen_name>SilentMusicTW</screen_name>
-    <location/>
-    <description>柏を中心にTECHNO PARTY 'FUTURETECH'と'BIORIC'を開催しています</description>
-    <profile_image_url>http://a3.twimg.com/profile_images/780902559/35855767_22_normal.jpg</profile_image_url>
-    <url>http://www.techno.vc/</url>
-    <protected>false</protected>
-    <followers_count>60</followers_count>
-    <profile_background_color>9ae4e8</profile_background_color>
-    <profile_text_color>000000</profile_text_color>
-    <profile_link_color>0000ff</profile_link_color>
-    <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-    <friends_count>116</friends_count>
-    <created_at>Mon Mar 15 09:56:59 +0000 2010</created_at>
-    <favourites_count>0</favourites_count>
-    <utc_offset>32400</utc_offset>
-    <time_zone>Tokyo</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications/>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following/>
-    <statuses_count>36</statuses_count>
-    <lang>ja</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 00:31:25 +0000 2010</created_at>
-  <id>15007769000</id>
-  <text>justin bieber is sexy</text>
-  <source>web</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>146108581</id>
-    <name>Dalisa </name>
-    <screen_name>ilovejustinB493</screen_name>
-    <location>California</location>
-    <description>I love justin bieber and i am training to become a singer</description>
-    <profile_image_url>http://a3.twimg.com/profile_images/939650119/Photo_on_2010-05-28_at_19.44__7_normal.jpg</profile_image_url>
-    <url/>
-    <protected>false</protected>
-    <followers_count>1</followers_count>
-    <profile_background_color>642D8B</profile_background_color>
-    <profile_text_color>3D1957</profile_text_color>
-    <profile_link_color>FF0000</profile_link_color>
-    <profile_sidebar_fill_color>7AC3EE</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>65B0DA</profile_sidebar_border_color>
-    <friends_count>4</friends_count>
-    <created_at>Thu May 20 16:25:16 +0000 2010</created_at>
-    <favourites_count>10</favourites_count>
-    <utc_offset>-28800</utc_offset>
-    <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme10/bg.gif</profile_background_image_url>
-    <profile_background_tile>true</profile_background_tile>
-    <notifications/>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following/>
-    <statuses_count>55</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 00:31:22 +0000 2010</created_at>
-  <id>15007767000</id>
-  <text>Im not there ,missin the slack promotions lol RT @abunny_: @MyKhal - LMAO. you here?. where you at?.</text>
-  <source>&lt;a href="http://www.echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>30716605</id>
-    <name>MyKhal Angelo</name>
-    <screen_name>MyKhal</screen_name>
-    <location>B R O O K L Y N</location>
-    <description>If skill could kill then my art might Body Ya !  </description>
-    <profile_image_url>http://a3.twimg.com/profile_images/643472599/Screen_shot_2010-01-20_at_3.41.00_AM_normal.png</profile_image_url>
-    <url>http://Www.Grimeyville.Com</url>
-    <protected>false</protected>
-    <followers_count>437</followers_count>
-    <profile_background_color>000000</profile_background_color>
-    <profile_text_color>050505</profile_text_color>
-    <profile_link_color>545a4d</profile_link_color>
-    <profile_sidebar_fill_color>f4f3f1</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>f4f3f1</profile_sidebar_border_color>
-    <friends_count>396</friends_count>
-    <created_at>Sun Apr 12 20:37:49 +0000 2009</created_at>
-    <favourites_count>88</favourites_count>
-    <utc_offset>-18000</utc_offset>
-    <time_zone>Quito</time_zone>
-    <profile_background_image_url>http://a3.twimg.com/profile_background_images/80588363/mikey-twitter.gif</profile_background_image_url>
-    <profile_background_tile>true</profile_background_tile>
-    <notifications/>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following/>
-    <statuses_count>13284</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 00:31:21 +0000 2010</created_at>
-  <id>15007766000</id>
-  <text>Uyu Damla uyu sabah kalkılamayacak sanırım :S Uyyykkkuuuuu ZZzzzzzZZZZzzzzzZzZzzZ</text>
-  <source>web</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>84396856</id>
-    <name>Damla YILMAZ</name>
-    <screen_name>yakamozdamla</screen_name>
-    <location/>
-    <description/>
-    <profile_image_url>http://a1.twimg.com/profile_images/905579364/GetAttachment_normal.jpg</profile_image_url>
-    <url>http://twitter.com/yakamozdamla</url>
-    <protected>false</protected>
-    <followers_count>63</followers_count>
-    <profile_background_color>1A1B1F</profile_background_color>
-    <profile_text_color>9c009c</profile_text_color>
-    <profile_link_color>258505</profile_link_color>
-    <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
-    <friends_count>53</friends_count>
-    <created_at>Thu Oct 22 19:03:22 +0000 2009</created_at>
-    <favourites_count>26</favourites_count>
-    <utc_offset/>
-    <time_zone/>
-    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme9/bg.gif</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications/>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following/>
-    <statuses_count>2599</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 00:31:18 +0000 2010</created_at>
-  <id>15007764000</id>
-  <text>Road sodas :) http://tweetphoto.com/24627509</text>
-  <source>&lt;a href="http://ubertwitter.com" rel="nofollow"&gt;UberTwitter&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>16322863</id>
-    <name>HeardREI</name>
-    <screen_name>HeardREI</screen_name>
-    <location>Georgia</location>
-    <description>Name:Reina,3 degrees:Business Administration/Econ,Public Relations, Master of Science in Leadership.Now working on my Ph.D in Psychology!</description>
-    <profile_image_url>http://a3.twimg.com/profile_images/787409701/rei1_normal.jpg</profile_image_url>
-    <url/>
-    <protected>false</protected>
-    <followers_count>182</followers_count>
-    <profile_background_color>FF6699</profile_background_color>
-    <profile_text_color>362720</profile_text_color>
-    <profile_link_color>f2ea3a</profile_link_color>
-    <profile_sidebar_fill_color>E5507E</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>CC3366</profile_sidebar_border_color>
-    <friends_count>397</friends_count>
-    <created_at>Wed Sep 17 03:07:06 +0000 2008</created_at>
-    <favourites_count>0</favourites_count>
-    <utc_offset>-18000</utc_offset>
-    <time_zone>Eastern Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://a1.twimg.com/profile_background_images/70594212/DSC04739.JPG</profile_background_image_url>
-    <profile_background_tile>true</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>false</following>
-    <statuses_count>2425</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 00:31:13 +0000 2010</created_at>
-  <id>15007760000</id>
-  <text>Just got my eyebrows threaded...i forgot how much that crap hurts compared to waxing</text>
-  <source>&lt;a href="/devices" rel="nofollow"&gt;txt&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>74595984</id>
-    <name>taylor robinson</name>
-    <screen_name>Taybaybay4</screen_name>
-    <location>p_town</location>
-    <description>haha you know me! diamondback 4 life</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/444160016/taybaybay_normal.jpg</profile_image_url>
-    <url/>
-    <protected>false</protected>
-    <followers_count>32</followers_count>
-    <profile_background_color>000000</profile_background_color>
-    <profile_text_color>000000</profile_text_color>
-    <profile_link_color>ff0090</profile_link_color>
-    <profile_sidebar_fill_color>000000</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>000000</profile_sidebar_border_color>
-    <friends_count>14</friends_count>
-    <created_at>Tue Sep 15 23:53:06 +0000 2009</created_at>
-    <favourites_count>1</favourites_count>
-    <utc_offset>-32400</utc_offset>
-    <time_zone>Alaska</time_zone>
-    <profile_background_image_url>http://a3.twimg.com/profile_background_images/41293963/dots__.br.jpg</profile_background_image_url>
-    <profile_background_tile>true</profile_background_tile>
-    <notifications/>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following/>
-    <statuses_count>2737</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 00:31:12 +0000 2010</created_at>
-  <id>15007759000</id>
-  <text>RT @portrait23: One more unfollower===&amp;gt;@innBloom &amp;lt;smh #damnshame</text>
-  <source>&lt;a href="http://ubertwitter.com" rel="nofollow"&gt;UberTwitter&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>28163598</id>
-    <name>Miss Lady Q. Johnson</name>
-    <screen_name>QueenBorne9</screen_name>
-    <location>ÜT: 40.686027,-73.76704</location>
-    <description>Complicated, simple, highly intelligent and sarcastic as hell.</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/930692380/109816998_normal.jpg</profile_image_url>
-    <url>http://tweetphoto.com/user/972361</url>
-    <protected>false</protected>
-    <followers_count>1401</followers_count>
-    <profile_background_color>0a0401</profile_background_color>
-    <profile_text_color>0e35f5</profile_text_color>
-    <profile_link_color>0a0909</profile_link_color>
-    <profile_sidebar_fill_color>dbd0d4</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>c90202</profile_sidebar_border_color>
-    <friends_count>1361</friends_count>
-    <created_at>Wed Apr 01 18:38:14 +0000 2009</created_at>
-    <favourites_count>110</favourites_count>
-    <utc_offset>-18000</utc_offset>
-    <time_zone>Eastern Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://a1.twimg.com/profile_background_images/79602114/GmasRose2.jpg</profile_background_image_url>
-    <profile_background_tile>true</profile_background_tile>
-    <notifications/>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following/>
-    <statuses_count>46598</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 00:31:10 +0000 2010</created_at>
-  <id>15007758000</id>
-  <text>ALEX MANDAME SALUDOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOS !! TEAMOOOOO! :d (@speitzeroficial live on http://twitcam.com/tmoe))</text>
-  <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>109114456</id>
-    <name>Mari Carmen </name>
-    <screen_name>Magykc</screen_name>
-    <location>Crazy land</location>
-    <description>soii muii liinda 
-ztoii bn pinch fumada 
-jeje ♥I LOVE ME♥</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/866514626/Happy0700_normal.jpg</profile_image_url>
-    <url/>
-    <protected>false</protected>
-    <followers_count>24</followers_count>
-    <profile_background_color>e31d76</profile_background_color>
-    <profile_text_color>000000</profile_text_color>
-    <profile_link_color>254ec7</profile_link_color>
-    <profile_sidebar_fill_color>ff0558</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>ff0d4a</profile_sidebar_border_color>
-    <friends_count>213</friends_count>
-    <created_at>Thu Jan 28 01:02:37 +0000 2010</created_at>
-    <favourites_count>3</favourites_count>
-    <utc_offset/>
-    <time_zone/>
-    <profile_background_image_url>http://a1.twimg.com/profile_background_images/80836420/colores.jpg</profile_background_image_url>
-    <profile_background_tile>true</profile_background_tile>
-    <notifications/>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following/>
-    <statuses_count>897</statuses_count>
-    <lang>es</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 00:31:08 +0000 2010</created_at>
-  <id>15007756000</id>
-  <text>#MUNDIAL "Si Palermo es habilidoso yo soy malabarista"</text>
-  <source>web</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>83685648</id>
-    <name>NESTOR ARIEL</name>
-    <screen_name>NESTOR_ARIEL</screen_name>
-    <location>Monte Grande, Buenos Aires</location>
-    <description>Amo la expresión, no puedo parar de hacerlo!!!. También me gusta escuchar, lo aprendo cada día más y es hermoso. Amo el arte de la conversación!!!</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/505429704/m_db3c052c1ece4970baf0a67b95150757_normal.jpg</profile_image_url>
-    <url>http://tuexpresasyoexpreso.blogspot.com/</url>
-    <protected>false</protected>
-    <followers_count>15</followers_count>
-    <profile_background_color>FFF04D</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>0099CC</profile_link_color>
-    <profile_sidebar_fill_color>f6ffd1</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>fff8ad</profile_sidebar_border_color>
-    <friends_count>17</friends_count>
-    <created_at>Mon Oct 19 20:49:29 +0000 2009</created_at>
-    <favourites_count>1</favourites_count>
-    <utc_offset>-10800</utc_offset>
-    <time_zone>Buenos Aires</time_zone>
-    <profile_background_image_url>http://a3.twimg.com/profile_background_images/99861997/rosa.jpg</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications/>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following/>
-    <statuses_count>514</statuses_count>
-    <lang>es</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 00:31:06 +0000 2010</created_at>
-  <id>15007755000</id>
-  <text>830 n my night iz jus about done.... Sleepy as hell so I'm turnin it in early latta twitter-nation</text>
-  <source>&lt;a href="http://ubertwitter.com" rel="nofollow"&gt;UberTwitter&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>131211884</id>
-    <name>Its me</name>
-    <screen_name>TheReal_W1nner</screen_name>
-    <location>ÜT: 36.7992,-76.003899</location>
-    <description>Yea on my twitter grind HHEEAAVVYY... I fukz wit my team #teamfollowback ... Llleettttzzz ggoooo #teamblackberry in the buildin pin:24b15e5a </description>
-    <profile_image_url>http://a3.twimg.com/profile_images/913144683/IMG00145-20100519-1051_normal.jpg</profile_image_url>
-    <url>http://null</url>
-    <protected>false</protected>
-    <followers_count>1012</followers_count>
-    <profile_background_color>9ae4e8</profile_background_color>
-    <profile_text_color>000000</profile_text_color>
-    <profile_link_color>0000ff</profile_link_color>
-    <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-    <friends_count>1039</friends_count>
-    <created_at>Fri Apr 09 16:15:31 +0000 2010</created_at>
-    <favourites_count>0</favourites_count>
-    <utc_offset/>
-    <time_zone/>
-    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications/>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following/>
-    <statuses_count>1429</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 00:31:04 +0000 2010</created_at>
-  <id>15007753000</id>
-  <text>Done and done. Show went so well! The crowd was awesome. Had 2 head home early but we'll be back w/Toby next week in Baltimore.</text>
-  <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>15972949</id>
-    <name>Carter's Chord</name>
-    <screen_name>CartersChord</screen_name>
-    <location>Nashville, TN</location>
-    <description>recording artists makin' music you should hear</description>
-    <profile_image_url>http://a3.twimg.com/profile_images/615208191/19548_239204716217_7475971217_3779790_317186_n_normal.jpg</profile_image_url>
-    <url>http://carterschord.com</url>
-    <protected>false</protected>
-    <followers_count>836</followers_count>
-    <profile_background_color>fbebd2</profile_background_color>
-    <profile_text_color>919191</profile_text_color>
-    <profile_link_color>dd002c</profile_link_color>
-    <profile_sidebar_fill_color>3c193f</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>36173f</profile_sidebar_border_color>
-    <friends_count>80</friends_count>
-    <created_at>Sun Aug 24 21:33:33 +0000 2008</created_at>
-    <favourites_count>1</favourites_count>
-    <utc_offset>-21600</utc_offset>
-    <time_zone>Central Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme8/bg.gif</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>false</following>
-    <statuses_count>744</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 00:31:02 +0000 2010</created_at>
-  <id>15007752000</id>
-  <text>http://dld.bz/dGt5 Does self-checkout actually save you any money?</text>
-  <source>&lt;a href="http://www.socialoomph.com" rel="nofollow"&gt;SocialOomph&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>141693017</id>
-    <name>CodyNew</name>
-    <screen_name>CodyWrites2</screen_name>
-    <location/>
-    <description/>
-    <profile_image_url>http://s.twimg.com/a/1274144130/images/default_profile_4_normal.png</profile_image_url>
-    <url/>
-    <protected>false</protected>
-    <followers_count>225</followers_count>
-    <profile_background_color>9ae4e8</profile_background_color>
-    <profile_text_color>000000</profile_text_color>
-    <profile_link_color>0000ff</profile_link_color>
-    <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-    <friends_count>234</friends_count>
-    <created_at>Sat May 08 19:23:26 +0000 2010</created_at>
-    <favourites_count>0</favourites_count>
-    <utc_offset/>
-    <time_zone/>
-    <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications/>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following/>
-    <statuses_count>4815</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 00:31:01 +0000 2010</created_at>
-  <id>15007751000</id>
-  <text>Who tryna do something...I'm bored.lol</text>
-  <source>web</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>140059643</id>
-    <name>Greg Mandall</name>
-    <screen_name>cizinevyxul</screen_name>
-    <location>Brissy</location>
-    <description>Guitarist for Autumn Heartache D</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/941686188/GHTNKx_normal.jpg</profile_image_url>
-    <url/>
-    <protected>false</protected>
-    <followers_count>15</followers_count>
-    <profile_background_color>9ae4e8</profile_background_color>
-    <profile_text_color>000000</profile_text_color>
-    <profile_link_color>0000ff</profile_link_color>
-    <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-    <friends_count>85</friends_count>
-    <created_at>Tue May 04 13:05:41 +0000 2010</created_at>
-    <favourites_count>0</favourites_count>
-    <utc_offset/>
-    <time_zone/>
-    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications/>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following/>
-    <statuses_count>28</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-</statuses>

+ 0 - 7
tests/Zend/Service/Twitter/_files/rate_limit_status.xml

@@ -1,7 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<hash>
-  <remaining-hits type="integer">150</remaining-hits>
-  <reset-time type="datetime">2010-05-30T12:38:56+00:00</reset-time>
-  <hourly-limit type="integer">150</hourly-limit>
-  <reset-time-in-seconds type="integer">1275223136</reset-time-in-seconds>
-</hash>

+ 1887 - 0
tests/Zend/Service/Twitter/_files/search.tweets.json

@@ -0,0 +1,1887 @@
+{
+  "statuses":[
+    {
+      "metadata":{
+        "result_type":"recent",
+        "iso_language_code":"en"
+      },
+      "created_at":"Thu Mar 07 22:22:29 +0000 2013",
+      "id":309791187840167938,
+      "id_str":"309791187840167938",
+      "text":"ZEND Framework 2 - Forma\u00e7ao Essencial #framework #php #zf2 #soudev http:\/\/t.co\/pKAaTjgQNT",
+      "source":"\u003Ca href=\u0022http:\/\/www.hootsuite.com\u0022 rel=\u0022nofollow\u0022\u003EHootSuite\u003C\/a\u003E",
+      "truncated":false,
+      "in_reply_to_status_id":null,
+      "in_reply_to_status_id_str":null,
+      "in_reply_to_user_id":null,
+      "in_reply_to_user_id_str":null,
+      "in_reply_to_screen_name":null,
+      "user":{
+        "id":40375758,
+        "id_str":"40375758",
+        "name":"Tempo Real Eventos ",
+        "screen_name":"treventos",
+        "location":"S\u00e3o Paulo",
+        "description":"Eventos em Tecnologia da Informa\u00e7\u00e3o: Treinamentos  M\u00e3o na Massa, Palestras, Congressos, Semin\u00e1rios e Workshop\u0027s",
+        "url":"http:\/\/www.temporealeventos.com.br",
+        "entities":{
+          "url":{
+            "urls":[
+              {
+                "url":"http:\/\/www.temporealeventos.com.br",
+                "expanded_url":null,
+                "indices":[
+                  0,
+                  34
+                ]
+              }
+            ]
+          },
+          "description":{
+            "urls":[
+
+            ]
+          }
+        },
+        "protected":false,
+        "followers_count":3301,
+        "friends_count":671,
+        "listed_count":152,
+        "created_at":"Sat May 16 00:58:23 +0000 2009",
+        "favourites_count":2,
+        "utc_offset":-10800,
+        "time_zone":"Brasilia",
+        "geo_enabled":false,
+        "verified":false,
+        "statuses_count":10367,
+        "lang":"en",
+        "contributors_enabled":false,
+        "is_translator":false,
+        "profile_background_color":"2E78B0",
+        "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/108934926\/twi.png",
+        "profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/108934926\/twi.png",
+        "profile_background_tile":false,
+        "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1074371685\/logo_tr_normal.jpg",
+        "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1074371685\/logo_tr_normal.jpg",
+        "profile_link_color":"3983B8",
+        "profile_sidebar_border_color":"3983B8",
+        "profile_sidebar_fill_color":"F5F5F5",
+        "profile_text_color":"666666",
+        "profile_use_background_image":true,
+        "default_profile":false,
+        "default_profile_image":false,
+        "following":null,
+        "follow_request_sent":null,
+        "notifications":null
+      },
+      "geo":null,
+      "coordinates":null,
+      "place":null,
+      "contributors":null,
+      "retweet_count":0,
+      "entities":{
+        "hashtags":[
+          {
+            "text":"framework",
+            "indices":[
+              38,
+              48
+            ]
+          },
+          {
+            "text":"php",
+            "indices":[
+              49,
+              53
+            ]
+          },
+          {
+            "text":"zf2",
+            "indices":[
+              54,
+              58
+            ]
+          },
+          {
+            "text":"soudev",
+            "indices":[
+              59,
+              66
+            ]
+          }
+        ],
+        "urls":[
+          {
+            "url":"http:\/\/t.co\/pKAaTjgQNT",
+            "expanded_url":"http:\/\/ow.ly\/ix8qO",
+            "display_url":"ow.ly\/ix8qO",
+            "indices":[
+              67,
+              89
+            ]
+          }
+        ],
+        "user_mentions":[
+
+        ]
+      },
+      "favorited":false,
+      "retweeted":false,
+      "possibly_sensitive":false,
+      "lang":"en"
+    },
+    {
+      "metadata":{
+        "result_type":"recent",
+        "iso_language_code":"fr"
+      },
+      "created_at":"Thu Mar 07 22:18:56 +0000 2013",
+      "id":309790292796637185,
+      "id_str":"309790292796637185",
+      "text":"Le #zendStudio10 avec #phpcloud et #zf2 c\u0027est plut\u00f4t pas mal et \u00e7a marche !!!",
+      "source":"\u003Ca href=\u0022http:\/\/twitter.com\/download\/iphone\u0022 rel=\u0022nofollow\u0022\u003ETwitter for iPhone\u003C\/a\u003E",
+      "truncated":false,
+      "in_reply_to_status_id":null,
+      "in_reply_to_status_id_str":null,
+      "in_reply_to_user_id":null,
+      "in_reply_to_user_id_str":null,
+      "in_reply_to_screen_name":null,
+      "user":{
+        "id":23771232,
+        "id_str":"23771232",
+        "name":"clauzel aurelien",
+        "screen_name":"aurelienclauzel",
+        "location":"43.469858,1.564284",
+        "description":"",
+        "url":"http:\/\/www.clauzel.fr",
+        "entities":{
+          "url":{
+            "urls":[
+              {
+                "url":"http:\/\/www.clauzel.fr",
+                "expanded_url":null,
+                "indices":[
+                  0,
+                  21
+                ]
+              }
+            ]
+          },
+          "description":{
+            "urls":[
+
+            ]
+          }
+        },
+        "protected":false,
+        "followers_count":7,
+        "friends_count":47,
+        "listed_count":0,
+        "created_at":"Wed Mar 11 14:40:13 +0000 2009",
+        "favourites_count":57,
+        "utc_offset":3600,
+        "time_zone":"Paris",
+        "geo_enabled":true,
+        "verified":false,
+        "statuses_count":78,
+        "lang":"fr",
+        "contributors_enabled":false,
+        "is_translator":false,
+        "profile_background_color":"C0DEED",
+        "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png",
+        "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png",
+        "profile_background_tile":false,
+        "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3121829633\/2a93de8d14b4480fb1d7f7ac756c04b3_normal.jpeg",
+        "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3121829633\/2a93de8d14b4480fb1d7f7ac756c04b3_normal.jpeg",
+        "profile_link_color":"0084B4",
+        "profile_sidebar_border_color":"C0DEED",
+        "profile_sidebar_fill_color":"DDEEF6",
+        "profile_text_color":"333333",
+        "profile_use_background_image":true,
+        "default_profile":true,
+        "default_profile_image":false,
+        "following":null,
+        "follow_request_sent":null,
+        "notifications":null
+      },
+      "geo":null,
+      "coordinates":null,
+      "place":null,
+      "contributors":null,
+      "retweet_count":0,
+      "entities":{
+        "hashtags":[
+          {
+            "text":"zendStudio10",
+            "indices":[
+              3,
+              16
+            ]
+          },
+          {
+            "text":"phpcloud",
+            "indices":[
+              22,
+              31
+            ]
+          },
+          {
+            "text":"zf2",
+            "indices":[
+              35,
+              39
+            ]
+          }
+        ],
+        "urls":[
+
+        ],
+        "user_mentions":[
+
+        ]
+      },
+      "favorited":false,
+      "retweeted":false,
+      "lang":"fr"
+    },
+    {
+      "metadata":{
+        "result_type":"recent",
+        "iso_language_code":"de"
+      },
+      "created_at":"Thu Mar 07 21:58:34 +0000 2013",
+      "id":309785167126487040,
+      "id_str":"309785167126487040",
+      "text":"Usar Microsoft SQL Server en Zend Framework 2: http:\/\/t.co\/QtnwzwaXdK #zf2 #PHP",
+      "source":"\u003Ca href=\u0022http:\/\/www.echofon.com\/\u0022 rel=\u0022nofollow\u0022\u003EEchofon\u003C\/a\u003E",
+      "truncated":false,
+      "in_reply_to_status_id":null,
+      "in_reply_to_status_id_str":null,
+      "in_reply_to_user_id":null,
+      "in_reply_to_user_id_str":null,
+      "in_reply_to_screen_name":null,
+      "user":{
+        "id":1106314022,
+        "id_str":"1106314022",
+        "name":"YoSymfony",
+        "screen_name":"YoSymfony",
+        "location":"",
+        "description":"Informaci\u00f3n sobre Symfony y PHP en espa\u00f1ol.",
+        "url":"http:\/\/t.co\/EW84STIT",
+        "entities":{
+          "url":{
+            "urls":[
+              {
+                "url":"http:\/\/t.co\/EW84STIT",
+                "expanded_url":"http:\/\/yosymfony.com",
+                "display_url":"yosymfony.com",
+                "indices":[
+                  0,
+                  20
+                ]
+              }
+            ]
+          },
+          "description":{
+            "urls":[
+
+            ]
+          }
+        },
+        "protected":false,
+        "followers_count":74,
+        "friends_count":57,
+        "listed_count":1,
+        "created_at":"Sun Jan 20 13:57:33 +0000 2013",
+        "favourites_count":41,
+        "utc_offset":null,
+        "time_zone":null,
+        "geo_enabled":false,
+        "verified":false,
+        "statuses_count":260,
+        "lang":"es",
+        "contributors_enabled":false,
+        "is_translator":false,
+        "profile_background_color":"C0DEED",
+        "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png",
+        "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png",
+        "profile_background_tile":false,
+        "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3133929507\/ca4a153077462bcdcbe99e4ddc232f2a_normal.png",
+        "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3133929507\/ca4a153077462bcdcbe99e4ddc232f2a_normal.png",
+        "profile_link_color":"0084B4",
+        "profile_sidebar_border_color":"C0DEED",
+        "profile_sidebar_fill_color":"DDEEF6",
+        "profile_text_color":"333333",
+        "profile_use_background_image":true,
+        "default_profile":true,
+        "default_profile_image":false,
+        "following":null,
+        "follow_request_sent":null,
+        "notifications":null
+      },
+      "geo":null,
+      "coordinates":null,
+      "place":null,
+      "contributors":null,
+      "retweet_count":0,
+      "entities":{
+        "hashtags":[
+          {
+            "text":"zf2",
+            "indices":[
+              70,
+              74
+            ]
+          },
+          {
+            "text":"PHP",
+            "indices":[
+              75,
+              79
+            ]
+          }
+        ],
+        "urls":[
+          {
+            "url":"http:\/\/t.co\/QtnwzwaXdK",
+            "expanded_url":"http:\/\/bit.ly\/YfwvWt",
+            "display_url":"bit.ly\/YfwvWt",
+            "indices":[
+              47,
+              69
+            ]
+          }
+        ],
+        "user_mentions":[
+
+        ]
+      },
+      "favorited":false,
+      "retweeted":false,
+      "possibly_sensitive":false,
+      "lang":"de"
+    },
+    {
+      "metadata":{
+        "result_type":"recent",
+        "iso_language_code":"en"
+      },
+      "created_at":"Thu Mar 07 21:48:47 +0000 2013",
+      "id":309782708769390592,
+      "id_str":"309782708769390592",
+      "text":"#ZF2 is *really* complicated.. I\u0027m not yet convinced it makes sense for me or the rest of the team. More investigation required.",
+      "source":"\u003Ca href=\u0022http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\u0022 rel=\u0022nofollow\u0022\u003ETwitter for Mac\u003C\/a\u003E",
+      "truncated":false,
+      "in_reply_to_status_id":null,
+      "in_reply_to_status_id_str":null,
+      "in_reply_to_user_id":null,
+      "in_reply_to_user_id_str":null,
+      "in_reply_to_screen_name":null,
+      "user":{
+        "id":19575221,
+        "id_str":"19575221",
+        "name":"John Hunt",
+        "screen_name":"johnrh",
+        "location":"cambridgeshire, uk",
+        "description":"Born coder",
+        "url":"http:\/\/about.me\/johnhunt",
+        "entities":{
+          "url":{
+            "urls":[
+              {
+                "url":"http:\/\/about.me\/johnhunt",
+                "expanded_url":null,
+                "indices":[
+                  0,
+                  24
+                ]
+              }
+            ]
+          },
+          "description":{
+            "urls":[
+
+            ]
+          }
+        },
+        "protected":false,
+        "followers_count":78,
+        "friends_count":48,
+        "listed_count":9,
+        "created_at":"Tue Jan 27 03:30:33 +0000 2009",
+        "favourites_count":0,
+        "utc_offset":36000,
+        "time_zone":"Sydney",
+        "geo_enabled":false,
+        "verified":false,
+        "statuses_count":2842,
+        "lang":"en",
+        "contributors_enabled":false,
+        "is_translator":false,
+        "profile_background_color":"C6E2EE",
+        "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme2\/bg.gif",
+        "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme2\/bg.gif",
+        "profile_background_tile":false,
+        "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/73421919\/icon_normal.gif",
+        "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/73421919\/icon_normal.gif",
+        "profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/19575221\/1356131715",
+        "profile_link_color":"1F98C7",
+        "profile_sidebar_border_color":"C6E2EE",
+        "profile_sidebar_fill_color":"DAECF4",
+        "profile_text_color":"663B12",
+        "profile_use_background_image":true,
+        "default_profile":false,
+        "default_profile_image":false,
+        "following":null,
+        "follow_request_sent":null,
+        "notifications":null
+      },
+      "geo":null,
+      "coordinates":null,
+      "place":null,
+      "contributors":null,
+      "retweet_count":0,
+      "entities":{
+        "hashtags":[
+          {
+            "text":"ZF2",
+            "indices":[
+              0,
+              4
+            ]
+          }
+        ],
+        "urls":[
+
+        ],
+        "user_mentions":[
+
+        ]
+      },
+      "favorited":false,
+      "retweeted":false,
+      "lang":"en"
+    },
+    {
+      "metadata":{
+        "result_type":"recent",
+        "iso_language_code":"en"
+      },
+      "created_at":"Thu Mar 07 21:30:46 +0000 2013",
+      "id":309778171073548288,
+      "id_str":"309778171073548288",
+      "text":"Blogged : Zend Framework 2 : Working with SQL Server and #ZF2 http:\/\/t.co\/Ujr826B8J6",
+      "source":"\u003Ca href=\u0022http:\/\/twitter.com\/tweetbutton\u0022 rel=\u0022nofollow\u0022\u003ETweet Button\u003C\/a\u003E",
+      "truncated":false,
+      "in_reply_to_status_id":null,
+      "in_reply_to_status_id_str":null,
+      "in_reply_to_user_id":null,
+      "in_reply_to_user_id_str":null,
+      "in_reply_to_screen_name":null,
+      "user":{
+        "id":43861950,
+        "id_str":"43861950",
+        "name":"Abdul Malik Ikhsan",
+        "screen_name":"samsonasik",
+        "location":"Bandung",
+        "description":"A husband. A Zend Framework Contributor.",
+        "url":"http:\/\/samsonasik.wordpress.com",
+        "entities":{
+          "url":{
+            "urls":[
+              {
+                "url":"http:\/\/samsonasik.wordpress.com",
+                "expanded_url":null,
+                "indices":[
+                  0,
+                  31
+                ]
+              }
+            ]
+          },
+          "description":{
+            "urls":[
+
+            ]
+          }
+        },
+        "protected":false,
+        "followers_count":208,
+        "friends_count":120,
+        "listed_count":5,
+        "created_at":"Mon Jun 01 10:09:57 +0000 2009",
+        "favourites_count":1893,
+        "utc_offset":25200,
+        "time_zone":"Jakarta",
+        "geo_enabled":true,
+        "verified":false,
+        "statuses_count":7146,
+        "lang":"id",
+        "contributors_enabled":false,
+        "is_translator":false,
+        "profile_background_color":"9AE4E8",
+        "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme16\/bg.gif",
+        "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme16\/bg.gif",
+        "profile_background_tile":false,
+        "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3107620557\/81fac85cde13b28d1422e357c77fb6c5_normal.jpeg",
+        "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3107620557\/81fac85cde13b28d1422e357c77fb6c5_normal.jpeg",
+        "profile_link_color":"0084B4",
+        "profile_sidebar_border_color":"BDDCAD",
+        "profile_sidebar_fill_color":"DDFFCC",
+        "profile_text_color":"333333",
+        "profile_use_background_image":true,
+        "default_profile":false,
+        "default_profile_image":false,
+        "following":null,
+        "follow_request_sent":null,
+        "notifications":null
+      },
+      "geo":null,
+      "coordinates":null,
+      "place":null,
+      "contributors":null,
+      "retweet_count":0,
+      "entities":{
+        "hashtags":[
+          {
+            "text":"ZF2",
+            "indices":[
+              57,
+              61
+            ]
+          }
+        ],
+        "urls":[
+          {
+            "url":"http:\/\/t.co\/Ujr826B8J6",
+            "expanded_url":"http:\/\/wp.me\/p2Eg2-y5",
+            "display_url":"wp.me\/p2Eg2-y5",
+            "indices":[
+              62,
+              84
+            ]
+          }
+        ],
+        "user_mentions":[
+
+        ]
+      },
+      "favorited":false,
+      "retweeted":false,
+      "possibly_sensitive":false,
+      "lang":"en"
+    },
+    {
+      "metadata":{
+        "result_type":"recent",
+        "iso_language_code":"en"
+      },
+      "created_at":"Thu Mar 07 20:07:38 +0000 2013",
+      "id":309757250757591040,
+      "id_str":"309757250757591040",
+      "text":"Throwing in a pinch of #jquery \u0026amp; a dash of #sass to make the #zf2 app just a little cooler. Feel like I\u0027m missing a unicorn or something tho",
+      "source":"web",
+      "truncated":false,
+      "in_reply_to_status_id":null,
+      "in_reply_to_status_id_str":null,
+      "in_reply_to_user_id":null,
+      "in_reply_to_user_id_str":null,
+      "in_reply_to_screen_name":null,
+      "user":{
+        "id":144638265,
+        "id_str":"144638265",
+        "name":"Mike Stowe",
+        "screen_name":"mikegstowe",
+        "location":"Minnesota",
+        "description":"MNPHP UG, TCSE UG, \u0026 MidwestPHP Organizer, PHP 5.3 Certified Software Engineer, MySQL, Mongo, Zend Framework, Mobile",
+        "url":"http:\/\/www.mikestowe.com\/category\/php",
+        "entities":{
+          "url":{
+            "urls":[
+              {
+                "url":"http:\/\/www.mikestowe.com\/category\/php",
+                "expanded_url":null,
+                "indices":[
+                  0,
+                  37
+                ]
+              }
+            ]
+          },
+          "description":{
+            "urls":[
+
+            ]
+          }
+        },
+        "protected":false,
+        "followers_count":308,
+        "friends_count":530,
+        "listed_count":21,
+        "created_at":"Sun May 16 22:20:28 +0000 2010",
+        "favourites_count":36,
+        "utc_offset":null,
+        "time_zone":null,
+        "geo_enabled":false,
+        "verified":false,
+        "statuses_count":1400,
+        "lang":"en",
+        "contributors_enabled":false,
+        "is_translator":false,
+        "profile_background_color":"131516",
+        "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/333616160\/1316564425_phpcode_287392.jpeg",
+        "profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/333616160\/1316564425_phpcode_287392.jpeg",
+        "profile_background_tile":true,
+        "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1806573970\/5b3a9b57-86b9-4e1c-8a70-5a882fd74997_normal.jpg",
+        "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1806573970\/5b3a9b57-86b9-4e1c-8a70-5a882fd74997_normal.jpg",
+        "profile_link_color":"009999",
+        "profile_sidebar_border_color":"EEEEEE",
+        "profile_sidebar_fill_color":"EFEFEF",
+        "profile_text_color":"333333",
+        "profile_use_background_image":true,
+        "default_profile":false,
+        "default_profile_image":false,
+        "following":null,
+        "follow_request_sent":null,
+        "notifications":null
+      },
+      "geo":null,
+      "coordinates":null,
+      "place":null,
+      "contributors":null,
+      "retweet_count":0,
+      "entities":{
+        "hashtags":[
+          {
+            "text":"jquery",
+            "indices":[
+              23,
+              30
+            ]
+          },
+          {
+            "text":"sass",
+            "indices":[
+              47,
+              52
+            ]
+          },
+          {
+            "text":"zf2",
+            "indices":[
+              65,
+              69
+            ]
+          }
+        ],
+        "urls":[
+
+        ],
+        "user_mentions":[
+
+        ]
+      },
+      "favorited":false,
+      "retweeted":false,
+      "lang":"en"
+    },
+    {
+      "metadata":{
+        "result_type":"recent",
+        "iso_language_code":"en"
+      },
+      "created_at":"Thu Mar 07 18:49:33 +0000 2013",
+      "id":309737602771218432,
+      "id_str":"309737602771218432",
+      "text":"RT @manchuck: Zend Tree Route with multiple segments http:\/\/t.co\/8J4Z3D4cxE #php #zf2",
+      "source":"\u003Ca href=\u0022http:\/\/twitter.com\/download\/iphone\u0022 rel=\u0022nofollow\u0022\u003ETwitter for iPhone\u003C\/a\u003E",
+      "truncated":false,
+      "in_reply_to_status_id":null,
+      "in_reply_to_status_id_str":null,
+      "in_reply_to_user_id":null,
+      "in_reply_to_user_id_str":null,
+      "in_reply_to_screen_name":null,
+      "user":{
+        "id":14915769,
+        "id_str":"14915769",
+        "name":"aljensen",
+        "screen_name":"aljensen7",
+        "location":"cyberspace!!!",
+        "description":"PHP \/ MySQL \/ JS \/ RHEL on one side, .Net on the other. ",
+        "url":"http:\/\/www.amazon.com\/Al-Jensen\/e\/B008MN382O\/",
+        "entities":{
+          "url":{
+            "urls":[
+              {
+                "url":"http:\/\/www.amazon.com\/Al-Jensen\/e\/B008MN382O\/",
+                "expanded_url":null,
+                "indices":[
+                  0,
+                  45
+                ]
+              }
+            ]
+          },
+          "description":{
+            "urls":[
+
+            ]
+          }
+        },
+        "protected":false,
+        "followers_count":275,
+        "friends_count":257,
+        "listed_count":2,
+        "created_at":"Tue May 27 02:08:04 +0000 2008",
+        "favourites_count":78,
+        "utc_offset":-21600,
+        "time_zone":"Central Time (US \u0026 Canada)",
+        "geo_enabled":false,
+        "verified":false,
+        "statuses_count":374,
+        "lang":"en",
+        "contributors_enabled":false,
+        "is_translator":false,
+        "profile_background_color":"EDECE9",
+        "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme3\/bg.gif",
+        "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme3\/bg.gif",
+        "profile_background_tile":false,
+        "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3336573137\/9012b74c0be4426e85fe35ac314e37ed_normal.jpeg",
+        "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3336573137\/9012b74c0be4426e85fe35ac314e37ed_normal.jpeg",
+        "profile_link_color":"088253",
+        "profile_sidebar_border_color":"D3D2CF",
+        "profile_sidebar_fill_color":"E3E2DE",
+        "profile_text_color":"634047",
+        "profile_use_background_image":true,
+        "default_profile":false,
+        "default_profile_image":false,
+        "following":null,
+        "follow_request_sent":null,
+        "notifications":null
+      },
+      "geo":null,
+      "coordinates":null,
+      "place":null,
+      "contributors":null,
+      "retweeted_status":{
+        "metadata":{
+          "result_type":"recent",
+          "iso_language_code":"en"
+        },
+        "created_at":"Thu Mar 07 15:19:48 +0000 2013",
+        "id":309684814796185601,
+        "id_str":"309684814796185601",
+        "text":"Zend Tree Route with multiple segments http:\/\/t.co\/8J4Z3D4cxE #php #zf2",
+        "source":"\u003Ca href=\u0022http:\/\/twitter.com\/tweetbutton\u0022 rel=\u0022nofollow\u0022\u003ETweet Button\u003C\/a\u003E",
+        "truncated":false,
+        "in_reply_to_status_id":null,
+        "in_reply_to_status_id_str":null,
+        "in_reply_to_user_id":null,
+        "in_reply_to_user_id_str":null,
+        "in_reply_to_screen_name":null,
+        "user":{
+          "id":9968732,
+          "id_str":"9968732",
+          "name":"Chuck Reeves",
+          "screen_name":"manchuck",
+          "location":"New York",
+          "description":"Caveman PHP developer",
+          "url":"http:\/\/manchuck.com",
+          "entities":{
+            "url":{
+              "urls":[
+                {
+                  "url":"http:\/\/manchuck.com",
+                  "expanded_url":null,
+                  "indices":[
+                    0,
+                    19
+                  ]
+                }
+              ]
+            },
+            "description":{
+              "urls":[
+
+              ]
+            }
+          },
+          "protected":false,
+          "followers_count":152,
+          "friends_count":176,
+          "listed_count":6,
+          "created_at":"Mon Nov 05 15:24:41 +0000 2007",
+          "favourites_count":5,
+          "utc_offset":-21600,
+          "time_zone":"Central Time (US \u0026 Canada)",
+          "geo_enabled":true,
+          "verified":false,
+          "statuses_count":1422,
+          "lang":"en",
+          "contributors_enabled":false,
+          "is_translator":false,
+          "profile_background_color":"9C9C00",
+          "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/338013543\/x60fb0339b234d2eb63eac885904a6e7.png",
+          "profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/338013543\/x60fb0339b234d2eb63eac885904a6e7.png",
+          "profile_background_tile":true,
+          "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1829881215\/manchuck_normal.jpg",
+          "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1829881215\/manchuck_normal.jpg",
+          "profile_link_color":"29B7EB",
+          "profile_sidebar_border_color":"D8BE64",
+          "profile_sidebar_fill_color":"99650A",
+          "profile_text_color":"000000",
+          "profile_use_background_image":true,
+          "default_profile":false,
+          "default_profile_image":false,
+          "following":null,
+          "follow_request_sent":null,
+          "notifications":null
+        },
+        "geo":null,
+        "coordinates":null,
+        "place":null,
+        "contributors":null,
+        "retweet_count":1,
+        "entities":{
+          "hashtags":[
+            {
+              "text":"php",
+              "indices":[
+                62,
+                66
+              ]
+            },
+            {
+              "text":"zf2",
+              "indices":[
+                67,
+                71
+              ]
+            }
+          ],
+          "urls":[
+            {
+              "url":"http:\/\/t.co\/8J4Z3D4cxE",
+              "expanded_url":"http:\/\/stackoverflow.com\/q\/15274762\/147366?stw=2",
+              "display_url":"stackoverflow.com\/q\/15274762\/147\u2026",
+              "indices":[
+                39,
+                61
+              ]
+            }
+          ],
+          "user_mentions":[
+
+          ]
+        },
+        "favorited":false,
+        "retweeted":false,
+        "possibly_sensitive":false,
+        "lang":"en"
+      },
+      "retweet_count":1,
+      "entities":{
+        "hashtags":[
+          {
+            "text":"php",
+            "indices":[
+              76,
+              80
+            ]
+          },
+          {
+            "text":"zf2",
+            "indices":[
+              81,
+              85
+            ]
+          }
+        ],
+        "urls":[
+          {
+            "url":"http:\/\/t.co\/8J4Z3D4cxE",
+            "expanded_url":"http:\/\/stackoverflow.com\/q\/15274762\/147366?stw=2",
+            "display_url":"stackoverflow.com\/q\/15274762\/147\u2026",
+            "indices":[
+              53,
+              75
+            ]
+          }
+        ],
+        "user_mentions":[
+          {
+            "screen_name":"manchuck",
+            "name":"Chuck Reeves",
+            "id":9968732,
+            "id_str":"9968732",
+            "indices":[
+              3,
+              12
+            ]
+          }
+        ]
+      },
+      "favorited":false,
+      "retweeted":false,
+      "possibly_sensitive":false,
+      "lang":"en"
+    },
+    {
+      "metadata":{
+        "result_type":"recent",
+        "iso_language_code":"en"
+      },
+      "created_at":"Thu Mar 07 16:21:37 +0000 2013",
+      "id":309700372367298561,
+      "id_str":"309700372367298561",
+      "text":"@mwop @brandonsavage Heard something recently about someone intending to spearhead \u0022documentation hunt days\u0022 similar to bug hunt days. #zf2",
+      "source":"web",
+      "truncated":false,
+      "in_reply_to_status_id":309687522936631298,
+      "in_reply_to_status_id_str":"309687522936631298",
+      "in_reply_to_user_id":9453382,
+      "in_reply_to_user_id_str":"9453382",
+      "in_reply_to_screen_name":"mwop",
+      "user":{
+        "id":9105122,
+        "id_str":"9105122",
+        "name":"Matthew Turland",
+        "screen_name":"elazar",
+        "location":"Duson, LA, USA",
+        "description":"father, geek, technophile, software developer, open source advocate, author, speaker, and budding ex-wallflower",
+        "url":"http:\/\/matthewturland.com",
+        "entities":{
+          "url":{
+            "urls":[
+              {
+                "url":"http:\/\/matthewturland.com",
+                "expanded_url":null,
+                "indices":[
+                  0,
+                  25
+                ]
+              }
+            ]
+          },
+          "description":{
+            "urls":[
+
+            ]
+          }
+        },
+        "protected":false,
+        "followers_count":2222,
+        "friends_count":522,
+        "listed_count":252,
+        "created_at":"Wed Sep 26 10:35:38 +0000 2007",
+        "favourites_count":408,
+        "utc_offset":-21600,
+        "time_zone":"Central Time (US \u0026 Canada)",
+        "geo_enabled":true,
+        "verified":false,
+        "statuses_count":29504,
+        "lang":"en",
+        "contributors_enabled":false,
+        "is_translator":false,
+        "profile_background_color":"C0DEED",
+        "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png",
+        "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png",
+        "profile_background_tile":false,
+        "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1674107936\/270483_808419244670_47912933_37915694_7250313_n_normal.jpg",
+        "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1674107936\/270483_808419244670_47912933_37915694_7250313_n_normal.jpg",
+        "profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/9105122\/1361049599",
+        "profile_link_color":"0084B4",
+        "profile_sidebar_border_color":"C0DEED",
+        "profile_sidebar_fill_color":"DDEEF6",
+        "profile_text_color":"333333",
+        "profile_use_background_image":true,
+        "default_profile":true,
+        "default_profile_image":false,
+        "following":null,
+        "follow_request_sent":null,
+        "notifications":null
+      },
+      "geo":null,
+      "coordinates":null,
+      "place":null,
+      "contributors":null,
+      "retweet_count":0,
+      "entities":{
+        "hashtags":[
+          {
+            "text":"zf2",
+            "indices":[
+              135,
+              139
+            ]
+          }
+        ],
+        "urls":[
+
+        ],
+        "user_mentions":[
+          {
+            "screen_name":"mwop",
+            "name":"weierophinney",
+            "id":9453382,
+            "id_str":"9453382",
+            "indices":[
+              0,
+              5
+            ]
+          },
+          {
+            "screen_name":"brandonsavage",
+            "name":"Brandon Savage",
+            "id":14993209,
+            "id_str":"14993209",
+            "indices":[
+              6,
+              20
+            ]
+          }
+        ]
+      },
+      "favorited":false,
+      "retweeted":false,
+      "lang":"en"
+    },
+    {
+      "metadata":{
+        "result_type":"recent",
+        "iso_language_code":"en"
+      },
+      "created_at":"Thu Mar 07 15:19:48 +0000 2013",
+      "id":309684814796185601,
+      "id_str":"309684814796185601",
+      "text":"Zend Tree Route with multiple segments http:\/\/t.co\/8J4Z3D4cxE #php #zf2",
+      "source":"\u003Ca href=\u0022http:\/\/twitter.com\/tweetbutton\u0022 rel=\u0022nofollow\u0022\u003ETweet Button\u003C\/a\u003E",
+      "truncated":false,
+      "in_reply_to_status_id":null,
+      "in_reply_to_status_id_str":null,
+      "in_reply_to_user_id":null,
+      "in_reply_to_user_id_str":null,
+      "in_reply_to_screen_name":null,
+      "user":{
+        "id":9968732,
+        "id_str":"9968732",
+        "name":"Chuck Reeves",
+        "screen_name":"manchuck",
+        "location":"New York",
+        "description":"Caveman PHP developer",
+        "url":"http:\/\/manchuck.com",
+        "entities":{
+          "url":{
+            "urls":[
+              {
+                "url":"http:\/\/manchuck.com",
+                "expanded_url":null,
+                "indices":[
+                  0,
+                  19
+                ]
+              }
+            ]
+          },
+          "description":{
+            "urls":[
+
+            ]
+          }
+        },
+        "protected":false,
+        "followers_count":152,
+        "friends_count":176,
+        "listed_count":6,
+        "created_at":"Mon Nov 05 15:24:41 +0000 2007",
+        "favourites_count":5,
+        "utc_offset":-21600,
+        "time_zone":"Central Time (US \u0026 Canada)",
+        "geo_enabled":true,
+        "verified":false,
+        "statuses_count":1422,
+        "lang":"en",
+        "contributors_enabled":false,
+        "is_translator":false,
+        "profile_background_color":"9C9C00",
+        "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/338013543\/x60fb0339b234d2eb63eac885904a6e7.png",
+        "profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/338013543\/x60fb0339b234d2eb63eac885904a6e7.png",
+        "profile_background_tile":true,
+        "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1829881215\/manchuck_normal.jpg",
+        "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1829881215\/manchuck_normal.jpg",
+        "profile_link_color":"29B7EB",
+        "profile_sidebar_border_color":"D8BE64",
+        "profile_sidebar_fill_color":"99650A",
+        "profile_text_color":"000000",
+        "profile_use_background_image":true,
+        "default_profile":false,
+        "default_profile_image":false,
+        "following":null,
+        "follow_request_sent":null,
+        "notifications":null
+      },
+      "geo":null,
+      "coordinates":null,
+      "place":null,
+      "contributors":null,
+      "retweet_count":1,
+      "entities":{
+        "hashtags":[
+          {
+            "text":"php",
+            "indices":[
+              62,
+              66
+            ]
+          },
+          {
+            "text":"zf2",
+            "indices":[
+              67,
+              71
+            ]
+          }
+        ],
+        "urls":[
+          {
+            "url":"http:\/\/t.co\/8J4Z3D4cxE",
+            "expanded_url":"http:\/\/stackoverflow.com\/q\/15274762\/147366?stw=2",
+            "display_url":"stackoverflow.com\/q\/15274762\/147\u2026",
+            "indices":[
+              39,
+              61
+            ]
+          }
+        ],
+        "user_mentions":[
+
+        ]
+      },
+      "favorited":false,
+      "retweeted":false,
+      "possibly_sensitive":false,
+      "lang":"en"
+    },
+    {
+      "metadata":{
+        "result_type":"recent",
+        "iso_language_code":"en"
+      },
+      "created_at":"Thu Mar 07 14:57:24 +0000 2013",
+      "id":309679180591820800,
+      "id_str":"309679180591820800",
+      "text":"#ZF2 slowly gets fun!",
+      "source":"\u003Ca href=\u0022http:\/\/twitter.com\/download\/iphone\u0022 rel=\u0022nofollow\u0022\u003ETwitter for iPhone\u003C\/a\u003E",
+      "truncated":false,
+      "in_reply_to_status_id":null,
+      "in_reply_to_status_id_str":null,
+      "in_reply_to_user_id":null,
+      "in_reply_to_user_id_str":null,
+      "in_reply_to_screen_name":null,
+      "user":{
+        "id":296797672,
+        "id_str":"296797672",
+        "name":"Chuvisco",
+        "screen_name":"chuvisco88",
+        "location":"",
+        "description":"",
+        "url":null,
+        "entities":{
+          "description":{
+            "urls":[
+
+            ]
+          }
+        },
+        "protected":false,
+        "followers_count":3,
+        "friends_count":8,
+        "listed_count":0,
+        "created_at":"Wed May 11 12:27:48 +0000 2011",
+        "favourites_count":0,
+        "utc_offset":null,
+        "time_zone":null,
+        "geo_enabled":false,
+        "verified":false,
+        "statuses_count":12,
+        "lang":"de",
+        "contributors_enabled":false,
+        "is_translator":false,
+        "profile_background_color":"C0DEED",
+        "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png",
+        "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png",
+        "profile_background_tile":false,
+        "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3225122929\/31390b1a496711e54a8840cffc1a121d_normal.jpeg",
+        "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3225122929\/31390b1a496711e54a8840cffc1a121d_normal.jpeg",
+        "profile_link_color":"0084B4",
+        "profile_sidebar_border_color":"C0DEED",
+        "profile_sidebar_fill_color":"DDEEF6",
+        "profile_text_color":"333333",
+        "profile_use_background_image":true,
+        "default_profile":true,
+        "default_profile_image":false,
+        "following":null,
+        "follow_request_sent":null,
+        "notifications":null
+      },
+      "geo":null,
+      "coordinates":null,
+      "place":null,
+      "contributors":null,
+      "retweet_count":0,
+      "entities":{
+        "hashtags":[
+          {
+            "text":"ZF2",
+            "indices":[
+              0,
+              4
+            ]
+          }
+        ],
+        "urls":[
+
+        ],
+        "user_mentions":[
+
+        ]
+      },
+      "favorited":false,
+      "retweeted":false,
+      "lang":"en"
+    },
+    {
+      "metadata":{
+        "result_type":"recent",
+        "iso_language_code":"en"
+      },
+      "created_at":"Thu Mar 07 10:40:14 +0000 2013",
+      "id":309614459977093120,
+      "id_str":"309614459977093120",
+      "text":"@samitrimal #zf2 is much alike #dotnet, use of namespaces and hell alot of php5.3 and als0 some magic stuffs!! #whatsurthoughts",
+      "source":"web",
+      "truncated":false,
+      "in_reply_to_status_id":null,
+      "in_reply_to_status_id_str":null,
+      "in_reply_to_user_id":192501541,
+      "in_reply_to_user_id_str":"192501541",
+      "in_reply_to_screen_name":"samitrimal",
+      "user":{
+        "id":152136820,
+        "id_str":"152136820",
+        "name":"Kabir Maharjan",
+        "screen_name":"kbirmhrjn",
+        "location":"Kathmandu, Nepal",
+        "description":"Programmer, Coder, Developer you name it",
+        "url":"http:\/\/t.co\/i3G4hKeKT2",
+        "entities":{
+          "url":{
+            "urls":[
+              {
+                "url":"http:\/\/t.co\/i3G4hKeKT2",
+                "expanded_url":"http:\/\/kbir-mhrjn.com.np",
+                "display_url":"kbir-mhrjn.com.np",
+                "indices":[
+                  0,
+                  22
+                ]
+              }
+            ]
+          },
+          "description":{
+            "urls":[
+
+            ]
+          }
+        },
+        "protected":false,
+        "followers_count":36,
+        "friends_count":369,
+        "listed_count":0,
+        "created_at":"Sat Jun 05 04:56:53 +0000 2010",
+        "favourites_count":19,
+        "utc_offset":20700,
+        "time_zone":"Kathmandu",
+        "geo_enabled":true,
+        "verified":false,
+        "statuses_count":859,
+        "lang":"en",
+        "contributors_enabled":false,
+        "is_translator":false,
+        "profile_background_color":"0099B9",
+        "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/767764163\/d3d341002c3eefb2a99440c3dcad1ca0.jpeg",
+        "profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/767764163\/d3d341002c3eefb2a99440c3dcad1ca0.jpeg",
+        "profile_background_tile":true,
+        "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3038487941\/c88a127241c6b5107417c153a15bdc25_normal.jpeg",
+        "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3038487941\/c88a127241c6b5107417c153a15bdc25_normal.jpeg",
+        "profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/152136820\/1357968278",
+        "profile_link_color":"0099B9",
+        "profile_sidebar_border_color":"FFFFFF",
+        "profile_sidebar_fill_color":"DDEEF6",
+        "profile_text_color":"333333",
+        "profile_use_background_image":true,
+        "default_profile":false,
+        "default_profile_image":false,
+        "following":null,
+        "follow_request_sent":null,
+        "notifications":null
+      },
+      "geo":null,
+      "coordinates":null,
+      "place":null,
+      "contributors":null,
+      "retweet_count":0,
+      "entities":{
+        "hashtags":[
+          {
+            "text":"zf2",
+            "indices":[
+              12,
+              16
+            ]
+          },
+          {
+            "text":"dotnet",
+            "indices":[
+              31,
+              38
+            ]
+          },
+          {
+            "text":"whatsurthoughts",
+            "indices":[
+              111,
+              127
+            ]
+          }
+        ],
+        "urls":[
+
+        ],
+        "user_mentions":[
+          {
+            "screen_name":"samitrimal",
+            "name":"Samit Rimal",
+            "id":192501541,
+            "id_str":"192501541",
+            "indices":[
+              0,
+              11
+            ]
+          }
+        ]
+      },
+      "favorited":false,
+      "retweeted":false,
+      "lang":"en"
+    },
+    {
+      "metadata":{
+        "result_type":"recent",
+        "iso_language_code":"en"
+      },
+      "created_at":"Thu Mar 07 09:30:17 +0000 2013",
+      "id":309596856739057664,
+      "id_str":"309596856739057664",
+      "text":"Comparison of Yii Framework and Zend Framework 2 | Techknowlogists http:\/\/t.co\/geowf6XbJ2 #zend #zf2 #yii #php #framework",
+      "source":"\u003Ca href=\u0022http:\/\/bufferapp.com\u0022 rel=\u0022nofollow\u0022\u003EBuffer\u003C\/a\u003E",
+      "truncated":false,
+      "in_reply_to_status_id":null,
+      "in_reply_to_status_id_str":null,
+      "in_reply_to_user_id":null,
+      "in_reply_to_user_id_str":null,
+      "in_reply_to_screen_name":null,
+      "user":{
+        "id":276683484,
+        "id_str":"276683484",
+        "name":"Nicolas Hachet",
+        "screen_name":"nicolashachet",
+        "location":"Nantes, France",
+        "description":"D\u00e9veloppeur Web - Lead dev #PHP @ #Nantes\r\n\u2014 Frameworks #CakePHP | #Symfony | #Zend\r\n\r\n\u2014 #Entrepreneur | #Blogueur | #Geek\r\n",
+        "url":"http:\/\/blog.nicolashachet.com\/",
+        "entities":{
+          "url":{
+            "urls":[
+              {
+                "url":"http:\/\/blog.nicolashachet.com\/",
+                "expanded_url":null,
+                "indices":[
+                  0,
+                  30
+                ]
+              }
+            ]
+          },
+          "description":{
+            "urls":[
+
+            ]
+          }
+        },
+        "protected":false,
+        "followers_count":163,
+        "friends_count":50,
+        "listed_count":11,
+        "created_at":"Sun Apr 03 21:36:08 +0000 2011",
+        "favourites_count":1,
+        "utc_offset":-10800,
+        "time_zone":"Greenland",
+        "geo_enabled":true,
+        "verified":false,
+        "statuses_count":2334,
+        "lang":"fr",
+        "contributors_enabled":false,
+        "is_translator":false,
+        "profile_background_color":"0099B9",
+        "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme4\/bg.gif",
+        "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme4\/bg.gif",
+        "profile_background_tile":false,
+        "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2611057107\/v8m3c7orm7njk4r7hegy_normal.png",
+        "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2611057107\/v8m3c7orm7njk4r7hegy_normal.png",
+        "profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/276683484\/1348910990",
+        "profile_link_color":"0099B9",
+        "profile_sidebar_border_color":"FFFFFF",
+        "profile_sidebar_fill_color":"95E8EC",
+        "profile_text_color":"3C3940",
+        "profile_use_background_image":true,
+        "default_profile":false,
+        "default_profile_image":false,
+        "following":null,
+        "follow_request_sent":null,
+        "notifications":null
+      },
+      "geo":null,
+      "coordinates":null,
+      "place":null,
+      "contributors":null,
+      "retweet_count":0,
+      "entities":{
+        "hashtags":[
+          {
+            "text":"zend",
+            "indices":[
+              90,
+              95
+            ]
+          },
+          {
+            "text":"zf2",
+            "indices":[
+              96,
+              100
+            ]
+          },
+          {
+            "text":"yii",
+            "indices":[
+              101,
+              105
+            ]
+          },
+          {
+            "text":"php",
+            "indices":[
+              106,
+              110
+            ]
+          },
+          {
+            "text":"framework",
+            "indices":[
+              111,
+              121
+            ]
+          }
+        ],
+        "urls":[
+          {
+            "url":"http:\/\/t.co\/geowf6XbJ2",
+            "expanded_url":"http:\/\/buff.ly\/ZahERE",
+            "display_url":"buff.ly\/ZahERE",
+            "indices":[
+              67,
+              89
+            ]
+          }
+        ],
+        "user_mentions":[
+
+        ]
+      },
+      "favorited":false,
+      "retweeted":false,
+      "possibly_sensitive":false,
+      "lang":"en"
+    },
+    {
+      "metadata":{
+        "result_type":"recent",
+        "iso_language_code":"en"
+      },
+      "created_at":"Thu Mar 07 09:00:42 +0000 2013",
+      "id":309589412247908352,
+      "id_str":"309589412247908352",
+      "text":"Latest News about #zendframework #zf2 http:\/\/t.co\/JMBFRdm0Sn",
+      "source":"\u003Ca href=\u0022http:\/\/www.tweetedtimes.com\u0022 rel=\u0022nofollow\u0022\u003EThe Tweeted Times\u003C\/a\u003E",
+      "truncated":false,
+      "in_reply_to_status_id":null,
+      "in_reply_to_status_id_str":null,
+      "in_reply_to_user_id":null,
+      "in_reply_to_user_id_str":null,
+      "in_reply_to_screen_name":null,
+      "user":{
+        "id":17393120,
+        "id_str":"17393120",
+        "name":"Daniel Sousa",
+        "screen_name":"danielosousa",
+        "location":"Valongo, Porto, Portugal",
+        "description":"@Magento Moderator. Build your online store with @Magento the best online shopping cart.\r\nSegue as novidades do Magento em Portugu\u00eas. #magentopt",
+        "url":"http:\/\/www.dsecomm.com",
+        "entities":{
+          "url":{
+            "urls":[
+              {
+                "url":"http:\/\/www.dsecomm.com",
+                "expanded_url":null,
+                "indices":[
+                  0,
+                  22
+                ]
+              }
+            ]
+          },
+          "description":{
+            "urls":[
+
+            ]
+          }
+        },
+        "protected":false,
+        "followers_count":141,
+        "friends_count":389,
+        "listed_count":9,
+        "created_at":"Fri Nov 14 18:55:55 +0000 2008",
+        "favourites_count":5,
+        "utc_offset":0,
+        "time_zone":"Lisbon",
+        "geo_enabled":true,
+        "verified":false,
+        "statuses_count":563,
+        "lang":"pt",
+        "contributors_enabled":false,
+        "is_translator":false,
+        "profile_background_color":"1A1B1F",
+        "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme6\/bg.gif",
+        "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme6\/bg.gif",
+        "profile_background_tile":false,
+        "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2328951193\/rz86toewk0jrsdapgf5b_normal.jpeg",
+        "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2328951193\/rz86toewk0jrsdapgf5b_normal.jpeg",
+        "profile_link_color":"2FC2EF",
+        "profile_sidebar_border_color":"8F86D0",
+        "profile_sidebar_fill_color":"FBE0A7",
+        "profile_text_color":"4455CF",
+        "profile_use_background_image":false,
+        "default_profile":false,
+        "default_profile_image":false,
+        "following":null,
+        "follow_request_sent":null,
+        "notifications":null
+      },
+      "geo":null,
+      "coordinates":null,
+      "place":null,
+      "contributors":null,
+      "retweet_count":0,
+      "entities":{
+        "hashtags":[
+          {
+            "text":"zendframework",
+            "indices":[
+              18,
+              32
+            ]
+          },
+          {
+            "text":"zf2",
+            "indices":[
+              33,
+              37
+            ]
+          }
+        ],
+        "urls":[
+          {
+            "url":"http:\/\/t.co\/JMBFRdm0Sn",
+            "expanded_url":"http:\/\/tweetedtimes.com\/search\/zf2%20OR%20zendframework\/en",
+            "display_url":"tweetedtimes.com\/search\/zf2%20O\u2026",
+            "indices":[
+              38,
+              60
+            ]
+          }
+        ],
+        "user_mentions":[
+
+        ]
+      },
+      "favorited":false,
+      "retweeted":false,
+      "possibly_sensitive":false,
+      "lang":"en"
+    },
+    {
+      "metadata":{
+        "result_type":"recent",
+        "iso_language_code":"fr"
+      },
+      "created_at":"Thu Mar 07 09:00:24 +0000 2013",
+      "id":309589336578465792,
+      "id_str":"309589336578465792",
+      "text":"Encore une bonne partie de la nuit pass\u00e9e sur #nodeJS avec #webstorm ,  mon stack #php #zf2 #zendStudio est moins sexy ce matin.",
+      "source":"web",
+      "truncated":false,
+      "in_reply_to_status_id":null,
+      "in_reply_to_status_id_str":null,
+      "in_reply_to_user_id":null,
+      "in_reply_to_user_id_str":null,
+      "in_reply_to_screen_name":null,
+      "user":{
+        "id":278240828,
+        "id_str":"278240828",
+        "name":"St\u00e9phane Bonnet",
+        "screen_name":"sbonnet2107",
+        "location":"France, Toulouse",
+        "description":"",
+        "url":null,
+        "entities":{
+          "description":{
+            "urls":[
+
+            ]
+          }
+        },
+        "protected":false,
+        "followers_count":86,
+        "friends_count":210,
+        "listed_count":9,
+        "created_at":"Wed Apr 06 22:07:20 +0000 2011",
+        "favourites_count":30,
+        "utc_offset":3600,
+        "time_zone":"Paris",
+        "geo_enabled":true,
+        "verified":false,
+        "statuses_count":908,
+        "lang":"fr",
+        "contributors_enabled":false,
+        "is_translator":false,
+        "profile_background_color":"C0DEED",
+        "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png",
+        "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png",
+        "profile_background_tile":false,
+        "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2774597537\/afd57bef8e7ccf492850101389fd2b86_normal.jpeg",
+        "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2774597537\/afd57bef8e7ccf492850101389fd2b86_normal.jpeg",
+        "profile_link_color":"0084B4",
+        "profile_sidebar_border_color":"C0DEED",
+        "profile_sidebar_fill_color":"DDEEF6",
+        "profile_text_color":"333333",
+        "profile_use_background_image":true,
+        "default_profile":true,
+        "default_profile_image":false,
+        "following":null,
+        "follow_request_sent":null,
+        "notifications":null
+      },
+      "geo":null,
+      "coordinates":null,
+      "place":null,
+      "contributors":null,
+      "retweet_count":0,
+      "entities":{
+        "hashtags":[
+          {
+            "text":"nodeJS",
+            "indices":[
+              46,
+              53
+            ]
+          },
+          {
+            "text":"webstorm",
+            "indices":[
+              59,
+              68
+            ]
+          },
+          {
+            "text":"php",
+            "indices":[
+              82,
+              86
+            ]
+          },
+          {
+            "text":"zf2",
+            "indices":[
+              87,
+              91
+            ]
+          },
+          {
+            "text":"zendStudio",
+            "indices":[
+              92,
+              103
+            ]
+          }
+        ],
+        "urls":[
+
+        ],
+        "user_mentions":[
+
+        ]
+      },
+      "favorited":false,
+      "retweeted":false,
+      "lang":"fr"
+    },
+    {
+      "metadata":{
+        "result_type":"recent",
+        "iso_language_code":"en"
+      },
+      "created_at":"Thu Mar 07 08:41:04 +0000 2013",
+      "id":309584473463353344,
+      "id_str":"309584473463353344",
+      "text":"@davidwindell via an IRC conversation with @mwop. I knew #symfony had the option, wondered whether it was there already for #zf2",
+      "source":"\u003Ca href=\u0022http:\/\/twitter.com\/download\/android\u0022 rel=\u0022nofollow\u0022\u003ETwitter for Android\u003C\/a\u003E",
+      "truncated":false,
+      "in_reply_to_status_id":309573519556100096,
+      "in_reply_to_status_id_str":"309573519556100096",
+      "in_reply_to_user_id":16421278,
+      "in_reply_to_user_id_str":"16421278",
+      "in_reply_to_screen_name":"davidwindell",
+      "user":{
+        "id":2272821,
+        "id_str":"2272821",
+        "name":"Jurian Sluiman",
+        "screen_name":"juriansluiman",
+        "location":"Delft, NL",
+        "description":"Student Biomedical Engineering, co-founder of Soflomo",
+        "url":"http:\/\/juriansluiman.nl",
+        "entities":{
+          "url":{
+            "urls":[
+              {
+                "url":"http:\/\/juriansluiman.nl",
+                "expanded_url":null,
+                "indices":[
+                  0,
+                  23
+                ]
+              }
+            ]
+          },
+          "description":{
+            "urls":[
+
+            ]
+          }
+        },
+        "protected":false,
+        "followers_count":202,
+        "friends_count":83,
+        "listed_count":20,
+        "created_at":"Mon Mar 26 08:19:48 +0000 2007",
+        "favourites_count":125,
+        "utc_offset":3600,
+        "time_zone":"Amsterdam",
+        "geo_enabled":true,
+        "verified":false,
+        "statuses_count":1845,
+        "lang":"en",
+        "contributors_enabled":false,
+        "is_translator":false,
+        "profile_background_color":"022330",
+        "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme15\/bg.png",
+        "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme15\/bg.png",
+        "profile_background_tile":false,
+        "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1158735180\/jurian_normal.jpg",
+        "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1158735180\/jurian_normal.jpg",
+        "profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/2272821\/1349701194",
+        "profile_link_color":"0084B4",
+        "profile_sidebar_border_color":"FFFFFF",
+        "profile_sidebar_fill_color":"C0DFEC",
+        "profile_text_color":"333333",
+        "profile_use_background_image":true,
+        "default_profile":false,
+        "default_profile_image":false,
+        "following":null,
+        "follow_request_sent":null,
+        "notifications":null
+      },
+      "geo":null,
+      "coordinates":null,
+      "place":null,
+      "contributors":null,
+      "retweet_count":0,
+      "entities":{
+        "hashtags":[
+          {
+            "text":"symfony",
+            "indices":[
+              57,
+              65
+            ]
+          },
+          {
+            "text":"zf2",
+            "indices":[
+              124,
+              128
+            ]
+          }
+        ],
+        "urls":[
+
+        ],
+        "user_mentions":[
+          {
+            "screen_name":"davidwindell",
+            "name":"David Windell",
+            "id":16421278,
+            "id_str":"16421278",
+            "indices":[
+              0,
+              13
+            ]
+          },
+          {
+            "screen_name":"mwop",
+            "name":"weierophinney",
+            "id":9453382,
+            "id_str":"9453382",
+            "indices":[
+              43,
+              48
+            ]
+          }
+        ]
+      },
+      "favorited":false,
+      "retweeted":false,
+      "lang":"en"
+    }
+  ],
+  "search_metadata":{
+    "completed_in":0.043,
+    "max_id":309791187840167938,
+    "max_id_str":"309791187840167938",
+    "next_results":"?max_id=309584473463353343\u0026q=%23zf2\u0026include_entities=1",
+    "query":"%23zf2",
+    "refresh_url":"?since_id=309791187840167938\u0026q=%23zf2\u0026include_entities=1",
+    "count":15,
+    "since_id":0,
+    "since_id_str":"0"
+  }
+}

+ 74 - 0
tests/Zend/Service/Twitter/_files/statuses.destroy.json

@@ -0,0 +1,74 @@
+{
+    "contributors": null,
+    "coordinates": null,
+    "created_at": "Sun May 30 13:48:40 +0000 2010",
+    "entities": {
+        "hashtags": [],
+        "media": [],
+        "urls": [ ],
+        "user_mentions": []
+    },
+    "favorited": false,
+    "geo": null,
+    "id": 15042159587,
+    "id_user": "15042159587",
+    "in_reply_to_screen_name": null,
+    "in_reply_to_status_id": null,
+    "in_reply_to_status_id_str": null,
+    "in_reply_to_user_id": null,
+    "in_reply_to_user_id_str": null,
+    "place": null,
+    "possibly_sensitive_editable": false,
+    "possibly_sensitive": false,
+    "retweet_count": 0,
+    "retweeted": false,
+    "source": "<a href=\"http://apiwiki.twitter.com/\" rel=\"nofollow\">API</a>",
+    "text": "Test Message 1",
+    "truncated": false,
+    "user": {
+        "contributors_enabled": false,
+        "created_at": "Mon Sep 24 19:35:22 +0000 2007",
+        "default_profile": false,
+        "default_profile_image": false,
+        "description": "PHP Developer, Open Source Contributor, and FS Audit Consultant",
+        "entities": {
+            "hashtags": [],
+            "urls": [],
+            "user_mentions": []
+        },
+        "expanded_url": null,
+        "favourites_count": 21,
+        "followers_count": 848,
+        "following": false,
+        "follow_request_sent": false,
+        "friends_count": 469,
+        "geo_enabled": false,
+        "id": 9075802,
+        "id_str": "9075802",
+        "is_translator": false,
+        "lang": "en",
+        "listed_count": 0,
+        "location": "Dublin, Ireland, Europe!",
+        "name": "Pádraic Brady",
+        "notifications": false,
+        "profile_background_color": "022330",
+        "profile_background_image_url": "http://a0.twimg.com/a/1274899949/images/themes/theme15/bg.png",
+        "profile_background_image_url_https": "https://si0.twimg.com/a/1274899949/images/themes/theme15/bg.png",
+        "profile_background_tile": false,
+        "profile_image_url": "http://a1.twimg.com/profile_images/374757042/twitterProfilePhoto_normal.jpg",
+        "profile_image_url_https": "https://si1.twimg.com/profile_images/374757042/twitterProfilePhoto_normal.jpg",
+        "profile_link_color": "0084B4",
+        "profile_sidebar_border_color": "a8c7f7",
+        "profile_sidebar_fill_color": "C0DFEC",
+        "profile_text_color": 333333,
+        "profile_use_background_image": true,
+        "protected": false,
+        "screen_name": "padraicb",
+        "show_all_inline_media": false,
+        "statuses_count": 5928,
+        "time_zone": "Dublin",
+        "url": "http://blog.astrumfutura.com",
+        "utc_offset": 0,
+        "verified": false
+    }
+}

+ 0 - 46
tests/Zend/Service/Twitter/_files/statuses.destroy.xml

@@ -1,46 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<status>
-  <created_at>Sun May 30 13:48:40 +0000 2010</created_at>
-  <id>15042159587</id>
-  <text>Test Message 1</text>
-  <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>9075802</id>
-    <name>Pádraic Brady</name>
-    <screen_name>padraicb</screen_name>
-    <location>Dublin, Ireland, Europe!</location>
-    <description>PHP Developer, Open Source Contributor, and FS Audit Consultant</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/374757042/twitterProfilePhoto_normal.jpg</profile_image_url>
-    <url>http://blog.astrumfutura.com</url>
-    <protected>false</protected>
-    <followers_count>848</followers_count>
-    <profile_background_color>022330</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>0084B4</profile_link_color>
-    <profile_sidebar_fill_color>C0DFEC</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>a8c7f7</profile_sidebar_border_color>
-    <friends_count>469</friends_count>
-    <created_at>Mon Sep 24 19:35:22 +0000 2007</created_at>
-    <favourites_count>21</favourites_count>
-    <utc_offset>0</utc_offset>
-    <time_zone>Dublin</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme15/bg.png</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>false</following>
-    <statuses_count>5928</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>

+ 0 - 4605
tests/Zend/Service/Twitter/_files/statuses.followers.xml

@@ -1,4605 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<users type="array">
-<user>
-  <id>26839591</id>
-  <name>Likely.To</name>
-  <screen_name>likelyto</screen_name>
-  <location>Everywhere and nowhere.</location>
-  <description>Having fun with lots of cool friends.</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/114614118/sss5_normal.png</profile_image_url>
-  <url>http://Likely.To/</url>
-  <protected>false</protected>
-  <followers_count>12063</followers_count>
-  <profile_background_color>FF6699</profile_background_color>
-  <profile_text_color>362720</profile_text_color>
-  <profile_link_color>B40B43</profile_link_color>
-  <profile_sidebar_fill_color>E5507E</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>CC3366</profile_sidebar_border_color>
-  <friends_count>10941</friends_count>
-  <created_at>Thu Mar 26 20:20:13 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme11/bg.gif</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>61</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri Apr 09 00:44:56 +0000 2010</created_at>
-    <id>11853071898</id>
-    <text>could use some help testing my site.  I added more features finally.  http://likely.to/  thx all.  *waves*</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>137929178</id>
-  <name>Matthew Hellinger</name>
-  <screen_name>webspaceinc</screen_name>
-  <location>Birmingham, AL</location>
-  <description>CEO of Webspace Enterprises, Inc.</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/858215349/ProfilePhoto_normal.jpg</profile_image_url>
-  <url>http://www.webspaceinc.com</url>
-  <protected>false</protected>
-  <followers_count>244</followers_count>
-  <profile_background_color>022330</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>0084B4</profile_link_color>
-  <profile_sidebar_fill_color>C0DFEC</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>a8c7f7</profile_sidebar_border_color>
-  <friends_count>878</friends_count>
-  <created_at>Wed Apr 28 04:40:31 +0000 2010</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset/>
-  <time_zone/>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme15/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>11</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Mon May 24 15:41:10 +0000 2010</created_at>
-    <id>14630801221</id>
-    <text>Toyota partnering with Tesla for Model S. Cool!</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>14310904</id>
-  <name>Bernd Matzner</name>
-  <screen_name>bmatzner</screen_name>
-  <location>Berlin</location>
-  <description/>
-  <profile_image_url>http://a1.twimg.com/profile_images/54353746/berndmatzner-twitter_normal.jpg</profile_image_url>
-  <url>http://berndmatzner.de</url>
-  <protected>false</protected>
-  <followers_count>50</followers_count>
-  <profile_background_color>1A2D30</profile_background_color>
-  <profile_text_color>1A2D30</profile_text_color>
-  <profile_link_color>621A1A</profile_link_color>
-  <profile_sidebar_fill_color>CFD6D7</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>CFD6D7</profile_sidebar_border_color>
-  <friends_count>81</friends_count>
-  <created_at>Sat Apr 05 15:58:00 +0000 2008</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Berlin</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>65</statuses_count>
-  <lang>de</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Wed May 26 19:17:35 +0000 2010</created_at>
-    <id>14782919693</id>
-    <text>just installed the Google Analytics Opt-Out add-on for browser. Feels good. http://tools.google.com/dlpage/gaoptout</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>87470812</id>
-  <name>Christian Albrecht</name>
-  <screen_name>c_alb</screen_name>
-  <location>Munich, Germany</location>
-  <description>self-taught coder applying  Zend Framework php &amp; jQuery, 
-Zend_Form Lead Maintainer</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/802030278/twitter3_normal.png</profile_image_url>
-  <url>http://christian-albrecht.info</url>
-  <protected>false</protected>
-  <followers_count>42</followers_count>
-  <profile_background_color>022330</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>0084B4</profile_link_color>
-  <profile_sidebar_fill_color>C0DFEC</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>a8c7f7</profile_sidebar_border_color>
-  <friends_count>70</friends_count>
-  <created_at>Wed Nov 04 16:08:43 +0000 2009</created_at>
-  <favourites_count>4</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Berlin</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme15/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>160</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 29 18:20:58 +0000 2010</created_at>
-    <id>14990769746</id>
-    <text>Out of Rosenheim in tv now :D</text>
-    <source>&lt;a href="http://funkatron.com/spaz" rel="nofollow"&gt;Spaz&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>89178844</id>
-  <name>Andrey Shevchenko</name>
-  <screen_name>distdev</screen_name>
-  <location/>
-  <description>PHP developer / Zend Certified Engineer :)</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/598948962/dd_normal.gif</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>30</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>54</friends_count>
-  <created_at>Wed Nov 11 12:58:21 +0000 2009</created_at>
-  <favourites_count>4</favourites_count>
-  <utc_offset>7200</utc_offset>
-  <time_zone>Kyiv</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>229</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 10:03:31 +0000 2010</created_at>
-    <id>15032621202</id>
-    <text>Харьковский Интернет вошел в десятку самых высокоскоростных в мире O.o http://bit.ly/bwEqpJ #Kharkov</text>
-    <source>&lt;a href="http://www.echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>7501222</id>
-  <name>bpizzi</name>
-  <screen_name>bpizzi</screen_name>
-  <location>France / Lyon</location>
-  <description>Un évangélisateur des ntic perdu dans le monde professionnel préhistorique français, ébahis par le travail qu'il lui reste à accomplir.</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/23343532/moi7_normal.jpg</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>35</followers_count>
-  <profile_background_color>673300</profile_background_color>
-  <profile_text_color>B26418</profile_text_color>
-  <profile_link_color>C12D06</profile_link_color>
-  <profile_sidebar_fill_color>FACA9A</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>B45B04</profile_sidebar_border_color>
-  <friends_count>44</friends_count>
-  <created_at>Mon Jul 16 08:35:24 +0000 2007</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Paris</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>56</statuses_count>
-  <lang>fr</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 16:38:55 +0000 2010</created_at>
-    <id>14917930178</id>
-    <text>I've been Tweeting since July 16, 2007 (1047 days). How about you? - http://HowLongOnTwitter.com</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>138227780</id>
-  <name>BringBackSeeker</name>
-  <screen_name>BringBackSeeker</screen_name>
-  <location>Gate City, VA</location>
-  <description>Dedicated to bringing back Legend of the Seeker to TV.</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/858837071/lots_normal.JPG</profile_image_url>
-  <url>http://bringbacktheseeker.com/</url>
-  <protected>false</protected>
-  <followers_count>584</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>1458</friends_count>
-  <created_at>Thu Apr 29 00:09:21 +0000 2010</created_at>
-  <favourites_count>2</favourites_count>
-  <utc_offset>-18000</utc_offset>
-  <time_zone>Quito</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274739546/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>506</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 29 16:26:15 +0000 2010</created_at>
-    <id>14984621714</id>
-    <text>RT @SilentWatchman: vote Legend of the Seeker for "TV Show of the Month" http://faxo.com/t</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <retweeted_status>
-      <created_at>Sat May 29 16:22:05 +0000 2010</created_at>
-      <id>14984381408</id>
-      <text>vote Legend of the Seeker for "TV Show of the Month" http://faxo.com/t</text>
-      <source>&lt;a href="http://faxo.com/" rel="nofollow"&gt;Faxo.com&lt;/a&gt;</source>
-      <truncated>false</truncated>
-      <in_reply_to_status_id/>
-      <in_reply_to_user_id/>
-      <favorited>false</favorited>
-      <in_reply_to_screen_name/>
-      <geo/>
-      <coordinates/>
-      <place/>
-      <contributors/>
-    </retweeted_status>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>41372905</id>
-  <name>Kornienko Alex</name>
-  <screen_name>Skorney</screen_name>
-  <location>Kiev</location>
-  <description/>
-  <profile_image_url>http://a3.twimg.com/profile_images/837956805/24747_normal.jpg</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>18</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>29</friends_count>
-  <created_at>Wed May 20 14:51:11 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset/>
-  <time_zone/>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>12</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 08:51:13 +0000 2010</created_at>
-    <id>14894030650</id>
-    <text>RT @fabpot: just pushed the #symfony 2 #propel bundle to my repo (still alpha but works) http://github.com/fabpot/symfony</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <retweeted_status>
-      <created_at>Thu May 27 15:33:01 +0000 2010</created_at>
-      <id>14841757090</id>
-      <text>just pushed the #symfony 2 #propel bundle to my repo (still alpha but works) http://github.com/fabpot/symfony</text>
-      <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
-      <truncated>false</truncated>
-      <in_reply_to_status_id/>
-      <in_reply_to_user_id/>
-      <favorited>false</favorited>
-      <in_reply_to_screen_name/>
-      <geo/>
-      <coordinates/>
-      <place/>
-      <contributors/>
-    </retweeted_status>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>8723432</id>
-  <name>Szabolcs Sulik</name>
-  <screen_name>blerou</screen_name>
-  <location>Budapest</location>
-  <description/>
-  <profile_image_url>http://a1.twimg.com/profile_images/717349044/45bd4ecd13d1638348596e7eb749070b_normal.jpeg</profile_image_url>
-  <url>http://bleroutoolkit.wordpress.com</url>
-  <protected>false</protected>
-  <followers_count>8</followers_count>
-  <profile_background_color>022330</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>0084B4</profile_link_color>
-  <profile_sidebar_fill_color>C0DFEC</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>a8c7f7</profile_sidebar_border_color>
-  <friends_count>15</friends_count>
-  <created_at>Fri Sep 07 13:12:34 +0000 2007</created_at>
-  <favourites_count>2</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Budapest</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274130900/images/themes/theme15/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>8</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Mon Apr 19 09:29:06 +0000 2010</created_at>
-    <id>12446898577</id>
-    <text>RT @vsbmeza: Cola-pop :) (2 coke exploded due to the freezing temperature in our fridge)  http://twitpic.com/1grsvd</text>
-    <source>&lt;a href="http://github.com/cezarsa/chromed_bird" rel="nofollow"&gt;Chromed Bird&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <retweeted_status>
-      <created_at>Mon Apr 19 08:01:36 +0000 2010</created_at>
-      <id>12444503300</id>
-      <text>Cola-pop :) (2 coke exploded due to the freezing temperature in our fridge)  http://twitpic.com/1grsvd</text>
-      <source>&lt;a href="http://www.tweetings.net/iphone/" rel="nofollow"&gt;Tweetings&lt;/a&gt;</source>
-      <truncated>false</truncated>
-      <in_reply_to_status_id/>
-      <in_reply_to_user_id/>
-      <favorited>false</favorited>
-      <in_reply_to_screen_name/>
-      <geo xmlns:georss="http://www.georss.org/georss">
-        <georss:point>47.562670 19.052829</georss:point>
-      </geo>
-      <coordinates xmlns:georss="http://www.georss.org/georss">
-        <georss:point>47.562670 19.052829</georss:point>
-      </coordinates>
-      <place xmlns:georss="http://www.georss.org/georss">
-        <id>e52e231315b975c1</id>
-        <name>Budapest</name>
-        <full_name>Budapest, Közép-Magyarország</full_name>
-        <place_type>city</place_type>
-        <url>http://api.twitter.com/1/geo/id/e52e231315b975c1.json</url>
-        <bounding_box/>
-        <country code="HU">Magyarország</country>
-        <street_address/>
-      </place>
-      <contributors/>
-    </retweeted_status>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>3840</id>
-  <name>Jason Calacanis</name>
-  <screen_name>Jason</screen_name>
-  <location>Los Angeles, CA</location>
-  <description>Cereal entrepreneur: Founder Weblogs Inc., TechCrunch50, Frosted Flakes, Silicon Alley Reporter, Open Angel Forum,Engadget,This Week in Startups &amp; Mahalo.com. </description>
-  <profile_image_url>http://a1.twimg.com/profile_images/761165212/Screen_shot_2010-03-18_at_6.30.41_PM_normal.png</profile_image_url>
-  <url>http://thisweekin.com/thisweekin-startups/</url>
-  <protected>false</protected>
-  <followers_count>99910</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>32604</friends_count>
-  <created_at>Sat Aug 05 23:31:27 +0000 2006</created_at>
-  <favourites_count>52</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/84262475/t_and_f.jpg</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>17617</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 02:14:11 +0000 2010</created_at>
-    <id>15012821779</id>
-    <text>@seanjs word</text>
-    <source>&lt;a href="http://www.hootsuite.com" rel="nofollow"&gt;HootSuite&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id>14750822</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>seanjs</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>19543646</id>
-  <name>Bulat Shakirzyanov</name>
-  <screen_name>avalanche123</screen_name>
-  <location>New York, NY</location>
-  <description>Senior Hacker, OpenSky</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/74768776/shakir_normal.jpg</profile_image_url>
-  <url>http://www.theopenskyproject.com/</url>
-  <protected>false</protected>
-  <followers_count>31</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>39</friends_count>
-  <created_at>Mon Jan 26 16:53:14 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset/>
-  <time_zone/>
-  <profile_background_image_url>http://s.twimg.com/a/1273875281/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>63</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 29 18:06:24 +0000 2010</created_at>
-    <id>14990055724</id>
-    <text>RT @s_bergmann: RIP Dennis Hopper</text>
-    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <retweeted_status>
-      <created_at>Sat May 29 18:00:53 +0000 2010</created_at>
-      <id>14989777058</id>
-      <text>RIP Dennis Hopper</text>
-      <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
-      <truncated>false</truncated>
-      <in_reply_to_status_id/>
-      <in_reply_to_user_id/>
-      <favorited>false</favorited>
-      <in_reply_to_screen_name/>
-      <geo/>
-      <coordinates/>
-      <place/>
-      <contributors/>
-    </retweeted_status>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>30000984</id>
-  <name>Craig Willis</name>
-  <screen_name>craig_willis</screen_name>
-  <location>Leeds</location>
-  <description>Web Developer.</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/353248121/wiggles_normal.jpg</profile_image_url>
-  <url>http://www.craig-willis.co.uk</url>
-  <protected>false</protected>
-  <followers_count>132</followers_count>
-  <profile_background_color>62afd6</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>0084B4</profile_link_color>
-  <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
-  <friends_count>541</friends_count>
-  <created_at>Thu Apr 09 15:07:47 +0000 2009</created_at>
-  <favourites_count>4</favourites_count>
-  <utc_offset>0</utc_offset>
-  <time_zone>London</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>739</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 12:04:56 +0000 2010</created_at>
-    <id>15037043483</id>
-    <text>Today I shall me mostly.....getting wasted and rocking out!</text>
-    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>14287005</id>
-  <name>Paul Anthony</name>
-  <screen_name>webireland</screen_name>
-  <location>Belfast</location>
-  <description>.NET code monkey extraordinare.</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/425853164/paul_normal.jpg</profile_image_url>
-  <url>http://blog.webdistortion.com/?utm_source=twitter&amp;utm_medium=social_media&amp;utm_campaign=ProfileURL</url>
-  <protected>false</protected>
-  <followers_count>1422</followers_count>
-  <profile_background_color>ffffff</profile_background_color>
-  <profile_text_color>666666</profile_text_color>
-  <profile_link_color>2FC2EF</profile_link_color>
-  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
-  <friends_count>1057</friends_count>
-  <created_at>Wed Apr 02 20:08:29 +0000 2008</created_at>
-  <favourites_count>22</favourites_count>
-  <utc_offset>0</utc_offset>
-  <time_zone>Dublin</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/77619351/n19040221057_2014.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>5782</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 29 15:18:56 +0000 2010</created_at>
-    <id>14980630732</id>
-    <text>If you are using #CCCCCC as body text colour (or lighter) - I aint straining my eyes for you.</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>87594768</id>
-  <name>Kevin Schroeder</name>
-  <screen_name>kpschrade</screen_name>
-  <location/>
-  <description>Technology Evangelist for Zend Technologies.  Co-author of the IBM i Programmer's Guide to PHP</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/790382249/Little_Schrade_normal.gif</profile_image_url>
-  <url>http://www.eschrade.com</url>
-  <protected>false</protected>
-  <followers_count>172</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>137</friends_count>
-  <created_at>Thu Nov 05 02:17:15 +0000 2009</created_at>
-  <favourites_count>1</favourites_count>
-  <utc_offset/>
-  <time_zone/>
-  <profile_background_image_url>http://s.twimg.com/a/1274834447/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>546</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Wed May 26 23:40:11 +0000 2010</created_at>
-    <id>14796133356</id>
-    <text>2012 is when #f1 returns to the US.  Austin, TX to be exact. I'll take a race I can drive to http://bit.ly/cNiUBz</text>
-    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>15883336</id>
-  <name>Rudger Gravestein</name>
-  <screen_name>Rud5G</screen_name>
-  <location>Rotterdam, NL</location>
-  <description>Волшебный кролик</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/764073210/rud_normal.jpg</profile_image_url>
-  <url>http://rudgergravestein.com/</url>
-  <protected>false</protected>
-  <followers_count>24</followers_count>
-  <profile_background_color>1A1B1F</profile_background_color>
-  <profile_text_color>666666</profile_text_color>
-  <profile_link_color>2FC2EF</profile_link_color>
-  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
-  <friends_count>86</friends_count>
-  <created_at>Sun Aug 17 17:14:36 +0000 2008</created_at>
-  <favourites_count>13</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Amsterdam</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/57819525/LunaPark2.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>91</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 12:20:03 +0000 2010</created_at>
-    <id>15037699311</id>
-    <text>@TBeijen ik hoor t al, alcohol doet weinig goeds met je grappen :) http://youtu.be/A_sY2rjxq6M</text>
-    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>15032331781</in_reply_to_status_id>
-    <in_reply_to_user_id>37911273</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>TBeijen</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>20179801</id>
-  <name>Melody Morgan</name>
-  <screen_name>doremelody</screen_name>
-  <location>Los Angeles</location>
-  <description>plant enthusiast and web developer</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/860564925/mm_profile_normal.jpg</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>19</followers_count>
-  <profile_background_color>ffffff</profile_background_color>
-  <profile_text_color>663B12</profile_text_color>
-  <profile_link_color>1F98C7</profile_link_color>
-  <profile_sidebar_fill_color>DAECF4</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>C6E2EE</profile_sidebar_border_color>
-  <friends_count>19</friends_count>
-  <created_at>Thu Feb 05 19:49:58 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/96885905/ideas004.jpg</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>12</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 21 23:48:58 +0000 2010</created_at>
-    <id>14460074775</id>
-    <text>@LucreciaRoa ha jk ... 24 is mildly entertaining! Did i ever tell you about the time i saw kiefer sutherland tabledancing at ye old rustic?</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id>20176213</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>LucreciaRoa</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>15154429</id>
-  <name>Abhinav Lal</name>
-  <screen_name>abhinavlal</screen_name>
-  <location>India</location>
-  <description>Entrepreneur, Web developer</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/935987039/f3195180-af41-4be3-879d-ca6a6c67abbc_normal.png</profile_image_url>
-  <url>http://abhinavlal.wordpress.com</url>
-  <protected>false</protected>
-  <followers_count>180</followers_count>
-  <profile_background_color>99B2B7</profile_background_color>
-  <profile_text_color>7A6A53</profile_text_color>
-  <profile_link_color>0E3E4A</profile_link_color>
-  <profile_sidebar_fill_color>D9CEB2</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>948C75</profile_sidebar_border_color>
-  <friends_count>140</friends_count>
-  <created_at>Wed Jun 18 05:19:03 +0000 2008</created_at>
-  <favourites_count>19</favourites_count>
-  <utc_offset>19800</utc_offset>
-  <time_zone>New Delhi</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/103696624/x11f5531572c242115797eb5538a58a4.png</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>491</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 29 05:59:26 +0000 2010</created_at>
-    <id>14958547119</id>
-    <text>Awesome presentation n discussion on memcache #blrphp</text>
-    <source>&lt;a href="/devices" rel="nofollow"&gt;txt&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>47087041</id>
-  <name>Tamer Solieman</name>
-  <screen_name>tamersolieman</screen_name>
-  <location/>
-  <description/>
-  <profile_image_url>http://a1.twimg.com/profile_images/262440546/tamrbinsolimancopy34_normal.jpg</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>7</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>14</friends_count>
-  <created_at>Sun Jun 14 12:57:44 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>7200</utc_offset>
-  <time_zone>Cairo</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>3</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Thu May 13 09:14:20 +0000 2010</created_at>
-    <id>13903917510</id>
-    <text>نفسي اخلص رسالتي و اقدم استقالتي</text>
-    <source>&lt;a href="http://choqok.gnufolks.org" rel="nofollow"&gt;choqoK&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>117894195</id>
-  <name>Assar Evans</name>
-  <screen_name>assar1234</screen_name>
-  <location/>
-  <description/>
-  <profile_image_url>http://a3.twimg.com/profile_images/720472445/imagesCA32Q2B5_normal.jpg</profile_image_url>
-  <url>http://bit.ly/aXkEaz</url>
-  <protected>false</protected>
-  <followers_count>406</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>705</friends_count>
-  <created_at>Fri Feb 26 23:48:31 +0000 2010</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset/>
-  <time_zone/>
-  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>906</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 21 16:35:08 +0000 2010</created_at>
-    <id>14439103608</id>
-    <text>Essential iPad apps: 10 great &amp;lt;b&amp;gt;games&amp;lt;/b&amp;gt; http://bit.ly/dvgKgJ</text>
-    <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>14921902</id>
-  <name>Christof Damian</name>
-  <screen_name>cdamian</screen_name>
-  <location>Barcelona</location>
-  <description>Web Developer in Barcelona</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/460884471/Christof_Damian_200_normal.png</profile_image_url>
-  <url>http://christof.damian.net/</url>
-  <protected>false</protected>
-  <followers_count>95</followers_count>
-  <profile_background_color>000000</profile_background_color>
-  <profile_text_color>666666</profile_text_color>
-  <profile_link_color>808080</profile_link_color>
-  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
-  <friends_count>100</friends_count>
-  <created_at>Tue May 27 15:24:05 +0000 2008</created_at>
-  <favourites_count>15</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Madrid</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/3827557/a.gif</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>1138</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 14:01:29 +0000 2010</created_at>
-    <id>15042915623</id>
-    <text>Sunday Mix: Maurizio ‘ deepmitch ‘ Miceli Presents 6ONE6 – Live Exclusive Mix (2008) http://ping.fm/HnFr2</text>
-    <source>&lt;a href="http://www.ping.fm/" rel="nofollow"&gt;Ping.fm&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>16462154</id>
-  <name>megan mcdonald</name>
-  <screen_name>Me9anC</screen_name>
-  <location>Saskatoon, SK, Canada</location>
-  <description>I write fiction and code. Dig my job at zu. And one day I will rule the world.</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/536533431/4003130391_a5725fe7db_b_normal.jpg</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>209</followers_count>
-  <profile_background_color>EDECE9</profile_background_color>
-  <profile_text_color>634047</profile_text_color>
-  <profile_link_color>088253</profile_link_color>
-  <profile_sidebar_fill_color>E3E2DE</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>D3D2CF</profile_sidebar_border_color>
-  <friends_count>120</friends_count>
-  <created_at>Fri Sep 26 02:16:07 +0000 2008</created_at>
-  <favourites_count>2</favourites_count>
-  <utc_offset>-25200</utc_offset>
-  <time_zone>Mountain Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme3/bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>1959</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 29 04:12:09 +0000 2010</created_at>
-    <id>14953810132</id>
-    <text>Bed-a-ma-tiiiiiime! Bed-a-ma-time.</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>17963909</id>
-  <name>Jean-Michel</name>
-  <screen_name>jmpnadeau</screen_name>
-  <location>Montréal, Qc, Canada</location>
-  <description>Internet infrastructures architect, systems administrator &amp; entrepreneur. Interested in high performance computing, clouds &amp; grids. 
-Technology lead @giftiniti</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/826076310/avatar-square_normal.png</profile_image_url>
-  <url>http://jmpnadeau.ca</url>
-  <protected>false</protected>
-  <followers_count>382</followers_count>
-  <profile_background_color>1A1B1F</profile_background_color>
-  <profile_text_color>666666</profile_text_color>
-  <profile_link_color>2FC2EF</profile_link_color>
-  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
-  <friends_count>545</friends_count>
-  <created_at>Mon Dec 08 14:52:36 +0000 2008</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-18000</utc_offset>
-  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme9/bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>198</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 16:43:18 +0000 2010</created_at>
-    <id>14918204354</id>
-    <text>Facebook's Culture Problem May Be Fatal (from HBR) http://bit.ly/bdGY57</text>
-    <source>&lt;a href="http://seesmic.com/app" rel="nofollow"&gt;Seesmic Web&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>141257012</id>
-  <name>Tom Godar</name>
-  <screen_name>ficusd</screen_name>
-  <location>St Paul, MN</location>
-  <description>PHP development, Costa Rica, food &amp; travel</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/881097028/n1381922562_1767_normal.jpg</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>8</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>20</friends_count>
-  <created_at>Fri May 07 15:52:19 +0000 2010</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset/>
-  <time_zone/>
-  <profile_background_image_url>http://s.twimg.com/a/1273694933/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>7</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Thu May 13 21:56:40 +0000 2010</created_at>
-    <id>13936776532</id>
-    <text>I have never been so pissed of at an inanimate object as I am right now with the dijit.filiteringSelect</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>141186979</id>
-  <name>Shaun Steenkamp</name>
-  <screen_name>epsiloncrucis</screen_name>
-  <location>Mackay, Qld, Australia</location>
-  <description>PHP Programmer, Accountant, Aspiring Academic</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/880632909/GalacticCore_normal.png</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>2</followers_count>
-  <profile_background_color>1A1B1F</profile_background_color>
-  <profile_text_color>666666</profile_text_color>
-  <profile_link_color>2FC2EF</profile_link_color>
-  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
-  <friends_count>7</friends_count>
-  <created_at>Fri May 07 11:44:40 +0000 2010</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>36000</utc_offset>
-  <time_zone>Brisbane</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme9/bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>3</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Wed May 12 08:00:46 +0000 2010</created_at>
-    <id>13838819266</id>
-    <text>Jupiter loses a stripe - space - 11 May 2010 - New Scientist: http://bit.ly/cNpI4n via @addthis</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>140788163</id>
-  <name>Jenerate</name>
-  <screen_name>jenerateonline</screen_name>
-  <location>Dun laoghaire, Dublin</location>
-  <description>Jenerate.com provide innovative web services (Website creation, design).
-focused on our clients business objectives. </description>
-  <profile_image_url>http://a3.twimg.com/profile_images/878026861/avatar_normal.jpg</profile_image_url>
-  <url>http://www.jenerate.com</url>
-  <protected>false</protected>
-  <followers_count>355</followers_count>
-  <profile_background_color>ffffff</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>660000</profile_link_color>
-  <profile_sidebar_fill_color>b35c59</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>bd6363</profile_sidebar_border_color>
-  <friends_count>1397</friends_count>
-  <created_at>Thu May 06 11:09:05 +0000 2010</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset/>
-  <time_zone/>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/98929361/background.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>48</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 15:59:10 +0000 2010</created_at>
-    <id>14915427202</id>
-    <text>So everyone is telling you that you should be winning business using Facebook but should I start with my own page, a Group or a Fan page....</text>
-    <source>&lt;a href="http://feastofcrumbs.com/blog/wordpress-plugins/auto-tweet/" rel="nofollow"&gt;Auto Tweet&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>140657929</id>
-  <name>Casual Game Guru</name>
-  <screen_name>casualfunguru</screen_name>
-  <location>In the Mushroom Kingdom</location>
-  <description/>
-  <profile_image_url>http://a3.twimg.com/profile_images/877456829/pacman_normal.jpg</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>157</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>1516</friends_count>
-  <created_at>Thu May 06 02:44:55 +0000 2010</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset/>
-  <time_zone/>
-  <profile_background_image_url>http://s.twimg.com/a/1274739546/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>3</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Tue May 11 08:56:41 +0000 2010</created_at>
-    <id>13778238550</id>
-    <text>Anyone has a list of cool gaming sites - any recommendations?</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>15084351</id>
-  <name>sas171</name>
-  <screen_name>sas171</screen_name>
-  <location/>
-  <description/>
-  <profile_image_url>http://s.twimg.com/a/1274899949/images/default_profile_2_normal.png</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>16</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>59</friends_count>
-  <created_at>Wed Jun 11 12:49:46 +0000 2008</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-10800</utc_offset>
-  <time_zone>Greenland</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>194</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 29 15:36:22 +0000 2010</created_at>
-    <id>14981656374</id>
-    <text>RT @raudssus: the new #ipad by #madtv http://bit.ly/9kOM1b - this gag is 2 years old.... who has stolen where? ;)</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <retweeted_status>
-      <created_at>Sat May 29 14:51:51 +0000 2010</created_at>
-      <id>14978985426</id>
-      <text>the new #ipad by #madtv http://bit.ly/9kOM1b - this gag is 2 years old.... who has stolen where? ;)</text>
-      <source>web</source>
-      <truncated>false</truncated>
-      <in_reply_to_status_id/>
-      <in_reply_to_user_id/>
-      <favorited>false</favorited>
-      <in_reply_to_screen_name/>
-      <geo/>
-      <coordinates/>
-      <place/>
-      <contributors/>
-    </retweeted_status>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>139805562</id>
-  <name>sina miandashti</name>
-  <screen_name>sinamiandashti</screen_name>
-  <location>Iran Tehran Pasdaran</location>
-  <description>trance lover .... PHP developer
-zend frame work developer ...
-
-armin van buuren FAN
-state of trance FAN</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/870571600/n1662802593_8152_normal.jpg</profile_image_url>
-  <url>http://musicbase.ir</url>
-  <protected>false</protected>
-  <followers_count>17</followers_count>
-  <profile_background_color>1A1B1F</profile_background_color>
-  <profile_text_color>666666</profile_text_color>
-  <profile_link_color>2FC2EF</profile_link_color>
-  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
-  <friends_count>88</friends_count>
-  <created_at>Mon May 03 18:54:20 +0000 2010</created_at>
-  <favourites_count>4</favourites_count>
-  <utc_offset>12600</utc_offset>
-  <time_zone>Tehran</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme9/bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>46</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 29 14:36:39 +0000 2010</created_at>
-    <id>14978083982</id>
-    <text>just used the Zend_Db_Profiler_Firebug and Zend_Log_Writer_Firebug for the first time ... with FireBug FF addon . its cool #zf #firefox #php</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>139630685</id>
-  <name>Chabier Lorenzo</name>
-  <screen_name>zchab</screen_name>
-  <location>Ainsa, Huesca, Spain</location>
-  <description/>
-  <profile_image_url>http://a1.twimg.com/profile_images/934542720/empeorando_lo_presente_normal.jpg</profile_image_url>
-  <url>http://xtsports.tumblr.com/</url>
-  <protected>false</protected>
-  <followers_count>2</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>88</friends_count>
-  <created_at>Mon May 03 06:10:23 +0000 2010</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-10800</utc_offset>
-  <time_zone>Greenland</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>0</statuses_count>
-  <lang>es</lang>
-  <contributors_enabled>false</contributors_enabled>
-</user>
-<user>
-  <id>115095926</id>
-  <name>MyGeoInfo</name>
-  <screen_name>MyGeoInfo</screen_name>
-  <location>USA</location>
-  <description>Travelers: MyGeoInfo wants your travel and place articles. Earn residual income from submissions. Writers wanted. Unique Adsense sharing community.</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/701510702/mygeoinfo11_normal.png</profile_image_url>
-  <url>http://www.mygeoinfo.com</url>
-  <protected>false</protected>
-  <followers_count>217</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>1981</friends_count>
-  <created_at>Wed Feb 17 16:03:34 +0000 2010</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-25200</utc_offset>
-  <time_zone>Mountain Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>138</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Wed May 26 12:12:46 +0000 2010</created_at>
-    <id>14758935251</id>
-    <text>My trip to Lake Como in Northern Italy was one of the most memorable experiences I have had for a long while. The third largest of the It...</text>
-    <source>&lt;a href="http://feastofcrumbs.com/blog/wordpress-plugins/auto-tweet/" rel="nofollow"&gt;Auto Tweet&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>19268240</id>
-  <name>Raphael Almeida</name>
-  <screen_name>jaguarnet7</screen_name>
-  <location>Rio de Janeiro</location>
-  <description/>
-  <profile_image_url>http://a1.twimg.com/profile_images/72212876/gse_multipart68100_normal.jpg</profile_image_url>
-  <url>http://raphaeldealmeida.wordpress.com/</url>
-  <protected>false</protected>
-  <followers_count>95</followers_count>
-  <profile_background_color>709397</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>FF3300</profile_link_color>
-  <profile_sidebar_fill_color>A0C5C7</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>86A4A6</profile_sidebar_border_color>
-  <friends_count>94</friends_count>
-  <created_at>Wed Jan 21 00:55:28 +0000 2009</created_at>
-  <favourites_count>12</favourites_count>
-  <utc_offset>-10800</utc_offset>
-  <time_zone>Brasilia</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/86309735/l267.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>472</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 29 19:54:51 +0000 2010</created_at>
-    <id>14995181731</id>
-    <text>No #ParqueDasRuinas em #SantaTeresa 3G #fail direto</text>
-    <source>&lt;a href="http://www.seesmic.com/" rel="nofollow"&gt;Seesmic&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>111701709</id>
-  <name>Old Noob</name>
-  <screen_name>Old_Noob</screen_name>
-  <location/>
-  <description>I'm a long-time RPG fan, but still a bit of a n00b with MMO video games.  Check out my site for great fantasy and RPG video games!</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/678042169/avatar_normal.jpg</profile_image_url>
-  <url>http://mmorpgnoob.com</url>
-  <protected>false</protected>
-  <followers_count>1127</followers_count>
-  <profile_background_color>131516</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>009999</profile_link_color>
-  <profile_sidebar_fill_color>efefef</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>eeeeee</profile_sidebar_border_color>
-  <friends_count>1794</friends_count>
-  <created_at>Fri Feb 05 21:40:49 +0000 2010</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-25200</utc_offset>
-  <time_zone>Mountain Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/72777520/avatar.jpg</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>128</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Thu May 27 15:51:03 +0000 2010</created_at>
-    <id>14842843690</id>
-    <text>What about a list of two player cooperative games like Gauntlet.  I guess FFCCEoT had cooperative mode.  Too bad it sucked.</text>
-    <source>&lt;a href="http://www.hootsuite.com" rel="nofollow"&gt;HootSuite&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>17131390</id>
-  <name>Agnès Haasser</name>
-  <screen_name>tut_tuuut</screen_name>
-  <location>Lyon, France</location>
-  <description>Individu geek femelle.</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/446949005/IMG_9478_normal.jpg</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>32</followers_count>
-  <profile_background_color>BADFCD</profile_background_color>
-  <profile_text_color>0C3E53</profile_text_color>
-  <profile_link_color>FF0000</profile_link_color>
-  <profile_sidebar_fill_color>FFF7CC</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>F2E195</profile_sidebar_border_color>
-  <friends_count>47</friends_count>
-  <created_at>Mon Nov 03 14:37:38 +0000 2008</created_at>
-  <favourites_count>2</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Paris</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1273536095/images/themes/theme12/bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>110</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 09:12:11 +0000 2010</created_at>
-    <id>15030893413</id>
-    <text>@_namass Bon bah j'installe adium et on en cause alors :D</text>
-    <source>&lt;a href="http://www.nambu.com/" rel="nofollow"&gt;Nambu&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>15030664381</in_reply_to_status_id>
-    <in_reply_to_user_id>37896645</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>_namass</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>28873017</id>
-  <name>Follow for Follow?</name>
-  <screen_name>KapnKrunch1337</screen_name>
-  <location>SoCal</location>
-  <description>Follow for Follow?
-XBOX live gamertag: SOG KruncH</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/854789402/twitterProfilePhoto_normal.jpg</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>187</followers_count>
-  <profile_background_color>1A1B1F</profile_background_color>
-  <profile_text_color>666666</profile_text_color>
-  <profile_link_color>178a08</profile_link_color>
-  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
-  <friends_count>1358</friends_count>
-  <created_at>Sat Apr 04 21:20:41 +0000 2009</created_at>
-  <favourites_count>11</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/18264771/kk1337.png</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>469</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 29 02:00:22 +0000 2010</created_at>
-    <id>14946775101</id>
-    <text>I unlocked 4 Xbox achievements on Skate 3! http://raptr.com/SOG_KruncH</text>
-    <source>&lt;a href="http://www.raptr.com/" rel="nofollow"&gt;Raptr&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>14853295</id>
-  <name>dakna</name>
-  <screen_name>dakna</screen_name>
-  <location>Berlin</location>
-  <description/>
-  <profile_image_url>http://a1.twimg.com/profile_images/517505178/twitter2_normal.jpg</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>39</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>99</friends_count>
-  <created_at>Wed May 21 06:50:36 +0000 2008</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Berlin</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>88</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Thu May 20 10:22:49 +0000 2010</created_at>
-    <id>14352473103</id>
-    <text>du weisst du arbeitest zu viel, wenn du auf dem handy die spiegel online app startest,das handy ans ohr hälst und dich über stille wunderst</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>23950019</id>
-  <name>Marius Ion</name>
-  <screen_name>imarims</screen_name>
-  <location>Atlantic Beach</location>
-  <description/>
-  <profile_image_url>http://a1.twimg.com/profile_images/93870310/blogphoto_normal.png</profile_image_url>
-  <url>http://www.appstacks.com</url>
-  <protected>false</protected>
-  <followers_count>673</followers_count>
-  <profile_background_color>1A1B1F</profile_background_color>
-  <profile_text_color>666666</profile_text_color>
-  <profile_link_color>2600FF</profile_link_color>
-  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
-  <friends_count>2002</friends_count>
-  <created_at>Thu Mar 12 13:56:21 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-14400</utc_offset>
-  <time_zone>Atlantic Time (Canada)</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/93986124/x44f850d7ef113c9939a9f3339a0f8fa.png</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>111</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 00:20:49 +0000 2010</created_at>
-    <id>15007284365</id>
-    <text>BP 'top kill' still not stopping flow - BP said Saturday that its latest bid to plug the worst oil spill in U.S. hi... http://ow.ly/17y3fP</text>
-    <source>&lt;a href="http://www.hootsuite.com" rel="nofollow"&gt;HootSuite&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>20019582</id>
-  <name>Georg Schmidl</name>
-  <screen_name>vicox</screen_name>
-  <location>Munich, Germany</location>
-  <description>Computer science student, enthusiastic about technology and FLOSS</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/703922954/me_normal.jpg</profile_image_url>
-  <url>http://vicox.net</url>
-  <protected>false</protected>
-  <followers_count>27</followers_count>
-  <profile_background_color>9AE4E8</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>0084B4</profile_link_color>
-  <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
-  <friends_count>69</friends_count>
-  <created_at>Wed Feb 04 01:27:14 +0000 2009</created_at>
-  <favourites_count>2</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Berlin</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>304</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Thu May 27 02:48:33 +0000 2010</created_at>
-    <id>14807157946</id>
-    <text>of course it works :) do you like it? RT @leolaporte: Installing Lucid Lynx on my Dell Studio 16 - works!</text>
-    <source>&lt;a href="https://launchpad.net/gwibber/" rel="nofollow"&gt;Gwibber&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>15985121</id>
-  <name>Gonzalo Míguez</name>
-  <screen_name>MrZarD</screen_name>
-  <location>Barcelona, España</location>
-  <description>Programador de la pradera, cornerback así maloso y lector empedernido. Y ñamesito :* Y bajista maloso... Y aprediz de todo y maestro de nada :P</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/421913307/n1448176801_1425_normal.jpg</profile_image_url>
-  <url>http://www.barcelonabufals.com</url>
-  <protected>true</protected>
-  <followers_count>57</followers_count>
-  <profile_background_color>003367</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>6E6E6E</profile_link_color>
-  <profile_sidebar_fill_color>87D0FF</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>FFFFFF</profile_sidebar_border_color>
-  <friends_count>112</friends_count>
-  <created_at>Mon Aug 25 18:29:54 +0000 2008</created_at>
-  <favourites_count>1</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Madrid</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/2932781/bufals_bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>1914</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-</user>
-<user>
-  <id>11941022</id>
-  <name>Extendez</name>
-  <screen_name>extendez</screen_name>
-  <location>Extendez</location>
-  <description>Extendez</description>
-  <profile_image_url>http://s.twimg.com/a/1274899949/images/default_profile_2_normal.png</profile_image_url>
-  <url>http://www.orderextenze.com</url>
-  <protected>false</protected>
-  <followers_count>38</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>450</friends_count>
-  <created_at>Mon Jan 07 13:02:19 +0000 2008</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-25200</utc_offset>
-  <time_zone>Arizona</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>0</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-</user>
-<user>
-  <id>11725892</id>
-  <name>Adam Levenson</name>
-  <screen_name>adamlevenson</screen_name>
-  <location>San Diego, CA</location>
-  <description>Digital Operative CTO + co-founder. Infecting digital marketing with technology. Bostonian in SoCal. Proud daddy. #dostream</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/824063460/Photo_40_normal.jpg</profile_image_url>
-  <url>http://www.digitaloperative.com/</url>
-  <protected>false</protected>
-  <followers_count>1432</followers_count>
-  <profile_background_color>ffffff</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>32859a</profile_link_color>
-  <profile_sidebar_fill_color>f0fbfe</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>000000</profile_sidebar_border_color>
-  <friends_count>820</friends_count>
-  <created_at>Tue Jan 01 19:22:30 +0000 2008</created_at>
-  <favourites_count>9</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/3904125/twitter-bkg.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>2948</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 03:04:38 +0000 2010</created_at>
-    <id>15015489775</id>
-    <text>RT @BJ: Just uploaded photo to our Facebook Page - DO as cast from LOST www.facebook.com/digital.operative.agency #dostream</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <retweeted_status>
-      <created_at>Fri May 28 23:53:53 +0000 2010</created_at>
-      <id>14940224699</id>
-      <text>Just uploaded photo to our Facebook Page - DO as cast from LOST www.facebook.com/digital.operative.agency #dostream</text>
-      <source>web</source>
-      <truncated>false</truncated>
-      <in_reply_to_status_id/>
-      <in_reply_to_user_id/>
-      <favorited>false</favorited>
-      <in_reply_to_screen_name/>
-      <geo/>
-      <coordinates/>
-      <place/>
-      <contributors/>
-    </retweeted_status>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>44651789</id>
-  <name>Deon Heunis</name>
-  <screen_name>deonheunis</screen_name>
-  <location>Cape Town</location>
-  <description>Dad, husband, sports fan. Senior web developer at Prezence SA</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/793031315/PICT0800_normal.jpg</profile_image_url>
-  <url>http://www.heunis.com</url>
-  <protected>false</protected>
-  <followers_count>85</followers_count>
-  <profile_background_color>000000</profile_background_color>
-  <profile_text_color>332652</profile_text_color>
-  <profile_link_color>0070bb</profile_link_color>
-  <profile_sidebar_fill_color>f8f8f8</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
-  <friends_count>159</friends_count>
-  <created_at>Thu Jun 04 16:18:51 +0000 2009</created_at>
-  <favourites_count>13</favourites_count>
-  <utc_offset>7200</utc_offset>
-  <time_zone>Pretoria</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/89280986/header.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>273</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 29 16:51:00 +0000 2010</created_at>
-    <id>14986021985</id>
-    <text>Well done bulls, best team won</text>
-    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>24362989</id>
-  <name>redphx</name>
-  <screen_name>redphx</screen_name>
-  <location>Danang, Vietnam</location>
-  <description>web developer</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/262310769/eye_normal.png</profile_image_url>
-  <url>http://redphx.com</url>
-  <protected>false</protected>
-  <followers_count>245</followers_count>
-  <profile_background_color>1A1B1F</profile_background_color>
-  <profile_text_color>777777</profile_text_color>
-  <profile_link_color>F7290C</profile_link_color>
-  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
-  <friends_count>146</friends_count>
-  <created_at>Sat Mar 14 12:45:09 +0000 2009</created_at>
-  <favourites_count>65</favourites_count>
-  <utc_offset>25200</utc_offset>
-  <time_zone>Hanoi</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/11913911/4363.jpg</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>1350</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 10:32:17 +0000 2010</created_at>
-    <id>14897613032</id>
-    <text>tả tơi, hix</text>
-    <source>&lt;a href="http://www.seesmic.com/" rel="nofollow"&gt;Seesmic&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>125064962</id>
-  <name>Ute Pemm</name>
-  <screen_name>lovelygirl0992</screen_name>
-  <location/>
-  <description/>
-  <profile_image_url>http://a1.twimg.com/profile_images/766071466/Unbenannt_normal.png</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>211</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>546</friends_count>
-  <created_at>Sun Mar 21 15:21:59 +0000 2010</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset/>
-  <time_zone/>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications/>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following/>
-  <statuses_count>7</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Mon Apr 12 13:11:42 +0000 2010</created_at>
-    <id>12045334657</id>
-    <text>Asiarooms.com is offering amazing specials on Hotels in Thailand, Indonesia, Malaysia, Japan and China. spon -http://tinyurl.com/y4fc6w9</text>
-    <source>&lt;a href="http://revtwt.com" rel="nofollow"&gt;Goldbird&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>28537284</id>
-  <name>Tiago Paulino</name>
-  <screen_name>tiago_paulino</screen_name>
-  <location>France</location>
-  <description>Web Developer, PHP and Jquery addict, interested by software engineering, various open source solutions and general web technologies</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/695909648/logo2_normal.jpg</profile_image_url>
-  <url>http://www.tiagop.com</url>
-  <protected>false</protected>
-  <followers_count>168</followers_count>
-  <profile_background_color>ACDED6</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>038543</profile_link_color>
-  <profile_sidebar_fill_color>F6F6F6</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>EEEEEE</profile_sidebar_border_color>
-  <friends_count>525</friends_count>
-  <created_at>Fri Apr 03 10:24:37 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Paris</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/76908122/Background.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>234</statuses_count>
-  <lang>fr</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 13:20:00 +0000 2010</created_at>
-    <id>14905473459</id>
-    <text>Web Operating Systems: The Options You should Consider | Graphic and Web Design Blog http://bit.ly/9CFaQD</text>
-    <source>&lt;a href="http://tweetmeme.com" rel="nofollow"&gt;TweetMeme&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>60885078</id>
-  <name>roy simkes</name>
-  <screen_name>roysimkes</screen_name>
-  <location/>
-  <description/>
-  <profile_image_url>http://a1.twimg.com/profile_images/576464048/Picture_4_normal.png</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>14</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>25</friends_count>
-  <created_at>Tue Jul 28 12:03:15 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset/>
-  <time_zone/>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>5</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Wed Apr 21 21:53:23 +0000 2010</created_at>
-    <id>12599969326</id>
-    <text>Use this coupon code R6REM to save $10 on Postbox!  http://www.postbox-inc.com/ref.php?r=R6REM</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>32335514</id>
-  <name>hans torres</name>
-  <screen_name>hanseh</screen_name>
-  <location>makati</location>
-  <description>your friendly neighborhood programmer</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/539605087/screenshot1_normal.png</profile_image_url>
-  <url>http://hanseh.wordpress.com</url>
-  <protected>false</protected>
-  <followers_count>36</followers_count>
-  <profile_background_color>C0DEED</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>0084B4</profile_link_color>
-  <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
-  <friends_count>26</friends_count>
-  <created_at>Fri Apr 17 06:51:06 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>28800</utc_offset>
-  <time_zone>Hong Kong</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>30</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Tue May 25 08:44:02 +0000 2010</created_at>
-    <id>14680717602</id>
-    <text>1 year na pala. :D</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>15698784</id>
-  <name>Sebastian Jaramillo</name>
-  <screen_name>sebastianjt</screen_name>
-  <location/>
-  <description>I am a Web Developer specializing in Front-End technologies, interested in standard-compliant, well-engineered, accessible and engaging sites.</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/90074883/gordoteins_hotmail.com_364d353c_normal.jpg</profile_image_url>
-  <url>http://www.sebastianjt.com</url>
-  <protected>false</protected>
-  <followers_count>423</followers_count>
-  <profile_background_color>1c1c1c</profile_background_color>
-  <profile_text_color>7d8f96</profile_text_color>
-  <profile_link_color>2FC2EF</profile_link_color>
-  <profile_sidebar_fill_color>0f1417</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>5e7e8c</profile_sidebar_border_color>
-  <friends_count>501</friends_count>
-  <created_at>Sat Aug 02 06:07:59 +0000 2008</created_at>
-  <favourites_count>1</favourites_count>
-  <utc_offset>-18000</utc_offset>
-  <time_zone>Bogota</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/3504656/BG.jpg</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>1183</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 21 16:14:40 +0000 2010</created_at>
-    <id>14437873790</id>
-    <text>RT @betancur: Fight Club - Chemical Burn - Kinetic Typography http://post.ly/gqKH</text>
-    <source>&lt;a href="http://mobile.twitter.com" rel="nofollow"&gt;mobile web&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <retweeted_status>
-      <created_at>Fri May 21 11:41:23 +0000 2010</created_at>
-      <id>14422426737</id>
-      <text>Fight Club - Chemical Burn - Kinetic Typography http://post.ly/gqKH</text>
-      <source>&lt;a href="http://www.posterous.com" rel="nofollow"&gt;Posterous&lt;/a&gt;</source>
-      <truncated>false</truncated>
-      <in_reply_to_status_id/>
-      <in_reply_to_user_id/>
-      <favorited>false</favorited>
-      <in_reply_to_screen_name/>
-      <geo/>
-      <coordinates/>
-      <place/>
-      <contributors/>
-    </retweeted_status>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>14993209</id>
-  <name>Brandon Savage</name>
-  <screen_name>brandonsavage</screen_name>
-  <location/>
-  <description/>
-  <profile_image_url>http://a3.twimg.com/profile_images/859024571/brandon_normal.jpg</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>752</followers_count>
-  <profile_background_color>C0DEED</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>0084B4</profile_link_color>
-  <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
-  <friends_count>152</friends_count>
-  <created_at>Tue Jun 03 14:28:21 +0000 2008</created_at>
-  <favourites_count>3</favourites_count>
-  <utc_offset>-18000</utc_offset>
-  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>12034</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 14:16:34 +0000 2010</created_at>
-    <id>15043809171</id>
-    <text>@xwordy Glenn Beck ruined the quote, after he equated it to Barack Obama's administration.</text>
-    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>15042796140</in_reply_to_status_id>
-    <in_reply_to_user_id>10786112</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>xwordy</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>109229910</id>
-  <name>Smartphone Focus</name>
-  <screen_name>SmartphoneFocus</screen_name>
-  <location>UK</location>
-  <description>Q of the Day: Which products have you started using to work on the move in the past five years?</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/660712323/PTrotterFLIP_bigger_normal.JPG</profile_image_url>
-  <url>http://www.pcadvisor.co.uk/smartphone-focus/</url>
-  <protected>false</protected>
-  <followers_count>900</followers_count>
-  <profile_background_color>C0DEED</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>030303</profile_link_color>
-  <profile_sidebar_fill_color>fa120a</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
-  <friends_count>1582</friends_count>
-  <created_at>Thu Jan 28 11:10:30 +0000 2010</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>0</utc_offset>
-  <time_zone>London</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/88092044/Twitter-Vodafone_Smartphonei-2.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>1629</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Thu Apr 01 14:27:51 +0000 2010</created_at>
-    <id>11426869202</id>
-    <text>Palm Preparing UK Launch For Pixi Plus &amp; Pre Plus http://ow.ly/1tBkO</text>
-    <source>&lt;a href="http://www.hootsuite.com" rel="nofollow"&gt;HootSuite&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>54812973</id>
-  <name>Ferenc Kovacs</name>
-  <screen_name>Tyr43l</screen_name>
-  <location>Budapest</location>
-  <description>Hacker 42 Anime Nationalism</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/620860479/490_Tyrael_4a51dbc18671c_2_normal.jpg</profile_image_url>
-  <url>http://tyrael.hu</url>
-  <protected>false</protected>
-  <followers_count>30</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>85</friends_count>
-  <created_at>Wed Jul 08 05:46:58 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Budapest</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>211</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Thu May 20 07:24:45 +0000 2010</created_at>
-    <id>14346510907</id>
-    <text>@leente "Levente Bagi is now Ruby on Rails developer at Self Employed" =&amp;gt; Na, mizu, meselj! :)</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id>5407342</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>leente</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>14869245</id>
-  <name>julienPauli</name>
-  <screen_name>julienPauli</screen_name>
-  <location>Paris</location>
-  <description>ZCE, ZFCE. Web app architect. PHP, Apache, ZendF contributor</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/715548091/julienP_normal.jpg</profile_image_url>
-  <url>http://www.alterway.fr</url>
-  <protected>false</protected>
-  <followers_count>24</followers_count>
-  <profile_background_color>ACDED6</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>038543</profile_link_color>
-  <profile_sidebar_fill_color>F6F6F6</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>EEEEEE</profile_sidebar_border_color>
-  <friends_count>56</friends_count>
-  <created_at>Thu May 22 15:05:58 +0000 2008</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Paris</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme18/bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>0</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-</user>
-<user>
-  <id>92359611</id>
-  <name>Medal of Honor</name>
-  <screen_name>medalofhonor</screen_name>
-  <location>Los Angeles</location>
-  <description>There is a new enemy. There is a new war. There is a new warrior. He is Tier 1. </description>
-  <profile_image_url>http://a1.twimg.com/profile_images/555288054/twitter_pic_normal.jpg</profile_image_url>
-  <url>http://www.medalofhonor.com</url>
-  <protected>false</protected>
-  <followers_count>5957</followers_count>
-  <profile_background_color>000000</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>0084B4</profile_link_color>
-  <profile_sidebar_fill_color>c2c2c2</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>000000</profile_sidebar_border_color>
-  <friends_count>251</friends_count>
-  <created_at>Tue Nov 24 20:38:24 +0000 2009</created_at>
-  <favourites_count>2</favourites_count>
-  <utc_offset>-32400</utc_offset>
-  <time_zone>Alaska</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/103800040/moh_twitter_final_rangertrailer.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>124</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Mon May 24 21:01:10 +0000 2010</created_at>
-    <id>14647009445</id>
-    <text>It's Military Monday at MedalofHonor.com and we have a new blog up entield "The Mind of a Soldier". http://bit.ly/dDc4Qm</text>
-    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>18849313</id>
-  <name>Matthew Pruitt</name>
-  <screen_name>matthewpruitt</screen_name>
-  <location>Los Angeles, CA | from Detroit</location>
-  <description>I oversee the communities for all of the Electronic Arts first-person shooter games.</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/769039947/twit_normal.jpg</profile_image_url>
-  <url>http://www.linkedin.com/in/matthewpruitt</url>
-  <protected>false</protected>
-  <followers_count>1875</followers_count>
-  <profile_background_color>1A1B1F</profile_background_color>
-  <profile_text_color>06001f</profile_text_color>
-  <profile_link_color>d94c17</profile_link_color>
-  <profile_sidebar_fill_color>ababab</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>000000</profile_sidebar_border_color>
-  <friends_count>220</friends_count>
-  <created_at>Sat Jan 10 22:46:39 +0000 2009</created_at>
-  <favourites_count>2</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/3868929/twitter.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>771</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Wed May 19 22:07:13 +0000 2010</created_at>
-    <id>14319327820</id>
-    <text>@mdk2002 Tier 1 beards FTW!</text>
-    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>14311379775</in_reply_to_status_id>
-    <in_reply_to_user_id>14506809</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>mdk2002</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>23930087</id>
-  <name>Qasim Shabbir</name>
-  <screen_name>qasimshabbir</screen_name>
-  <location/>
-  <description>Love to do programming. Expert areas are PHP, Opensource, eCommerce, CMS, Social Networking, CRM. Improving on RIA, Mobile Development, and Enterprise App</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/267164527/qasimportrati_normal.jpg</profile_image_url>
-  <url>http://www.q-sols.com</url>
-  <protected>false</protected>
-  <followers_count>191</followers_count>
-  <profile_background_color>0099B9</profile_background_color>
-  <profile_text_color>3C3940</profile_text_color>
-  <profile_link_color>0099B9</profile_link_color>
-  <profile_sidebar_fill_color>95E8EC</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>5ED4DC</profile_sidebar_border_color>
-  <friends_count>158</friends_count>
-  <created_at>Thu Mar 12 10:46:49 +0000 2009</created_at>
-  <favourites_count>35</favourites_count>
-  <utc_offset>-21600</utc_offset>
-  <time_zone>Central Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme4/bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>746</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 29 19:57:27 +0000 2010</created_at>
-    <id>14995310359</id>
-    <text>Icon Library for Google Map Markers #tech #coach http://bit.ly/bubT0a</text>
-    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>15201026</id>
-  <name>45ACP</name>
-  <screen_name>45ACP</screen_name>
-  <location>ÜT: 39.743747,-104.938906</location>
-  <description>libertarian, web developer, business owner IT Professional</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/59972251/colorado_state_flag_normal.gif</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>671</followers_count>
-  <profile_background_color>1ba35f</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>0f2b26</profile_link_color>
-  <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
-  <friends_count>1627</friends_count>
-  <created_at>Sun Jun 22 21:36:41 +0000 2008</created_at>
-  <favourites_count>1</favourites_count>
-  <utc_offset>-25200</utc_offset>
-  <time_zone>Mountain Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/88420186/twitterbg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>1649</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 04:20:11 +0000 2010</created_at>
-    <id>15019517945</id>
-    <text>Received the tracking info for my replacement #blackberry #8900 hopefully this one will not spontaneously reboot everyday and loose wifi</text>
-    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>14213930</id>
-  <name>itabarau</name>
-  <screen_name>itabarau</screen_name>
-  <location/>
-  <description/>
-  <profile_image_url>http://a3.twimg.com/profile_images/52090741/good_normal.jpg</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>36</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>133</friends_count>
-  <created_at>Tue Mar 25 07:44:41 +0000 2008</created_at>
-  <favourites_count>1</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>54</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Mon May 24 16:42:28 +0000 2010</created_at>
-    <id>14634256606</id>
-    <text>RT @phpizer: An Overview of PHP Framework Guides for Developers | Onextrapixel - Showcasing Web Treats Without A Hitch http://bit.ly/aFtNHo</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <retweeted_status>
-      <created_at>Mon May 24 16:38:13 +0000 2010</created_at>
-      <id>14634022754</id>
-      <text>An Overview of PHP Framework Guides for Developers | Onextrapixel - Showcasing Web Treats Without A Hitch http://bit.ly/aFtNHo</text>
-      <source>&lt;a href="http://twitterfeed.com" rel="nofollow"&gt;twitterfeed&lt;/a&gt;</source>
-      <truncated>false</truncated>
-      <in_reply_to_status_id/>
-      <in_reply_to_user_id/>
-      <favorited>false</favorited>
-      <in_reply_to_screen_name/>
-      <geo/>
-      <coordinates/>
-      <place/>
-      <contributors/>
-    </retweeted_status>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>94172381</id>
-  <name>Brian Swan</name>
-  <screen_name>brian_swan</screen_name>
-  <location>Redmond, WA</location>
-  <description>Blogger about all things related to PHP and Microsoft. Rookie husband/dad. Amatuer Mtn. biker, runner, hiker. Experienced beer drinker.</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/624949934/Brian_2_normal.jpg</profile_image_url>
-  <url>http://blogs.msdn.com/brian_swan/</url>
-  <protected>false</protected>
-  <followers_count>119</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>159</friends_count>
-  <created_at>Wed Dec 02 20:47:52 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274834447/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>197</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 18:58:15 +0000 2010</created_at>
-    <id>14925757554</id>
-    <text>@enygma  Picked it up this morning? Is that breakfast?</text>
-    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>14925469046</in_reply_to_status_id>
-    <in_reply_to_user_id>8854032</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>enygma</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>22903583</id>
-  <name>Lukas Kahwe Smith</name>
-  <screen_name>dybvandal</screen_name>
-  <location>Zurich</location>
-  <description>My twitter alter-ego is all about PHP, databases and other code related stuff.</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/734253815/n644648272_5107_normal.jpg</profile_image_url>
-  <url>http://pooteeweet.org</url>
-  <protected>false</protected>
-  <followers_count>217</followers_count>
-  <profile_background_color>1A1B1F</profile_background_color>
-  <profile_text_color>666666</profile_text_color>
-  <profile_link_color>2FC2EF</profile_link_color>
-  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
-  <friends_count>193</friends_count>
-  <created_at>Thu Mar 05 10:07:02 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Bern</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme9/bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>220</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 29 20:36:18 +0000 2010</created_at>
-    <id>14997168565</id>
-    <text>Decided to break through the wall, eat that #CSS, but then again I am sure a pixel-pusher could do it better http://search.UN-informed.org</text>
-    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>36688537</id>
-  <name>Steve Tran</name>
-  <screen_name>clu3</screen_name>
-  <location>O-n-l-i-n-e-24-7</location>
-  <description>Web development. Zend Framework and Jquery, and Online Business</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/201515571/avatar_normal.jpg</profile_image_url>
-  <url>http://clu3.com</url>
-  <protected>false</protected>
-  <followers_count>67</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>66</friends_count>
-  <created_at>Thu Apr 30 15:27:59 +0000 2009</created_at>
-  <favourites_count>15</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>63</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 22 15:27:40 +0000 2010</created_at>
-    <id>14499651048</id>
-    <text>Ryan Dahl on #node.js video http://www.yuiblog.com/blog/2010/05/20/video-dahl/</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>8136372</id>
-  <name>BizHat.com</name>
-  <screen_name>bizhat</screen_name>
-  <location/>
-  <description/>
-  <profile_image_url>http://a1.twimg.com/profile_images/417144074/pookalam_normal.jpg</profile_image_url>
-  <url>http://bizhat.com</url>
-  <protected>false</protected>
-  <followers_count>91</followers_count>
-  <profile_background_color>B2DFDA</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>93A644</profile_link_color>
-  <profile_sidebar_fill_color>ffffff</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>eeeeee</profile_sidebar_border_color>
-  <friends_count>107</friends_count>
-  <created_at>Sun Aug 12 07:33:18 +0000 2007</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-36000</utc_offset>
-  <time_zone>Hawaii</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/37107528/P1010004.JPG</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>66</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 22 21:17:13 +0000 2010</created_at>
-    <id>14516850022</id>
-    <text>Final tweet of @netizentwo who passed away in plane crash 22 Mar 2009  #mangalore #india</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>9826072</id>
-  <name>jDempster</name>
-  <screen_name>jDempster</screen_name>
-  <location>Northampton, UK</location>
-  <description>the one constant in life, is change</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/82171216/jd2_normal.png</profile_image_url>
-  <url>http://www.jdempster.com/</url>
-  <protected>false</protected>
-  <followers_count>26</followers_count>
-  <profile_background_color>C6E2EE</profile_background_color>
-  <profile_text_color>663B12</profile_text_color>
-  <profile_link_color>1F98C7</profile_link_color>
-  <profile_sidebar_fill_color>DAECF4</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>C6E2EE</profile_sidebar_border_color>
-  <friends_count>44</friends_count>
-  <created_at>Wed Oct 31 15:08:37 +0000 2007</created_at>
-  <favourites_count>8</favourites_count>
-  <utc_offset>0</utc_offset>
-  <time_zone>London</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme2/bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>74</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Thu Apr 22 17:14:04 +0000 2010</created_at>
-    <id>12650534190</id>
-    <text>@giorgiosironi I recommed ZFS. lol. But I don't think can do diffs.</text>
-    <source>&lt;a href="http://www.tweetdeck.com/" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>12631604856</in_reply_to_status_id>
-    <in_reply_to_user_id>47998559</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>giorgiosironi</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>17519155</id>
-  <name>macrina32</name>
-  <screen_name>macrina32</screen_name>
-  <location>Albany</location>
-  <description/>
-  <profile_image_url>http://s.twimg.com/a/1274899949/images/default_profile_3_normal.png</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>0</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>12</friends_count>
-  <created_at>Thu Nov 20 19:20:55 +0000 2008</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-18000</utc_offset>
-  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>3</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Thu May 13 15:04:00 +0000 2010</created_at>
-    <id>13918571519</id>
-    <text>@flyosity def worth it!</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>13895993105</in_reply_to_status_id>
-    <in_reply_to_user_id>10545</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>flyosity</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>21287694</id>
-  <name>Anthony Sterling</name>
-  <screen_name>AnthonySterling</screen_name>
-  <location>Newcastle-Upon-Tyne, UK</location>
-  <description>Full-time IT manager, part-time freelance PHP ninja.</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/933539796/colour-border_normal.jpg</profile_image_url>
-  <url>http://www.anthonysterling.com</url>
-  <protected>false</protected>
-  <followers_count>245</followers_count>
-  <profile_background_color>022330</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>0084B4</profile_link_color>
-  <profile_sidebar_fill_color>C0DFEC</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>a8c7f7</profile_sidebar_border_color>
-  <friends_count>100</friends_count>
-  <created_at>Thu Feb 19 10:14:59 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>0</utc_offset>
-  <time_zone>London</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme15/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>2081</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 14:18:07 +0000 2010</created_at>
-    <id>15043898545</id>
-    <text>I love this quote regarding #freelancing - "I am not in the fast food business. I am a chef." - http://is.gd/cvGN0 /by @drewcrawford</text>
-    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>17366945</id>
-  <name>Travis Pew</name>
-  <screen_name>travispew</screen_name>
-  <location>Decatur, GA</location>
-  <description>Founder of www.gymgenius.com</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/650725821/profile_normal.JPG</profile_image_url>
-  <url>http://www.gymgenius.com</url>
-  <protected>false</protected>
-  <followers_count>63</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>102</friends_count>
-  <created_at>Thu Nov 13 15:37:28 +0000 2008</created_at>
-  <favourites_count>1</favourites_count>
-  <utc_offset>-18000</utc_offset>
-  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274739546/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>233</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 22 17:29:56 +0000 2010</created_at>
-    <id>14506398878</id>
-    <text>@Juniper949 ok i am convinced.</text>
-    <source>&lt;a href="http://www.echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>14505975800</in_reply_to_status_id>
-    <in_reply_to_user_id>33581425</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>Juniper949</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>14438478</id>
-  <name>Chris Morrell</name>
-  <screen_name>inxilpro</screen_name>
-  <location>Philadelphia, PA</location>
-  <description>Chris is a Web designer and developer in Philadelphia, PA.</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/56452575/Twitter_normal.jpg</profile_image_url>
-  <url>http://cmorrell.com</url>
-  <protected>false</protected>
-  <followers_count>183</followers_count>
-  <profile_background_color>eadfca</profile_background_color>
-  <profile_text_color>0C3E53</profile_text_color>
-  <profile_link_color>FF0000</profile_link_color>
-  <profile_sidebar_fill_color>f9f8f3</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>E0DAC4</profile_sidebar_border_color>
-  <friends_count>77</friends_count>
-  <created_at>Fri Apr 18 22:57:36 +0000 2008</created_at>
-  <favourites_count>81</favourites_count>
-  <utc_offset>-18000</utc_offset>
-  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/3522136/twitter-bg.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>1222</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 02:38:54 +0000 2010</created_at>
-    <id>14877191308</id>
-    <text>@r38y do you have Photoshop? It's just the noise filter as far as I can tell from that picture.</text>
-    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>14860091448</in_reply_to_status_id>
-    <in_reply_to_user_id>1465521</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>r38y</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>12165542</id>
-  <name>Victor Zamfir</name>
-  <screen_name>victorzamfir</screen_name>
-  <location>Romania</location>
-  <description/>
-  <profile_image_url>http://s.twimg.com/a/1274144130/images/default_profile_4_normal.png</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>77</followers_count>
-  <profile_background_color>030303</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>0084B4</profile_link_color>
-  <profile_sidebar_fill_color>e6ecee</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>e6ecee</profile_sidebar_border_color>
-  <friends_count>146</friends_count>
-  <created_at>Sat Jan 12 22:47:55 +0000 2008</created_at>
-  <favourites_count>72</favourites_count>
-  <utc_offset>-10800</utc_offset>
-  <time_zone>Greenland</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/88406645/backg-metromind2.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>1</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat Nov 28 21:55:21 +0000 2009</created_at>
-    <id>6151979356</id>
-    <text>RT @MihaiDragan: RT @webmyc: Romani Anti PSD - f bun! http://www.romaniantipsd.ro/</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <retweeted_status>
-      <created_at>Sat Nov 28 20:25:57 +0000 2009</created_at>
-      <id>6149928020</id>
-      <text>RT @webmyc: Romani Anti PSD - f bun! http://www.romaniantipsd.ro/</text>
-      <source>&lt;a href="http://echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
-      <truncated>false</truncated>
-      <in_reply_to_status_id/>
-      <in_reply_to_user_id/>
-      <favorited>false</favorited>
-      <in_reply_to_screen_name/>
-      <geo/>
-      <coordinates/>
-      <place/>
-      <contributors/>
-    </retweeted_status>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>23214328</id>
-  <name>Źmicier Hryškievič</name>
-  <screen_name>zmicier</screen_name>
-  <location/>
-  <description/>
-  <profile_image_url>http://a3.twimg.com/profile_images/697397811/me_normal.jpg</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>12</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>15</friends_count>
-  <created_at>Sat Mar 07 17:37:34 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Warsaw</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>1</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Tue Jan 26 23:40:50 +0000 2010</created_at>
-    <id>8255909159</id>
-    <text>Trip to Cracow. 5 hours remaining</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>70735867</id>
-  <name>Sebastian Krebs</name>
-  <screen_name>SeKrebs</screen_name>
-  <location>Berlin, Germany</location>
-  <description/>
-  <profile_image_url>http://a1.twimg.com/profile_images/393241806/av2_normal.jpg</profile_image_url>
-  <url>http://www.kingcrunch.de</url>
-  <protected>false</protected>
-  <followers_count>13</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>29</friends_count>
-  <created_at>Tue Sep 01 17:33:20 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Berlin</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274130900/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>46</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Wed May 19 17:02:35 +0000 2010</created_at>
-    <id>14305275370</id>
-    <text>RT s_bergmann: Mathematik und Logik dürfen nicht patentierbar sein: http://bit.ly/PP100519 #piraten+</text>
-    <source>&lt;a href="http://code.google.com/p/microblog-purple/" rel="nofollow"&gt;mbpidgin&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>28200993</id>
-  <name>Paul Court</name>
-  <screen_name>IAWDev</screen_name>
-  <location/>
-  <description>PHP Developer - Drupal &amp; Zend Framework mainly</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/144829882/teitter-logo2_normal.png</profile_image_url>
-  <url>http://www.itsaboutwebsites.com</url>
-  <protected>false</protected>
-  <followers_count>86</followers_count>
-  <profile_background_color>ffffff</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>0084B4</profile_link_color>
-  <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
-  <friends_count>63</friends_count>
-  <created_at>Wed Apr 01 21:29:15 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>0</utc_offset>
-  <time_zone>London</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/53735060/twt-bg.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>534</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 08:58:23 +0000 2010</created_at>
-    <id>14894270501</id>
-    <text>@rem I know what you mean!! I'm getting things vanishing from the page when I hover over them while "inspecting element"!</text>
-    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>14892093556</in_reply_to_status_id>
-    <in_reply_to_user_id>648873</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>rem</in_reply_to_screen_name>
-    <geo xmlns:georss="http://www.georss.org/georss">
-      <georss:point>53.51785234 -2.93405566</georss:point>
-    </geo>
-    <coordinates xmlns:georss="http://www.georss.org/georss">
-      <georss:point>53.51785234 -2.93405566</georss:point>
-    </coordinates>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>21797442</id>
-  <name>George Miroshnikov</name>
-  <screen_name>LaggyLuke</screen_name>
-  <location>Kyiv, Ukraine</location>
-  <description/>
-  <profile_image_url>http://a1.twimg.com/profile_images/82397314/570e2341344234f5a22d40059586caff_normal.jpeg</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>26</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>21</friends_count>
-  <created_at>Tue Feb 24 21:04:27 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>7200</utc_offset>
-  <time_zone>Kyiv</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>97</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Wed May 26 13:33:28 +0000 2010</created_at>
-    <id>14763275289</id>
-    <text>@egorFiNE well, maybe there's a chance for me with some localized Russian or even Ukrainian version :)</text>
-    <source>&lt;a href="http://github.com/cezarsa/chromed_bird" rel="nofollow"&gt;Chromed Bird&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>14759313446</in_reply_to_status_id>
-    <in_reply_to_user_id>5957612</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>egorFiNE</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>14853168</id>
-  <name>Christer</name>
-  <screen_name>cogocogo</screen_name>
-  <location>Fredrikstad, Norway</location>
-  <description>Nerd from Norway enjoying PHP, beer and climbing. Senior developer at vg.no.</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/55660178/n624270202_478062_2727_normal.jpg</profile_image_url>
-  <url>http://cogo.wordpress.com/</url>
-  <protected>false</protected>
-  <followers_count>100</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>75</friends_count>
-  <created_at>Wed May 21 06:32:16 +0000 2008</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Stockholm</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274914417/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>301</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 08:22:37 +0000 2010</created_at>
-    <id>14893074549</id>
-    <text>Packing my bag for a weekend in Dublin!</text>
-    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>15947185</id>
-  <name>Tips, Tools, Status</name>
-  <screen_name>Twitter_Tips</screen_name>
-  <location>Minneapolis, MN</location>
-  <description>On Twitter.Alltop.com — Twitter tips, tools, news &amp; status from @SarahJL (radio DJ, dance teacher) &amp; @QuantumGood (resident geek)</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/58879430/Tweeple_Helpers_normal.png</profile_image_url>
-  <url>http://TwitterUserManual.com/</url>
-  <protected>false</protected>
-  <followers_count>186829</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>1C1200</profile_text_color>
-  <profile_link_color>2562FD</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>127105</friends_count>
-  <created_at>Fri Aug 22 16:55:46 +0000 2008</created_at>
-  <favourites_count>12</favourites_count>
-  <utc_offset>-21600</utc_offset>
-  <time_zone>Central Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/4791709/Twitter_Tips_Awards.png</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>19572</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 13:59:45 +0000 2010</created_at>
-    <id>15042804558</id>
-    <text>Telcel customers/Mexico can now send tweets via SMS. Visit http://j.mp/ckgynl to get started</text>
-    <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>121860608</id>
-  <name>Andrew Smith</name>
-  <screen_name>di0nysys</screen_name>
-  <location>Toronto</location>
-  <description>for the real me, goto my facebook page.</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/745044038/twitter_normal.jpg</profile_image_url>
-  <url/>
-  <protected>true</protected>
-  <followers_count>3</followers_count>
-  <profile_background_color>ECD078</profile_background_color>
-  <profile_text_color>D95B43</profile_text_color>
-  <profile_link_color>C02942</profile_link_color>
-  <profile_sidebar_fill_color>542437</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>53777A</profile_sidebar_border_color>
-  <friends_count>676</friends_count>
-  <created_at>Wed Mar 10 20:54:34 +0000 2010</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-18000</utc_offset>
-  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/92176410/x85dd5d3151b4f3b888b807a9ed5b1d6.png</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>184</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-</user>
-<user>
-  <id>118724553</id>
-  <name>Steve I</name>
-  <screen_name>torylaw</screen_name>
-  <location/>
-  <description>I will not be using this account</description>
-  <profile_image_url>http://s.twimg.com/a/1274130900/images/default_profile_3_normal.png</profile_image_url>
-  <url/>
-  <protected>true</protected>
-  <followers_count>2</followers_count>
-  <profile_background_color>352726</profile_background_color>
-  <profile_text_color>3E4415</profile_text_color>
-  <profile_link_color>D02B55</profile_link_color>
-  <profile_sidebar_fill_color>99CC33</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>829D5E</profile_sidebar_border_color>
-  <friends_count>598</friends_count>
-  <created_at>Mon Mar 01 15:29:23 +0000 2010</created_at>
-  <favourites_count>2</favourites_count>
-  <utc_offset>-18000</utc_offset>
-  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme5/bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>48</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-</user>
-<user>
-  <id>56805372</id>
-  <name>Worky Developer</name>
-  <screen_name>WorkyDev</screen_name>
-  <location>Dublin</location>
-  <description/>
-  <profile_image_url>http://a3.twimg.com/profile_images/630886395/workyMan-solo_normal_normal.png</profile_image_url>
-  <url>http://www.worky.com</url>
-  <protected>false</protected>
-  <followers_count>20</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>18</friends_count>
-  <created_at>Tue Jul 14 20:25:55 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>0</utc_offset>
-  <time_zone>Dublin</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>9</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 21 15:47:19 +0000 2010</created_at>
-    <id>14436185662</id>
-    <text>hats off to the latest google homepage, mr and mrs packman ride again :)</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>18915942</id>
-  <name>Mad Dog Digital</name>
-  <screen_name>maddog_dave</screen_name>
-  <location/>
-  <description>Mad Dog Digital, Dublin, Ireland. Web design, development, online advertising and multimedia agency. HTML/CSS, Wordpress CMS, Flash, Actionscript and Richmedia.</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/563026373/dave_logo_normal.png</profile_image_url>
-  <url>http://www.maddog.ie</url>
-  <protected>false</protected>
-  <followers_count>555</followers_count>
-  <profile_background_color>afa394</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>533A1A</profile_link_color>
-  <profile_sidebar_fill_color>ededed</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>533A1A</profile_sidebar_border_color>
-  <friends_count>547</friends_count>
-  <created_at>Mon Jan 12 21:18:26 +0000 2009</created_at>
-  <favourites_count>3</favourites_count>
-  <utc_offset>0</utc_offset>
-  <time_zone>Dublin</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/5087062/bg.jpg</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications/>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following/>
-  <statuses_count>1004</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 21:52:49 +0000 2010</created_at>
-    <id>14934336352</id>
-    <text>Sorry watching a on Sky+ about 15 mins behind. That woman is a tosser!</text>
-    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>118651468</id>
-  <name>Simon Griffiths</name>
-  <screen_name>simonpgriffiths</screen_name>
-  <location/>
-  <description>Web developer, sys admin, dba and generally amazing guy!</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/729540287/smooch_profile_normal.jpg</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>20</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>34</friends_count>
-  <created_at>Mon Mar 01 10:25:42 +0000 2010</created_at>
-  <favourites_count>1</favourites_count>
-  <utc_offset/>
-  <time_zone/>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>205</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Thu May 27 20:55:31 +0000 2010</created_at>
-    <id>14858717547</id>
-    <text>@iandeveloper yea it will, prolly wont work though ;-)  man these queries in the home page are mental, some will deffo struggle with zf db</text>
-    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>14858239458</in_reply_to_status_id>
-    <in_reply_to_user_id>143537143</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>iandeveloper</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>117471817</id>
-  <name>Ross Baker</name>
-  <screen_name>LoadedSquirrel</screen_name>
-  <location>NY, USA</location>
-  <description>I'm a regular guy just looking to live a decent life. Be a respectable American. Do good when I can. I'm a gamer and Inspirer.</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/893101696/conker_icon_normal.jpg</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>22</followers_count>
-  <profile_background_color>FCF8BC</profile_background_color>
-  <profile_text_color>051f59</profile_text_color>
-  <profile_link_color>ff7105</profile_link_color>
-  <profile_sidebar_fill_color>b1ddf2</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>D6156C</profile_sidebar_border_color>
-  <friends_count>60</friends_count>
-  <created_at>Thu Feb 25 17:28:31 +0000 2010</created_at>
-  <favourites_count>4</favourites_count>
-  <utc_offset>-18000</utc_offset>
-  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/81293115/x1534c55fce63377e3cefc1513204ce6.jpg</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>76</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Thu May 27 19:09:41 +0000 2010</created_at>
-    <id>14853624419</id>
-    <text>Neave Planetarium ...the sky in your web browser. *jawdropped me* http://su.pr/71bBl9 #astronomy #stars #starmap #coolstuff</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>9913542</id>
-  <name>Andrei Serdeliuc</name>
-  <screen_name>extraordinaire</screen_name>
-  <location>Eastbourne</location>
-  <description>Code whisperer @ 3ev.com</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/406101854/Photo_on_2009-09-09_at_13.15__2_normal.jpg</profile_image_url>
-  <url>http://extraordinaire.me</url>
-  <protected>false</protected>
-  <followers_count>378</followers_count>
-  <profile_background_color>2c211b</profile_background_color>
-  <profile_text_color>754746</profile_text_color>
-  <profile_link_color>259400</profile_link_color>
-  <profile_sidebar_fill_color>F3EEEB</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>F3EEeb</profile_sidebar_border_color>
-  <friends_count>145</friends_count>
-  <created_at>Sat Nov 03 12:39:58 +0000 2007</created_at>
-  <favourites_count>141</favourites_count>
-  <utc_offset>0</utc_offset>
-  <time_zone>London</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/2841362/twitter.jpg</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications/>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following/>
-  <statuses_count>3342</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Mon May 24 18:53:25 +0000 2010</created_at>
-    <id>14640804551</id>
-    <text>Just went to the doctor, ointment is such a silly sounding word isn't it?</text>
-    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>14996367</id>
-  <name>Matthias v/d Heide</name>
-  <screen_name>matthiasvdh</screen_name>
-  <location>Netherlands</location>
-  <description>Student, software developer, techie, Lego fan</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/269860838/Untitled_normal.png</profile_image_url>
-  <url>http://vanderheide.it</url>
-  <protected>false</protected>
-  <followers_count>78</followers_count>
-  <profile_background_color>0099B9</profile_background_color>
-  <profile_text_color>3C3940</profile_text_color>
-  <profile_link_color>0099B9</profile_link_color>
-  <profile_sidebar_fill_color>95E8EC</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>5ED4DC</profile_sidebar_border_color>
-  <friends_count>153</friends_count>
-  <created_at>Tue Jun 03 19:19:52 +0000 2008</created_at>
-  <favourites_count>205</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Amsterdam</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme4/bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>755</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 10:30:33 +0000 2010</created_at>
-    <id>15033538555</id>
-    <text>@padraicb please add a test for using the 'cursor' parameter on Zend_Service_Twitter::userFriends(). And then make it pass. ;-)</text>
-    <source>&lt;a href="https://oauth.filttr.com/" rel="nofollow"&gt;Filttr&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>15008737288</in_reply_to_status_id>
-    <in_reply_to_user_id>9075802</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>padraicb</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>19656811</id>
-  <name>SIAAR | CEO | SG</name>
-  <screen_name>siaargroup</screen_name>
-  <location>India</location>
-  <description>Basically I am an IT Professional, I write Blogs based on IT Topics based on my personal Expereinces...</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/73755566/aejaz_normal.jpg</profile_image_url>
-  <url>http://siaargroup.blogspot.com</url>
-  <protected>false</protected>
-  <followers_count>5500</followers_count>
-  <profile_background_color>000000</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>B70001</profile_link_color>
-  <profile_sidebar_fill_color>adadad</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>B70001</profile_sidebar_border_color>
-  <friends_count>5800</friends_count>
-  <created_at>Wed Jan 28 15:30:03 +0000 2009</created_at>
-  <favourites_count>4</favourites_count>
-  <utc_offset>19800</utc_offset>
-  <time_zone>Chennai</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/70198559/siaarlogo.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>3635</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 06:49:04 +0000 2010</created_at>
-    <id>15025903255</id>
-    <text>Sharing Internet Connection:... http://ff.im/-l9Pyu</text>
-    <source>&lt;a href="http://friendfeed.com" rel="nofollow"&gt;FriendFeed&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>15593496</id>
-  <name>garrizaldy</name>
-  <screen_name>garrizaldy</screen_name>
-  <location>Metro Manila, Philippines</location>
-  <description>Build something that you want others to build for you.</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/934985663/jinnai_normal.jpg</profile_image_url>
-  <url>http://flavors.me/garrizaldy</url>
-  <protected>true</protected>
-  <followers_count>33</followers_count>
-  <profile_background_color>1A1B1F</profile_background_color>
-  <profile_text_color>666666</profile_text_color>
-  <profile_link_color>2FC2EF</profile_link_color>
-  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
-  <friends_count>39</friends_count>
-  <created_at>Fri Jul 25 03:20:58 +0000 2008</created_at>
-  <favourites_count>1</favourites_count>
-  <utc_offset>28800</utc_offset>
-  <time_zone>Hong Kong</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/3095575/back.gif</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>501</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-</user>
-<user>
-  <id>56225738</id>
-  <name>francisco echeverri</name>
-  <screen_name>ninjalord84</screen_name>
-  <location/>
-  <description/>
-  <profile_image_url>http://s.twimg.com/a/1274144130/images/default_profile_2_normal.png</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>68</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>450</friends_count>
-  <created_at>Sun Jul 12 23:44:03 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset/>
-  <time_zone/>
-  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>1</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Mon Jul 13 02:24:47 +0000 2009</created_at>
-    <id>2607573047</id>
-    <text>RT FREE Twitter Software that you can use on your website or WordPress Blog! You have to check it out at http://mytweetelite.com</text>
-    <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>117030265</id>
-  <name>Troels Knak-Nielsen</name>
-  <screen_name>troelskn</screen_name>
-  <location>Copenhagen, Denmark</location>
-  <description/>
-  <profile_image_url>http://a1.twimg.com/profile_images/715373478/troels_normal.jpg</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>78</followers_count>
-  <profile_background_color>C0DEED</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>0084B4</profile_link_color>
-  <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
-  <friends_count>117</friends_count>
-  <created_at>Wed Feb 24 09:30:21 +0000 2010</created_at>
-  <favourites_count>1</favourites_count>
-  <utc_offset/>
-  <time_zone/>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/78378559/pattern_111.gif</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>96</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 07:11:57 +0000 2010</created_at>
-    <id>15026757146</id>
-    <text>RT @sweatje: OH Come to the Dork side, we have π
-#fb</text>
-    <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <retweeted_status>
-      <created_at>Sat May 29 22:02:46 +0000 2010</created_at>
-      <id>15001137735</id>
-      <text>OH Come to the Dork side, we have π
-#fb</text>
-      <source>web</source>
-      <truncated>false</truncated>
-      <in_reply_to_status_id/>
-      <in_reply_to_user_id/>
-      <favorited>false</favorited>
-      <in_reply_to_screen_name/>
-      <geo/>
-      <coordinates/>
-      <place/>
-      <contributors/>
-    </retweeted_status>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>20759488</id>
-  <name>Michael Pieperhoff</name>
-  <screen_name>SilverCircle</screen_name>
-  <location/>
-  <description/>
-  <profile_image_url>http://a1.twimg.com/profile_images/78755558/mean_normal.png</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>35</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>27</friends_count>
-  <created_at>Fri Feb 13 09:43:38 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset/>
-  <time_zone/>
-  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>97</statuses_count>
-  <lang>de</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Thu Jan 28 08:50:54 +0000 2010</created_at>
-    <id>8315960718</id>
-    <text>RT @stadt_marketing: #Traunstein # Altstadtfest 17.07.2010</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <retweeted_status>
-      <created_at>Wed Jan 27 21:18:43 +0000 2010</created_at>
-      <id>8294813086</id>
-      <text>#Traunstein # Altstadtfest 17.07.2010</text>
-      <source>&lt;a href="http://echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
-      <truncated>false</truncated>
-      <in_reply_to_status_id/>
-      <in_reply_to_user_id/>
-      <favorited>false</favorited>
-      <in_reply_to_screen_name/>
-      <geo/>
-      <coordinates/>
-      <place/>
-      <contributors/>
-    </retweeted_status>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>42937812</id>
-  <name>Bobby C</name>
-  <screen_name>_phineas</screen_name>
-  <location>Philadelphia, Pennsylvania</location>
-  <description>Web developer, internet marketing, php, zend framework, social media</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/862699329/me-cropped_normal.jpg</profile_image_url>
-  <url/>
-  <protected>true</protected>
-  <followers_count>6</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>38</friends_count>
-  <created_at>Wed May 27 18:00:58 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-18000</utc_offset>
-  <time_zone>Quito</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1273875281/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>33</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-</user>
-<user>
-  <id>14150898</id>
-  <name>rvdavid</name>
-  <screen_name>rvdavid</screen_name>
-  <location>Sydney, Australia</location>
-  <description>I develop mission critical web apps and sites. I work directly w/ clients and/or service providers. My Skillset: PHP, MySQL, X/HTML, CSS, JavaScript.</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/613678319/rvdavid_normal.jpg</profile_image_url>
-  <url>http://www.rvdavid.net/</url>
-  <protected>false</protected>
-  <followers_count>139</followers_count>
-  <profile_background_color>1a1b1f</profile_background_color>
-  <profile_text_color>666666</profile_text_color>
-  <profile_link_color>2FC2EF</profile_link_color>
-  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>ffffff</profile_sidebar_border_color>
-  <friends_count>30</friends_count>
-  <created_at>Sat Mar 15 02:33:07 +0000 2008</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>36000</utc_offset>
-  <time_zone>Sydney</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/78797015/twitterback.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>853</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 05:11:40 +0000 2010</created_at>
-    <id>15021949248</id>
-    <text>Found an old external backup drive - what a trip through memory lane this is. It's been quite a ride, the past 10 years of my life has...</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>13284092</id>
-  <name>Endijs</name>
-  <screen_name>Endijs</screen_name>
-  <location>Latvia, Jelgava</location>
-  <description/>
-  <profile_image_url>http://a1.twimg.com/profile_images/884323844/37d8da70-6322-46e5-a862-cf79b84ecd55_normal.jpg</profile_image_url>
-  <url>http://endijs.com</url>
-  <protected>false</protected>
-  <followers_count>433</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>118</friends_count>
-  <created_at>Sat Feb 09 15:33:41 +0000 2008</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>7200</utc_offset>
-  <time_zone>Riga</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>2404</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 29 19:47:57 +0000 2010</created_at>
-    <id>14994850660</id>
-    <text>Smieklīgi. Nordea krājkonta procenti Zelta klientam ir lielāki kā Zelta klienta depozītam uz 3mēn. Kur loģika?</text>
-    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>13892042</id>
-  <name>Alex Barth</name>
-  <screen_name>lxbarth</screen_name>
-  <location>Washington DC</location>
-  <description>Open Data, News Tracking, Drupal. @developmentseed</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/52529282/195892215_7b0faba08c_normal.jpg</profile_image_url>
-  <url>http://www.developmentseed.org/blog</url>
-  <protected>false</protected>
-  <followers_count>556</followers_count>
-  <profile_background_color>9AE4E8</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>0084B4</profile_link_color>
-  <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
-  <friends_count>366</friends_count>
-  <created_at>Sun Feb 24 05:46:29 +0000 2008</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-18000</utc_offset>
-  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>1709</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 29 16:38:22 +0000 2010</created_at>
-    <id>14985320905</id>
-    <text>CNN maps fallen soldier's home location and where they died http://is.gd/cuwWo (via @elgreg)</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>20971380</id>
-  <name>Ole Markus With</name>
-  <screen_name>olemarkus</screen_name>
-  <location>Trondheim, Norway</location>
-  <description>Master of Computer Science student with an addiction to PHP, Gentoo Linux and heavy metal</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/632663735/twitterProfilePhoto_normal.jpg</profile_image_url>
-  <url>http://my.opera.com/olemarkus</url>
-  <protected>false</protected>
-  <followers_count>75</followers_count>
-  <profile_background_color>8B542B</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>9D582E</profile_link_color>
-  <profile_sidebar_fill_color>EADEAA</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>D9B17E</profile_sidebar_border_color>
-  <friends_count>42</friends_count>
-  <created_at>Mon Feb 16 08:44:13 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Stockholm</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme8/bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>219</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Thu May 27 08:41:33 +0000 2010</created_at>
-    <id>14822015556</id>
-    <text>RT @tychay: I'm not embarassed for my country. #AmericaSpeakingOut http://is.gd/cqq2s</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <retweeted_status>
-      <created_at>Wed May 26 20:30:33 +0000 2010</created_at>
-      <id>14786532308</id>
-      <text>I'm not embarassed for my country. #AmericaSpeakingOut http://is.gd/cqq2s</text>
-      <source>&lt;a href="http://www.twitlet.com" rel="nofollow"&gt;Twitlet&lt;/a&gt;</source>
-      <truncated>false</truncated>
-      <in_reply_to_status_id/>
-      <in_reply_to_user_id/>
-      <favorited>false</favorited>
-      <in_reply_to_screen_name/>
-      <geo/>
-      <coordinates/>
-      <place/>
-      <contributors/>
-    </retweeted_status>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>14208622</id>
-  <name>Ricky Dunlop</name>
-  <screen_name>rickydunlop</screen_name>
-  <location>Belfast, Northern Ireland</location>
-  <description>I'm 26 and lead PHP developer at rehabstudio, Support Chelsea FC and like to DJ now and again. Also a keen runner</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/776545465/rd_normal.png</profile_image_url>
-  <url>http://www.rickydunlop.co.uk</url>
-  <protected>false</protected>
-  <followers_count>155</followers_count>
-  <profile_background_color>1e1a1f</profile_background_color>
-  <profile_text_color>12401e</profile_text_color>
-  <profile_link_color>403f3a</profile_link_color>
-  <profile_sidebar_fill_color>67f40b</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>ffffff</profile_sidebar_border_color>
-  <friends_count>181</friends_count>
-  <created_at>Mon Mar 24 16:44:50 +0000 2008</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>0</utc_offset>
-  <time_zone>London</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/3566155/flower_vector.png</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications/>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following/>
-  <statuses_count>922</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 09:03:35 +0000 2010</created_at>
-    <id>14894455033</id>
-    <text>@cornercraig There's no cd drive on it, or usb or any connections really</text>
-    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>14894408103</in_reply_to_status_id>
-    <in_reply_to_user_id>20014857</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>cornercraig</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>111291721</id>
-  <name>Chun</name>
-  <screen_name>xunlee</screen_name>
-  <location>Europe</location>
-  <description>Web developing all day long...</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/675227116/andy_guitar_normal.jpg</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>24</followers_count>
-  <profile_background_color>352726</profile_background_color>
-  <profile_text_color>464d14</profile_text_color>
-  <profile_link_color>ad1c43</profile_link_color>
-  <profile_sidebar_fill_color>ebebeb</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>ffffff</profile_sidebar_border_color>
-  <friends_count>66</friends_count>
-  <created_at>Thu Feb 04 12:21:00 +0000 2010</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Paris</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme9/bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>58</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Tue May 25 13:15:38 +0000 2010</created_at>
-    <id>14691935024</id>
-    <text>@francetvdirect formidable merci :-)</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>14690652034</in_reply_to_status_id>
-    <in_reply_to_user_id>128183958</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>francetvdirect</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>110975283</id>
-  <name>Antoine Hedgecock</name>
-  <screen_name>mac_nibblet</screen_name>
-  <location>Sweden, Uppsala</location>
-  <description>I have my own view of life, and i love it. Have fun and do what you love, in my case that Web development (PHP,Js,SQL) Gymnastics and windsurfing! </description>
-  <profile_image_url>http://a1.twimg.com/profile_images/675292520/19180_252310728549_529293549_3215945_2362829_n_normal.jpg</profile_image_url>
-  <url>http://www.pmg.se</url>
-  <protected>false</protected>
-  <followers_count>14</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>44</friends_count>
-  <created_at>Wed Feb 03 11:54:49 +0000 2010</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Stockholm</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274914417/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>108</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 13:05:28 +0000 2010</created_at>
-    <id>15039826134</id>
-    <text>@webide I have a problem with scrolling on mac its freaking slow and i cannot adjust it. works perfectly to scroll on firefox etc..</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id>115180931</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>webide</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>57753613</id>
-  <name>Birgir Haraldsson</name>
-  <screen_name>bix0r</screen_name>
-  <location>Akureyri, Iceland</location>
-  <description>#programmer @stefna, #linux admin and user #gentoo</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/341312109/biggi_stefna.is_avatar_normal.jpg</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>112</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>150</friends_count>
-  <created_at>Fri Jul 17 20:50:50 +0000 2009</created_at>
-  <favourites_count>14</favourites_count>
-  <utc_offset>0</utc_offset>
-  <time_zone>Casablanca</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>310</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 22 15:41:16 +0000 2010</created_at>
-    <id>14500424205</id>
-    <text>@harabanar naw vinn ekki hjá Google: ( þarf víst að bíða eins og aðrir.</text>
-    <source>&lt;a href="http://mobile.twitter.com" rel="nofollow"&gt;Twitter for Android&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>14500295004</in_reply_to_status_id>
-    <in_reply_to_user_id>17242117</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>harabanar</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>14337070</id>
-  <name>ischenko</name>
-  <screen_name>ischenko</screen_name>
-  <location>Кривой Рог</location>
-  <description>Программист PHP, Zend Framework, JavaScript</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/53034241/DSC00314_normal.jpg</profile_image_url>
-  <url>http://www.jstoolbox.com</url>
-  <protected>false</protected>
-  <followers_count>124</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>74</friends_count>
-  <created_at>Tue Apr 08 23:08:49 +0000 2008</created_at>
-  <favourites_count>6</favourites_count>
-  <utc_offset/>
-  <time_zone/>
-  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>635</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Thu May 27 12:32:53 +0000 2010</created_at>
-    <id>14831211543</id>
-    <text>RT @rutkovsky: ребята, ретвитните, пожалуйста, эту новость (http://ow.ly/1QyId) о том, что в райотделе милиции погиб студент. Нужно гово ...</text>
-    <source>&lt;a href="http://github.com/cezarsa/chromed_bird" rel="nofollow"&gt;Chromed Bird&lt;/a&gt;</source>
-    <truncated>true</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <retweeted_status>
-      <created_at>Thu May 27 11:00:34 +0000 2010</created_at>
-      <id>14826971388</id>
-      <text>ребята, ретвитните, пожалуйста, эту новость (http://ow.ly/1QyId) о том, что в райотделе милиции погиб студент. Нужно говорить об этом.</text>
-      <source>&lt;a href="http://www.hootsuite.com" rel="nofollow"&gt;HootSuite&lt;/a&gt;</source>
-      <truncated>false</truncated>
-      <in_reply_to_status_id/>
-      <in_reply_to_user_id/>
-      <favorited>false</favorited>
-      <in_reply_to_screen_name/>
-      <geo/>
-      <coordinates/>
-      <place/>
-      <contributors/>
-    </retweeted_status>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>66941572</id>
-  <name>IamUrban</name>
-  <screen_name>iamurbannet</screen_name>
-  <location>Netherlands / Belgium</location>
-  <description>ONLINE SOON....</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/569766646/Naamloos2_normal.jpg</profile_image_url>
-  <url>http://COMING.SOON</url>
-  <protected>false</protected>
-  <followers_count>113</followers_count>
-  <profile_background_color>ffffff</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>0084B4</profile_link_color>
-  <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
-  <friends_count>534</friends_count>
-  <created_at>Wed Aug 19 07:41:53 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Amsterdam</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/59134031/aw2max2.jpg</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>8</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri Dec 11 16:32:29 +0000 2009</created_at>
-    <id>6571293832</id>
-    <text>RT @BWSE_Nazz RT: @LuxuryEnt: Make sure you follow @iamurbannet , more info Soon!!!</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>98099737</id>
-  <name>technews</name>
-  <screen_name>proftechnews</screen_name>
-  <location/>
-  <description>i'm News and comment from the world  technology update dan the future</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/583574529/AAAAAAAAA_normal.jpg</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>155</followers_count>
-  <profile_background_color>C0DEED</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>0084B4</profile_link_color>
-  <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
-  <friends_count>872</friends_count>
-  <created_at>Sun Dec 20 10:29:22 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/60876532/BBBBB.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>5</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Mon Jan 04 12:36:42 +0000 2010</created_at>
-    <id>7365571409</id>
-    <text>Want to make money on twitter and have fun to http://bit.ly/6BiLk3 It Rocks</text>
-    <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>28810674</id>
-  <name>insigne Design</name>
-  <screen_name>insigneDesign</screen_name>
-  <location>Knoxville, TN</location>
-  <description>insigne Design is the typeface design studio of Jeremy Dooley. Tweets about the design process, typography, small business and random stuff I find on the web.</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/312237246/Squarelogo_normal.gif</profile_image_url>
-  <url>http://www.insignedesign.com</url>
-  <protected>false</protected>
-  <followers_count>2760</followers_count>
-  <profile_background_color>ffffff</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>72af63</profile_link_color>
-  <profile_sidebar_fill_color>fbcb82</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>0b88ae</profile_sidebar_border_color>
-  <friends_count>3037</friends_count>
-  <created_at>Sat Apr 04 15:22:12 +0000 2009</created_at>
-  <favourites_count>1</favourites_count>
-  <utc_offset>-18000</utc_offset>
-  <time_zone>Quito</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/23101921/twitter.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>1134</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Thu May 27 16:32:24 +0000 2010</created_at>
-    <id>14845357361</id>
-    <text>Carta Marina 33% off for the rest of the week: http://new.myfonts.com/fonts/insigne/carta-marina/</text>
-    <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>112693181</id>
-  <name>360Naija Forum</name>
-  <screen_name>360Naija_Blog</screen_name>
-  <location>Lagos</location>
-  <description>360Naija Forum</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/687035664/site_logo2_normal.gif</profile_image_url>
-  <url>http://www.360naija.com</url>
-  <protected>false</protected>
-  <followers_count>283</followers_count>
-  <profile_background_color>000000</profile_background_color>
-  <profile_text_color>d67f04</profile_text_color>
-  <profile_link_color>ffb70f</profile_link_color>
-  <profile_sidebar_fill_color>383737</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>000000</profile_sidebar_border_color>
-  <friends_count>2002</friends_count>
-  <created_at>Tue Feb 09 11:37:19 +0000 2010</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Amsterdam</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/74023680/site_logo.gif</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>3319</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 14:03:55 +0000 2010</created_at>
-    <id>15043057667</id>
-    <text>World Cup 2010 - Report: Security threat serious http://bit.ly/a6YLGq</text>
-    <source>&lt;a href="http://twitterfeed.com" rel="nofollow"&gt;twitterfeed&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>10212462</id>
-  <name>medvetalp</name>
-  <screen_name>medvetalp</screen_name>
-  <location/>
-  <description/>
-  <profile_image_url>http://s.twimg.com/a/1274739546/images/default_profile_1_normal.png</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>59</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>124</friends_count>
-  <created_at>Tue Nov 13 12:30:12 +0000 2007</created_at>
-  <favourites_count>3</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Budapest</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274739546/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>false</following>
-  <statuses_count>43</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Thu May 13 12:50:09 +0000 2010</created_at>
-    <id>13912034159</id>
-    <text>Vajon van rajta backdoor? :) RT @syntaxerror13: cool RT @atomvillanas: a hacker hazat mindenki vagja itt a karoly koruton ugye? :)...</text>
-    <source>&lt;a href="http://www.hootsuite.com" rel="nofollow"&gt;HootSuite&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-</users>

+ 0 - 4655
tests/Zend/Service/Twitter/_files/statuses.friends.xml

@@ -1,4655 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<users type="array">
-<user>
-  <id>783214</id>
-  <name>Twitter</name>
-  <screen_name>twitter</screen_name>
-  <location>San Francisco, CA</location>
-  <description>Always wondering what's happening. </description>
-  <profile_image_url>http://a1.twimg.com/profile_images/878669694/twitter_bird_normal.jpg</profile_image_url>
-  <url>http://twitter.com</url>
-  <protected>false</protected>
-  <followers_count>3229766</followers_count>
-  <profile_background_color>ACDED6</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>038543</profile_link_color>
-  <profile_sidebar_fill_color>F6F6F6</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>EEEEEE</profile_sidebar_border_color>
-  <friends_count>247</friends_count>
-  <created_at>Tue Feb 20 14:35:54 +0000 2007</created_at>
-  <favourites_count>2</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme18/bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>true</verified>
-  <following>true</following>
-  <statuses_count>745</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>true</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 21:14:05 +0000 2010</created_at>
-    <id>14932507266</id>
-    <text>Good news for people everywhere http://bit.ly/b1Cf9A</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors>
-      <user_id>16739704</user_id>
-    </contributors>
-  </status>
-</user>
-<user>
-  <id>34175976</id>
-  <name>Jewel Staite</name>
-  <screen_name>JewelStaite</screen_name>
-  <location>Los Angeles, California</location>
-  <description>Avid lover of food, wine, shoes, cocker spaniels, and my husband. In no particular order. </description>
-  <profile_image_url>http://a3.twimg.com/profile_images/726184245/TWITTER_normal.bmp</profile_image_url>
-  <url>http://www.jewelstaite.com</url>
-  <protected>false</protected>
-  <followers_count>46784</followers_count>
-  <profile_background_color>0099B9</profile_background_color>
-  <profile_text_color>3C3940</profile_text_color>
-  <profile_link_color>0099B9</profile_link_color>
-  <profile_sidebar_fill_color>95E8EC</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>5ED4DC</profile_sidebar_border_color>
-  <friends_count>49</friends_count>
-  <created_at>Wed Apr 22 04:01:43 +0000 2009</created_at>
-  <favourites_count>1</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme4/bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>291</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 22:22:23 +0000 2010</created_at>
-    <id>14935771120</id>
-    <text>Headed up to wine country (yes, again. Shut up.) to celebrate my birthday for the weekend! So very happy and excited to be turning 25 again!</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>87594768</id>
-  <name>Kevin Schroeder</name>
-  <screen_name>kpschrade</screen_name>
-  <location/>
-  <description>Technology Evangelist for Zend Technologies.  Co-author of the IBM i Programmer's Guide to PHP</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/790382249/Little_Schrade_normal.gif</profile_image_url>
-  <url>http://www.eschrade.com</url>
-  <protected>false</protected>
-  <followers_count>172</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>137</friends_count>
-  <created_at>Thu Nov 05 02:17:15 +0000 2009</created_at>
-  <favourites_count>1</favourites_count>
-  <utc_offset/>
-  <time_zone/>
-  <profile_background_image_url>http://s.twimg.com/a/1274834447/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>546</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Wed May 26 23:40:11 +0000 2010</created_at>
-    <id>14796133356</id>
-    <text>2012 is when #f1 returns to the US.  Austin, TX to be exact. I'll take a race I can drive to http://bit.ly/cNiUBz</text>
-    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>17963909</id>
-  <name>Jean-Michel</name>
-  <screen_name>jmpnadeau</screen_name>
-  <location>Montréal, Qc, Canada</location>
-  <description>Internet infrastructures architect, systems administrator &amp; entrepreneur. Interested in high performance computing, clouds &amp; grids. 
-Technology lead @giftiniti</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/826076310/avatar-square_normal.png</profile_image_url>
-  <url>http://jmpnadeau.ca</url>
-  <protected>false</protected>
-  <followers_count>382</followers_count>
-  <profile_background_color>1A1B1F</profile_background_color>
-  <profile_text_color>666666</profile_text_color>
-  <profile_link_color>2FC2EF</profile_link_color>
-  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
-  <friends_count>545</friends_count>
-  <created_at>Mon Dec 08 14:52:36 +0000 2008</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-18000</utc_offset>
-  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme9/bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>198</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 16:43:18 +0000 2010</created_at>
-    <id>14918204354</id>
-    <text>Facebook's Culture Problem May Be Fatal (from HBR) http://bit.ly/bdGY57</text>
-    <source>&lt;a href="http://seesmic.com/app" rel="nofollow"&gt;Seesmic Web&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>141186979</id>
-  <name>Shaun Steenkamp</name>
-  <screen_name>epsiloncrucis</screen_name>
-  <location>Mackay, Qld, Australia</location>
-  <description>PHP Programmer, Accountant, Aspiring Academic</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/880632909/GalacticCore_normal.png</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>2</followers_count>
-  <profile_background_color>1A1B1F</profile_background_color>
-  <profile_text_color>666666</profile_text_color>
-  <profile_link_color>2FC2EF</profile_link_color>
-  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
-  <friends_count>7</friends_count>
-  <created_at>Fri May 07 11:44:40 +0000 2010</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>36000</utc_offset>
-  <time_zone>Brisbane</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme9/bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>3</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Wed May 12 08:00:46 +0000 2010</created_at>
-    <id>13838819266</id>
-    <text>Jupiter loses a stripe - space - 11 May 2010 - New Scientist: http://bit.ly/cNpI4n via @addthis</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>114510988</id>
-  <name>♥</name>
-  <screen_name>SaveOurSeeker</screen_name>
-  <location/>
-  <description/>
-  <profile_image_url>http://a1.twimg.com/profile_images/697506036/SOSicon_normal.jpg</profile_image_url>
-  <url>http://www.saveourseeker.com/</url>
-  <protected>false</protected>
-  <followers_count>1476</followers_count>
-  <profile_background_color>371f2e</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>371f6e</profile_link_color>
-  <profile_sidebar_fill_color>91b53e</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>91b53e</profile_sidebar_border_color>
-  <friends_count>270</friends_count>
-  <created_at>Mon Feb 15 17:21:51 +0000 2010</created_at>
-  <favourites_count>1</favourites_count>
-  <utc_offset>-25200</utc_offset>
-  <time_zone>Mountain Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/75486965/sosbackground2.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>446</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 29 20:10:40 +0000 2010</created_at>
-    <id>14995946574</id>
-    <text>CAMPAIGN: Write/email to Target, Wal-Mart, Best Buy, Borders, B&amp;N) and ask them to carry the S1 DVD in-store. More info: http://is.gd/ct8nz</text>
-    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>19421365</id>
-  <name>Jumpgate Evolution</name>
-  <screen_name>JumpgateEvo</screen_name>
-  <location>Space</location>
-  <description>Exhilarating space combat on a vast scale.</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/339201034/twitter_logo_normal.jpg</profile_image_url>
-  <url>http://www.jumpgateevolution.com</url>
-  <protected>false</protected>
-  <followers_count>1559</followers_count>
-  <profile_background_color>000000</profile_background_color>
-  <profile_text_color>666666</profile_text_color>
-  <profile_link_color>2FC2EF</profile_link_color>
-  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
-  <friends_count>20</friends_count>
-  <created_at>Fri Jan 23 23:15:53 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-21600</utc_offset>
-  <time_zone>Central Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/26381712/twitter_jg.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>176</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 01 16:00:26 +0000 2010</created_at>
-    <id>13195360582</id>
-    <text>@chaosteil We'll hopefully be filming, yes, but being there in person will be oh-so-much sweeter I guarantee it. ;) ^RJ</text>
-    <source>&lt;a href="http://cotweet.com/?utm_source=sp1" rel="nofollow"&gt;CoTweet&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>13184038646</in_reply_to_status_id>
-    <in_reply_to_user_id>15980149</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>chaosteil</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>111701709</id>
-  <name>Old Noob</name>
-  <screen_name>Old_Noob</screen_name>
-  <location/>
-  <description>I'm a long-time RPG fan, but still a bit of a n00b with MMO video games.  Check out my site for great fantasy and RPG video games!</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/678042169/avatar_normal.jpg</profile_image_url>
-  <url>http://mmorpgnoob.com</url>
-  <protected>false</protected>
-  <followers_count>1127</followers_count>
-  <profile_background_color>131516</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>009999</profile_link_color>
-  <profile_sidebar_fill_color>efefef</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>eeeeee</profile_sidebar_border_color>
-  <friends_count>1794</friends_count>
-  <created_at>Fri Feb 05 21:40:49 +0000 2010</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-25200</utc_offset>
-  <time_zone>Mountain Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/72777520/avatar.jpg</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>128</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Thu May 27 15:51:03 +0000 2010</created_at>
-    <id>14842843690</id>
-    <text>What about a list of two player cooperative games like Gauntlet.  I guess FFCCEoT had cooperative mode.  Too bad it sucked.</text>
-    <source>&lt;a href="http://www.hootsuite.com" rel="nofollow"&gt;HootSuite&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>20664078</id>
-  <name>Black Prophecy</name>
-  <screen_name>BlackProphecy</screen_name>
-  <location>Space</location>
-  <description>Begin your journey into space and experience fast-paced real-time action as a fighter pilot in countless hazardous missions and epic battles.</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/335992886/twitter_normal.jpg</profile_image_url>
-  <url>http://www.blackprophecy.com</url>
-  <protected>false</protected>
-  <followers_count>766</followers_count>
-  <profile_background_color>000000</profile_background_color>
-  <profile_text_color>7faeb1</profile_text_color>
-  <profile_link_color>ff7c00</profile_link_color>
-  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
-  <friends_count>0</friends_count>
-  <created_at>Thu Feb 12 09:22:53 +0000 2009</created_at>
-  <favourites_count>4</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Brussels</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/25943527/twitter_background.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>82</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Thu May 27 17:11:25 +0000 2010</created_at>
-    <id>14847637719</id>
-    <text>New interview with Creative Director Timo Krahl on MMORPG.com. Check it out at http://blackprophecy.gamigo.com/forum/showthread.php?t=1852</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>21797442</id>
-  <name>George Miroshnikov</name>
-  <screen_name>LaggyLuke</screen_name>
-  <location>Kyiv, Ukraine</location>
-  <description/>
-  <profile_image_url>http://a1.twimg.com/profile_images/82397314/570e2341344234f5a22d40059586caff_normal.jpeg</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>26</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>21</friends_count>
-  <created_at>Tue Feb 24 21:04:27 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>7200</utc_offset>
-  <time_zone>Kyiv</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>97</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Wed May 26 13:33:28 +0000 2010</created_at>
-    <id>14763275289</id>
-    <text>@egorFiNE well, maybe there's a chance for me with some localized Russian or even Ukrainian version :)</text>
-    <source>&lt;a href="http://github.com/cezarsa/chromed_bird" rel="nofollow"&gt;Chromed Bird&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>14759313446</in_reply_to_status_id>
-    <in_reply_to_user_id>5957612</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>egorFiNE</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>18897157</id>
-  <name>KM Troedsson</name>
-  <screen_name>L_Twin</screen_name>
-  <location>Stockholm</location>
-  <description>GM for game developer DICE, working with our talented dev teams to deliver all of studio’s titles. Passionate gamer with a thing for motorcycles.</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/98202265/Karl_Magnus_Troedsson_2_lo-res_normal.jpg</profile_image_url>
-  <url>http://www.battlefield.com/</url>
-  <protected>false</protected>
-  <followers_count>3354</followers_count>
-  <profile_background_color>ffffff</profile_background_color>
-  <profile_text_color>a8a8a8</profile_text_color>
-  <profile_link_color>2FC2EF</profile_link_color>
-  <profile_sidebar_fill_color>2e231a</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>000000</profile_sidebar_border_color>
-  <friends_count>200</friends_count>
-  <created_at>Mon Jan 12 10:20:17 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Stockholm</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/19982027/Twitter_BG_4.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>1896</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 05:11:59 +0000 2010</created_at>
-    <id>14885876908</id>
-    <text>@winsrp The BF2 ribbons? Don't know really, guessing they're handmade.</text>
-    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>14866436737</in_reply_to_status_id>
-    <in_reply_to_user_id>33629979</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>winsrp</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>81406494</id>
-  <name>Mike Sussman</name>
-  <screen_name>WrittenByMikeS</screen_name>
-  <location>Los Angeles</location>
-  <description>Writer/Producer</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/838655403/MDS_normal.jpg</profile_image_url>
-  <url>http://writtenbymikesussman.com </url>
-  <protected>false</protected>
-  <followers_count>1918</followers_count>
-  <profile_background_color>131516</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>009999</profile_link_color>
-  <profile_sidebar_fill_color>efefef</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>eeeeee</profile_sidebar_border_color>
-  <friends_count>26</friends_count>
-  <created_at>Sat Oct 10 17:53:00 +0000 2009</created_at>
-  <favourites_count>1</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/104304400/greenhollywood.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>101</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 15 22:45:45 +0000 2010</created_at>
-    <id>14062434889</id>
-    <text>"Unbroken" my last #LegendoftheSeeker episode airing this weekend. *sniff* Directed by @MichaelHurstNow, starring transcendent @BridgetRegan</text>
-    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>28211953</id>
-  <name>Priyal</name>
-  <screen_name>legendoftheseek</screen_name>
-  <location> CA</location>
-  <description>PLEASE SAVE OUR SEEKER!!!!!!!!!!!! IT IS ALL WE HAVE THAT IS GREAT TV AND HAS ACTION, ROMANCE, CRAIG, AND BRIDGET IN IT</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/821665041/twitterProfilePhoto_normal.jpg</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>339</followers_count>
-  <profile_background_color>9AE4E8</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>0084B4</profile_link_color>
-  <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
-  <friends_count>465</friends_count>
-  <created_at>Wed Apr 01 22:20:32 +0000 2009</created_at>
-  <favourites_count>11</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/56217514/Legend_of_the_Seeker_season_2.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>358</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 03:04:03 +0000 2010</created_at>
-    <id>15015457570</id>
-    <text>Who would win in a fight between Richard from Seeker and Arthur from Merlin??</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>32960094</id>
-  <name>Bridget Regan</name>
-  <screen_name>BridgetRegan</screen_name>
-  <location>Los Angeles?</location>
-  <description>I'm an actor and producer.</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/733203766/MDU09945_10_003_p_normal.jpg</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>12480</followers_count>
-  <profile_background_color>C0DEED</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>0084B4</profile_link_color>
-  <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
-  <friends_count>41</friends_count>
-  <created_at>Sat Apr 18 18:04:18 +0000 2009</created_at>
-  <favourites_count>1</favourites_count>
-  <utc_offset>43200</utc_offset>
-  <time_zone>Auckland</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/46278372/IMG_3364.JPG</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>263</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 14:33:13 +0000 2010</created_at>
-    <id>15044761843</id>
-    <text>RT @CAMPWANATACHI: What Would T-PAIN Do!? He'd autotune a musical, that's what. http://tinyurl.com/39mgcll http://twitpic.com/1ra2wc</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <retweeted_status>
-      <created_at>Wed May 26 16:13:07 +0000 2010</created_at>
-      <id>14773125001</id>
-      <text>What Would T-PAIN Do!? He'd autotune a musical, that's what. http://tinyurl.com/39mgcll http://twitpic.com/1ra2wc</text>
-      <source>&lt;a href="http://twitpic.com" rel="nofollow"&gt;Twitpic&lt;/a&gt;</source>
-      <truncated>false</truncated>
-      <in_reply_to_status_id/>
-      <in_reply_to_user_id/>
-      <favorited>false</favorited>
-      <in_reply_to_screen_name/>
-      <geo/>
-      <coordinates/>
-      <place/>
-      <contributors/>
-    </retweeted_status>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>5802762</id>
-  <name>David Hewlett</name>
-  <screen_name>dhewlett</screen_name>
-  <location>Washington State</location>
-  <description>Daddy-Nerd, Actor-Nerd Writer-Nerd Director-Nerd and All round Geek!</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/644512199/wideye_normal.jpg</profile_image_url>
-  <url>http://www.adogsbreakfastmovie.com</url>
-  <protected>false</protected>
-  <followers_count>25417</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>49</friends_count>
-  <created_at>Sun May 06 06:53:21 +0000 2007</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>1765</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 29 05:34:05 +0000 2010</created_at>
-    <id>14957548812</id>
-    <text>Our beloved @ew just gave Splice an A-! Unfortunately Jane reads it in the shower so it's a soggy A-...strangely I was not mentioned ;-)</text>
-    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>14287005</id>
-  <name>Paul Anthony</name>
-  <screen_name>webireland</screen_name>
-  <location>Belfast</location>
-  <description>.NET code monkey extraordinare.</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/425853164/paul_normal.jpg</profile_image_url>
-  <url>http://blog.webdistortion.com/?utm_source=twitter&amp;utm_medium=social_media&amp;utm_campaign=ProfileURL</url>
-  <protected>false</protected>
-  <followers_count>1422</followers_count>
-  <profile_background_color>ffffff</profile_background_color>
-  <profile_text_color>666666</profile_text_color>
-  <profile_link_color>2FC2EF</profile_link_color>
-  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
-  <friends_count>1057</friends_count>
-  <created_at>Wed Apr 02 20:08:29 +0000 2008</created_at>
-  <favourites_count>22</favourites_count>
-  <utc_offset>0</utc_offset>
-  <time_zone>Dublin</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/77619351/n19040221057_2014.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>5782</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 29 15:18:56 +0000 2010</created_at>
-    <id>14980630732</id>
-    <text>If you are using #CCCCCC as body text colour (or lighter) - I aint straining my eyes for you.</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>14869245</id>
-  <name>julienPauli</name>
-  <screen_name>julienPauli</screen_name>
-  <location>Paris</location>
-  <description>ZCE, ZFCE. Web app architect. PHP, Apache, ZendF contributor</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/715548091/julienP_normal.jpg</profile_image_url>
-  <url>http://www.alterway.fr</url>
-  <protected>false</protected>
-  <followers_count>24</followers_count>
-  <profile_background_color>ACDED6</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>038543</profile_link_color>
-  <profile_sidebar_fill_color>F6F6F6</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>EEEEEE</profile_sidebar_border_color>
-  <friends_count>56</friends_count>
-  <created_at>Thu May 22 15:05:58 +0000 2008</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Paris</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme18/bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>0</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-</user>
-<user>
-  <id>18899837</id>
-  <name>openstandards</name>
-  <screen_name>openstandards</screen_name>
-  <location/>
-  <description/>
-  <profile_image_url>http://s.twimg.com/a/1274899949/images/default_profile_5_normal.png</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>34</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>0</friends_count>
-  <created_at>Mon Jan 12 13:01:58 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset/>
-  <time_zone/>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>23</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Tue Feb 09 08:07:43 +0000 2010</created_at>
-    <id>8846571181</id>
-    <text>RT @Open_Sourcing: Good paper! RT @LauraDeNardis Citron's "One Way Mirror: Enhancing....." http://digitalcommons.law.umaryland.edu/fac_p ...</text>
-    <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
-    <truncated>true</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <retweeted_status>
-      <created_at>Mon Feb 08 23:18:54 +0000 2010</created_at>
-      <id>8829436211</id>
-      <text>Good paper! RT @LauraDeNardis Citron's "One Way Mirror: Enhancing....." http://digitalcommons.law.umaryland.edu/fac_pubs/853/</text>
-      <source>web</source>
-      <truncated>false</truncated>
-      <in_reply_to_status_id/>
-      <in_reply_to_user_id/>
-      <favorited>false</favorited>
-      <in_reply_to_screen_name/>
-      <geo/>
-      <coordinates/>
-      <place/>
-      <contributors/>
-    </retweeted_status>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>15986114</id>
-  <name>Johannes Schlüter</name>
-  <screen_name>phperror</screen_name>
-  <location/>
-  <description>A random dude</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/58881546/elephpant-128x128_normal.JPG</profile_image_url>
-  <url>http://schlueters.de</url>
-  <protected>false</protected>
-  <followers_count>393</followers_count>
-  <profile_background_color>9999CD</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>000099</profile_link_color>
-  <profile_sidebar_fill_color>666699</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>000000</profile_sidebar_border_color>
-  <friends_count>127</friends_count>
-  <created_at>Mon Aug 25 19:36:28 +0000 2008</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Berlin</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>618</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 14:25:52 +0000 2010</created_at>
-    <id>15044338024</id>
-    <text>http://www.focus.de/digital/computer/tid-18400/apple-die-technik-konterrevolution_aid_512425.html</text>
-    <source>&lt;a href="http://echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>19551514</id>
-  <name>Alexander Veremyev</name>
-  <screen_name>CawaSPB</screen_name>
-  <location/>
-  <description/>
-  <profile_image_url>http://s.twimg.com/a/1274899949/images/default_profile_3_normal.png</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>27</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>7</friends_count>
-  <created_at>Mon Jan 26 19:24:25 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>10800</utc_offset>
-  <time_zone>St. Petersburg</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>3</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Thu Feb 04 23:56:27 +0000 2010</created_at>
-    <id>8653702328</id>
-    <text>Ya-hoo! First Russian Zend Framework conference is officially announced! :)
-http://tinyurl.com/y933rcz</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>85299238</id>
-  <name>Union of RAD</name>
-  <screen_name>UnionOfRAD</screen_name>
-  <location>Everywhere</location>
-  <description>A group of developers dedicated to helping each other write better software.</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/649025772/uor-660_normal.png</profile_image_url>
-  <url>http://rad-dev.org/</url>
-  <protected>false</protected>
-  <followers_count>189</followers_count>
-  <profile_background_color>e6e6e6</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>000000</profile_link_color>
-  <profile_sidebar_fill_color>e6e6e6</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>ffffff</profile_sidebar_border_color>
-  <friends_count>18</friends_count>
-  <created_at>Mon Oct 26 12:07:58 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-18000</utc_offset>
-  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/68991767/uor-660.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>43</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 21 22:00:37 +0000 2010</created_at>
-    <id>14455024193</id>
-    <text>5,100 Unique Visitors to rad-dev.org in the last month. Not too shabby. #li3</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>94172381</id>
-  <name>Brian Swan</name>
-  <screen_name>brian_swan</screen_name>
-  <location>Redmond, WA</location>
-  <description>Blogger about all things related to PHP and Microsoft. Rookie husband/dad. Amatuer Mtn. biker, runner, hiker. Experienced beer drinker.</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/624949934/Brian_2_normal.jpg</profile_image_url>
-  <url>http://blogs.msdn.com/brian_swan/</url>
-  <protected>false</protected>
-  <followers_count>119</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>159</friends_count>
-  <created_at>Wed Dec 02 20:47:52 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274834447/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>197</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 18:58:15 +0000 2010</created_at>
-    <id>14925757554</id>
-    <text>@enygma  Picked it up this morning? Is that breakfast?</text>
-    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>14925469046</in_reply_to_status_id>
-    <in_reply_to_user_id>8854032</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>enygma</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>92359611</id>
-  <name>Medal of Honor</name>
-  <screen_name>medalofhonor</screen_name>
-  <location>Los Angeles</location>
-  <description>There is a new enemy. There is a new war. There is a new warrior. He is Tier 1. </description>
-  <profile_image_url>http://a1.twimg.com/profile_images/555288054/twitter_pic_normal.jpg</profile_image_url>
-  <url>http://www.medalofhonor.com</url>
-  <protected>false</protected>
-  <followers_count>5957</followers_count>
-  <profile_background_color>000000</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>0084B4</profile_link_color>
-  <profile_sidebar_fill_color>c2c2c2</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>000000</profile_sidebar_border_color>
-  <friends_count>251</friends_count>
-  <created_at>Tue Nov 24 20:38:24 +0000 2009</created_at>
-  <favourites_count>2</favourites_count>
-  <utc_offset>-32400</utc_offset>
-  <time_zone>Alaska</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/103800040/moh_twitter_final_rangertrailer.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>124</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Mon May 24 21:01:10 +0000 2010</created_at>
-    <id>14647009445</id>
-    <text>It's Military Monday at MedalofHonor.com and we have a new blog up entield "The Mind of a Soldier". http://bit.ly/dDc4Qm</text>
-    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>18849313</id>
-  <name>Matthew Pruitt</name>
-  <screen_name>matthewpruitt</screen_name>
-  <location>Los Angeles, CA | from Detroit</location>
-  <description>I oversee the communities for all of the Electronic Arts first-person shooter games.</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/769039947/twit_normal.jpg</profile_image_url>
-  <url>http://www.linkedin.com/in/matthewpruitt</url>
-  <protected>false</protected>
-  <followers_count>1875</followers_count>
-  <profile_background_color>1A1B1F</profile_background_color>
-  <profile_text_color>06001f</profile_text_color>
-  <profile_link_color>d94c17</profile_link_color>
-  <profile_sidebar_fill_color>ababab</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>000000</profile_sidebar_border_color>
-  <friends_count>220</friends_count>
-  <created_at>Sat Jan 10 22:46:39 +0000 2009</created_at>
-  <favourites_count>2</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/3868929/twitter.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>771</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Wed May 19 22:07:13 +0000 2010</created_at>
-    <id>14319327820</id>
-    <text>@mdk2002 Tier 1 beards FTW!</text>
-    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>14311379775</in_reply_to_status_id>
-    <in_reply_to_user_id>14506809</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>mdk2002</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>22903583</id>
-  <name>Lukas Kahwe Smith</name>
-  <screen_name>dybvandal</screen_name>
-  <location>Zurich</location>
-  <description>My twitter alter-ego is all about PHP, databases and other code related stuff.</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/734253815/n644648272_5107_normal.jpg</profile_image_url>
-  <url>http://pooteeweet.org</url>
-  <protected>false</protected>
-  <followers_count>217</followers_count>
-  <profile_background_color>1A1B1F</profile_background_color>
-  <profile_text_color>666666</profile_text_color>
-  <profile_link_color>2FC2EF</profile_link_color>
-  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
-  <friends_count>193</friends_count>
-  <created_at>Thu Mar 05 10:07:02 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Bern</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme9/bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>220</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 29 20:36:18 +0000 2010</created_at>
-    <id>14997168565</id>
-    <text>Decided to break through the wall, eat that #CSS, but then again I am sure a pixel-pusher could do it better http://search.UN-informed.org</text>
-    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>20609518</id>
-  <name>Dalai Lama</name>
-  <screen_name>DalaiLama</screen_name>
-  <location>Dharamsala, India</location>
-  <description>Welcome to the official twitter page of the Office of His Holiness the 14th Dalai Lama.</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/711293289/hhdl-twitter_normal.png</profile_image_url>
-  <url>http://dalailama.com</url>
-  <protected>false</protected>
-  <followers_count>381387</followers_count>
-  <profile_background_color>ffd21d</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>7d1900</profile_link_color>
-  <profile_sidebar_fill_color>f7f2dc</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>e8e3ce</profile_sidebar_border_color>
-  <friends_count>0</friends_count>
-  <created_at>Wed Feb 11 18:34:22 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>19800</utc_offset>
-  <time_zone>New Delhi</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/78185270/hhdl-twitter-bg.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>true</verified>
-  <following>true</following>
-  <statuses_count>154</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 09:42:44 +0000 2010</created_at>
-    <id>15031917082</id>
-    <text>We need to develop a sense of equanimity towards all living beings, expressed through the ability to relate to all others equally.</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>50000478</id>
-  <name>Alan Kertz</name>
-  <screen_name>Demize99</screen_name>
-  <location>Stockholm</location>
-  <description>Senior Gameplay Designer Battlefield: Bad Company 2
-Personal Tweets, All Thoughts my Own</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/361999768/Dimize99_WHITE_normal.gif</profile_image_url>
-  <url>http://www.battlefield.com/</url>
-  <protected>false</protected>
-  <followers_count>3438</followers_count>
-  <profile_background_color>1A1B1F</profile_background_color>
-  <profile_text_color>666666</profile_text_color>
-  <profile_link_color>2FC2EF</profile_link_color>
-  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
-  <friends_count>62</friends_count>
-  <created_at>Tue Jun 23 15:08:08 +0000 2009</created_at>
-  <favourites_count>5</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Stockholm</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme9/bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>2810</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 29 16:31:12 +0000 2010</created_at>
-    <id>14984908550</id>
-    <text>@therealcliffyb The game "press" is just blogs these days.  Catchy headlines and rumors get the page views.  #YellowGamingJournalism</text>
-    <source>&lt;a href="http://twitter.digsby.com/" rel="nofollow"&gt;Digsby&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>14980489438</in_reply_to_status_id>
-    <in_reply_to_user_id>48485771</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>therealcliffyb</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>119168161</id>
-  <name>Tweet Cloud</name>
-  <screen_name>tweetcloud_app</screen_name>
-  <location/>
-  <description/>
-  <profile_image_url>http://a3.twimg.com/profile_images/728439945/tweetcloud_normal.gif</profile_image_url>
-  <url>http://tweetcloud.icodeforlove.com/</url>
-  <protected>false</protected>
-  <followers_count>112691</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>6839</friends_count>
-  <created_at>Tue Mar 02 21:40:45 +0000 2010</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset/>
-  <time_zone/>
-  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>6</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 02 20:41:30 +0000 2010</created_at>
-    <id>13265152614</id>
-    <text>@BlackSwanMA I like that idea. I'm working on a total rehaul of TweetCloud. I'll definitely make a video :).</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>12162089671</in_reply_to_status_id>
-    <in_reply_to_user_id>129248147</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>BlackSwanMA</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>18211952</id>
-  <name>Tobias Schlitt</name>
-  <screen_name>tobySen</screen_name>
-  <location>Dinslaken, Germany</location>
-  <description>Addicted PHP developer and open source fetishist. Deutsch: @tobySde.</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/67831540/twitter_normal.jpg</profile_image_url>
-  <url>http://schlitt.info</url>
-  <protected>false</protected>
-  <followers_count>327</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>126</friends_count>
-  <created_at>Thu Dec 18 09:01:23 +0000 2008</created_at>
-  <favourites_count>2</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Berlin</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>1396</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 29 22:28:43 +0000 2010</created_at>
-    <id>15002363128</id>
-    <text>RT @muhdiekuh: Was fun to watch #esc with a group of nerds. Never had that much fun watching #esc before.</text>
-    <source>&lt;a href="https://launchpad.net/gwibber/" rel="nofollow"&gt;Gwibber&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>47429047</id>
-  <name>David Goldfarb</name>
-  <screen_name>locust9</screen_name>
-  <location>iPhone: 59.309566,18.075535</location>
-  <description>lead game designer and writer at DICE/EA. </description>
-  <profile_image_url>http://a3.twimg.com/profile_images/745238389/n724216978_180201_216_normal.jpg</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>1647</followers_count>
-  <profile_background_color>ACDED6</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>038543</profile_link_color>
-  <profile_sidebar_fill_color>F6F6F6</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>EEEEEE</profile_sidebar_border_color>
-  <friends_count>135</friends_count>
-  <created_at>Mon Jun 15 20:04:31 +0000 2009</created_at>
-  <favourites_count>12</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Amsterdam</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/71932982/FanSite-Twitter-BFBC2.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>1978</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 13:42:59 +0000 2010</created_at>
-    <id>15041821497</id>
-    <text>@murpo I never should have looked out the window</text>
-    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>15039006557</in_reply_to_status_id>
-    <in_reply_to_user_id>29172644</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>murpo</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>7210032</id>
-  <name>Philip G</name>
-  <screen_name>guice</screen_name>
-  <location>Dallas, TX</location>
-  <description/>
-  <profile_image_url>http://a3.twimg.com/profile_images/701521785/icon_normal.jpg</profile_image_url>
-  <url>http://www.gpcentre.net/</url>
-  <protected>false</protected>
-  <followers_count>127</followers_count>
-  <profile_background_color>022330</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>0084B4</profile_link_color>
-  <profile_sidebar_fill_color>C0DFEC</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>a8c7f7</profile_sidebar_border_color>
-  <friends_count>59</friends_count>
-  <created_at>Mon Jul 02 17:20:58 +0000 2007</created_at>
-  <favourites_count>2</favourites_count>
-  <utc_offset>-21600</utc_offset>
-  <time_zone>Central Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme15/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>2610</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 18:13:23 +0000 2010</created_at>
-    <id>14923416350</id>
-    <text>Awesome...I get to send back a 2.6k check because insurance decided to add "Ascent Home Loans Inc" to it. I have no idea who they are.</text>
-    <source>&lt;a href="http://www.tweetdeck.com/" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>117030265</id>
-  <name>Troels Knak-Nielsen</name>
-  <screen_name>troelskn</screen_name>
-  <location>Copenhagen, Denmark</location>
-  <description/>
-  <profile_image_url>http://a1.twimg.com/profile_images/715373478/troels_normal.jpg</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>78</followers_count>
-  <profile_background_color>C0DEED</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>0084B4</profile_link_color>
-  <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
-  <friends_count>117</friends_count>
-  <created_at>Wed Feb 24 09:30:21 +0000 2010</created_at>
-  <favourites_count>1</favourites_count>
-  <utc_offset/>
-  <time_zone/>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/78378559/pattern_111.gif</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>96</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 07:11:57 +0000 2010</created_at>
-    <id>15026757146</id>
-    <text>RT @sweatje: OH Come to the Dork side, we have π
-#fb</text>
-    <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <retweeted_status>
-      <created_at>Sat May 29 22:02:46 +0000 2010</created_at>
-      <id>15001137735</id>
-      <text>OH Come to the Dork side, we have π
-#fb</text>
-      <source>web</source>
-      <truncated>false</truncated>
-      <in_reply_to_status_id/>
-      <in_reply_to_user_id/>
-      <favorited>false</favorited>
-      <in_reply_to_screen_name/>
-      <geo/>
-      <coordinates/>
-      <place/>
-      <contributors/>
-    </retweeted_status>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>95479809</id>
-  <name>Sarah Porter</name>
-  <screen_name>cecilymsmith</screen_name>
-  <location>West Midlands</location>
-  <description>Computer Science student who loves the theatre, web design, programming, magic and giving fans a good name.</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/746720045/sarah_normal.jpg</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>20</followers_count>
-  <profile_background_color>e8e6da</profile_background_color>
-  <profile_text_color>585947</profile_text_color>
-  <profile_link_color>d01a54</profile_link_color>
-  <profile_sidebar_fill_color>fcb3d0</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>fcb3d0</profile_sidebar_border_color>
-  <friends_count>77</friends_count>
-  <created_at>Tue Dec 08 19:02:00 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>0</utc_offset>
-  <time_zone>London</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/60165476/twitterbackground.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>636</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Thu May 27 13:01:43 +0000 2010</created_at>
-    <id>14832765584</id>
-    <text>My new landlady's name is Stapleton! I wonder if she's into butterflies...? #SherlockHolmes</text>
-    <source>&lt;a href="http://github.com/cezarsa/chromed_bird" rel="nofollow"&gt;Chromed Bird&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>19268240</id>
-  <name>Raphael Almeida</name>
-  <screen_name>jaguarnet7</screen_name>
-  <location>Rio de Janeiro</location>
-  <description/>
-  <profile_image_url>http://a1.twimg.com/profile_images/72212876/gse_multipart68100_normal.jpg</profile_image_url>
-  <url>http://raphaeldealmeida.wordpress.com/</url>
-  <protected>false</protected>
-  <followers_count>95</followers_count>
-  <profile_background_color>709397</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>FF3300</profile_link_color>
-  <profile_sidebar_fill_color>A0C5C7</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>86A4A6</profile_sidebar_border_color>
-  <friends_count>94</friends_count>
-  <created_at>Wed Jan 21 00:55:28 +0000 2009</created_at>
-  <favourites_count>12</favourites_count>
-  <utc_offset>-10800</utc_offset>
-  <time_zone>Brasilia</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/86309735/l267.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>472</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 29 19:54:51 +0000 2010</created_at>
-    <id>14995181731</id>
-    <text>No #ParqueDasRuinas em #SantaTeresa 3G #fail direto</text>
-    <source>&lt;a href="http://www.seesmic.com/" rel="nofollow"&gt;Seesmic&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>14150898</id>
-  <name>rvdavid</name>
-  <screen_name>rvdavid</screen_name>
-  <location>Sydney, Australia</location>
-  <description>I develop mission critical web apps and sites. I work directly w/ clients and/or service providers. My Skillset: PHP, MySQL, X/HTML, CSS, JavaScript.</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/613678319/rvdavid_normal.jpg</profile_image_url>
-  <url>http://www.rvdavid.net/</url>
-  <protected>false</protected>
-  <followers_count>139</followers_count>
-  <profile_background_color>1a1b1f</profile_background_color>
-  <profile_text_color>666666</profile_text_color>
-  <profile_link_color>2FC2EF</profile_link_color>
-  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>ffffff</profile_sidebar_border_color>
-  <friends_count>30</friends_count>
-  <created_at>Sat Mar 15 02:33:07 +0000 2008</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>36000</utc_offset>
-  <time_zone>Sydney</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/78797015/twitterback.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>853</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 05:11:40 +0000 2010</created_at>
-    <id>15021949248</id>
-    <text>Found an old external backup drive - what a trip through memory lane this is. It's been quite a ride, the past 10 years of my life has...</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>13892042</id>
-  <name>Alex Barth</name>
-  <screen_name>lxbarth</screen_name>
-  <location>Washington DC</location>
-  <description>Open Data, News Tracking, Drupal. @developmentseed</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/52529282/195892215_7b0faba08c_normal.jpg</profile_image_url>
-  <url>http://www.developmentseed.org/blog</url>
-  <protected>false</protected>
-  <followers_count>556</followers_count>
-  <profile_background_color>9AE4E8</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>0084B4</profile_link_color>
-  <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
-  <friends_count>366</friends_count>
-  <created_at>Sun Feb 24 05:46:29 +0000 2008</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-18000</utc_offset>
-  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>1709</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 29 16:38:22 +0000 2010</created_at>
-    <id>14985320905</id>
-    <text>CNN maps fallen soldier's home location and where they died http://is.gd/cuwWo (via @elgreg)</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>10497972</id>
-  <name>Ben</name>
-  <screen_name>thejetset</screen_name>
-  <location>Dublin, Ireland</location>
-  <description>:) I love Tech!!</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/838741598/logo_normal.jpg</profile_image_url>
-  <url>http://ben.dismiz.com/</url>
-  <protected>false</protected>
-  <followers_count>552</followers_count>
-  <profile_background_color>696969</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>dbdbdb</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>ffffff</profile_sidebar_border_color>
-  <friends_count>291</friends_count>
-  <created_at>Fri Nov 23 17:32:27 +0000 2007</created_at>
-  <favourites_count>10</favourites_count>
-  <utc_offset>0</utc_offset>
-  <time_zone>Dublin</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/3254647/background.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>7179</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 14:04:11 +0000 2010</created_at>
-    <id>15043073918</id>
-    <text>@TrionaRose oh sweet....</text>
-    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>15042939825</in_reply_to_status_id>
-    <in_reply_to_user_id>15346035</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>TrionaRose</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>20536157</id>
-  <name>A Googler</name>
-  <screen_name>google</screen_name>
-  <location>Mountain View, CA</location>
-  <description>News and updates from Google</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/77186109/favicon_normal.png</profile_image_url>
-  <url>http://www.google.com/support/</url>
-  <protected>false</protected>
-  <followers_count>2260164</followers_count>
-  <profile_background_color>ffffff</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000cc</profile_link_color>
-  <profile_sidebar_fill_color>ebeff9</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>bbccff</profile_sidebar_border_color>
-  <friends_count>253</friends_count>
-  <created_at>Tue Feb 10 19:14:39 +0000 2009</created_at>
-  <favourites_count>81</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/6219441/bg-google-white-75.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>true</verified>
-  <following>true</following>
-  <statuses_count>1518</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>true</contributors_enabled>
-  <status>
-    <created_at>Sat May 29 21:17:00 +0000 2010</created_at>
-    <id>14999055999</id>
-    <text>Rising # of queries for [Kings Island] show Cinci-area residents seek holiday weekend fun, says @cindotcom. http://bit.ly/bqZE59</text>
-    <source>&lt;a href="http://bit.ly" rel="nofollow"&gt;bit.ly&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>110975283</id>
-  <name>Antoine Hedgecock</name>
-  <screen_name>mac_nibblet</screen_name>
-  <location>Sweden, Uppsala</location>
-  <description>I have my own view of life, and i love it. Have fun and do what you love, in my case that Web development (PHP,Js,SQL) Gymnastics and windsurfing! </description>
-  <profile_image_url>http://a1.twimg.com/profile_images/675292520/19180_252310728549_529293549_3215945_2362829_n_normal.jpg</profile_image_url>
-  <url>http://www.pmg.se</url>
-  <protected>false</protected>
-  <followers_count>14</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>44</friends_count>
-  <created_at>Wed Feb 03 11:54:49 +0000 2010</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Stockholm</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274914417/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>108</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 13:05:28 +0000 2010</created_at>
-    <id>15039826134</id>
-    <text>@webide I have a problem with scrolling on mac its freaking slow and i cannot adjust it. works perfectly to scroll on firefox etc..</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id>115180931</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>webide</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>1068831</id>
-  <name>Slashdot</name>
-  <screen_name>slashdot</screen_name>
-  <location/>
-  <description>Slashdot News Feed</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/646567569/appicon-sd_normal.png</profile_image_url>
-  <url>http://www.slashdot.org</url>
-  <protected>false</protected>
-  <followers_count>26285</followers_count>
-  <profile_background_color>275A3F</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>2</friends_count>
-  <created_at>Tue Mar 13 04:57:07 +0000 2007</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>19273</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 13:27:13 +0000 2010</created_at>
-    <id>15040933800</id>
-    <text>New Ebola Drug 100 Percent Effective In Monkeys http://bit.ly/dzc9NP</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>48027925</id>
-  <name>Jane Espenson</name>
-  <screen_name>JaneEspenson</screen_name>
-  <location>Los Angeles</location>
-  <description>Writer-Producer</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/917354703/NoH8JANE_normal.jpg</profile_image_url>
-  <url>http://janeespenson.com</url>
-  <protected>false</protected>
-  <followers_count>15339</followers_count>
-  <profile_background_color>24ff1c</profile_background_color>
-  <profile_text_color>3D1957</profile_text_color>
-  <profile_link_color>FF0000</profile_link_color>
-  <profile_sidebar_fill_color>7AC3EE</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>0738bd</profile_sidebar_border_color>
-  <friends_count>144</friends_count>
-  <created_at>Wed Jun 17 16:55:27 +0000 2009</created_at>
-  <favourites_count>1</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme10/bg.gif</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>1681</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 05:15:48 +0000 2010</created_at>
-    <id>15022129972</id>
-    <text>@Dominik500 I dunno... I don't think it's really him.  Doesn't look right to me.</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>15007788481</in_reply_to_status_id>
-    <in_reply_to_user_id>15719335</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>Dominik500</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>16839908</id>
-  <name>PHPGossip</name>
-  <screen_name>PHPGossip</screen_name>
-  <location>iPhone: 41.997592,-87.877326</location>
-  <description>We gossip about all that's happening in world of PHP.</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/276323044/php-icon_normal.png</profile_image_url>
-  <url>http://phpgossip.org</url>
-  <protected>false</protected>
-  <followers_count>129</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>0</friends_count>
-  <created_at>Sat Oct 18 15:26:16 +0000 2008</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Amsterdam</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>94</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 18:04:51 +0000 2010</created_at>
-    <id>14922949156</id>
-    <text>YZl9TD http://www.f8dpybvfNnMed027gchhA94jc.net</text>
-    <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>6461462</id>
-  <name>John Panzer</name>
-  <screen_name>jpanzer</screen_name>
-  <location/>
-  <description>I hack social software</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/461477381/me_normal.jpg</profile_image_url>
-  <url>http://www.abstractioneer.org/</url>
-  <protected>false</protected>
-  <followers_count>436</followers_count>
-  <profile_background_color>642D8B</profile_background_color>
-  <profile_text_color>3D1957</profile_text_color>
-  <profile_link_color>FF0000</profile_link_color>
-  <profile_sidebar_fill_color>7AC3EE</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>65B0DA</profile_sidebar_border_color>
-  <friends_count>125</friends_count>
-  <created_at>Thu May 31 04:21:51 +0000 2007</created_at>
-  <favourites_count>84</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme10/bg.gif</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>513</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 03:30:05 +0000 2010</created_at>
-    <id>15016926268</id>
-    <text>@Jason How about Top Kill II: Executive Purge?</text>
-    <source>&lt;a href="http://www.tweetdeck.com/" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id>3840</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>Jason</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>66116095</id>
-  <name>webfinger</name>
-  <screen_name>webfinger</screen_name>
-  <location/>
-  <description>An UNOFFICIAL twitter account following webfinger</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/364965447/webfinger_normal.gif</profile_image_url>
-  <url>http://code.google.com/p/webfinger/</url>
-  <protected>false</protected>
-  <followers_count>96</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>6</friends_count>
-  <created_at>Sun Aug 16 13:38:56 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset/>
-  <time_zone/>
-  <profile_background_image_url>http://s.twimg.com/a/1274382024/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>146</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Wed Mar 10 16:12:25 +0000 2010</created_at>
-    <id>10277619219</id>
-    <text>CommonLinkRelations (Common XRD Link Relations) Wiki page commented on by singpolyma: Is space-seperation of rels... http://bit.ly/b1YDe2</text>
-    <source>&lt;a href="http://twitterfeed.com" rel="nofollow"&gt;twitterfeed&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>105918185</id>
-  <name>Mikael Kalms</name>
-  <screen_name>Kalmalyzer</screen_name>
-  <location/>
-  <description/>
-  <profile_image_url>http://s.twimg.com/a/1274144130/images/default_profile_2_normal.png</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>306</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>10</friends_count>
-  <created_at>Sun Jan 17 23:01:50 +0000 2010</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset/>
-  <time_zone/>
-  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>140</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 14 23:27:36 +0000 2010</created_at>
-    <id>14003734320</id>
-    <text>@deplinenoise and rightly so!</text>
-    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>14003696882</in_reply_to_status_id>
-    <in_reply_to_user_id>84179009</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>deplinenoise</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>15165502</id>
-  <name>Spirit and Oppy </name>
-  <screen_name>MarsRovers</screen_name>
-  <location>Mars: Gusev Crater &amp; Meridiani</location>
-  <description>Roaming the Red Planet on six wheels since Jan 2004.  The official mission Twitter of the Spirit and Opportunity rovers.</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/670252813/136489main_PIA04413-feature-browse_normal.jpg</profile_image_url>
-  <url>http://marsrovers.jpl.nasa.gov</url>
-  <protected>false</protected>
-  <followers_count>44498</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>19</friends_count>
-  <created_at>Thu Jun 19 03:18:45 +0000 2008</created_at>
-  <favourites_count>2</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/2951594/Twitter_BG_5.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>378</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Mon May 24 23:59:07 +0000 2010</created_at>
-    <id>14656131117</id>
-    <text>@noahgmacs Yes, it was 6 years in January. Oppy is still driving these days. It is closer to the equator and has more sunlight for power.</text>
-    <source>&lt;a href="http://www.seesmic.com/" rel="nofollow"&gt;Seesmic&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>14653020592</in_reply_to_status_id>
-    <in_reply_to_user_id>29518703</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>noahgmacs</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>40729769</id>
-  <name>James</name>
-  <screen_name>xDeathReaperx</screen_name>
-  <location>Washington State :D - U.S.A</location>
-  <description>GamerTag: Kremble    PSN I.D: xDeathReaperx_2 Future Graphic Designer. And possibly Game Designer soon.</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/884190780/DRx31_normal.jpg</profile_image_url>
-  <url>http://www.teamplaystation.com/</url>
-  <protected>false</protected>
-  <followers_count>501</followers_count>
-  <profile_background_color>0099B9</profile_background_color>
-  <profile_text_color>3C3940</profile_text_color>
-  <profile_link_color>0099B9</profile_link_color>
-  <profile_sidebar_fill_color>95E8EC</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>5ED4DC</profile_sidebar_border_color>
-  <friends_count>300</friends_count>
-  <created_at>Sun May 17 20:26:34 +0000 2009</created_at>
-  <favourites_count>5</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/101937905/CARNIVAL.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>3516</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 14:02:30 +0000 2010</created_at>
-    <id>15042975664</id>
-    <text>Go to Glidden.com to get 2 FREE Paint Testers &amp; Give to to a friend. #GetColor Via @Glidden_Paint! Sponsored by http://spn.tw/cmqJ</text>
-    <source>&lt;a href="http://www.sponsoredtweets.com" rel="nofollow"&gt;Sponsored Tweets&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>13494882</id>
-  <name>Allen Wang</name>
-  <screen_name>Boxhead</screen_name>
-  <location>Bay Area, CA</location>
-  <description>Community Manager at Raptr, PC/360 gamer, Asian guy, athlete. My head is actually shaped like a box.</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/295867112/Facebook_-_Photos_of_You_1246649193137_normal.PNG</profile_image_url>
-  <url>http://raptr.com/Boxhead</url>
-  <protected>false</protected>
-  <followers_count>524</followers_count>
-  <profile_background_color>ffffff</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>A17700</profile_link_color>
-  <profile_sidebar_fill_color>bdbdbd</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>000000</profile_sidebar_border_color>
-  <friends_count>426</friends_count>
-  <created_at>Thu Feb 14 23:24:30 +0000 2008</created_at>
-  <favourites_count>1</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/28871085/nvRequiemForARobot.br.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>2895</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 08:48:30 +0000 2010</created_at>
-    <id>15030100446</id>
-    <text>Had a good time at #wedgecon! Just Dance tournament was hilarious and finally met some Twitter folks in person.</text>
-    <source>&lt;a href="http://www.echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>21683408</id>
-  <name>Corey Krause</name>
-  <screen_name>Cokra</screen_name>
-  <location>South Bend, IN</location>
-  <description>Artist, Gamer, Student, Video Editor/ Producer, and a bunch more.</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/922866407/Twit-2_normal.png</profile_image_url>
-  <url>http://www.youtube.com/icokrai</url>
-  <protected>false</protected>
-  <followers_count>405</followers_count>
-  <profile_background_color>131516</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>c91a1a</profile_link_color>
-  <profile_sidebar_fill_color>efefef</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>eeeeee</profile_sidebar_border_color>
-  <friends_count>176</friends_count>
-  <created_at>Mon Feb 23 19:28:17 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-21600</utc_offset>
-  <time_zone>Central Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme14/bg.gif</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>2298</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 01:06:00 +0000 2010</created_at>
-    <id>15009400126</id>
-    <text>played Call of Duty: Modern Warfare 2 (360) in the last 24 hours. http://raptr.com/CoKra</text>
-    <source>&lt;a href="http://www.raptr.com/" rel="nofollow"&gt;Raptr&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>102708290</id>
-  <name>The New Sleekness</name>
-  <screen_name>sleekness</screen_name>
-  <location>the internet</location>
-  <description>Rearranging the deck chairs on the Titanic</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/677408540/sleekness_normal.png</profile_image_url>
-  <url>http://www.thenewsleekness.com</url>
-  <protected>false</protected>
-  <followers_count>255</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>228</friends_count>
-  <created_at>Thu Jan 07 15:27:35 +0000 2010</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-18000</utc_offset>
-  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274130900/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>71</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Tue May 18 18:20:14 +0000 2010</created_at>
-    <id>14242551496</id>
-    <text>New post: Embracing the Game - http://is.gd/ceVKg</text>
-    <source>&lt;a href="http://www.bravenewcode.com/wordtwit/" rel="nofollow"&gt;WordTwit&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>24417275</id>
-  <name>Stephen Hawking</name>
-  <screen_name>Prof_S_Hawking</screen_name>
-  <location>Cambridge, UK</location>
-  <description>Theoretical physicist and Lucasian Professor of Mathematics at the University of Cambridge. Likes: black holes, cats and watching TV. </description>
-  <profile_image_url>http://a3.twimg.com/profile_images/96225201/me_normal.jpg</profile_image_url>
-  <url>http://www.hawking.org.uk/</url>
-  <protected>false</protected>
-  <followers_count>33426</followers_count>
-  <profile_background_color>2e1d3a</profile_background_color>
-  <profile_text_color>3D1957</profile_text_color>
-  <profile_link_color>1229fd</profile_link_color>
-  <profile_sidebar_fill_color>cfcfcf</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>0c1ea6</profile_sidebar_border_color>
-  <friends_count>0</friends_count>
-  <created_at>Sat Mar 14 19:36:24 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>0</utc_offset>
-  <time_zone>London</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/5709706/outerspace.jpg</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>43</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri Jan 08 18:17:14 +0000 2010</created_at>
-    <id>7527457406</id>
-    <text>Thanks for all the birthday wishes everyone</text>
-    <source>&lt;a href="http://echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>15749095</id>
-  <name>Jeroen Keppens</name>
-  <screen_name>jkeppens</screen_name>
-  <location>Belgium</location>
-  <description>Passionate IT'er with experience as senior webdeveloper, DBA, project manager, team leader. Certifications: ZCE, ZFCE, MySQL 5 Developer, Scrum Master</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/374641259/profile_picture_normal.jpg</profile_image_url>
-  <url>http://www.amazium.be</url>
-  <protected>false</protected>
-  <followers_count>264</followers_count>
-  <profile_background_color>387CC6</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>FF1B83</profile_link_color>
-  <profile_sidebar_fill_color>A0B9D5</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>013369</profile_sidebar_border_color>
-  <friends_count>219</friends_count>
-  <created_at>Wed Aug 06 12:24:56 +0000 2008</created_at>
-  <favourites_count>5</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Brussels</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>1960</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 13:39:45 +0000 2010</created_at>
-    <id>15041640266</id>
-    <text>@ndemoor DM je me je gsm nr + iad die je wil even? Ik rij morgen naar Frankrijk en met wat geluk is er nog genoeg stock. Ik bel je dan.</text>
-    <source>&lt;a href="http://www.echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id>59094050</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>ndemoor</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>15267012</id>
-  <name>Chris Corbyn</name>
-  <screen_name>d11wtq</screen_name>
-  <location>Melbourne, Australia</location>
-  <description>General geek, social butterfly, web developer, Swift Mailer author, in-house PHP developer for SitePoint</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/692985196/19235_292261586054_536061054_4983932_7539028_n_normal.jpg</profile_image_url>
-  <url>http://amoitaliano.com/</url>
-  <protected>false</protected>
-  <followers_count>267</followers_count>
-  <profile_background_color>352726</profile_background_color>
-  <profile_text_color>3E4415</profile_text_color>
-  <profile_link_color>D02B55</profile_link_color>
-  <profile_sidebar_fill_color>99CC33</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>829D5E</profile_sidebar_border_color>
-  <friends_count>126</friends_count>
-  <created_at>Sun Jun 29 00:13:39 +0000 2008</created_at>
-  <favourites_count>2</favourites_count>
-  <utc_offset>36000</utc_offset>
-  <time_zone>Melbourne</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/62030651/Yarra_River_Melbourne_Australia_1280x960.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>3407</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Wed May 26 14:33:07 +0000 2010</created_at>
-    <id>14766919867</id>
-    <text>Tonight is all about the Monty Python :) http://www.youtube.com/watch?v=grbSQ6O6kbs&amp;feature=related</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>95992714</id>
-  <name>Pieter Kokx</name>
-  <screen_name>kokxie</screen_name>
-  <location>Netherlands</location>
-  <description>PHP developer, Zend Framework developer, author of Zend_Markup and Pirate</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/734067299/twitter_normal.png</profile_image_url>
-  <url>http://blog.kokx.nl/</url>
-  <protected>false</protected>
-  <followers_count>56</followers_count>
-  <profile_background_color>131516</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>009999</profile_link_color>
-  <profile_sidebar_fill_color>efefef</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>eeeeee</profile_sidebar_border_color>
-  <friends_count>88</friends_count>
-  <created_at>Thu Dec 10 21:57:35 +0000 2009</created_at>
-  <favourites_count>11</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Amsterdam</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme14/bg.gif</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>453</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 29 19:34:38 +0000 2010</created_at>
-    <id>14994211469</id>
-    <text>RT @joedevon: Cool sample .bashrc file: http://tldp.org/LDP/abs/html/sample-bashrc.html #BashTips</text>
-    <source>&lt;a href="https://launchpad.net/gwibber/" rel="nofollow"&gt;Gwibber&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>5025281</id>
-  <name>Joseph Smarr</name>
-  <screen_name>jsmarr</screen_name>
-  <location>Half Moon Bay, CA</location>
-  <description>Social Web Engineer at Google. Former CTO of Plaxo. Opening up the Social Web.</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/15172442/plaxo-photo_normal.gif</profile_image_url>
-  <url>http://josephsmarr.com</url>
-  <protected>false</protected>
-  <followers_count>2789</followers_count>
-  <profile_background_color>B1BDD5</profile_background_color>
-  <profile_text_color>303030</profile_text_color>
-  <profile_link_color>286EA0</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>318</friends_count>
-  <created_at>Tue Apr 17 18:10:29 +0000 2007</created_at>
-  <favourites_count>100</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/1917452/twitter-DSCN5702.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>704</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 29 03:43:52 +0000 2010</created_at>
-    <id>14952358998</id>
-    <text>@johnmccrea look for the "tunerfish compatible" sticker and accept no substitutes! :)</text>
-    <source>&lt;a href="/devices" rel="nofollow"&gt;txt&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id>7537892</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>johnmccrea</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>75999164</id>
-  <name>Analog</name>
-  <screen_name>analogcoop</screen_name>
-  <location>Analog Island :-)</location>
-  <description>A company of friends who make web sites from San Francisco, Brooklyn, and Bristol, UK.</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/860736648/analog-512_normal.png</profile_image_url>
-  <url>http://analog.coop/</url>
-  <protected>false</protected>
-  <followers_count>1247</followers_count>
-  <profile_background_color>ffffff</profile_background_color>
-  <profile_text_color>321e1e</profile_text_color>
-  <profile_link_color>5a321e</profile_link_color>
-  <profile_sidebar_fill_color>ecf0e2</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>ffffff</profile_sidebar_border_color>
-  <friends_count>6</friends_count>
-  <created_at>Mon Sep 21 10:21:24 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>0</utc_offset>
-  <time_zone>London</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/59769128/bg-400-paper.jpg</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>42</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Mon May 24 16:40:31 +0000 2010</created_at>
-    <id>14634153147</id>
-    <text>RT @jontangerine: I wrote about reversed logotype, and fixing an optical illusion: http://j.mp/Reversed-Logotype</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <retweeted_status>
-      <created_at>Mon May 24 14:51:19 +0000 2010</created_at>
-      <id>14627814089</id>
-      <text>I wrote about reversed logotype, and fixing an optical illusion: http://j.mp/Reversed-Logotype</text>
-      <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-      <truncated>false</truncated>
-      <in_reply_to_status_id/>
-      <in_reply_to_user_id/>
-      <favorited>false</favorited>
-      <in_reply_to_screen_name/>
-      <geo/>
-      <coordinates/>
-      <place/>
-      <contributors/>
-    </retweeted_status>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>355243</id>
-  <name>Jonathan George</name>
-  <screen_name>jdg</screen_name>
-  <location>Wichita, Kansas</location>
-  <description>moving faster than you.  I made Boxcar.</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/536671459/me_normal.jpg</profile_image_url>
-  <url>http://jdg.net</url>
-  <protected>false</protected>
-  <followers_count>2058</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>1162</friends_count>
-  <created_at>Fri Dec 29 21:03:12 +0000 2006</created_at>
-  <favourites_count>45</favourites_count>
-  <utc_offset>-21600</utc_offset>
-  <time_zone>Central Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>2742</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 05:59:01 +0000 2010</created_at>
-    <id>14887819060</id>
-    <text>@timhaines not sure if it was automatic or on accident. :-) quick e-mail fixed it a few minutes later. @twitterapi @rsarver</text>
-    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>14887765359</in_reply_to_status_id>
-    <in_reply_to_user_id>14341663</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>timhaines</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>86360812</id>
-  <name>Kevin McArthur</name>
-  <screen_name>KevinSMcArthur</screen_name>
-  <location>Victoria B.C.</location>
-  <description>I'm a Web Developer from Duncan B.C. Author of Pro PHP - Patterns Frameworks Testing and More.  I founded neutrality.ca, and run mycelium.ca among other things.</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/499309029/Kevin_normal.jpg</profile_image_url>
-  <url>http://www.unrest.ca</url>
-  <protected>false</protected>
-  <followers_count>42</followers_count>
-  <profile_background_color>022330</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>0084B4</profile_link_color>
-  <profile_sidebar_fill_color>C0DFEC</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>a8c7f7</profile_sidebar_border_color>
-  <friends_count>54</friends_count>
-  <created_at>Fri Oct 30 17:42:48 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274834447/images/themes/theme15/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>500</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 01:29:00 +0000 2010</created_at>
-    <id>15010529855</id>
-    <text>Cool. Skype works on 3g now... Though not thrilled about them charging for voip2voip. Iphoneos4 + skypein = killerapp.</text>
-    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>14369922</id>
-  <name>Mark Brown</name>
-  <screen_name>markjbrown</screen_name>
-  <location>47.70528294,-122.21210229</location>
-  <description>Product Manager for MS Web Platform. Riding the fence of OSS at MS. Very pointy pickets.</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/538171372/MarkHeadShot_normal.jpg</profile_image_url>
-  <url>http://blogs.msdn.com/markbrown</url>
-  <protected>false</protected>
-  <followers_count>416</followers_count>
-  <profile_background_color>131516</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>009999</profile_link_color>
-  <profile_sidebar_fill_color>efefef</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>eeeeee</profile_sidebar_border_color>
-  <friends_count>342</friends_count>
-  <created_at>Sat Apr 12 17:24:46 +0000 2008</created_at>
-  <favourites_count>2</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1273875281/images/themes/theme14/bg.gif</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>1247</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Wed May 26 04:17:26 +0000 2010</created_at>
-    <id>14740883637</id>
-    <text>@blowdart Ah well probably wasn't to @frankbisse directly. More likely an email I sent to a big DL about all sorts of nonsense :)</text>
-    <source>&lt;a href="http://code.google.com/p/pocketwit/" rel="nofollow"&gt;PockeTwit&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>14740575353</in_reply_to_status_id>
-    <in_reply_to_user_id>1847381</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>blowdart</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>779141</id>
-  <name>Rob La Gesse</name>
-  <screen_name>kr8tr</screen_name>
-  <location>San Antonio, TX</location>
-  <description>I work for a great company.  One that worked for me for 7 years first.  But my opinions on this Twitter account are mine alone.</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/918798597/rob_normal.jpg</profile_image_url>
-  <url>http://lagesse.org</url>
-  <protected>false</protected>
-  <followers_count>2410</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>011964</profile_text_color>
-  <profile_link_color>932AA0</profile_link_color>
-  <profile_sidebar_fill_color>23B5EB</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>4AC1EB</profile_sidebar_border_color>
-  <friends_count>607</friends_count>
-  <created_at>Sun Feb 18 20:35:01 +0000 2007</created_at>
-  <favourites_count>25</favourites_count>
-  <utc_offset>-21600</utc_offset>
-  <time_zone>Central Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/2321171/water_that_clear.PNG</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>17477</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 06:50:06 +0000 2010</created_at>
-    <id>15025942111</id>
-    <text>RT @swhitley: My Tweeple Chronicle - http://mytweeple.com/chronicle - Random blog musings from your Twitter friends. &amp;lt;- Very nice.  I likes</text>
-    <source>&lt;a href="http://www.seesmic.com/" rel="nofollow"&gt;Seesmic&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>21355321</id>
-  <name>Zeev Suraski</name>
-  <screen_name>zeevs</screen_name>
-  <location>Israel</location>
-  <description>Zend CTO &amp; Architect of PHP (one of them!)</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/206658984/IMG_6510_normal.jpg</profile_image_url>
-  <url>http://suraski.net/</url>
-  <protected>false</protected>
-  <followers_count>344</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>47</friends_count>
-  <created_at>Fri Feb 20 00:03:50 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>7200</utc_offset>
-  <time_zone>Jerusalem</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>219</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Thu May 27 14:47:56 +0000 2010</created_at>
-    <id>14839242551</id>
-    <text>RT @ziniman: It's the end of the world as we know it... http://tweetphoto.com/24182383</text>
-    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>52413628</id>
-  <name>kae verens</name>
-  <screen_name>kae_verens</screen_name>
-  <location/>
-  <description/>
-  <profile_image_url>http://a3.twimg.com/profile_images/290363897/p9030002_normal.jpg</profile_image_url>
-  <url>http://verens.com/</url>
-  <protected>false</protected>
-  <followers_count>31</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>22</friends_count>
-  <created_at>Tue Jun 30 14:48:36 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>0</utc_offset>
-  <time_zone>Dublin</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>14</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat Feb 27 17:50:58 +0000 2010</created_at>
-    <id>9738601300</id>
-    <text>released a project which will help builders and builder suppliers. http://short.ie/7pk2dd - tells you any projects that are starting soon.</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>4996631</id>
-  <name>Evert Bopp</name>
-  <screen_name>EvertB</screen_name>
-  <location>Tipperary, Ireland</location>
-  <description>www.haiti-connect.org
-Airappz.com Greenhouselimerick.com
-- WiFi know-it-all, Anarcho-capitalist, entrepreneur, part-time blogger. </description>
-  <profile_image_url>http://a3.twimg.com/profile_images/922279239/Avatar_normal.jpg</profile_image_url>
-  <url>http://evertb.wordpress.com/</url>
-  <protected>false</protected>
-  <followers_count>3230</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>3218</friends_count>
-  <created_at>Tue Apr 17 13:31:18 +0000 2007</created_at>
-  <favourites_count>410</favourites_count>
-  <utc_offset>0</utc_offset>
-  <time_zone>Dublin</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/12559391/pattern8-pattern-11c.png</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>53001</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 13:18:31 +0000 2010</created_at>
-    <id>15040492535</id>
-    <text>RT @GreenHouseL: We've just added an @eventbrite  booking option to the Bootcamp Sessions page: http://bit.ly/9ZcyaR</text>
-    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <retweeted_status>
-      <created_at>Sun May 30 13:15:40 +0000 2010</created_at>
-      <id>15040337619</id>
-      <text>We've just added an @eventbrite  booking option to the Bootcamp Sessions page: http://bit.ly/9ZcyaR</text>
-      <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-      <truncated>false</truncated>
-      <in_reply_to_status_id/>
-      <in_reply_to_user_id/>
-      <favorited>false</favorited>
-      <in_reply_to_screen_name/>
-      <geo/>
-      <coordinates/>
-      <place/>
-      <contributors/>
-    </retweeted_status>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>15029021</id>
-  <name>Edvinas Maciulis</name>
-  <screen_name>EdvinasMaciulis</screen_name>
-  <location>London</location>
-  <description>Software developer with 5 years experience. JAVA/J2EE/LAMP/PHP5/MySQL/Oracle / PL/SQL / Javascript/DOM/ XHTML/CSS.  Certified in SCJP 6. </description>
-  <profile_image_url>http://a3.twimg.com/profile_images/537785689/super_face2_normal.jpg</profile_image_url>
-  <url>http://www.linkedin.com/in/edvinasmaciulis</url>
-  <protected>false</protected>
-  <followers_count>63</followers_count>
-  <profile_background_color>1A1B1F</profile_background_color>
-  <profile_text_color>0d0d0d</profile_text_color>
-  <profile_link_color>e60000</profile_link_color>
-  <profile_sidebar_fill_color>ededed</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>949494</profile_sidebar_border_color>
-  <friends_count>193</friends_count>
-  <created_at>Fri Jun 06 12:42:17 +0000 2008</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>0</utc_offset>
-  <time_zone>London</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/55621083/twitter_bg.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>18</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Wed Dec 30 01:44:10 +0000 2009</created_at>
-    <id>7179699456</id>
-    <text>made my gmail minimalistic, I am suggesting to try here is firefox addon http://mattconstantine.com/mg?v=2 #minimalism #gmail #firefox #ext</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>20792319</id>
-  <name>Kamel Zeroual</name>
-  <screen_name>Stribe</screen_name>
-  <location>France, Paris</location>
-  <description>CEO &amp; Cofounder of Stribe </description>
-  <profile_image_url>http://a3.twimg.com/profile_images/206660329/Stribe_S_logo_normal.jpg</profile_image_url>
-  <url>http://www.stribe.com/</url>
-  <protected>false</protected>
-  <followers_count>1163</followers_count>
-  <profile_background_color>f9f9f9</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>f77c00</profile_link_color>
-  <profile_sidebar_fill_color>f3f3f3</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>F2E195</profile_sidebar_border_color>
-  <friends_count>815</friends_count>
-  <created_at>Fri Feb 13 18:21:04 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Paris</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/43806813/TwitterStribenewBG.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>420</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Tue Mar 16 15:21:06 +0000 2010</created_at>
-    <id>10574272993</id>
-    <text>Vers une intégration toujours plus poussée des médias sociaux dans les sites de marque : Stribe @.. http://bit.ly/dq5M9o</text>
-    <source>&lt;a href="http://tweetmeme.com" rel="nofollow"&gt;TweetMeme&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>18916961</id>
-  <name>Саша Стаменковић</name>
-  <screen_name>umpirsky</screen_name>
-  <location>Niš</location>
-  <description>Software development</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/561352398/avatar_normal.JPG</profile_image_url>
-  <url>http://umpirsky.com/</url>
-  <protected>false</protected>
-  <followers_count>111</followers_count>
-  <profile_background_color>ffffff</profile_background_color>
-  <profile_text_color>634047</profile_text_color>
-  <profile_link_color>088253</profile_link_color>
-  <profile_sidebar_fill_color>E3E2DE</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>D3D2CF</profile_sidebar_border_color>
-  <friends_count>54</friends_count>
-  <created_at>Mon Jan 12 21:47:01 +0000 2009</created_at>
-  <favourites_count>7</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Belgrade</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/5500471/sajkaca.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>858</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Wed May 26 05:57:43 +0000 2010</created_at>
-    <id>14745164096</id>
-    <text>RT @neschadj: Baltička legenda - http://www.juznevesti.com/kolumne/Predrag-Blagojevic/Balticka-legenda.sr.html</text>
-    <source>&lt;a href="http://www.yoono.com" rel="nofollow"&gt;yoono&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <retweeted_status>
-      <created_at>Tue May 25 21:54:08 +0000 2010</created_at>
-      <id>14719715137</id>
-      <text>Baltička legenda - http://www.juznevesti.com/kolumne/Predrag-Blagojevic/Balticka-legenda.sr.html</text>
-      <source>web</source>
-      <truncated>false</truncated>
-      <in_reply_to_status_id/>
-      <in_reply_to_user_id/>
-      <favorited>false</favorited>
-      <in_reply_to_screen_name/>
-      <geo/>
-      <coordinates/>
-      <place/>
-      <contributors/>
-    </retweeted_status>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>13596092</id>
-  <name>Dennis Winter</name>
-  <screen_name>d_winter</screen_name>
-  <location>Geldern/Germany</location>
-  <description>Freelancing web developer and student from Germany!</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/897202586/DSCF4271_normal.jpg</profile_image_url>
-  <url>http://blog.4expressions.com</url>
-  <protected>false</protected>
-  <followers_count>272</followers_count>
-  <profile_background_color>352726</profile_background_color>
-  <profile_text_color>352726</profile_text_color>
-  <profile_link_color>666666</profile_link_color>
-  <profile_sidebar_fill_color>99CC33</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>352726</profile_sidebar_border_color>
-  <friends_count>436</friends_count>
-  <created_at>Sun Feb 17 20:41:26 +0000 2008</created_at>
-  <favourites_count>4</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Berlin</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274834447/images/themes/theme5/bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>1639</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 11:11:33 +0000 2010</created_at>
-    <id>15034985239</id>
-    <text>#anzeige Finally a project management tool that both your engineers AND your business people will like! Check out Planio http://j.mp/90wF49</text>
-    <source>&lt;a href="http://be-a-magpie.com/twitterers/disclosure-statement" rel="nofollow"&gt;Magpie Advertising Network&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>16250884</id>
-  <name>wadearnold</name>
-  <screen_name>wadearnold</screen_name>
-  <location>Cedar Falls, IA USA</location>
-  <description>Flash Builder, Zend Amf, amfphp, Flex SDK, hadoop, cassandradb, hbase</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/492783235/wade_crops_150_normal.jpg</profile_image_url>
-  <url>http://wadearnold.com/blog/</url>
-  <protected>false</protected>
-  <followers_count>764</followers_count>
-  <profile_background_color>1A1B1F</profile_background_color>
-  <profile_text_color>666666</profile_text_color>
-  <profile_link_color>2FC2EF</profile_link_color>
-  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
-  <friends_count>434</friends_count>
-  <created_at>Fri Sep 12 01:21:46 +0000 2008</created_at>
-  <favourites_count>10</favourites_count>
-  <utc_offset>-21600</utc_offset>
-  <time_zone>Central Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme9/bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>2373</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 20:28:27 +0000 2010</created_at>
-    <id>14930338861</id>
-    <text>RT @sjdust: John Deere makes the Cedar Valley an even greater place with new Tractor Museum. Thank You Deere!! http://bit.ly/dkkMga</text>
-    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>9549602</id>
-  <name>Tony Bibbs</name>
-  <screen_name>tonybibbs</screen_name>
-  <location>Urbandale, IA</location>
-  <description>Entrepreneur trapped in a corporate body. Consummate family man and hunter-gatherer.</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/785996175/Tony_normal.jpg</profile_image_url>
-  <url>http://www.tonybibbs.com</url>
-  <protected>false</protected>
-  <followers_count>584</followers_count>
-  <profile_background_color>1A1B1F</profile_background_color>
-  <profile_text_color>666666</profile_text_color>
-  <profile_link_color>2FC2EF</profile_link_color>
-  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
-  <friends_count>321</friends_count>
-  <created_at>Fri Oct 19 20:08:42 +0000 2007</created_at>
-  <favourites_count>25</favourites_count>
-  <utc_offset>-21600</utc_offset>
-  <time_zone>Central Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274739546/images/themes/theme9/bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>5586</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 02:49:42 +0000 2010</created_at>
-    <id>14877823686</id>
-    <text>In Northeast Iowa in front of a campfire enjoying perfect weather, a drink and some good friends.</text>
-    <source>&lt;a href="/devices" rel="nofollow"&gt;txt&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>5620922</id>
-  <name>jock yitch</name>
-  <screen_name>jockyitch</screen_name>
-  <location>Toronto, Canada</location>
-  <description>Host of BASH. FPS Gaming Webcast.</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/409050501/bash1_normal.jpg</profile_image_url>
-  <url>http://bashandslash.com</url>
-  <protected>false</protected>
-  <followers_count>878</followers_count>
-  <profile_background_color>12121a</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>a30000</profile_link_color>
-  <profile_sidebar_fill_color>f5a6a6</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>ffffff</profile_sidebar_border_color>
-  <friends_count>20</friends_count>
-  <created_at>Sun Apr 29 02:21:07 +0000 2007</created_at>
-  <favourites_count>1</favourites_count>
-  <utc_offset>-18000</utc_offset>
-  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/22882913/jock2.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>1011</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 04:29:11 +0000 2010</created_at>
-    <id>15019957567</id>
-    <text>Are you "SOG Tough"? http://tinyurl.com/2c4zgaq  ...and that's just how they order breakfast!</text>
-    <source>&lt;a href="http://www.echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>786947</id>
-  <name>Dave Bost</name>
-  <screen_name>davebost</screen_name>
-  <location>St. Charles, IL</location>
-  <description>Microsoft Developer Evangelist and co-host of the Thirsty Developer podcast</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/457859622/dbost_normal.jpg</profile_image_url>
-  <url>http://www.davebost.com/blog</url>
-  <protected>false</protected>
-  <followers_count>1023</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>814</friends_count>
-  <created_at>Wed Feb 21 18:53:52 +0000 2007</created_at>
-  <favourites_count>2</favourites_count>
-  <utc_offset>-21600</utc_offset>
-  <time_zone>Central Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>3562</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 11:18:14 +0000 2010</created_at>
-    <id>15035226350</id>
-    <text>Tee time at TPC Deere Run in T-90</text>
-    <source>&lt;a href="http://www.tweetdeck.com/" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>848901</id>
-  <name>Lauren Cooney</name>
-  <screen_name>lcooney</screen_name>
-  <location>Seattle, WA</location>
-  <description>Films, Music, Tech, Good coffee, adrenaline. GPM for Web Platforms at Microsoft</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/568760327/Lauren_Headshot3_normal.jpg</profile_image_url>
-  <url>http://lcooney.tumblr.com</url>
-  <protected>false</protected>
-  <followers_count>2038</followers_count>
-  <profile_background_color>0099B9</profile_background_color>
-  <profile_text_color>3C3940</profile_text_color>
-  <profile_link_color>0099B9</profile_link_color>
-  <profile_sidebar_fill_color>95E8EC</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>5ED4DC</profile_sidebar_border_color>
-  <friends_count>702</friends_count>
-  <created_at>Fri Mar 09 21:37:21 +0000 2007</created_at>
-  <favourites_count>14</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme4/bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>4587</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 01 21:13:08 +0000 2010</created_at>
-    <id>13208710796</id>
-    <text>Just turned all the iPads in the Apple store in Corte Madera to the site www.Microsoft.com/web. Hehehehe. Yay me #fb</text>
-    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>14382272</id>
-  <name>Trond Husø</name>
-  <screen_name>trondhuso</screen_name>
-  <location>Østfold, Norway</location>
-  <description>I mostly tweet about LAMP, Ubuntu, Android/HTC and comment on Apple and Microsoft misuse of patents. Some Norwegian tweets may occur.</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/498616314/___moodspin___trondhuso_normal.jpeg</profile_image_url>
-  <url>http://www.trondhuso.no/blog</url>
-  <protected>false</protected>
-  <followers_count>180</followers_count>
-  <profile_background_color>9AE4E8</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>0084B4</profile_link_color>
-  <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
-  <friends_count>164</friends_count>
-  <created_at>Mon Apr 14 07:04:11 +0000 2008</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Copenhagen</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>1602</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 13:44:23 +0000 2010</created_at>
-    <id>14906879665</id>
-    <text>now looking at &amp;lt;xsl:for-each&amp;gt; exiting stuff... or confusing... it's all up to you.</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>74423271</id>
-  <name>Neil Byrne</name>
-  <screen_name>facepalmedgamer</screen_name>
-  <location>Dublin, Ireland</location>
-  <description>The Twitter account of the Blog!</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/611538350/face_normal.jpg</profile_image_url>
-  <url>http://thefacepalmedgamer.wordpress.com</url>
-  <protected>true</protected>
-  <followers_count>24</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>25</friends_count>
-  <created_at>Tue Sep 15 11:22:59 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset/>
-  <time_zone/>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>49</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Wed May 19 10:34:38 +0000 2010</created_at>
-    <id>14287312419</id>
-    <text>@ladyj_79 no of course i still have it!but you can never have too many awesome scarves. Also i have no pots.</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>14197479012</in_reply_to_status_id>
-    <in_reply_to_user_id>96188652</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>ladyj_79</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>19575586</id>
-  <name>Hacker News Bot</name>
-  <screen_name>hackernewsbot</screen_name>
-  <location>Internetz</location>
-  <description>Tweeting the hottest from Hacker News (YC)</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/73596050/yc500_normal.jpg</profile_image_url>
-  <url>http://news.ycombinator.com</url>
-  <protected>false</protected>
-  <followers_count>3035</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>0</friends_count>
-  <created_at>Tue Jan 27 03:40:24 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-21600</utc_offset>
-  <time_zone>Central Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>10943</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 13:42:06 +0000 2010</created_at>
-    <id>15041774105</id>
-    <text>How We Improved Our Conversion Rate by 72%... http://dmix.ca/2010/05/how-we-increased-our-conversion-rate-by-72/</text>
-    <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>14776131</id>
-  <name>Isaque Fernandes</name>
-  <screen_name>sp1ke77</screen_name>
-  <location>Amadora, PORTUGAL</location>
-  <description/>
-  <profile_image_url>http://a1.twimg.com/profile_images/97810038/isaque_normal.jpg</profile_image_url>
-  <url>http://www.sp1ke77.com</url>
-  <protected>false</protected>
-  <followers_count>107</followers_count>
-  <profile_background_color>000000</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>c2a634</profile_link_color>
-  <profile_sidebar_fill_color>ffea96</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>ffea96</profile_sidebar_border_color>
-  <friends_count>80</friends_count>
-  <created_at>Wed May 14 17:58:15 +0000 2008</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>0</utc_offset>
-  <time_zone>Lisbon</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/54925576/twiter_sp1ke77.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>227</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Thu May 27 15:03:39 +0000 2010</created_at>
-    <id>14840215558</id>
-    <text>seguros de saúde existem apenas para pessoas saudáveis... lol...</text>
-    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>20642205</id>
-  <name>BAS</name>
-  <screen_name>BibArch</screen_name>
-  <location>Washington D.C.</location>
-  <description>Exploring the archaeology of the Bible. The twitter page of Biblical Archaeology Review magazine.</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/734495547/BSBA36020c100L_normal.jpg</profile_image_url>
-  <url>http://bib-arch.org</url>
-  <protected>false</protected>
-  <followers_count>1921</followers_count>
-  <profile_background_color>9AE4E8</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>0084B4</profile_link_color>
-  <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
-  <friends_count>1922</friends_count>
-  <created_at>Thu Feb 12 00:12:54 +0000 2009</created_at>
-  <favourites_count>2</favourites_count>
-  <utc_offset>-21600</utc_offset>
-  <time_zone>Central Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/48078032/twitter-covers-5.jpg</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>949</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 15:36:23 +0000 2010</created_at>
-    <id>14913976343</id>
-    <text>IN THE NEWS TODAY: Possible Clues to Egypt’s Past Found in Sahara Cave http://bit.ly/cJeBTq</text>
-    <source>&lt;a href="http://www.facebook.com/twitter" rel="nofollow"&gt;Facebook&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>16718387</id>
-  <name>Noelle Chun</name>
-  <screen_name>noellechun</screen_name>
-  <location>Honolulu, HI</location>
-  <description>Reporter-Host at Civil Beat. Alltop curator. Holy Kaw blogger. I like journalism, food &amp; drink. Just my own views here. Hello, friends!</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/488642190/DSC06949_2_normal.JPG</profile_image_url>
-  <url>http://noelle.posterous.com</url>
-  <protected>false</protected>
-  <followers_count>2294</followers_count>
-  <profile_background_color>362e2e</profile_background_color>
-  <profile_text_color>332f2f</profile_text_color>
-  <profile_link_color>c27a0f</profile_link_color>
-  <profile_sidebar_fill_color>756f6a</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>C6E2EE</profile_sidebar_border_color>
-  <friends_count>1459</friends_count>
-  <created_at>Mon Oct 13 08:42:48 +0000 2008</created_at>
-  <favourites_count>2</favourites_count>
-  <utc_offset>-36000</utc_offset>
-  <time_zone>Hawaii</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/42156181/path.jpg</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>6702</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 03:55:58 +0000 2010</created_at>
-    <id>15018292640</id>
-    <text>GoGirl? http://post.ly/hrrD</text>
-    <source>&lt;a href="http://posterous.com" rel="nofollow"&gt;Posterous&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>15080671</id>
-  <name>{PST}*Joker</name>
-  <screen_name>pstjoker</screen_name>
-  <location>ÜT: 34.015155,-117.062999</location>
-  <description>CoD series modifications called eXtreme+ </description>
-  <profile_image_url>http://a3.twimg.com/profile_images/72571533/avatar_normal.gif</profile_image_url>
-  <url>http://www.jokerXtreme.com</url>
-  <protected>false</protected>
-  <followers_count>475</followers_count>
-  <profile_background_color>000000</profile_background_color>
-  <profile_text_color>a3a3a3</profile_text_color>
-  <profile_link_color>c60606</profile_link_color>
-  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
-  <friends_count>95</friends_count>
-  <created_at>Wed Jun 11 02:46:30 +0000 2008</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/37781199/twitterbg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>2387</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 15:01:49 +0000 2010</created_at>
-    <id>14911735193</id>
-    <text>RT @jockyitch: BASHandSlash.com will begin publishing articles, hourly, on the CoD:BO FirstLook event starting at 9:00am EST today. 7 ar ...</text>
-    <source>&lt;a href="http://blackberry.com/twitter" rel="nofollow"&gt;Twitter for BlackBerry®&lt;/a&gt;</source>
-    <truncated>true</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <retweeted_status>
-      <created_at>Fri May 28 05:53:46 +0000 2010</created_at>
-      <id>14887612098</id>
-      <text>BASHandSlash.com will begin publishing articles, hourly, on the CoD:BO FirstLook event starting at 9:00am EST today. 7 articles to start...</text>
-      <source>&lt;a href="http://www.echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
-      <truncated>false</truncated>
-      <in_reply_to_status_id/>
-      <in_reply_to_user_id/>
-      <favorited>false</favorited>
-      <in_reply_to_screen_name/>
-      <geo/>
-      <coordinates/>
-      <place/>
-      <contributors/>
-    </retweeted_status>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>27855118</id>
-  <name>Battlefield BC2</name>
-  <screen_name>OfficialBFBC2</screen_name>
-  <location>DICE Stockholm, Sweden</location>
-  <description>Get a peek into what's happening on the Battlefield Bad Company 2 Team and learn where to look for the latest info!</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/684948987/Twitter_Avatar_02_normal.jpg</profile_image_url>
-  <url>http://www.battlefield.com/badcompany2/</url>
-  <protected>false</protected>
-  <followers_count>54079</followers_count>
-  <profile_background_color>CECCC0</profile_background_color>
-  <profile_text_color>666666</profile_text_color>
-  <profile_link_color>49978e</profile_link_color>
-  <profile_sidebar_fill_color>ceccc0</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>232424</profile_sidebar_border_color>
-  <friends_count>15</friends_count>
-  <created_at>Tue Mar 31 11:54:50 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Stockholm</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/80071366/Twitter_BFBC2_new.jpg</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>521</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 14:45:00 +0000 2010</created_at>
-    <id>14910643392</id>
-    <text>Get the new BFBC2 Onslaught game mode wallpaper for your PC now from : http://bit.ly/b7aJyZ</text>
-    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>18709570</id>
-  <name>Tina Sanchez</name>
-  <screen_name>Teanah</screen_name>
-  <location>San Francisco</location>
-  <description>My mom says I'm a goofball.  Host/Producer of 1UP Oddcast, Game Night and Community Manager of 1UP!</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/610578590/mypictr_Twitter_normal.jpg</profile_image_url>
-  <url>http://teanah.1up.com</url>
-  <protected>false</protected>
-  <followers_count>6571</followers_count>
-  <profile_background_color>EDECE9</profile_background_color>
-  <profile_text_color>634047</profile_text_color>
-  <profile_link_color>088253</profile_link_color>
-  <profile_sidebar_fill_color>E3E2DE</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>D3D2CF</profile_sidebar_border_color>
-  <friends_count>247</friends_count>
-  <created_at>Wed Jan 07 03:55:41 +0000 2009</created_at>
-  <favourites_count>55</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/93780222/awens.jpg</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>6546</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 04:38:06 +0000 2010</created_at>
-    <id>15020385511</id>
-    <text>F yes. I get the Military channel now</text>
-    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>15418663</id>
-  <name>David Caunt</name>
-  <screen_name>dcaunt</screen_name>
-  <location>Birmingham, UK</location>
-  <description>A developer specialising in PHP, Zend Framework and all things web at iedesign.co.uk. I'm a Zend Framework contributor</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/498609274/twitterProfilePhoto_normal.jpg</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>266</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>552</friends_count>
-  <created_at>Sun Jul 13 20:55:23 +0000 2008</created_at>
-  <favourites_count>6</favourites_count>
-  <utc_offset>0</utc_offset>
-  <time_zone>London</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>1323</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Thu May 27 14:17:32 +0000 2010</created_at>
-    <id>14837338858</id>
-    <text>@akrabat Joined about a month ago, it's fantastic. The £10 always seemed like a lot but it's worth it for easy mobile music in London</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>14822978600</in_reply_to_status_id>
-    <in_reply_to_user_id>9244712</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>akrabat</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>784912</id>
-  <name>Jason Snell</name>
-  <screen_name>jsnell</screen_name>
-  <location>Mill Valley, CA</location>
-  <description>Editor of Macworld, writer, primate, parent</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/919470689/jason-thinker-2_normal.jpg</profile_image_url>
-  <url>http://www.intertext.com/</url>
-  <protected>false</protected>
-  <followers_count>13451</followers_count>
-  <profile_background_color>061C69</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>000099</profile_link_color>
-  <profile_sidebar_fill_color>3399FF</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>000000</profile_sidebar_border_color>
-  <friends_count>263</friends_count>
-  <created_at>Wed Feb 21 00:04:08 +0000 2007</created_at>
-  <favourites_count>144</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/17696657/m101_hst.jpg</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>18074</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 04:34:40 +0000 2010</created_at>
-    <id>15020222123</id>
-    <text>@haikuman But if I needed to annotate PDFs, that would be the app for me.</text>
-    <source>&lt;a href="http://twitterrific.com" rel="nofollow"&gt;Twitterrific&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>15017342285</in_reply_to_status_id>
-    <in_reply_to_user_id>15034532</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>haikuman</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>8150902</id>
-  <name>Jonathan H. Wage</name>
-  <screen_name>jwage</screen_name>
-  <location>Atlanta, GA</location>
-  <description>Doctrine and Symfony core developer, Sensio Labs Employee, business owner, consultant, published author, open source evangelist and Atlanta resident.</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/887107676/e6bf8d13-db56-4d7e-9795-463953a30ce6_normal.png</profile_image_url>
-  <url>http://www.jwage.com</url>
-  <protected>false</protected>
-  <followers_count>1502</followers_count>
-  <profile_background_color>ffffff</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>000000</profile_link_color>
-  <profile_sidebar_fill_color>9bcef8</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>b8b8b8</profile_sidebar_border_color>
-  <friends_count>143</friends_count>
-  <created_at>Mon Aug 13 03:17:08 +0000 2007</created_at>
-  <favourites_count>2</favourites_count>
-  <utc_offset>-18000</utc_offset>
-  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/53535748/big-logo-white-bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>4854</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 03:57:20 +0000 2010</created_at>
-    <id>15018361575</id>
-    <text>RT @LuigiMontanez: Curated list of Chrome web developer extensions: http://bit.ly/9um0Ho</text>
-    <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <retweeted_status>
-      <created_at>Sun May 30 01:51:55 +0000 2010</created_at>
-      <id>15011687563</id>
-      <text>Curated list of Chrome web developer extensions: http://bit.ly/9um0Ho</text>
-      <source>&lt;a href="http://bit.ly" rel="nofollow"&gt;bit.ly&lt;/a&gt;</source>
-      <truncated>false</truncated>
-      <in_reply_to_status_id/>
-      <in_reply_to_user_id/>
-      <favorited>false</favorited>
-      <in_reply_to_screen_name/>
-      <geo/>
-      <coordinates/>
-      <place/>
-      <contributors/>
-    </retweeted_status>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>15072316</id>
-  <name>Fabien Potencier</name>
-  <screen_name>fabpot</screen_name>
-  <location>Paris, France</location>
-  <description>CEO at Sensio (http://www.sensiolabs.com/), and lead developer of the symfony framework (http://www.symfony-project.org/)</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/456339752/fabien-potencier_normal.jpg</profile_image_url>
-  <url>http://fabien.potencier.org</url>
-  <protected>false</protected>
-  <followers_count>2934</followers_count>
-  <profile_background_color>C0DEED</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>0084B4</profile_link_color>
-  <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
-  <friends_count>125</friends_count>
-  <created_at>Tue Jun 10 12:02:49 +0000 2008</created_at>
-  <favourites_count>4</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Paris</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274834447/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>756</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Thu May 27 17:01:41 +0000 2010</created_at>
-    <id>14847077383</id>
-    <text>@nico_somb Can you give me some examples?</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>14831621530</in_reply_to_status_id>
-    <in_reply_to_user_id>16499811</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>nico_somb</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>23254994</id>
-  <name>Adewale Oshineye</name>
-  <screen_name>ade_oshineye</screen_name>
-  <location/>
-  <description>I'm not really here.</description>
-  <profile_image_url>http://s.twimg.com/a/1274144130/images/default_profile_0_normal.png</profile_image_url>
-  <url>http://www.google.com/profiles/adewale</url>
-  <protected>false</protected>
-  <followers_count>135</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>128</friends_count>
-  <created_at>Sun Mar 08 00:26:25 +0000 2009</created_at>
-  <favourites_count>141</favourites_count>
-  <utc_offset/>
-  <time_zone/>
-  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>4</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 12:17:31 +0000 2010</created_at>
-    <id>15037587723</id>
-    <text>Finally uploaded my entry in the Wandering Book: http://blog.oshineye.com/2010/05/wandering-book.html</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>13411432</id>
-  <name>C. R.  Dick</name>
-  <screen_name>tixrus</screen_name>
-  <location>PDX OR USA</location>
-  <description>Tixrus founder, humorist,  author, web maven,   software collaborator, foodie,  #ZFer  PHP dojo   jquery etc.   </description>
-  <profile_image_url>http://a3.twimg.com/profile_images/503180567/twitterProfilePhoto_normal.jpg</profile_image_url>
-  <url>http://dorkage.net</url>
-  <protected>false</protected>
-  <followers_count>1159</followers_count>
-  <profile_background_color>9AE4E8</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>0084B4</profile_link_color>
-  <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
-  <friends_count>812</friends_count>
-  <created_at>Wed Feb 13 02:17:16 +0000 2008</created_at>
-  <favourites_count>11</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/79117068/twilk_background_4b89c358c6ec4.jpg</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>1608</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 20:20:52 +0000 2010</created_at>
-    <id>14929980105</id>
-    <text>The absolute best article on unicode &amp; encodings http://www.joelonsoftware.com/articles/Unicode.html  Must read 4 English speakers!</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place xmlns:georss="http://www.georss.org/georss">
-      <id>5773fcb5b3971151</id>
-      <name>Oread</name>
-      <full_name>Oread, Lawrence</full_name>
-      <place_type>neighborhood</place_type>
-      <url>http://api.twitter.com/1/geo/id/5773fcb5b3971151.json</url>
-      <bounding_box>
-        <georss:polygon>38.950101 -95.24875 38.950101 -95.23595 38.967502 -95.23595 38.967502 -95.24875</georss:polygon>
-      </bounding_box>
-      <country code="US">The United States of America</country>
-      <street_address/>
-    </place>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>820002</id>
-  <name>Matt Terenzio</name>
-  <screen_name>mterenzio</screen_name>
-  <location>Stamford, CT</location>
-  <description>Programmer-Journalist</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/314021586/profile071409_normal.jpg</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>326</followers_count>
-  <profile_background_color>ffffff</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>055b91</profile_link_color>
-  <profile_sidebar_fill_color>ffffff</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>ffffff</profile_sidebar_border_color>
-  <friends_count>242</friends_count>
-  <created_at>Wed Mar 07 23:08:57 +0000 2007</created_at>
-  <favourites_count>4</favourites_count>
-  <utc_offset>-18000</utc_offset>
-  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/24186068/nvzebrafur_twitter.br.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>2163</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Thu May 27 14:51:15 +0000 2010</created_at>
-    <id>14839450870</id>
-    <text>@ryansholin editors are asking me how to feed stuff in and out of exchange. Do you have five minutes on Friday?</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id>884301</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>ryansholin</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place xmlns:georss="http://www.georss.org/georss">
-      <id>1cfa9ac27a1e93bd</id>
-      <name>Norwalk</name>
-      <full_name>Norwalk, CT</full_name>
-      <place_type>city</place_type>
-      <url>http://api.twitter.com/1/geo/id/1cfa9ac27a1e93bd.json</url>
-      <bounding_box>
-        <georss:polygon>41.020449 -73.474565 41.020449 -73.379088 41.17126 -73.379088 41.17126 -73.474565</georss:polygon>
-      </bounding_box>
-      <country code="US">The United States of America</country>
-      <street_address/>
-    </place>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>17386985</id>
-  <name>Standardistas</name>
-  <screen_name>standardistas</screen_name>
-  <location>Belfast</location>
-  <description>Learn how to build hand-crafted web pages using structured HTML and CSS using a Web Standardistas' approach.</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/64507795/webstandardistas_brand_normal.png</profile_image_url>
-  <url>http://www.webstandardistas.com</url>
-  <protected>false</protected>
-  <followers_count>1481</followers_count>
-  <profile_background_color>771e0d</profile_background_color>
-  <profile_text_color>141414</profile_text_color>
-  <profile_link_color>771e0c</profile_link_color>
-  <profile_sidebar_fill_color>D5D5D5</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>FFCC00</profile_sidebar_border_color>
-  <friends_count>70</friends_count>
-  <created_at>Fri Nov 14 13:14:25 +0000 2008</created_at>
-  <favourites_count>35</favourites_count>
-  <utc_offset>0</utc_offset>
-  <time_zone>London</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/3371104/red_gradient.jpg</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>855</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 29 09:32:44 +0000 2010</created_at>
-    <id>14965690132</id>
-    <text>Information Architects on WIRED for the iPad, "You cannot just transpose print candy to screen candy.": http://j.mp/apapertiger</text>
-    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>38648728</id>
-  <name>Komplett Ireland</name>
-  <screen_name>komplettie</screen_name>
-  <location>Blanchardstown, Dublin 15</location>
-  <description>The Irish internet shop - You're talking to Marc.</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/208592834/Social_Networking_Twitter_73x73_Komplett_ie_copy_normal.jpg</profile_image_url>
-  <url>http://www.komplett.ie</url>
-  <protected>false</protected>
-  <followers_count>1402</followers_count>
-  <profile_background_color>9AE4E8</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>0084B4</profile_link_color>
-  <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
-  <friends_count>862</friends_count>
-  <created_at>Fri May 08 11:35:41 +0000 2009</created_at>
-  <favourites_count>72</favourites_count>
-  <utc_offset>0</utc_offset>
-  <time_zone>Dublin</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>9569</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 11:48:15 +0000 2010</created_at>
-    <id>14900769128</id>
-    <text>@quotemeireland Thanks for the #ff :)</text>
-    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>14900474803</in_reply_to_status_id>
-    <in_reply_to_user_id>71216271</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>quotemeireland</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>10149472</id>
-  <name>Shane O'Grady</name>
-  <screen_name>ShaneOG</screen_name>
-  <location>Dublin, Ireland</location>
-  <description>{$bio_info}
-{$witty_comment}</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/695757834/merlin_hat_normal.jpg</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>248</followers_count>
-  <profile_background_color>000000</profile_background_color>
-  <profile_text_color>808080</profile_text_color>
-  <profile_link_color>68A3AB</profile_link_color>
-  <profile_sidebar_fill_color>0D3541</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>0D3541</profile_sidebar_border_color>
-  <friends_count>492</friends_count>
-  <created_at>Sun Nov 11 10:47:06 +0000 2007</created_at>
-  <favourites_count>4</favourites_count>
-  <utc_offset>0</utc_offset>
-  <time_zone>Dublin</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/93656381/smoke.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>1268</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 16:46:33 +0000 2010</created_at>
-    <id>14918403876</id>
-    <text>@mneylon Where are you off to now? :)</text>
-    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>14918365060</in_reply_to_status_id>
-    <in_reply_to_user_id>13162762</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>mneylon</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>19901349</id>
-  <name>Arne Blankerts</name>
-  <screen_name>arneblankerts</screen_name>
-  <location>Hamburg</location>
-  <description/>
-  <profile_image_url>http://a3.twimg.com/profile_images/422153143/logo_kreis_weiss_unten_links_normal.png</profile_image_url>
-  <url/>
-  <protected>false</protected>
-  <followers_count>345</followers_count>
-  <profile_background_color>1A1B1F</profile_background_color>
-  <profile_text_color>666666</profile_text_color>
-  <profile_link_color>2FC2EF</profile_link_color>
-  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
-  <friends_count>94</friends_count>
-  <created_at>Mon Feb 02 10:47:00 +0000 2009</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>3600</utc_offset>
-  <time_zone>Berlin</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme9/bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>1112</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 10:31:01 +0000 2010</created_at>
-    <id>15033555383</id>
-    <text>Okay, time to relax a bit before leaving for #ipcse ... See you all in Berlin tonite! :)</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>14136842</id>
-  <name>ligaya turmelle</name>
-  <screen_name>lig</screen_name>
-  <location>Florida</location>
-  <description>Full Time Goddess, Part Time MySQL DBA and occasional PHP coder</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/51728177/me_normal.jpg</profile_image_url>
-  <url>http://blog.khankennels.com</url>
-  <protected>false</protected>
-  <followers_count>273</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>89</friends_count>
-  <created_at>Thu Mar 13 02:15:23 +0000 2008</created_at>
-  <favourites_count>1</favourites_count>
-  <utc_offset>-18000</utc_offset>
-  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>1100</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sat May 29 20:16:13 +0000 2010</created_at>
-    <id>14996207104</id>
-    <text>@ramsey feeling your pain darlin'</text>
-    <source>&lt;a href="http://www.echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>14994850866</in_reply_to_status_id>
-    <in_reply_to_user_id>7794552</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>ramsey</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>1235521</id>
-  <name>Tim Bray</name>
-  <screen_name>timbray</screen_name>
-  <location>Vancouver</location>
-  <description>Web geek with a camera.</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/421637246/Tim_normal.jpg</profile_image_url>
-  <url>http://www.tbray.org/ongoing/</url>
-  <protected>false</protected>
-  <followers_count>10230</followers_count>
-  <profile_background_color>FFFFFF</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>AA0000</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>531</friends_count>
-  <created_at>Thu Mar 15 17:24:22 +0000 2007</created_at>
-  <favourites_count>252</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/1980852/IMGP1686.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>6681</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 05:00:53 +0000 2010</created_at>
-    <id>15021455582</id>
-    <text>Heard on the radio, recommended: Gin Wigmore, http://www.ginwigmore.com.au/music/</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>16063891</id>
-  <name>David Harris</name>
-  <screen_name>physicsdavid</screen_name>
-  <location>Palo Alto, CA</location>
-  <description>journalism+science+art+design+books+words (Editor-in-chief of symmetry magazine)</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/66570873/hamburg_normal.jpg</profile_image_url>
-  <url>http://www.symmetrymagazine.org</url>
-  <protected>false</protected>
-  <followers_count>775</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>476</friends_count>
-  <created_at>Sun Aug 31 05:52:55 +0000 2008</created_at>
-  <favourites_count>0</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>716</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Thu May 27 00:07:58 +0000 2010</created_at>
-    <id>14797659553</id>
-    <text>There are never enough trebuchets in your life but that can be fixed. (For @ladawn) http://yfrog.com/0pf8wsj</text>
-    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>50835878</id>
-  <name>Drew Carey</name>
-  <screen_name>DrewFromTV</screen_name>
-  <location>Los Angeles via Cleveland</location>
-  <description>Also, @TPIRHost for Price Is Right tweets</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/462661569/twitterProfilePhoto_normal.jpg</profile_image_url>
-  <url>http://drewfromtv.blogspot.com/</url>
-  <protected>false</protected>
-  <followers_count>444765</followers_count>
-  <profile_background_color>9AE4E8</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>1e26d1</profile_link_color>
-  <profile_sidebar_fill_color>f2eded</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>4f4747</profile_sidebar_border_color>
-  <friends_count>141</friends_count>
-  <created_at>Fri Jun 26 00:20:02 +0000 2009</created_at>
-  <favourites_count>35</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://a1.twimg.com/profile_background_images/29108354/drewfromtv_bg_090704.jpg</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>true</verified>
-  <following>true</following>
-  <statuses_count>694</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 14:20:58 +0000 2010</created_at>
-    <id>15044062266</id>
-    <text>And a special THANK YOU to all you Vets. (And Semper Fi to my favorite branch of the military.) :)</text>
-    <source>&lt;a href="http://twitterrific.com" rel="nofollow"&gt;Twitterrific&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>11214</id>
-  <name>Paul M. Watson</name>
-  <screen_name>paulmwatson</screen_name>
-  <location>iPhone: 52.239363,-7.061564</location>
-  <description>South African web-developer living in Ireland. paul@paulmwatson.com or +353 86 896 8944.</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/554031311/10278518_cfd68d36e6_m_normal.jpg</profile_image_url>
-  <url>http://paulmwatson.com/journal/</url>
-  <protected>false</protected>
-  <followers_count>1173</followers_count>
-  <profile_background_color>000</profile_background_color>
-  <profile_text_color>666</profile_text_color>
-  <profile_link_color>39f</profile_link_color>
-  <profile_sidebar_fill_color>000</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>333</profile_sidebar_border_color>
-  <friends_count>145</friends_count>
-  <created_at>Tue Oct 31 21:05:36 +0000 2006</created_at>
-  <favourites_count>1881</favourites_count>
-  <utc_offset>0</utc_offset>
-  <time_zone>Dublin</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/3881323/5545609_b20fa3d477_o.jpg</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>20239</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 13:52:10 +0000 2010</created_at>
-    <id>15042351035</id>
-    <text>@abetson deadly, sums it up nicely. Though I have one involving a red bra...</text>
-    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>15040314230</in_reply_to_status_id>
-    <in_reply_to_user_id>34587199</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>abetson</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>77293</id>
-  <name>alexis richardson</name>
-  <screen_name>monadic</screen_name>
-  <location>london town</location>
-  <description>jfgi</description>
-  <profile_image_url>http://a3.twimg.com/profile_images/836600467/alexis4_normal.jpg</profile_image_url>
-  <url>http://www.rabbitmq.com</url>
-  <protected>false</protected>
-  <followers_count>1353</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>848</friends_count>
-  <created_at>Mon Dec 18 11:46:31 +0000 2006</created_at>
-  <favourites_count>381</favourites_count>
-  <utc_offset>0</utc_offset>
-  <time_zone>London</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1273871354/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>true</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>4842</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 12:52:43 +0000 2010</created_at>
-    <id>14903967608</id>
-    <text>RT @spring_tom: EIP and #springintegration provide your application a portable abstraction over JMS, AMQP,  and other messaging systems</text>
-    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <retweeted_status>
-      <created_at>Fri May 28 12:37:35 +0000 2010</created_at>
-      <id>14903183689</id>
-      <text>EIP and #springintegration provide your application a portable abstraction over JMS, AMQP,  and other messaging systems</text>
-      <source>web</source>
-      <truncated>false</truncated>
-      <in_reply_to_status_id/>
-      <in_reply_to_user_id/>
-      <favorited>false</favorited>
-      <in_reply_to_screen_name/>
-      <geo/>
-      <coordinates/>
-      <place/>
-      <contributors/>
-    </retweeted_status>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>22134978</id>
-  <name>Twfeed</name>
-  <screen_name>twfeed</screen_name>
-  <location/>
-  <description>Follow us for updates and support for the twitterfeed.com service. Support longer than 140 characters is at http://getsatisfaction.com/twitterfeed</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/267208040/favicon_normal.jpg</profile_image_url>
-  <url>http://twitterfeed.com</url>
-  <protected>false</protected>
-  <followers_count>38897</followers_count>
-  <profile_background_color>FFFFFF</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>0084B4</profile_link_color>
-  <profile_sidebar_fill_color>fce6a6</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
-  <friends_count>42782</friends_count>
-  <created_at>Fri Feb 27 12:37:58 +0000 2009</created_at>
-  <favourites_count>1</favourites_count>
-  <utc_offset>0</utc_offset>
-  <time_zone>London</time_zone>
-  <profile_background_image_url>http://a3.twimg.com/profile_background_images/18521753/background.jpg</profile_background_image_url>
-  <profile_background_tile>true</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>false</verified>
-  <following>true</following>
-  <statuses_count>3960</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Wed May 26 15:17:26 +0000 2010</created_at>
-    <id>14769700611</id>
-    <text>@geluidforumnl This should be fixed now.  Please let us know if the issue continues.  Thanks.  ^SW</text>
-    <source>&lt;a href="http://cotweet.com/?utm_source=sp1" rel="nofollow"&gt;CoTweet&lt;/a&gt;</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>14755163715</in_reply_to_status_id>
-    <in_reply_to_user_id>131885166</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>geluidforumnl</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-<user>
-  <id>37570179</id>
-  <name>Michael Arrington</name>
-  <screen_name>arrington</screen_name>
-  <location>Palo Alto, CA</location>
-  <description>TechCrunch founder. Dog Lover.</description>
-  <profile_image_url>http://a1.twimg.com/profile_images/780055594/no_earth_normal.jpg</profile_image_url>
-  <url>http://www.techcrunch.com</url>
-  <protected>false</protected>
-  <followers_count>29997</followers_count>
-  <profile_background_color>9ae4e8</profile_background_color>
-  <profile_text_color>000000</profile_text_color>
-  <profile_link_color>0000ff</profile_link_color>
-  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-  <friends_count>848</friends_count>
-  <created_at>Mon May 04 02:20:17 +0000 2009</created_at>
-  <favourites_count>16</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>true</verified>
-  <following>true</following>
-  <statuses_count>4383</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>false</contributors_enabled>
-  <status>
-    <created_at>Sun May 30 01:42:06 +0000 2010</created_at>
-    <id>15011195415</id>
-    <text>@kn0thing putting clone issue aside, digg lost 25% of uniques last yr, reddit lost 38%, don't know how u criticize them trying something new</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id>15010625553</in_reply_to_status_id>
-    <in_reply_to_user_id>811350</in_reply_to_user_id>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name>kn0thing</in_reply_to_screen_name>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors/>
-  </status>
-</user>
-</users>

+ 0 - 868
tests/Zend/Service/Twitter/_files/statuses.friends_timeline.page.xml

@@ -1,868 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<statuses type="array">
-<status>
-  <created_at>Sun May 30 11:41:27 +0000 2010</created_at>
-  <id>15036090677</id>
-  <text>Walking into Ormskirk to stop muscles seizing up and procure quality meats for @stedaniels' BBQ.</text>
-  <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>6102302</id>
-    <name>Michael Nolan</name>
-    <screen_name>MikeNolan</screen_name>
-    <location>Ormskirk, United Kingdom</location>
-    <description>Head of Web Services at Edge Hill University: http://blogs.edgehill.ac.uk/webservices/</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/18020682/mikenolan_normal.jpg</profile_image_url>
-    <url>http://www.michaelnolan.co.uk/</url>
-    <protected>false</protected>
-    <followers_count>925</followers_count>
-    <profile_background_color>0099B9</profile_background_color>
-    <profile_text_color>3C3940</profile_text_color>
-    <profile_link_color>0099B9</profile_link_color>
-    <profile_sidebar_fill_color>95E8EC</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>5ED4DC</profile_sidebar_border_color>
-    <friends_count>904</friends_count>
-    <created_at>Thu May 17 10:45:30 +0000 2007</created_at>
-    <favourites_count>530</favourites_count>
-    <utc_offset>0</utc_offset>
-    <time_zone>London</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme4/bg.gif</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>true</geo_enabled>
-    <verified>false</verified>
-    <following>false</following>
-    <statuses_count>4453</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo xmlns:georss="http://www.georss.org/georss">
-    <georss:point>53.55929512 -2.89619275</georss:point>
-  </geo>
-  <coordinates xmlns:georss="http://www.georss.org/georss">
-    <georss:point>53.55929512 -2.89619275</georss:point>
-  </coordinates>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 11:41:16 +0000 2010</created_at>
-  <id>15036083865</id>
-  <text>Donald Clarke to Rachel English about SATC: "It's filth".</text>
-  <source>&lt;a href="http://seesmic.com/app" rel="nofollow"&gt;Seesmic Web&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>14395202</id>
-    <name>Christine Bohan</name>
-    <screen_name>ChristineBohan</screen_name>
-    <location>Dublin</location>
-    <description>Journalist, politics addict and occasional venturer into the outside world</description>
-    <profile_image_url>http://a3.twimg.com/profile_images/546573125/profilepic_normal.jpg</profile_image_url>
-    <url/>
-    <protected>false</protected>
-    <followers_count>1198</followers_count>
-    <profile_background_color>0099B9</profile_background_color>
-    <profile_text_color>3C3940</profile_text_color>
-    <profile_link_color>0099B9</profile_link_color>
-    <profile_sidebar_fill_color>95E8EC</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>5ED4DC</profile_sidebar_border_color>
-    <friends_count>1105</friends_count>
-    <created_at>Tue Apr 15 10:39:49 +0000 2008</created_at>
-    <favourites_count>715</favourites_count>
-    <utc_offset>0</utc_offset>
-    <time_zone>Dublin</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme4/bg.gif</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>10589</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 11:40:53 +0000 2010</created_at>
-  <id>15036069608</id>
-  <text>I would appreciate the outside world more if there wasn't so much repulsive incense smoke out my front door all the time.</text>
-  <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>8599212</id>
-    <name>Daniel Tan</name>
-    <screen_name>BoltClock</screen_name>
-    <location>Singapore</location>
-    <description>I'm a teen freelance web developer who enjoys hacking PHP code on his Windows 7 PC (no Mac, sadly). I adore math, green, Jesus, Apple and pi, but not apple pie!</description>
-    <profile_image_url>http://a3.twimg.com/profile_images/800400621/iBolt_normal.gif</profile_image_url>
-    <url>http://NOVALISTIC.com</url>
-    <protected>false</protected>
-    <followers_count>1245</followers_count>
-    <profile_background_color>131516</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>a73fc4</profile_link_color>
-    <profile_sidebar_fill_color>efefef</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>eeeeee</profile_sidebar_border_color>
-    <friends_count>926</friends_count>
-    <created_at>Sun Sep 02 02:12:25 +0000 2007</created_at>
-    <favourites_count>272</favourites_count>
-    <utc_offset>28800</utc_offset>
-    <time_zone>Singapore</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274834447/images/themes/theme14/bg.gif</profile_background_image_url>
-    <profile_background_tile>true</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>true</geo_enabled>
-    <verified>false</verified>
-    <following>false</following>
-    <statuses_count>40584</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 11:34:20 +0000 2010</created_at>
-  <id>15035819642</id>
-  <text>Restarting my PC. After restarting I'll only open Firefox, Pidgin, iTunes and Flash.</text>
-  <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>8599212</id>
-    <name>Daniel Tan</name>
-    <screen_name>BoltClock</screen_name>
-    <location>Singapore</location>
-    <description>I'm a teen freelance web developer who enjoys hacking PHP code on his Windows 7 PC (no Mac, sadly). I adore math, green, Jesus, Apple and pi, but not apple pie!</description>
-    <profile_image_url>http://a3.twimg.com/profile_images/800400621/iBolt_normal.gif</profile_image_url>
-    <url>http://NOVALISTIC.com</url>
-    <protected>false</protected>
-    <followers_count>1245</followers_count>
-    <profile_background_color>131516</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>a73fc4</profile_link_color>
-    <profile_sidebar_fill_color>efefef</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>eeeeee</profile_sidebar_border_color>
-    <friends_count>926</friends_count>
-    <created_at>Sun Sep 02 02:12:25 +0000 2007</created_at>
-    <favourites_count>272</favourites_count>
-    <utc_offset>28800</utc_offset>
-    <time_zone>Singapore</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274834447/images/themes/theme14/bg.gif</profile_background_image_url>
-    <profile_background_tile>true</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>true</geo_enabled>
-    <verified>false</verified>
-    <following>false</following>
-    <statuses_count>40583</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 11:27:23 +0000 2010</created_at>
-  <id>15035558502</id>
-  <text>OMG LEMMINGS! AWESOME!! RT: @Swizec: DHTML Lemmings primer  http://laz.ly/ao</text>
-  <source>&lt;a href="http://www.echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>12744542</id>
-    <name>Robert Basic</name>
-    <screen_name>robertbasic</screen_name>
-    <location>Serbia</location>
-    <description>For those about to code - I salute you.</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/630933128/twitterProfilePhoto.jpg_normal.png</profile_image_url>
-    <url>http://robertbasic.com</url>
-    <protected>false</protected>
-    <followers_count>1005</followers_count>
-    <profile_background_color>161D32</profile_background_color>
-    <profile_text_color>6B7287</profile_text_color>
-    <profile_link_color>0000FF</profile_link_color>
-    <profile_sidebar_fill_color>FDF08D</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>000000</profile_sidebar_border_color>
-    <friends_count>372</friends_count>
-    <created_at>Sun Jan 27 09:29:10 +0000 2008</created_at>
-    <favourites_count>25</favourites_count>
-    <utc_offset>3600</utc_offset>
-    <time_zone>Belgrade</time_zone>
-    <profile_background_image_url>http://a1.twimg.com/profile_background_images/3156960/header.jpg</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>15232</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 11:20:42 +0000 2010</created_at>
-  <id>15035315794</id>
-  <text>#php manual with the new #windows help system, multitab, better index, multi books #awesome http://yfrog.com/4oze2p</text>
-  <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>13208432</id>
-    <name>PierreJoye</name>
-    <screen_name>PierreJoye</screen_name>
-    <location>Germany</location>
-    <description/>
-    <profile_image_url>http://a3.twimg.com/profile_images/355026753/Pierre_Joye_2_normal.jpg</profile_image_url>
-    <url>http://blog.thepimp.net</url>
-    <protected>false</protected>
-    <followers_count>461</followers_count>
-    <profile_background_color>2E191F</profile_background_color>
-    <profile_text_color>38292D</profile_text_color>
-    <profile_link_color>785740</profile_link_color>
-    <profile_sidebar_fill_color>E0FFF6</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>E1F9FF</profile_sidebar_border_color>
-    <friends_count>145</friends_count>
-    <created_at>Thu Feb 07 15:50:33 +0000 2008</created_at>
-    <favourites_count>12</favourites_count>
-    <utc_offset>3600</utc_offset>
-    <time_zone>Berlin</time_zone>
-    <profile_background_image_url>http://a1.twimg.com/profile_background_images/59174166/xc6c874ea69888a0e2519f22776e1142.jpg</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>false</following>
-    <statuses_count>5072</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 11:19:07 +0000 2010</created_at>
-  <id>15035258134</id>
-  <text>RT @DJ_RichEars Orbital announce plans to release their first material in six years http://dlvr.it/1JZG4 (via @NMEmagazine) /via @bobrusche</text>
-  <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>1524641</id>
-    <name>Stefan</name>
-    <screen_name>skoop</screen_name>
-    <location>Woudenberg, Netherlands</location>
-    <description>open source, php, geek, music, symfony, buzzer, dad, conference speaker, vegetarian, fc utrecht, entrepreneur, freelancer</description>
-    <profile_image_url>http://a3.twimg.com/profile_images/921970573/5d3c68fa-7d96-4f95-8f26-7c6d47496cd7_normal.png</profile_image_url>
-    <url>http://www.leftontheweb.com/</url>
-    <protected>false</protected>
-    <followers_count>1283</followers_count>
-    <profile_background_color>000000</profile_background_color>
-    <profile_text_color>000000</profile_text_color>
-    <profile_link_color>323232</profile_link_color>
-    <profile_sidebar_fill_color>999999</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>CDCDCD</profile_sidebar_border_color>
-    <friends_count>1492</friends_count>
-    <created_at>Mon Mar 19 16:28:14 +0000 2007</created_at>
-    <favourites_count>31</favourites_count>
-    <utc_offset>3600</utc_offset>
-    <time_zone>Amsterdam</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>true</geo_enabled>
-    <verified>false</verified>
-    <following>false</following>
-    <statuses_count>25591</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 11:18:34 +0000 2010</created_at>
-  <id>15035238297</id>
-  <text>Twitter is very sedate and polite this morning. Not a scandal in sight...</text>
-  <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>4996631</id>
-    <name>Evert Bopp</name>
-    <screen_name>EvertB</screen_name>
-    <location>Tipperary, Ireland</location>
-    <description>www.haiti-connect.org
-Airappz.com Greenhouselimerick.com
-- WiFi know-it-all, Anarcho-capitalist, entrepreneur, part-time blogger. </description>
-    <profile_image_url>http://a3.twimg.com/profile_images/922279239/Avatar_normal.jpg</profile_image_url>
-    <url>http://evertb.wordpress.com/</url>
-    <protected>false</protected>
-    <followers_count>3231</followers_count>
-    <profile_background_color>9ae4e8</profile_background_color>
-    <profile_text_color>000000</profile_text_color>
-    <profile_link_color>0000ff</profile_link_color>
-    <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-    <friends_count>3216</friends_count>
-    <created_at>Tue Apr 17 13:31:18 +0000 2007</created_at>
-    <favourites_count>410</favourites_count>
-    <utc_offset>0</utc_offset>
-    <time_zone>Dublin</time_zone>
-    <profile_background_image_url>http://a3.twimg.com/profile_background_images/12559391/pattern8-pattern-11c.png</profile_background_image_url>
-    <profile_background_tile>true</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>true</geo_enabled>
-    <verified>false</verified>
-    <following>false</following>
-    <statuses_count>52988</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 11:18:14 +0000 2010</created_at>
-  <id>15035226350</id>
-  <text>Tee time at TPC Deere Run in T-90</text>
-  <source>&lt;a href="http://www.tweetdeck.com/" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>786947</id>
-    <name>Dave Bost</name>
-    <screen_name>davebost</screen_name>
-    <location>St. Charles, IL</location>
-    <description>Microsoft Developer Evangelist and co-host of the Thirsty Developer podcast</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/457859622/dbost_normal.jpg</profile_image_url>
-    <url>http://www.davebost.com/blog</url>
-    <protected>false</protected>
-    <followers_count>1022</followers_count>
-    <profile_background_color>9ae4e8</profile_background_color>
-    <profile_text_color>000000</profile_text_color>
-    <profile_link_color>0000ff</profile_link_color>
-    <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-    <friends_count>814</friends_count>
-    <created_at>Wed Feb 21 18:53:52 +0000 2007</created_at>
-    <favourites_count>2</favourites_count>
-    <utc_offset>-21600</utc_offset>
-    <time_zone>Central Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>true</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>3562</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 11:17:34 +0000 2010</created_at>
-  <id>15035201322</id>
-  <text>Did I really subject my PC to so many installations of VS-related stuff (look at that scrollbar)?! http://twitpic.com/1sfyjx</text>
-  <source>&lt;a href="http://twitpic.com" rel="nofollow"&gt;Twitpic&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>8599212</id>
-    <name>Daniel Tan</name>
-    <screen_name>BoltClock</screen_name>
-    <location>Singapore</location>
-    <description>I'm a teen freelance web developer who enjoys hacking PHP code on his Windows 7 PC (no Mac, sadly). I adore math, green, Jesus, Apple and pi, but not apple pie!</description>
-    <profile_image_url>http://a3.twimg.com/profile_images/800400621/iBolt_normal.gif</profile_image_url>
-    <url>http://NOVALISTIC.com</url>
-    <protected>false</protected>
-    <followers_count>1245</followers_count>
-    <profile_background_color>131516</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>a73fc4</profile_link_color>
-    <profile_sidebar_fill_color>efefef</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>eeeeee</profile_sidebar_border_color>
-    <friends_count>926</friends_count>
-    <created_at>Sun Sep 02 02:12:25 +0000 2007</created_at>
-    <favourites_count>272</favourites_count>
-    <utc_offset>28800</utc_offset>
-    <time_zone>Singapore</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274834447/images/themes/theme14/bg.gif</profile_background_image_url>
-    <profile_background_tile>true</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>true</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>40581</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 11:14:18 +0000 2010</created_at>
-  <id>15035082401</id>
-  <text>test - mas att</text>
-  <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>813670</id>
-    <name>BrianGreene.com</name>
-    <screen_name>BrianGreene</screen_name>
-    <location>Dublin</location>
-    <description>news music spectrum politics life &amp; word play in 140 chunks</description>
-    <profile_image_url>http://a3.twimg.com/profile_images/799736341/r26580khz_normal.jpg</profile_image_url>
-    <url>http://url.ie/BHG</url>
-    <protected>false</protected>
-    <followers_count>1245</followers_count>
-    <profile_background_color>FFFFFF</profile_background_color>
-    <profile_text_color>000000</profile_text_color>
-    <profile_link_color>0000ff</profile_link_color>
-    <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>87BC44</profile_sidebar_border_color>
-    <friends_count>405</friends_count>
-    <created_at>Tue Mar 06 01:25:53 +0000 2007</created_at>
-    <favourites_count>5</favourites_count>
-    <utc_offset>0</utc_offset>
-    <time_zone>Dublin</time_zone>
-    <profile_background_image_url>http://a1.twimg.com/profile_background_images/20336474/12042008131.jpg</profile_background_image_url>
-    <profile_background_tile>true</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>14941</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 11:13:03 +0000 2010</created_at>
-  <id>15035038313</id>
-  <text>More people should use Jabber instead of the common IM #opensource #secure http://bit.ly/aw45qe</text>
-  <source>&lt;a href="http://twitterfeed.com" rel="nofollow"&gt;twitterfeed&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>54631433</id>
-    <name>FOSSwiki</name>
-    <screen_name>FOSSwiki</screen_name>
-    <location>San Francisco</location>
-    <description>Automated aggregator of all things #opensource. Managed by @Jay_Nath. Enjoy!</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/302423400/boxee_normal.jpg</profile_image_url>
-    <url>http://www.jaynath.com</url>
-    <protected>false</protected>
-    <followers_count>6171</followers_count>
-    <profile_background_color>9AE4E8</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>0084B4</profile_link_color>
-    <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
-    <friends_count>6686</friends_count>
-    <created_at>Tue Jul 07 18:19:54 +0000 2009</created_at>
-    <favourites_count>0</favourites_count>
-    <utc_offset>-28800</utc_offset>
-    <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://a1.twimg.com/profile_background_images/24312392/twitter_san_francisco-1.png</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>51617</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 11:13:03 +0000 2010</created_at>
-  <id>15035037848</id>
-  <text>Just submitted my article "When Open Source meets Education" for #InitMag June issue. #OpenSource #Education http://bit.ly/bv4ROt</text>
-  <source>&lt;a href="http://twitterfeed.com" rel="nofollow"&gt;twitterfeed&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>54631433</id>
-    <name>FOSSwiki</name>
-    <screen_name>FOSSwiki</screen_name>
-    <location>San Francisco</location>
-    <description>Automated aggregator of all things #opensource. Managed by @Jay_Nath. Enjoy!</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/302423400/boxee_normal.jpg</profile_image_url>
-    <url>http://www.jaynath.com</url>
-    <protected>false</protected>
-    <followers_count>6171</followers_count>
-    <profile_background_color>9AE4E8</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>0084B4</profile_link_color>
-    <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
-    <friends_count>6686</friends_count>
-    <created_at>Tue Jul 07 18:19:54 +0000 2009</created_at>
-    <favourites_count>0</favourites_count>
-    <utc_offset>-28800</utc_offset>
-    <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://a1.twimg.com/profile_background_images/24312392/twitter_san_francisco-1.png</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>51617</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 11:11:33 +0000 2010</created_at>
-  <id>15034985239</id>
-  <text>#anzeige Finally a project management tool that both your engineers AND your business people will like! Check out Planio http://j.mp/90wF49</text>
-  <source>&lt;a href="http://be-a-magpie.com/twitterers/disclosure-statement" rel="nofollow"&gt;Magpie Advertising Network&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>13596092</id>
-    <name>Dennis Winter</name>
-    <screen_name>d_winter</screen_name>
-    <location>Geldern/Germany</location>
-    <description>Freelancing web developer and student from Germany!</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/897202586/DSCF4271_normal.jpg</profile_image_url>
-    <url>http://blog.4expressions.com</url>
-    <protected>false</protected>
-    <followers_count>269</followers_count>
-    <profile_background_color>352726</profile_background_color>
-    <profile_text_color>352726</profile_text_color>
-    <profile_link_color>666666</profile_link_color>
-    <profile_sidebar_fill_color>99CC33</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>352726</profile_sidebar_border_color>
-    <friends_count>436</friends_count>
-    <created_at>Sun Feb 17 20:41:26 +0000 2008</created_at>
-    <favourites_count>4</favourites_count>
-    <utc_offset>3600</utc_offset>
-    <time_zone>Berlin</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274834447/images/themes/theme5/bg.gif</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>true</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>1639</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 11:05:38 +0000 2010</created_at>
-  <id>15034774667</id>
-  <text>Omg the big bang episode with the flashback is the best ever.</text>
-  <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>11853742</id>
-    <name>Ivo Jansch</name>
-    <screen_name>ijansch</screen_name>
-    <location>Netherlands</location>
-    <description>CTO of Ibuildings, PHP Evangelist, Writer, Blogger</description>
-    <profile_image_url>http://a3.twimg.com/profile_images/276839523/ivo_normal.png</profile_image_url>
-    <url>http://www.jansch.nl</url>
-    <protected>false</protected>
-    <followers_count>847</followers_count>
-    <profile_background_color>9ae4e8</profile_background_color>
-    <profile_text_color>000000</profile_text_color>
-    <profile_link_color>0000ff</profile_link_color>
-    <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-    <friends_count>268</friends_count>
-    <created_at>Fri Jan 04 21:04:42 +0000 2008</created_at>
-    <favourites_count>1</favourites_count>
-    <utc_offset>3600</utc_offset>
-    <time_zone>Amsterdam</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>false</following>
-    <statuses_count>4540</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 11:05:33 +0000 2010</created_at>
-  <id>15034771446</id>
-  <text>It's going to be quite a hot, humid day. 83% humidity right now, with the temp expected in the 90's.</text>
-  <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>14993209</id>
-    <name>Brandon Savage</name>
-    <screen_name>brandonsavage</screen_name>
-    <location/>
-    <description/>
-    <profile_image_url>http://a3.twimg.com/profile_images/859024571/brandon_normal.jpg</profile_image_url>
-    <url/>
-    <protected>false</protected>
-    <followers_count>752</followers_count>
-    <profile_background_color>C0DEED</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>0084B4</profile_link_color>
-    <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
-    <friends_count>152</friends_count>
-    <created_at>Tue Jun 03 14:28:21 +0000 2008</created_at>
-    <favourites_count>3</favourites_count>
-    <utc_offset>-18000</utc_offset>
-    <time_zone>Eastern Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1273875281/images/themes/theme1/bg.png</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>false</following>
-    <statuses_count>12028</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 11:01:23 +0000 2010</created_at>
-  <id>15034618617</id>
-  <text>looking for a wordpress plugin that allows one to manage "premium content" (including susbcription mgmt, payment, etc etc)</text>
-  <source>&lt;a href="http://www.seesmic.com/" rel="nofollow"&gt;Seesmic&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>50043</id>
-    <name>Stephanie Booth</name>
-    <screen_name>stephtara</screen_name>
-    <location>Lausanne</location>
-    <description>Anglo-Swiss, online strategy consultant. Loves her Indian cat @bagha, does judo, and tries to sing. Chatty. Works at @eclau.</description>
-    <profile_image_url>http://a3.twimg.com/profile_images/799159333/Photo_278_normal.jpg</profile_image_url>
-    <url>http://climbtothestars.org</url>
-    <protected>false</protected>
-    <followers_count>3043</followers_count>
-    <profile_background_color>9ae4e8</profile_background_color>
-    <profile_text_color>000000</profile_text_color>
-    <profile_link_color>B41E6B</profile_link_color>
-    <profile_sidebar_fill_color>FFE3FB</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>B41E6B</profile_sidebar_border_color>
-    <friends_count>718</friends_count>
-    <created_at>Fri Dec 08 09:25:46 +0000 2006</created_at>
-    <favourites_count>847</favourites_count>
-    <utc_offset>3600</utc_offset>
-    <time_zone>Bern</time_zone>
-    <profile_background_image_url>http://a1.twimg.com/profile_background_images/735262/IMG_1416.jpg</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>false</following>
-    <statuses_count>17541</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 10:58:56 +0000 2010</created_at>
-  <id>15034522004</id>
-  <text>Now time to sort out interwebs... new house has none, old one has a broken one. 3g stick or tethering is in my future!</text>
-  <source>&lt;a href="http://tweetsride.com/" rel="nofollow"&gt;TweetsRide&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>11924252</id>
-    <name>Helgi Þormar Þ.</name>
-    <screen_name>h</screen_name>
-    <location>London, United Kingdom</location>
-    <description>Party person, programmer, echolibre person etc etc</description>
-    <profile_image_url>http://a3.twimg.com/profile_images/609089633/Photo_on_2009-10-25_at_13.27_2_normal.jpg</profile_image_url>
-    <url>http://www.helgi.ws</url>
-    <protected>false</protected>
-    <followers_count>1429</followers_count>
-    <profile_background_color>352726</profile_background_color>
-    <profile_text_color>3E4415</profile_text_color>
-    <profile_link_color>D02B55</profile_link_color>
-    <profile_sidebar_fill_color>99CC33</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>829D5E</profile_sidebar_border_color>
-    <friends_count>201</friends_count>
-    <created_at>Mon Jan 07 01:17:28 +0000 2008</created_at>
-    <favourites_count>5</favourites_count>
-    <utc_offset>0</utc_offset>
-    <time_zone>London</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme5/bg.gif</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>true</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>5406</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Sun May 30 10:56:55 +0000 2010</created_at>
-  <id>15034450756</id>
-  <text>Hills always make me think the ride is longer than it is so I'm early for brunch with @samkabam and @elliotjaystocks. Have iPad will read.</text>
-  <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>7629722</id>
-    <name>Jon Tan 陳</name>
-    <screen_name>jontangerine</screen_name>
-    <location>Bristol, UK</location>
-    <description>Designer. Web typographer. Founding member of @analogcoop. Co-founder of @fontdeck.</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/897611884/205-bg-fff_normal.jpg</profile_image_url>
-    <url>http://analog.coop/</url>
-    <protected>false</protected>
-    <followers_count>2512</followers_count>
-    <profile_background_color>d8dccc</profile_background_color>
-    <profile_text_color>5e5f63</profile_text_color>
-    <profile_link_color>000000</profile_link_color>
-    <profile_sidebar_fill_color>eff2e6</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>f5f5f5</profile_sidebar_border_color>
-    <friends_count>97</friends_count>
-    <created_at>Sat Jul 21 21:19:52 +0000 2007</created_at>
-    <favourites_count>6</favourites_count>
-    <utc_offset>0</utc_offset>
-    <time_zone>London</time_zone>
-    <profile_background_image_url>http://a1.twimg.com/profile_background_images/83974308/bg-twitter-gradient.jpg</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>true</geo_enabled>
-    <verified>false</verified>
-    <following>false</following>
-    <statuses_count>4321</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo xmlns:georss="http://www.georss.org/georss">
-    <georss:point>51.45556062 -2.6039173</georss:point>
-  </geo>
-  <coordinates xmlns:georss="http://www.georss.org/georss">
-    <georss:point>51.45556062 -2.6039173</georss:point>
-  </coordinates>
-  <place/>
-  <contributors/>
-</status>
-</statuses>

+ 2739 - 0
tests/Zend/Service/Twitter/_files/statuses.home_timeline.page.json

@@ -0,0 +1,2739 @@
+[
+  {
+    "created_at":"Mon Mar 04 21:37:54 +0000 2013",
+    "id":308692806464073728,
+    "id_str":"308692806464073728",
+    "text":"quite a line up already if you ask me http:\/\/t.co\/TfzEGDkUYC, this is going to be great",
+    "source":"\u003Ca href=\u0022http:\/\/tapbots.com\/software\/tweetbot\/mac\u0022 rel=\u0022nofollow\u0022\u003ETweetbot for Mac\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":null,
+    "in_reply_to_status_id_str":null,
+    "in_reply_to_user_id":null,
+    "in_reply_to_user_id_str":null,
+    "in_reply_to_screen_name":null,
+    "user":{
+      "id":33927626,
+      "id_str":"33927626",
+      "name":"Juozas Kaziuk\u0117nas",
+      "screen_name":"juokaz",
+      "location":"Homeless",
+      "description":"People call me Joe. I grow businesses using technologies. The most clever idiot you know. ",
+      "url":"http:\/\/juokaz.com",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/juokaz.com",
+              "expanded_url":null,
+              "indices":[
+                0,
+                17
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":2003,
+      "friends_count":193,
+      "listed_count":195,
+      "created_at":"Tue Apr 21 14:57:11 +0000 2009",
+      "favourites_count":8,
+      "utc_offset":0,
+      "time_zone":"Edinburgh",
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":8197,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"EBEBEB",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/673679671\/28fd92314ade66a7ea1f46f3f8d4feda.jpeg",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/673679671\/28fd92314ade66a7ea1f46f3f8d4feda.jpeg",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3010723079\/ebb19d9506e44f13caba77a247ad439a_normal.jpeg",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3010723079\/ebb19d9506e44f13caba77a247ad439a_normal.jpeg",
+      "profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/33927626\/1349452677",
+      "profile_link_color":"990000",
+      "profile_sidebar_border_color":"FFFFFF",
+      "profile_sidebar_fill_color":"F3F3F3",
+      "profile_text_color":"333333",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":true,
+      "follow_request_sent":null,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+        {
+          "url":"http:\/\/t.co\/TfzEGDkUYC",
+          "expanded_url":"http:\/\/whiskyweb.co.uk\/speakers.html",
+          "display_url":"whiskyweb.co.uk\/speakers.html",
+          "indices":[
+            38,
+            60
+          ]
+        }
+      ],
+      "user_mentions":[
+
+      ]
+    },
+    "favorited":false,
+    "retweeted":false,
+    "possibly_sensitive":false
+  },
+  {
+    "created_at":"Mon Mar 04 21:37:35 +0000 2013",
+    "id":308692725383979010,
+    "id_str":"308692725383979010",
+    "text":"RT @Sencha: The anticipation is finally over. We\u2019re very excited to announce the winners of the #html5isready contest! http:\/\/t.co\/4hpFO ...",
+    "source":"\u003Ca href=\u0022http:\/\/www.hootsuite.com\u0022 rel=\u0022nofollow\u0022\u003EHootSuite\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":null,
+    "in_reply_to_status_id_str":null,
+    "in_reply_to_user_id":null,
+    "in_reply_to_user_id_str":null,
+    "in_reply_to_screen_name":null,
+    "user":{
+      "id":27335366,
+      "id_str":"27335366",
+      "name":"Stephan Hochd\u00f6rfer",
+      "screen_name":"shochdoerfer",
+      "location":"Mannheim",
+      "description":"Software developer, Internet geek and entrepreneur by heart with a magic touch.",
+      "url":"http:\/\/blog.bitexpert.de\/author\/stephan-hochdoerfer\/",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/blog.bitexpert.de\/author\/stephan-hochdoerfer\/",
+              "expanded_url":null,
+              "indices":[
+                0,
+                52
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":597,
+      "friends_count":382,
+      "listed_count":47,
+      "created_at":"Sat Mar 28 23:41:01 +0000 2009",
+      "favourites_count":10,
+      "utc_offset":-10800,
+      "time_zone":"Greenland",
+      "geo_enabled":true,
+      "verified":false,
+      "statuses_count":7320,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"EEEEEE",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/435073730\/twilk_background_4f49f33a1cf61.jpg",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/435073730\/twilk_background_4f49f33a1cf61.jpg",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/679170821\/62f13c99b.25312_normal.jpg",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/679170821\/62f13c99b.25312_normal.jpg",
+      "profile_link_color":"000000",
+      "profile_sidebar_border_color":"5ED4DC",
+      "profile_sidebar_fill_color":"95E8EC",
+      "profile_text_color":"3C3940",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":true,
+      "follow_request_sent":null,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweeted_status":{
+      "created_at":"Mon Mar 04 21:26:33 +0000 2013",
+      "id":308689949450969088,
+      "id_str":"308689949450969088",
+      "text":"The anticipation is finally over. We\u2019re very excited to announce the winners of the #html5isready contest! http:\/\/t.co\/4hpFOogemH",
+      "source":"\u003Ca href=\u0022http:\/\/www.hootsuite.com\u0022 rel=\u0022nofollow\u0022\u003EHootSuite\u003C\/a\u003E",
+      "truncated":false,
+      "in_reply_to_status_id":null,
+      "in_reply_to_status_id_str":null,
+      "in_reply_to_user_id":null,
+      "in_reply_to_user_id_str":null,
+      "in_reply_to_screen_name":null,
+      "user":{
+        "id":14539337,
+        "id_str":"14539337",
+        "name":"Sencha",
+        "screen_name":"Sencha",
+        "location":"Redwood City, CA",
+        "description":"We make application frameworks, tools, and cloud services that equip developers to create amazing app experiences using Web-standard technologies.",
+        "url":"http:\/\/www.sencha.com",
+        "entities":{
+          "url":{
+            "urls":[
+              {
+                "url":"http:\/\/www.sencha.com",
+                "expanded_url":null,
+                "indices":[
+                  0,
+                  21
+                ]
+              }
+            ]
+          },
+          "description":{
+            "urls":[
+
+            ]
+          }
+        },
+        "protected":false,
+        "followers_count":18276,
+        "friends_count":55,
+        "listed_count":1341,
+        "created_at":"Sat Apr 26 03:54:35 +0000 2008",
+        "favourites_count":187,
+        "utc_offset":-28800,
+        "time_zone":"Pacific Time (US \u0026 Canada)",
+        "geo_enabled":true,
+        "verified":false,
+        "statuses_count":2545,
+        "lang":"en",
+        "contributors_enabled":false,
+        "is_translator":false,
+        "profile_background_color":"FFFFFF",
+        "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/200647417\/oolong.png",
+        "profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/200647417\/oolong.png",
+        "profile_background_tile":true,
+        "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1233097698\/sencha-blue_normal.png",
+        "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1233097698\/sencha-blue_normal.png",
+        "profile_link_color":"126399",
+        "profile_sidebar_border_color":"F2F2F2",
+        "profile_sidebar_fill_color":"FFFFFF",
+        "profile_text_color":"333333",
+        "profile_use_background_image":true,
+        "default_profile":false,
+        "default_profile_image":false,
+        "following":null,
+        "follow_request_sent":null,
+        "notifications":null
+      },
+      "geo":null,
+      "coordinates":null,
+      "place":null,
+      "contributors":null,
+      "retweet_count":6,
+      "entities":{
+        "hashtags":[
+          {
+            "text":"html5isready",
+            "indices":[
+              84,
+              97
+            ]
+          }
+        ],
+        "urls":[
+          {
+            "url":"http:\/\/t.co\/4hpFOogemH",
+            "expanded_url":"http:\/\/ow.ly\/ilpHY",
+            "display_url":"ow.ly\/ilpHY",
+            "indices":[
+              107,
+              129
+            ]
+          }
+        ],
+        "user_mentions":[
+
+        ]
+      },
+      "favorited":false,
+      "retweeted":false,
+      "possibly_sensitive":false
+    },
+    "retweet_count":6,
+    "entities":{
+      "hashtags":[
+        {
+          "text":"html5isready",
+          "indices":[
+            96,
+            109
+          ]
+        }
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"Sencha",
+          "name":"Sencha",
+          "id":14539337,
+          "id_str":"14539337",
+          "indices":[
+            3,
+            10
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Mon Mar 04 21:36:45 +0000 2013",
+    "id":308692515626811392,
+    "id_str":"308692515626811392",
+    "text":"@ElizabethN @otherinbox?",
+    "source":"\u003Ca href=\u0022http:\/\/www.echofon.com\/\u0022 rel=\u0022nofollow\u0022\u003EEchofon\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":308692071009640448,
+    "in_reply_to_status_id_str":"308692071009640448",
+    "in_reply_to_user_id":9697482,
+    "in_reply_to_user_id_str":"9697482",
+    "in_reply_to_screen_name":"ElizabethN",
+    "user":{
+      "id":7920672,
+      "id_str":"7920672",
+      "name":"Davey Shafik",
+      "screen_name":"dshafik",
+      "location":"iPhone: 28.244517,-82.181615",
+      "description":"Professional PHP Developer, Author and Speaker. Engineer for @EngineYard on @eyorchestra \u2014\u00a0the PHP Platform as a Service.",
+      "url":"http:\/\/daveyshafik.com",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/daveyshafik.com",
+              "expanded_url":null,
+              "indices":[
+                0,
+                22
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":2275,
+      "friends_count":440,
+      "listed_count":179,
+      "created_at":"Fri Aug 03 00:53:40 +0000 2007",
+      "favourites_count":46,
+      "utc_offset":-18000,
+      "time_zone":"Eastern Time (US \u0026 Canada)",
+      "geo_enabled":true,
+      "verified":false,
+      "statuses_count":14720,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"BFE8B4",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/49560318\/clouds.png",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/49560318\/clouds.png",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1759926514\/6485231835_e13c84a61a_z-1_normal.jpg",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1759926514\/6485231835_e13c84a61a_z-1_normal.jpg",
+      "profile_link_color":"2C6214",
+      "profile_sidebar_border_color":"44BC47",
+      "profile_sidebar_fill_color":"AAE19C",
+      "profile_text_color":"000000",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":true,
+      "follow_request_sent":null,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"ElizabethN",
+          "name":"Elizabeth Naramore",
+          "id":9697482,
+          "id_str":"9697482",
+          "indices":[
+            0,
+            11
+          ]
+        },
+        {
+          "screen_name":"otherinbox",
+          "name":"OtherInbox",
+          "id":14793035,
+          "id_str":"14793035",
+          "indices":[
+            12,
+            23
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Mon Mar 04 21:34:59 +0000 2013",
+    "id":308692071009640448,
+    "id_str":"308692071009640448",
+    "text":"Email has become such a huge part of my day. Looking for helpful Gmail tips\/tricks\/addons if you have \u0027em.",
+    "source":"web",
+    "truncated":false,
+    "in_reply_to_status_id":null,
+    "in_reply_to_status_id_str":null,
+    "in_reply_to_user_id":null,
+    "in_reply_to_user_id_str":null,
+    "in_reply_to_screen_name":null,
+    "user":{
+      "id":9697482,
+      "id_str":"9697482",
+      "name":"Elizabeth Naramore",
+      "screen_name":"ElizabethN",
+      "location":"Cincinnati",
+      "description":"EventHandler at GitHub. Also, completely inappropriate most of the time.",
+      "url":"http:\/\/www.naramore.net\/blog",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/www.naramore.net\/blog",
+              "expanded_url":null,
+              "indices":[
+                0,
+                28
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":4453,
+      "friends_count":954,
+      "listed_count":396,
+      "created_at":"Thu Oct 25 23:36:24 +0000 2007",
+      "favourites_count":32,
+      "utc_offset":-18000,
+      "time_zone":"Eastern Time (US \u0026 Canada)",
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":19514,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"FFFFFF",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/4161617\/beach.jpg",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/4161617\/beach.jpg",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3026098081\/4b1f94a1633c67bac5ebdf3dfe963390_normal.jpeg",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3026098081\/4b1f94a1633c67bac5ebdf3dfe963390_normal.jpeg",
+      "profile_link_color":"4D1664",
+      "profile_sidebar_border_color":"86A4A6",
+      "profile_sidebar_fill_color":"D4CB9B",
+      "profile_text_color":"333333",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":true,
+      "follow_request_sent":null,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Mon Mar 04 21:33:22 +0000 2013",
+    "id":308691664053092353,
+    "id_str":"308691664053092353",
+    "text":"\u0022South African province spends $15.4M on WordPress site\u0022 Bandwidth overage cost from phishing attacks that exploited a broken plugin, right?",
+    "source":"\u003Ca href=\u0022http:\/\/www.echofon.com\/\u0022 rel=\u0022nofollow\u0022\u003EEchofon\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":null,
+    "in_reply_to_status_id_str":null,
+    "in_reply_to_user_id":null,
+    "in_reply_to_user_id_str":null,
+    "in_reply_to_screen_name":null,
+    "user":{
+      "id":14249124,
+      "id_str":"14249124",
+      "name":"Sean Coates",
+      "screen_name":"coates",
+      "location":"Montreal",
+      "description":"Doer of things technical at @FictiveKin: @gimmebar, @rushmorefm, @donenotdone, and others. I post geeky things about web, music, beer. Your call. (-:",
+      "url":"http:\/\/seancoates.com",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/seancoates.com",
+              "expanded_url":null,
+              "indices":[
+                0,
+                21
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":3170,
+      "friends_count":201,
+      "listed_count":292,
+      "created_at":"Sat Mar 29 03:52:29 +0000 2008",
+      "favourites_count":115,
+      "utc_offset":-18000,
+      "time_zone":"Eastern Time (US \u0026 Canada)",
+      "geo_enabled":true,
+      "verified":false,
+      "statuses_count":12648,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"7BCDCD",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/2696809\/whalecopter.png",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/2696809\/whalecopter.png",
+      "profile_background_tile":true,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1597362183\/me_normal.jpg",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1597362183\/me_normal.jpg",
+      "profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/14249124\/1349375406",
+      "profile_link_color":"0000FF",
+      "profile_sidebar_border_color":"009999",
+      "profile_sidebar_fill_color":"FFFFFF",
+      "profile_text_color":"000000",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":true,
+      "follow_request_sent":null,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Mon Mar 04 21:16:25 +0000 2013",
+    "id":308687399305760770,
+    "id_str":"308687399305760770",
+    "text":"If I ever buy a boat I\u0027m going to name it the \u0022I Love You\u0022",
+    "source":"\u003Ca href=\u0022http:\/\/www.metrotwit.com\/\u0022 rel=\u0022nofollow\u0022\u003EMetroTwit\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":null,
+    "in_reply_to_status_id_str":null,
+    "in_reply_to_user_id":null,
+    "in_reply_to_user_id_str":null,
+    "in_reply_to_screen_name":null,
+    "user":{
+      "id":87594768,
+      "id_str":"87594768",
+      "name":"Kevin Schroeder",
+      "screen_name":"kpschrade",
+      "location":"",
+      "description":"Developer, author, musician, global domination theoretician. Works for @Magento where he only does two of those.",
+      "url":"http:\/\/t.co\/MdB1RqXn5o",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/t.co\/MdB1RqXn5o",
+              "expanded_url":"http:\/\/www.eschrade.com",
+              "display_url":"eschrade.com",
+              "indices":[
+                0,
+                22
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":1431,
+      "friends_count":495,
+      "listed_count":158,
+      "created_at":"Thu Nov 05 02:17:15 +0000 2009",
+      "favourites_count":11,
+      "utc_offset":null,
+      "time_zone":null,
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":5356,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"A51B1B",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/179488564\/YouTube_Background.png",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/179488564\/YouTube_Background.png",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2940211149\/dcc14be78fa867049239e94422c99bb4_normal.jpeg",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2940211149\/dcc14be78fa867049239e94422c99bb4_normal.jpeg",
+      "profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/87594768\/1361994211",
+      "profile_link_color":"0084B4",
+      "profile_sidebar_border_color":"C0DEED",
+      "profile_sidebar_fill_color":"DDEEF6",
+      "profile_text_color":"333333",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":true,
+      "follow_request_sent":null,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Mon Mar 04 21:15:17 +0000 2013",
+    "id":308687111261913088,
+    "id_str":"308687111261913088",
+    "text":"For the west coast crowd, my latest book has gone live today http:\/\/t.co\/OgkikLWSHd",
+    "source":"\u003Ca href=\u0022http:\/\/tapbots.com\/tweetbot\u0022 rel=\u0022nofollow\u0022\u003ETweetbot for iOS\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":null,
+    "in_reply_to_status_id_str":null,
+    "in_reply_to_user_id":null,
+    "in_reply_to_user_id_str":null,
+    "in_reply_to_screen_name":null,
+    "user":{
+      "id":7418052,
+      "id_str":"7418052",
+      "name":"Chris Hartjes",
+      "screen_name":"grmpyprogrammer",
+      "location":"Milton, Ontario, Canada",
+      "description":"Grumpy web developer and tester, @gtaphp organizer, running @truenorthphp, just waiting for people to START WRITING TESTS",
+      "url":"http:\/\/www.littlehart.net\/atthekeyboard",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/www.littlehart.net\/atthekeyboard",
+              "expanded_url":null,
+              "indices":[
+                0,
+                39
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":3062,
+      "friends_count":294,
+      "listed_count":241,
+      "created_at":"Thu Jul 12 02:36:44 +0000 2007",
+      "favourites_count":14,
+      "utc_offset":-18000,
+      "time_zone":"Eastern Time (US \u0026 Canada)",
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":29405,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"9AE4E8",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3312427651\/a329ae66656ae180cb9de9d629dbb872_normal.jpeg",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3312427651\/a329ae66656ae180cb9de9d629dbb872_normal.jpeg",
+      "profile_link_color":"0000FF",
+      "profile_sidebar_border_color":"87BC44",
+      "profile_sidebar_fill_color":"E0FF92",
+      "profile_text_color":"000000",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":true,
+      "follow_request_sent":null,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":1,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+        {
+          "url":"http:\/\/t.co\/OgkikLWSHd",
+          "expanded_url":"http:\/\/grumpy-phpunit.com",
+          "display_url":"grumpy-phpunit.com",
+          "indices":[
+            61,
+            83
+          ]
+        }
+      ],
+      "user_mentions":[
+
+      ]
+    },
+    "favorited":false,
+    "retweeted":false,
+    "possibly_sensitive":false
+  },
+  {
+    "created_at":"Mon Mar 04 21:14:58 +0000 2013",
+    "id":308687035122737152,
+    "id_str":"308687035122737152",
+    "text":"Just a reminder I\u0027ll be talking about Improving Quality on Untestable Code @dsmwebgeeks at @goodsmiths tonight at 6:30pm",
+    "source":"\u003Ca href=\u0022http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\u0022 rel=\u0022nofollow\u0022\u003ETwitter for Mac\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":null,
+    "in_reply_to_status_id_str":null,
+    "in_reply_to_user_id":null,
+    "in_reply_to_user_id_str":null,
+    "in_reply_to_screen_name":null,
+    "user":{
+      "id":9549602,
+      "id_str":"9549602",
+      "name":"Tony Bibbs",
+      "screen_name":"tonybibbs",
+      "location":"Urbandale, IA",
+      "description":"President, lead geek and customer service enthusiast for @gforgegroup. Iowa native, family man \u0026 hunter gatherer.",
+      "url":"http:\/\/www.tonybibbs.com",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/www.tonybibbs.com",
+              "expanded_url":null,
+              "indices":[
+                0,
+                24
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":908,
+      "friends_count":522,
+      "listed_count":76,
+      "created_at":"Fri Oct 19 20:08:42 +0000 2007",
+      "favourites_count":163,
+      "utc_offset":-21600,
+      "time_zone":"Central Time (US \u0026 Canada)",
+      "geo_enabled":true,
+      "verified":false,
+      "statuses_count":9197,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"1A1B1F",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme9\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme9\/bg.gif",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2151109854\/458924_10150634200962817_515922816_9173861_610735234_o_normal.jpg",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2151109854\/458924_10150634200962817_515922816_9173861_610735234_o_normal.jpg",
+      "profile_link_color":"2FC2EF",
+      "profile_sidebar_border_color":"181A1E",
+      "profile_sidebar_fill_color":"252429",
+      "profile_text_color":"666666",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":true,
+      "follow_request_sent":null,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"dsmwebgeeks",
+          "name":"dsmwebgeeks",
+          "id":15531930,
+          "id_str":"15531930",
+          "indices":[
+            75,
+            87
+          ]
+        },
+        {
+          "screen_name":"goodsmiths",
+          "name":"Goodsmiths",
+          "id":246623949,
+          "id_str":"246623949",
+          "indices":[
+            91,
+            102
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Mon Mar 04 21:10:50 +0000 2013",
+    "id":308685992179666946,
+    "id_str":"308685992179666946",
+    "text":"Need some JavaScript or front-end dev work?  Talk to @garannm before someone else hires her!",
+    "source":"\u003Ca href=\u0022http:\/\/tapbots.com\/software\/tweetbot\/mac\u0022 rel=\u0022nofollow\u0022\u003ETweetbot for Mac\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":null,
+    "in_reply_to_status_id_str":null,
+    "in_reply_to_user_id":null,
+    "in_reply_to_user_id_str":null,
+    "in_reply_to_screen_name":null,
+    "user":{
+      "id":9478892,
+      "id_str":"9478892",
+      "name":"Travis Swicegood",
+      "screen_name":"tswicegood",
+      "location":"Austin, TX",
+      "description":"Professional Instigator, Lone Star Hacker, Director of Tech for @TexasTribune, Digital Polyglot, and Maker of Trouble.",
+      "url":"http:\/\/www.travisswicegood.com",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/www.travisswicegood.com",
+              "expanded_url":null,
+              "indices":[
+                0,
+                30
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":2321,
+      "friends_count":487,
+      "listed_count":258,
+      "created_at":"Tue Oct 16 14:55:08 +0000 2007",
+      "favourites_count":2722,
+      "utc_offset":-21600,
+      "time_zone":"Central America",
+      "geo_enabled":true,
+      "verified":false,
+      "statuses_count":19297,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"07090B",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/561552939\/x7f4c8953e6e4bd4e1c3c3de2a384a54.png",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/561552939\/x7f4c8953e6e4bd4e1c3c3de2a384a54.png",
+      "profile_background_tile":true,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3165761278\/a2b009e6e0760b4e3234770b6fc0b4d0_normal.jpeg",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3165761278\/a2b009e6e0760b4e3234770b6fc0b4d0_normal.jpeg",
+      "profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/9478892\/1362432864",
+      "profile_link_color":"1C1F23",
+      "profile_sidebar_border_color":"BFBFBF",
+      "profile_sidebar_fill_color":"EEEEEE",
+      "profile_text_color":"336666",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":true,
+      "follow_request_sent":null,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":{
+      "id":"c3f37afa9efcf94b",
+      "url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/c3f37afa9efcf94b.json",
+      "place_type":"city",
+      "name":"Austin",
+      "full_name":"Austin, TX",
+      "country_code":"US",
+      "country":"United States",
+      "bounding_box":{
+        "type":"Polygon",
+        "coordinates":[
+          [
+            [
+              -97.938383,
+              30.098659
+            ],
+            [
+              -97.56842,
+              30.098659
+            ],
+            [
+              -97.56842,
+              30.49685
+            ],
+            [
+              -97.938383,
+              30.49685
+            ]
+          ]
+        ]
+      },
+      "attributes":{
+
+      }
+    },
+    "contributors":null,
+    "retweet_count":2,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"garannm",
+          "name":"Garann Means",
+          "id":15989423,
+          "id_str":"15989423",
+          "indices":[
+            53,
+            61
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Mon Mar 04 21:09:22 +0000 2013",
+    "id":308685625366831104,
+    "id_str":"308685625366831104",
+    "text":"RT @LarryUllman: \u0022The Yii Book\u0022 version 0.5 Update Posted! http:\/\/t.co\/kvJJ3hI5Um",
+    "source":"\u003Ca href=\u0022http:\/\/tapbots.com\/tweetbot\u0022 rel=\u0022nofollow\u0022\u003ETweetbot for iOS\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":null,
+    "in_reply_to_status_id_str":null,
+    "in_reply_to_user_id":null,
+    "in_reply_to_user_id_str":null,
+    "in_reply_to_screen_name":null,
+    "user":{
+      "id":7418052,
+      "id_str":"7418052",
+      "name":"Chris Hartjes",
+      "screen_name":"grmpyprogrammer",
+      "location":"Milton, Ontario, Canada",
+      "description":"Grumpy web developer and tester, @gtaphp organizer, running @truenorthphp, just waiting for people to START WRITING TESTS",
+      "url":"http:\/\/www.littlehart.net\/atthekeyboard",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/www.littlehart.net\/atthekeyboard",
+              "expanded_url":null,
+              "indices":[
+                0,
+                39
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":3062,
+      "friends_count":294,
+      "listed_count":241,
+      "created_at":"Thu Jul 12 02:36:44 +0000 2007",
+      "favourites_count":14,
+      "utc_offset":-18000,
+      "time_zone":"Eastern Time (US \u0026 Canada)",
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":29405,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"9AE4E8",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3312427651\/a329ae66656ae180cb9de9d629dbb872_normal.jpeg",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3312427651\/a329ae66656ae180cb9de9d629dbb872_normal.jpeg",
+      "profile_link_color":"0000FF",
+      "profile_sidebar_border_color":"87BC44",
+      "profile_sidebar_fill_color":"E0FF92",
+      "profile_text_color":"000000",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":true,
+      "follow_request_sent":null,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweeted_status":{
+      "created_at":"Mon Mar 04 21:08:10 +0000 2013",
+      "id":308685323595046914,
+      "id_str":"308685323595046914",
+      "text":"\u0022The Yii Book\u0022 version 0.5 Update Posted! http:\/\/t.co\/kvJJ3hI5Um",
+      "source":"\u003Ca href=\u0022http:\/\/publicize.wp.com\/\u0022 rel=\u0022nofollow\u0022\u003EWordPress.com\u003C\/a\u003E",
+      "truncated":false,
+      "in_reply_to_status_id":null,
+      "in_reply_to_status_id_str":null,
+      "in_reply_to_user_id":null,
+      "in_reply_to_user_id_str":null,
+      "in_reply_to_screen_name":null,
+      "user":{
+        "id":491614587,
+        "id_str":"491614587",
+        "name":"Larry Ullman",
+        "screen_name":"LarryUllman",
+        "location":"State College, PA, US",
+        "description":"Writer, Web and software developer, trainer, instructor, speaker, and consultant. Specializes in translating Geek into English.",
+        "url":"http:\/\/t.co\/Wa6sL7ZO",
+        "entities":{
+          "url":{
+            "urls":[
+              {
+                "url":"http:\/\/t.co\/Wa6sL7ZO",
+                "expanded_url":"http:\/\/www.larryullman.com",
+                "display_url":"larryullman.com",
+                "indices":[
+                  0,
+                  20
+                ]
+              }
+            ]
+          },
+          "description":{
+            "urls":[
+
+            ]
+          }
+        },
+        "protected":false,
+        "followers_count":1029,
+        "friends_count":391,
+        "listed_count":43,
+        "created_at":"Mon Feb 13 20:42:49 +0000 2012",
+        "favourites_count":87,
+        "utc_offset":-18000,
+        "time_zone":"Eastern Time (US \u0026 Canada)",
+        "geo_enabled":false,
+        "verified":false,
+        "statuses_count":2693,
+        "lang":"en",
+        "contributors_enabled":false,
+        "is_translator":false,
+        "profile_background_color":"DBE8FF",
+        "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/538578445\/Twitter-Background.png",
+        "profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/538578445\/Twitter-Background.png",
+        "profile_background_tile":false,
+        "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1926733998\/icon_normal.png",
+        "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1926733998\/icon_normal.png",
+        "profile_link_color":"0A0E51",
+        "profile_sidebar_border_color":"EEEEEE",
+        "profile_sidebar_fill_color":"EFEFEF",
+        "profile_text_color":"333333",
+        "profile_use_background_image":true,
+        "default_profile":false,
+        "default_profile_image":false,
+        "following":null,
+        "follow_request_sent":null,
+        "notifications":null
+      },
+      "geo":null,
+      "coordinates":null,
+      "place":null,
+      "contributors":null,
+      "retweet_count":1,
+      "entities":{
+        "hashtags":[
+
+        ],
+        "urls":[
+          {
+            "url":"http:\/\/t.co\/kvJJ3hI5Um",
+            "expanded_url":"http:\/\/wp.me\/p2eMVC-UO",
+            "display_url":"wp.me\/p2eMVC-UO",
+            "indices":[
+              42,
+              64
+            ]
+          }
+        ],
+        "user_mentions":[
+
+        ]
+      },
+      "favorited":false,
+      "retweeted":false,
+      "possibly_sensitive":false
+    },
+    "retweet_count":1,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+        {
+          "url":"http:\/\/t.co\/kvJJ3hI5Um",
+          "expanded_url":"http:\/\/wp.me\/p2eMVC-UO",
+          "display_url":"wp.me\/p2eMVC-UO",
+          "indices":[
+            59,
+            81
+          ]
+        }
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"LarryUllman",
+          "name":"Larry Ullman",
+          "id":491614587,
+          "id_str":"491614587",
+          "indices":[
+            3,
+            15
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false,
+    "possibly_sensitive":false
+  },
+  {
+    "created_at":"Mon Mar 04 21:09:10 +0000 2013",
+    "id":308685574989037570,
+    "id_str":"308685574989037570",
+    "text":"\u0022The real secret of the success of continuous deployment is that code is pushed before it\u2019s done.\u0022 http:\/\/t.co\/h54Ah0n3eG",
+    "source":"\u003Ca href=\u0022http:\/\/bufferapp.com\u0022 rel=\u0022nofollow\u0022\u003EBuffer\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":null,
+    "in_reply_to_status_id_str":null,
+    "in_reply_to_user_id":null,
+    "in_reply_to_user_id_str":null,
+    "in_reply_to_screen_name":null,
+    "user":{
+      "id":9478892,
+      "id_str":"9478892",
+      "name":"Travis Swicegood",
+      "screen_name":"tswicegood",
+      "location":"Austin, TX",
+      "description":"Professional Instigator, Lone Star Hacker, Director of Tech for @TexasTribune, Digital Polyglot, and Maker of Trouble.",
+      "url":"http:\/\/www.travisswicegood.com",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/www.travisswicegood.com",
+              "expanded_url":null,
+              "indices":[
+                0,
+                30
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":2321,
+      "friends_count":487,
+      "listed_count":258,
+      "created_at":"Tue Oct 16 14:55:08 +0000 2007",
+      "favourites_count":2722,
+      "utc_offset":-21600,
+      "time_zone":"Central America",
+      "geo_enabled":true,
+      "verified":false,
+      "statuses_count":19297,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"07090B",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/561552939\/x7f4c8953e6e4bd4e1c3c3de2a384a54.png",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/561552939\/x7f4c8953e6e4bd4e1c3c3de2a384a54.png",
+      "profile_background_tile":true,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3165761278\/a2b009e6e0760b4e3234770b6fc0b4d0_normal.jpeg",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3165761278\/a2b009e6e0760b4e3234770b6fc0b4d0_normal.jpeg",
+      "profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/9478892\/1362432864",
+      "profile_link_color":"1C1F23",
+      "profile_sidebar_border_color":"BFBFBF",
+      "profile_sidebar_fill_color":"EEEEEE",
+      "profile_text_color":"336666",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":true,
+      "follow_request_sent":null,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+        {
+          "url":"http:\/\/t.co\/h54Ah0n3eG",
+          "expanded_url":"http:\/\/j.mp\/Xl8mly",
+          "display_url":"j.mp\/Xl8mly",
+          "indices":[
+            99,
+            121
+          ]
+        }
+      ],
+      "user_mentions":[
+
+      ]
+    },
+    "favorited":false,
+    "retweeted":false,
+    "possibly_sensitive":false
+  },
+  {
+    "created_at":"Mon Mar 04 21:05:36 +0000 2013",
+    "id":308684676262928384,
+    "id_str":"308684676262928384",
+    "text":"@tswicegood Something\u0027s messed up with that; quite some number in the top 20 are now no longer on that list.",
+    "source":"\u003Ca href=\u0022http:\/\/hotot.org\u0022 rel=\u0022nofollow\u0022\u003EHotot for Chrome\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":308681699364052992,
+    "in_reply_to_status_id_str":"308681699364052992",
+    "in_reply_to_user_id":9478892,
+    "in_reply_to_user_id_str":"9478892",
+    "in_reply_to_screen_name":"tswicegood",
+    "user":{
+      "id":9453382,
+      "id_str":"9453382",
+      "name":"weierophinney",
+      "screen_name":"mwop",
+      "location":"Sioux Falls, SD",
+      "description":"PHP and ZF Developer; crazed father of two.",
+      "url":"http:\/\/mwop.net\/",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/mwop.net\/",
+              "expanded_url":null,
+              "indices":[
+                0,
+                16
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":6358,
+      "friends_count":191,
+      "listed_count":610,
+      "created_at":"Mon Oct 15 11:34:13 +0000 2007",
+      "favourites_count":357,
+      "utc_offset":3600,
+      "time_zone":"Brussels",
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":13278,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"352726",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_link_color":"D02B55",
+      "profile_sidebar_border_color":"829D5E",
+      "profile_sidebar_fill_color":"99CC33",
+      "profile_text_color":"3E4415",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":true,
+      "follow_request_sent":null,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"tswicegood",
+          "name":"Travis Swicegood",
+          "id":9478892,
+          "id_str":"9478892",
+          "indices":[
+            0,
+            11
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Mon Mar 04 21:02:41 +0000 2013",
+    "id":308683941211148288,
+    "id_str":"308683941211148288",
+    "text":"This would be .@dys_morphia 100 years ago: RT @calacademy: #WomenHistory Academy\u0027s heroic botanist Alice Eastwood http:\/\/t.co\/tMRzvgrAZA",
+    "source":"\u003Ca href=\u0022http:\/\/www.echofon.com\/\u0022 rel=\u0022nofollow\u0022\u003EEchofon\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":null,
+    "in_reply_to_status_id_str":null,
+    "in_reply_to_user_id":null,
+    "in_reply_to_user_id_str":null,
+    "in_reply_to_screen_name":null,
+    "user":{
+      "id":14033052,
+      "id_str":"14033052",
+      "name":"Maggie Nelson",
+      "screen_name":"maggie1000",
+      "location":"San Francisco, CA",
+      "description":"databases and code goodness",
+      "url":"http:\/\/maggienelson.com",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/maggienelson.com",
+              "expanded_url":null,
+              "indices":[
+                0,
+                23
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":1245,
+      "friends_count":294,
+      "listed_count":105,
+      "created_at":"Tue Feb 26 22:40:48 +0000 2008",
+      "favourites_count":718,
+      "utc_offset":-28800,
+      "time_zone":"Pacific Time (US \u0026 Canada)",
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":9107,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"EEEEEE",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/2479572\/pewpewpew.jpg",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/2479572\/pewpewpew.jpg",
+      "profile_background_tile":true,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3155587286\/dfde09ae9be7bb38f658c2fdf3890e57_normal.jpeg",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3155587286\/dfde09ae9be7bb38f658c2fdf3890e57_normal.jpeg",
+      "profile_link_color":"7068B4",
+      "profile_sidebar_border_color":"716196",
+      "profile_sidebar_fill_color":"EEEEEE",
+      "profile_text_color":"000000",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":true,
+      "follow_request_sent":null,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+        {
+          "text":"WomenHistory",
+          "indices":[
+            59,
+            72
+          ]
+        }
+      ],
+      "urls":[
+        {
+          "url":"http:\/\/t.co\/tMRzvgrAZA",
+          "expanded_url":"http:\/\/fb.me\/1VBKe8YqH",
+          "display_url":"fb.me\/1VBKe8YqH",
+          "indices":[
+            114,
+            136
+          ]
+        }
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"dys_morphia",
+          "name":"Dysmorphia",
+          "id":89566127,
+          "id_str":"89566127",
+          "indices":[
+            15,
+            27
+          ]
+        },
+        {
+          "screen_name":"calacademy",
+          "name":"CA AcademyOfSciences",
+          "id":16017753,
+          "id_str":"16017753",
+          "indices":[
+            46,
+            57
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false,
+    "possibly_sensitive":false
+  },
+  {
+    "created_at":"Mon Mar 04 21:01:16 +0000 2013",
+    "id":308683586461110272,
+    "id_str":"308683586461110272",
+    "text":"Got old #php code you still need to convert to namespaces? Give this tool a try: https:\/\/t.co\/Vtc8wOyuds (works on #ZF1 projects too!)",
+    "source":"\u003Ca href=\u0022http:\/\/www.tweetdeck.com\u0022 rel=\u0022nofollow\u0022\u003ETweetDeck\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":null,
+    "in_reply_to_status_id_str":null,
+    "in_reply_to_user_id":null,
+    "in_reply_to_user_id_str":null,
+    "in_reply_to_screen_name":null,
+    "user":{
+      "id":13209052,
+      "id_str":"13209052",
+      "name":"Ralph Schindler",
+      "screen_name":"ralphschindler",
+      "location":"New Orleans, LA",
+      "description":"PHP Developer, Zender, ZFer, Hiker, Professional Eater, Nerd.",
+      "url":"http:\/\/ralphschindler.com",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/ralphschindler.com",
+              "expanded_url":null,
+              "indices":[
+                0,
+                25
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":2692,
+      "friends_count":328,
+      "listed_count":259,
+      "created_at":"Thu Feb 07 16:07:55 +0000 2008",
+      "favourites_count":0,
+      "utc_offset":-21600,
+      "time_zone":"Central Time (US \u0026 Canada)",
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":1729,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"C0DEED",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2218255450\/_DSC4891_normal.jpg",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2218255450\/_DSC4891_normal.jpg",
+      "profile_link_color":"0084B4",
+      "profile_sidebar_border_color":"C0DEED",
+      "profile_sidebar_fill_color":"DDEEF6",
+      "profile_text_color":"333333",
+      "profile_use_background_image":true,
+      "default_profile":true,
+      "default_profile_image":false,
+      "following":true,
+      "follow_request_sent":null,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":10,
+    "entities":{
+      "hashtags":[
+        {
+          "text":"php",
+          "indices":[
+            8,
+            12
+          ]
+        },
+        {
+          "text":"ZF1",
+          "indices":[
+            115,
+            119
+          ]
+        }
+      ],
+      "urls":[
+        {
+          "url":"https:\/\/t.co\/Vtc8wOyuds",
+          "expanded_url":"https:\/\/github.com\/ralphschindler\/Namespacer",
+          "display_url":"github.com\/ralphschindler\u2026",
+          "indices":[
+            81,
+            104
+          ]
+        }
+      ],
+      "user_mentions":[
+
+      ]
+    },
+    "favorited":false,
+    "retweeted":true,
+    "possibly_sensitive":false
+  },
+  {
+    "created_at":"Mon Mar 04 20:59:13 +0000 2013",
+    "id":308683068812689409,
+    "id_str":"308683068812689409",
+    "text":"Just want to point out that @onyxfish is number 16 on this list of the 1,000 most active users on @github. https:\/\/t.co\/I112tGYm4b",
+    "source":"\u003Ca href=\u0022http:\/\/tapbots.com\/software\/tweetbot\/mac\u0022 rel=\u0022nofollow\u0022\u003ETweetbot for Mac\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":null,
+    "in_reply_to_status_id_str":null,
+    "in_reply_to_user_id":null,
+    "in_reply_to_user_id_str":null,
+    "in_reply_to_screen_name":null,
+    "user":{
+      "id":9478892,
+      "id_str":"9478892",
+      "name":"Travis Swicegood",
+      "screen_name":"tswicegood",
+      "location":"Austin, TX",
+      "description":"Professional Instigator, Lone Star Hacker, Director of Tech for @TexasTribune, Digital Polyglot, and Maker of Trouble.",
+      "url":"http:\/\/www.travisswicegood.com",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/www.travisswicegood.com",
+              "expanded_url":null,
+              "indices":[
+                0,
+                30
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":2321,
+      "friends_count":487,
+      "listed_count":258,
+      "created_at":"Tue Oct 16 14:55:08 +0000 2007",
+      "favourites_count":2722,
+      "utc_offset":-21600,
+      "time_zone":"Central America",
+      "geo_enabled":true,
+      "verified":false,
+      "statuses_count":19297,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"07090B",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/561552939\/x7f4c8953e6e4bd4e1c3c3de2a384a54.png",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/561552939\/x7f4c8953e6e4bd4e1c3c3de2a384a54.png",
+      "profile_background_tile":true,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3165761278\/a2b009e6e0760b4e3234770b6fc0b4d0_normal.jpeg",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3165761278\/a2b009e6e0760b4e3234770b6fc0b4d0_normal.jpeg",
+      "profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/9478892\/1362432864",
+      "profile_link_color":"1C1F23",
+      "profile_sidebar_border_color":"BFBFBF",
+      "profile_sidebar_fill_color":"EEEEEE",
+      "profile_text_color":"336666",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":true,
+      "follow_request_sent":null,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":{
+      "id":"c3f37afa9efcf94b",
+      "url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/c3f37afa9efcf94b.json",
+      "place_type":"city",
+      "name":"Austin",
+      "full_name":"Austin, TX",
+      "country_code":"US",
+      "country":"United States",
+      "bounding_box":{
+        "type":"Polygon",
+        "coordinates":[
+          [
+            [
+              -97.938383,
+              30.098659
+            ],
+            [
+              -97.56842,
+              30.098659
+            ],
+            [
+              -97.56842,
+              30.49685
+            ],
+            [
+              -97.938383,
+              30.49685
+            ]
+          ]
+        ]
+      },
+      "attributes":{
+
+      }
+    },
+    "contributors":null,
+    "retweet_count":2,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+        {
+          "url":"https:\/\/t.co\/I112tGYm4b",
+          "expanded_url":"https:\/\/gist.github.com\/paulmillr\/2657075",
+          "display_url":"gist.github.com\/paulmillr\/2657\u2026",
+          "indices":[
+            107,
+            130
+          ]
+        }
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"onyxfish",
+          "name":"Christopher Groskopf",
+          "id":32633517,
+          "id_str":"32633517",
+          "indices":[
+            28,
+            37
+          ]
+        },
+        {
+          "screen_name":"github",
+          "name":"GitHub",
+          "id":13334762,
+          "id_str":"13334762",
+          "indices":[
+            98,
+            105
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false,
+    "possibly_sensitive":false
+  },
+  {
+    "created_at":"Mon Mar 04 20:58:37 +0000 2013",
+    "id":308682917918433282,
+    "id_str":"308682917918433282",
+    "text":"RT @AndrewBloch: A master class in customer service from Lego. Boy writes to Lego after losing a mini-figure. Here\u0027s their reply... http ...",
+    "source":"\u003Ca href=\u0022http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\u0022 rel=\u0022nofollow\u0022\u003ETwitter for Mac\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":null,
+    "in_reply_to_status_id_str":null,
+    "in_reply_to_user_id":null,
+    "in_reply_to_user_id_str":null,
+    "in_reply_to_screen_name":null,
+    "user":{
+      "id":20217800,
+      "id_str":"20217800",
+      "name":"Mark Story",
+      "screen_name":"mark_story",
+      "location":"Toronto, Ontario",
+      "description":"CakePHP guy, Developer at FreshBooks and moonlight designer.",
+      "url":"http:\/\/mark-story.com",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/mark-story.com",
+              "expanded_url":null,
+              "indices":[
+                0,
+                21
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":1924,
+      "friends_count":199,
+      "listed_count":193,
+      "created_at":"Fri Feb 06 04:58:59 +0000 2009",
+      "favourites_count":5,
+      "utc_offset":-21600,
+      "time_zone":"Central Time (US \u0026 Canada)",
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":7681,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"FFFFFF",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme2\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme2\/bg.gif",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2917264114\/eabdb848b573a4c0b1e64c69aeadd34b_normal.png",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2917264114\/eabdb848b573a4c0b1e64c69aeadd34b_normal.png",
+      "profile_link_color":"004875",
+      "profile_sidebar_border_color":"ABACAD",
+      "profile_sidebar_fill_color":"F5F5F5",
+      "profile_text_color":"640700",
+      "profile_use_background_image":false,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":true,
+      "follow_request_sent":null,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweeted_status":{
+      "created_at":"Mon Jan 07 21:16:03 +0000 2013",
+      "id":288393587425701888,
+      "id_str":"288393587425701888",
+      "text":"A master class in customer service from Lego. Boy writes to Lego after losing a mini-figure. Here\u0027s their reply... http:\/\/t.co\/ldoMH29j",
+      "source":"\u003Ca href=\u0022http:\/\/blackberry.com\/twitter\u0022 rel=\u0022nofollow\u0022\u003ETwitter for BlackBerry\u00ae\u003C\/a\u003E",
+      "truncated":false,
+      "in_reply_to_status_id":null,
+      "in_reply_to_status_id_str":null,
+      "in_reply_to_user_id":null,
+      "in_reply_to_user_id_str":null,
+      "in_reply_to_screen_name":null,
+      "user":{
+        "id":19062754,
+        "id_str":"19062754",
+        "name":"Andrew Bloch",
+        "screen_name":"AndrewBloch",
+        "location":"London",
+        "description":"Group MD and Founder of Frank PR, Marketing Magazine\u0027s PR Agency of the Year. Offices in London, Manchester, Sydney and New York. These are my personal views",
+        "url":"http:\/\/www.frankpr.it",
+        "entities":{
+          "url":{
+            "urls":[
+              {
+                "url":"http:\/\/www.frankpr.it",
+                "expanded_url":null,
+                "indices":[
+                  0,
+                  21
+                ]
+              }
+            ]
+          },
+          "description":{
+            "urls":[
+
+            ]
+          }
+        },
+        "protected":false,
+        "followers_count":25726,
+        "friends_count":835,
+        "listed_count":833,
+        "created_at":"Fri Jan 16 11:27:33 +0000 2009",
+        "favourites_count":122,
+        "utc_offset":0,
+        "time_zone":"London",
+        "geo_enabled":false,
+        "verified":false,
+        "statuses_count":8367,
+        "lang":"en",
+        "contributors_enabled":false,
+        "is_translator":false,
+        "profile_background_color":"FFFFFF",
+        "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png",
+        "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png",
+        "profile_background_tile":false,
+        "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1292466135\/AB_headshot_2509201CCC_normal.jpg",
+        "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1292466135\/AB_headshot_2509201CCC_normal.jpg",
+        "profile_link_color":"695D69",
+        "profile_sidebar_border_color":"B8B1B8",
+        "profile_sidebar_fill_color":"FFFFFF",
+        "profile_text_color":"030303",
+        "profile_use_background_image":false,
+        "default_profile":false,
+        "default_profile_image":false,
+        "following":null,
+        "follow_request_sent":null,
+        "notifications":null
+      },
+      "geo":null,
+      "coordinates":null,
+      "place":null,
+      "contributors":null,
+      "retweet_count":18169,
+      "entities":{
+        "hashtags":[
+
+        ],
+        "urls":[
+
+        ],
+        "user_mentions":[
+
+        ],
+        "media":[
+          {
+            "id":288281355870150656,
+            "id_str":"288281355870150656",
+            "indices":[
+              115,
+              135
+            ],
+            "media_url":"http:\/\/pbs.twimg.com\/media\/BAAuXaQCIAAc3dl.jpg",
+            "media_url_https":"https:\/\/pbs.twimg.com\/media\/BAAuXaQCIAAc3dl.jpg",
+            "url":"http:\/\/t.co\/ldoMH29j",
+            "display_url":"pic.twitter.com\/ldoMH29j",
+            "expanded_url":"http:\/\/twitter.com\/simonapps\/status\/288281355861762048\/photo\/1",
+            "type":"photo",
+            "sizes":{
+              "thumb":{
+                "w":150,
+                "h":150,
+                "resize":"crop"
+              },
+              "small":{
+                "w":340,
+                "h":445,
+                "resize":"fit"
+              },
+              "medium":{
+                "w":500,
+                "h":654,
+                "resize":"fit"
+              },
+              "large":{
+                "w":500,
+                "h":654,
+                "resize":"fit"
+              }
+            },
+            "source_status_id":288281355861762048,
+            "source_status_id_str":"288281355861762048"
+          }
+        ]
+      },
+      "favorited":false,
+      "retweeted":false,
+      "possibly_sensitive":false
+    },
+    "retweet_count":18169,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"AndrewBloch",
+          "name":"Andrew Bloch",
+          "id":19062754,
+          "id_str":"19062754",
+          "indices":[
+            3,
+            15
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Mon Mar 04 20:58:36 +0000 2013",
+    "id":308682914701377536,
+    "id_str":"308682914701377536",
+    "text":"Epic tailgating success: followed @boblord, @netik, and @tf onto the 8th floor, no badge needed.",
+    "source":"web",
+    "truncated":false,
+    "in_reply_to_status_id":null,
+    "in_reply_to_status_id_str":null,
+    "in_reply_to_user_id":null,
+    "in_reply_to_user_id_str":null,
+    "in_reply_to_screen_name":null,
+    "user":{
+      "id":302173,
+      "id_str":"302173",
+      "name":"Kitt Hodsden",
+      "screen_name":"kitt",
+      "location":"SF Bay Area, CA",
+      "description":"@drupal dev, @twitter eng, @hackerdojo co-founder",
+      "url":"http:\/\/ki.tt\/",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/ki.tt\/",
+              "expanded_url":null,
+              "indices":[
+                0,
+                13
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":1692,
+      "friends_count":614,
+      "listed_count":157,
+      "created_at":"Wed Dec 27 23:25:12 +0000 2006",
+      "favourites_count":423,
+      "utc_offset":-28800,
+      "time_zone":"Pacific Time (US \u0026 Canada)",
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":14400,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"131516",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/268283238\/flower-red-md.jpg",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/268283238\/flower-red-md.jpg",
+      "profile_background_tile":true,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2020233441\/http_ki_tt_normal.png",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2020233441\/http_ki_tt_normal.png",
+      "profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/302173\/1355344584",
+      "profile_link_color":"BF1111",
+      "profile_sidebar_border_color":"EEEEEE",
+      "profile_sidebar_fill_color":"EFEFEF",
+      "profile_text_color":"333333",
+      "profile_use_background_image":false,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":true,
+      "follow_request_sent":null,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"boblord",
+          "name":"@boblord",
+          "id":7320972,
+          "id_str":"7320972",
+          "indices":[
+            34,
+            42
+          ]
+        },
+        {
+          "screen_name":"netik",
+          "name":"John Adams",
+          "id":899701,
+          "id_str":"899701",
+          "indices":[
+            44,
+            50
+          ]
+        },
+        {
+          "screen_name":"tf",
+          "name":"Topher Chung",
+          "id":14987054,
+          "id_str":"14987054",
+          "indices":[
+            56,
+            59
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Mon Mar 04 20:57:47 +0000 2013",
+    "id":308682710300377088,
+    "id_str":"308682710300377088",
+    "text":"I\u0027m at Gezellig Thuis http:\/\/t.co\/taGMrYS7OH",
+    "source":"\u003Ca href=\u0022http:\/\/foursquare.com\u0022 rel=\u0022nofollow\u0022\u003Efoursquare\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":null,
+    "in_reply_to_status_id_str":null,
+    "in_reply_to_user_id":null,
+    "in_reply_to_user_id_str":null,
+    "in_reply_to_screen_name":null,
+    "user":{
+      "id":9594462,
+      "id_str":"9594462",
+      "name":"Michelangelo van Dam",
+      "screen_name":"DragonBe",
+      "location":"Mechelen, Antwerp, Belgium",
+      "description":"Michelangelo is a senior PHP\/Zend Framework consultant, a member of the PHP community and president of the PHP user group PHPBenelux.",
+      "url":"http:\/\/dragonbe.com",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/dragonbe.com",
+              "expanded_url":null,
+              "indices":[
+                0,
+                19
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":2689,
+      "friends_count":464,
+      "listed_count":255,
+      "created_at":"Mon Oct 22 09:40:49 +0000 2007",
+      "favourites_count":386,
+      "utc_offset":3600,
+      "time_zone":"Brussels",
+      "geo_enabled":true,
+      "verified":false,
+      "statuses_count":14908,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"1A1B1F",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme9\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme9\/bg.gif",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2694181454\/3b0c7ca0cd31c0cc5f6984cfebc48ff2_normal.jpeg",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2694181454\/3b0c7ca0cd31c0cc5f6984cfebc48ff2_normal.jpeg",
+      "profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/9594462\/1354579428",
+      "profile_link_color":"2FC2EF",
+      "profile_sidebar_border_color":"181A1E",
+      "profile_sidebar_fill_color":"252429",
+      "profile_text_color":"666666",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":true,
+      "follow_request_sent":null,
+      "notifications":null
+    },
+    "geo":{
+      "type":"Point",
+      "coordinates":[
+        51.02624815,
+        4.46836084
+      ]
+    },
+    "coordinates":{
+      "type":"Point",
+      "coordinates":[
+        4.46836084,
+        51.02624815
+      ]
+    },
+    "place":{
+      "id":"6d6198a460e4073a",
+      "url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/6d6198a460e4073a.json",
+      "place_type":"city",
+      "name":"Mechelen",
+      "full_name":"Mechelen, Mechelen",
+      "country_code":"BE",
+      "country":"Belgium",
+      "bounding_box":{
+        "type":"Polygon",
+        "coordinates":[
+          [
+            [
+              4.370328,
+              50.991188
+            ],
+            [
+              4.548736,
+              50.991188
+            ],
+            [
+              4.548736,
+              51.078574
+            ],
+            [
+              4.370328,
+              51.078574
+            ]
+          ]
+        ]
+      },
+      "attributes":{
+
+      }
+    },
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+        {
+          "url":"http:\/\/t.co\/taGMrYS7OH",
+          "expanded_url":"http:\/\/4sq.com\/XGN6Wc",
+          "display_url":"4sq.com\/XGN6Wc",
+          "indices":[
+            22,
+            44
+          ]
+        }
+      ],
+      "user_mentions":[
+
+      ]
+    },
+    "favorited":false,
+    "retweeted":false,
+    "possibly_sensitive":false
+  },
+  {
+    "created_at":"Mon Mar 04 20:55:10 +0000 2013",
+    "id":308682051668811777,
+    "id_str":"308682051668811777",
+    "text":"RT @DevWithPurpose: A little insight into us from a neutral third party http:\/\/t.co\/rhfJbzVldN via @MattChambrs",
+    "source":"\u003Ca href=\u0022http:\/\/www.tweetdeck.com\u0022 rel=\u0022nofollow\u0022\u003ETweetDeck\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":null,
+    "in_reply_to_status_id_str":null,
+    "in_reply_to_user_id":null,
+    "in_reply_to_user_id_str":null,
+    "in_reply_to_screen_name":null,
+    "user":{
+      "id":4795561,
+      "id_str":"4795561",
+      "name":"Cal Evans",
+      "screen_name":"CalEvans",
+      "location":"Nashville, TN",
+      "description":"Author of Avoiding a Goat Rodeo: How to get the website you want http:\/\/bit.ly\/goat_rodeo Read this book before you hire a developer to build your website!",
+      "url":"http:\/\/blog.calevans.com\/epk",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/blog.calevans.com\/epk",
+              "expanded_url":null,
+              "indices":[
+                0,
+                28
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":5069,
+      "friends_count":165,
+      "listed_count":540,
+      "created_at":"Sun Apr 15 20:54:29 +0000 2007",
+      "favourites_count":17,
+      "utc_offset":-21600,
+      "time_zone":"Central Time (US \u0026 Canada)",
+      "geo_enabled":true,
+      "verified":false,
+      "statuses_count":27514,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"131516",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme14\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif",
+      "profile_background_tile":true,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1376139884\/cal_dpc11_reallysmall_normal.png",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1376139884\/cal_dpc11_reallysmall_normal.png",
+      "profile_link_color":"009999",
+      "profile_sidebar_border_color":"EEEEEE",
+      "profile_sidebar_fill_color":"EFEFEF",
+      "profile_text_color":"333333",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":true,
+      "follow_request_sent":null,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweeted_status":{
+      "created_at":"Mon Mar 04 20:48:03 +0000 2013",
+      "id":308680260281565184,
+      "id_str":"308680260281565184",
+      "text":"A little insight into us from a neutral third party http:\/\/t.co\/rhfJbzVldN via @MattChambrs",
+      "source":"web",
+      "truncated":false,
+      "in_reply_to_status_id":null,
+      "in_reply_to_status_id_str":null,
+      "in_reply_to_user_id":null,
+      "in_reply_to_user_id_str":null,
+      "in_reply_to_screen_name":null,
+      "user":{
+        "id":429957007,
+        "id_str":"429957007",
+        "name":"Develop With Purpose",
+        "screen_name":"DevWithPurpose",
+        "location":"Brentwood, TN",
+        "description":"User experience designers. Servant-leaders. Life changers. Tweets from Dave Ramsey\u0027s Internet Development Team. ",
+        "url":"http:\/\/www.developwithpurpose.com",
+        "entities":{
+          "url":{
+            "urls":[
+              {
+                "url":"http:\/\/www.developwithpurpose.com",
+                "expanded_url":null,
+                "indices":[
+                  0,
+                  33
+                ]
+              }
+            ]
+          },
+          "description":{
+            "urls":[
+
+            ]
+          }
+        },
+        "protected":false,
+        "followers_count":807,
+        "friends_count":339,
+        "listed_count":23,
+        "created_at":"Tue Dec 06 16:03:34 +0000 2011",
+        "favourites_count":38,
+        "utc_offset":-21600,
+        "time_zone":"Central Time (US \u0026 Canada)",
+        "geo_enabled":false,
+        "verified":false,
+        "statuses_count":2858,
+        "lang":"en",
+        "contributors_enabled":false,
+        "is_translator":false,
+        "profile_background_color":"C0DEED",
+        "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/442698728\/twitter_background_small.jpg",
+        "profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/442698728\/twitter_background_small.jpg",
+        "profile_background_tile":false,
+        "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1877195719\/NEW_dr_twitter_normal.jpg",
+        "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1877195719\/NEW_dr_twitter_normal.jpg",
+        "profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/429957007\/1355245083",
+        "profile_link_color":"0084B4",
+        "profile_sidebar_border_color":"C0DEED",
+        "profile_sidebar_fill_color":"DDEEF6",
+        "profile_text_color":"333333",
+        "profile_use_background_image":true,
+        "default_profile":false,
+        "default_profile_image":false,
+        "following":null,
+        "follow_request_sent":null,
+        "notifications":null
+      },
+      "geo":null,
+      "coordinates":null,
+      "place":null,
+      "contributors":null,
+      "retweet_count":1,
+      "entities":{
+        "hashtags":[
+
+        ],
+        "urls":[
+          {
+            "url":"http:\/\/t.co\/rhfJbzVldN",
+            "expanded_url":"http:\/\/bit.ly\/WG1uRM",
+            "display_url":"bit.ly\/WG1uRM",
+            "indices":[
+              52,
+              74
+            ]
+          }
+        ],
+        "user_mentions":[
+          {
+            "screen_name":"MattChambrs",
+            "name":"Matt Chambers",
+            "id":131177408,
+            "id_str":"131177408",
+            "indices":[
+              79,
+              91
+            ]
+          }
+        ]
+      },
+      "favorited":false,
+      "retweeted":false,
+      "possibly_sensitive":false
+    },
+    "retweet_count":1,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+        {
+          "url":"http:\/\/t.co\/rhfJbzVldN",
+          "expanded_url":"http:\/\/bit.ly\/WG1uRM",
+          "display_url":"bit.ly\/WG1uRM",
+          "indices":[
+            72,
+            94
+          ]
+        }
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"DevWithPurpose",
+          "name":"Develop With Purpose",
+          "id":429957007,
+          "id_str":"429957007",
+          "indices":[
+            3,
+            18
+          ]
+        },
+        {
+          "screen_name":"MattChambrs",
+          "name":"Matt Chambers",
+          "id":131177408,
+          "id_str":"131177408",
+          "indices":[
+            99,
+            111
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false,
+    "possibly_sensitive":false
+  },
+  {
+    "created_at":"Mon Mar 04 20:54:07 +0000 2013",
+    "id":308681785867386880,
+    "id_str":"308681785867386880",
+    "text":"RT @mattwaite: Current status: http:\/\/t.co\/c3SD8rd4cl",
+    "source":"\u003Ca href=\u0022http:\/\/tapbots.com\/software\/tweetbot\/mac\u0022 rel=\u0022nofollow\u0022\u003ETweetbot for Mac\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":null,
+    "in_reply_to_status_id_str":null,
+    "in_reply_to_user_id":null,
+    "in_reply_to_user_id_str":null,
+    "in_reply_to_screen_name":null,
+    "user":{
+      "id":9478892,
+      "id_str":"9478892",
+      "name":"Travis Swicegood",
+      "screen_name":"tswicegood",
+      "location":"Austin, TX",
+      "description":"Professional Instigator, Lone Star Hacker, Director of Tech for @TexasTribune, Digital Polyglot, and Maker of Trouble.",
+      "url":"http:\/\/www.travisswicegood.com",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/www.travisswicegood.com",
+              "expanded_url":null,
+              "indices":[
+                0,
+                30
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":2321,
+      "friends_count":487,
+      "listed_count":258,
+      "created_at":"Tue Oct 16 14:55:08 +0000 2007",
+      "favourites_count":2722,
+      "utc_offset":-21600,
+      "time_zone":"Central America",
+      "geo_enabled":true,
+      "verified":false,
+      "statuses_count":19297,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"07090B",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/561552939\/x7f4c8953e6e4bd4e1c3c3de2a384a54.png",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/561552939\/x7f4c8953e6e4bd4e1c3c3de2a384a54.png",
+      "profile_background_tile":true,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3165761278\/a2b009e6e0760b4e3234770b6fc0b4d0_normal.jpeg",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3165761278\/a2b009e6e0760b4e3234770b6fc0b4d0_normal.jpeg",
+      "profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/9478892\/1362432864",
+      "profile_link_color":"1C1F23",
+      "profile_sidebar_border_color":"BFBFBF",
+      "profile_sidebar_fill_color":"EEEEEE",
+      "profile_text_color":"336666",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":true,
+      "follow_request_sent":null,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweeted_status":{
+      "created_at":"Mon Mar 04 20:32:47 +0000 2013",
+      "id":308676417695125504,
+      "id_str":"308676417695125504",
+      "text":"Current status: http:\/\/t.co\/c3SD8rd4cl",
+      "source":"web",
+      "truncated":false,
+      "in_reply_to_status_id":null,
+      "in_reply_to_status_id_str":null,
+      "in_reply_to_user_id":null,
+      "in_reply_to_user_id_str":null,
+      "in_reply_to_screen_name":null,
+      "user":{
+        "id":8839152,
+        "id_str":"8839152",
+        "name":"Matt Waite",
+        "screen_name":"mattwaite",
+        "location":"",
+        "description":"Journalism Prof. @ U of Nebraska-Lincoln, founder of Drone Journalism Lab, co-founder of Hot Type Consulting LLC, developer of PolitiFact.",
+        "url":"http:\/\/blog.mattwaite.com\/",
+        "entities":{
+          "url":{
+            "urls":[
+              {
+                "url":"http:\/\/blog.mattwaite.com\/",
+                "expanded_url":null,
+                "indices":[
+                  0,
+                  26
+                ]
+              }
+            ]
+          },
+          "description":{
+            "urls":[
+
+            ]
+          }
+        },
+        "protected":false,
+        "followers_count":4061,
+        "friends_count":900,
+        "listed_count":402,
+        "created_at":"Wed Sep 12 18:53:27 +0000 2007",
+        "favourites_count":297,
+        "utc_offset":-21600,
+        "time_zone":"Central Time (US \u0026 Canada)",
+        "geo_enabled":true,
+        "verified":false,
+        "statuses_count":10919,
+        "lang":"en",
+        "contributors_enabled":false,
+        "is_translator":false,
+        "profile_background_color":"131516",
+        "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme14\/bg.gif",
+        "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif",
+        "profile_background_tile":true,
+        "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2635442648\/1bd6adef07a003347931a50cf0c697ec_normal.jpeg",
+        "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2635442648\/1bd6adef07a003347931a50cf0c697ec_normal.jpeg",
+        "profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/8839152\/1353343654",
+        "profile_link_color":"009999",
+        "profile_sidebar_border_color":"EEEEEE",
+        "profile_sidebar_fill_color":"EFEFEF",
+        "profile_text_color":"333333",
+        "profile_use_background_image":true,
+        "default_profile":false,
+        "default_profile_image":false,
+        "following":null,
+        "follow_request_sent":null,
+        "notifications":null
+      },
+      "geo":null,
+      "coordinates":null,
+      "place":null,
+      "contributors":null,
+      "retweet_count":1,
+      "entities":{
+        "hashtags":[
+
+        ],
+        "urls":[
+          {
+            "url":"http:\/\/t.co\/c3SD8rd4cl",
+            "expanded_url":"http:\/\/media.tumblr.com\/tumblr_lg5suyIePF1qafrh6.gif",
+            "display_url":"media.tumblr.com\/tumblr_lg5suyI\u2026",
+            "indices":[
+              16,
+              38
+            ]
+          }
+        ],
+        "user_mentions":[
+
+        ]
+      },
+      "favorited":false,
+      "retweeted":false,
+      "possibly_sensitive":false
+    },
+    "retweet_count":1,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+        {
+          "url":"http:\/\/t.co\/c3SD8rd4cl",
+          "expanded_url":"http:\/\/media.tumblr.com\/tumblr_lg5suyIePF1qafrh6.gif",
+          "display_url":"media.tumblr.com\/tumblr_lg5suyI\u2026",
+          "indices":[
+            31,
+            53
+          ]
+        }
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"mattwaite",
+          "name":"Matt Waite",
+          "id":8839152,
+          "id_str":"8839152",
+          "indices":[
+            3,
+            13
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false,
+    "possibly_sensitive":false
+  }
+]

+ 0 - 903
tests/Zend/Service/Twitter/_files/statuses.mentions.xml

@@ -1,903 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<statuses type="array">
-<status>
-  <created_at>Sun May 30 10:30:33 +0000 2010</created_at>
-  <id>15033538555</id>
-  <text>@padraicb please add a test for using the 'cursor' parameter on Zend_Service_Twitter::userFriends(). And then make it pass. ;-)</text>
-  <source>&lt;a href="https://oauth.filttr.com/" rel="nofollow"&gt;Filttr&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id>15008737288</in_reply_to_status_id>
-  <in_reply_to_user_id>9075802</in_reply_to_user_id>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name>padraicb</in_reply_to_screen_name>
-  <user>
-    <id>14996367</id>
-    <name>Matthias v/d Heide</name>
-    <screen_name>matthiasvdh</screen_name>
-    <location>Netherlands</location>
-    <description>Student, software developer, techie, Lego fan</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/269860838/Untitled_normal.png</profile_image_url>
-    <url>http://vanderheide.it</url>
-    <protected>false</protected>
-    <followers_count>78</followers_count>
-    <profile_background_color>0099B9</profile_background_color>
-    <profile_text_color>3C3940</profile_text_color>
-    <profile_link_color>0099B9</profile_link_color>
-    <profile_sidebar_fill_color>95E8EC</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>5ED4DC</profile_sidebar_border_color>
-    <friends_count>153</friends_count>
-    <created_at>Tue Jun 03 19:19:52 +0000 2008</created_at>
-    <favourites_count>205</favourites_count>
-    <utc_offset>3600</utc_offset>
-    <time_zone>Amsterdam</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme4/bg.gif</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications/>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following/>
-    <statuses_count>755</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Fri May 28 09:43:43 +0000 2010</created_at>
-  <id>14895853986</id>
-  <text>very cool video! http://www.airspacemag.com/video/Go-For-Launch.html #NASA (/cc @padraicb)</text>
-  <source>&lt;a href="http://echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>56789751</id>
-    <name>Arvid Bergelmir</name>
-    <screen_name>bergelmir</screen_name>
-    <location>Germany</location>
-    <description/>
-    <profile_image_url>http://a3.twimg.com/profile_images/479345149/1-a4e9ea4edf20b03d5318f3e1689ca9e7_normal.jpg</profile_image_url>
-    <url>http://www.flabben.net/</url>
-    <protected>false</protected>
-    <followers_count>64</followers_count>
-    <profile_background_color>0099B9</profile_background_color>
-    <profile_text_color>3C3940</profile_text_color>
-    <profile_link_color>0099B9</profile_link_color>
-    <profile_sidebar_fill_color>95E8EC</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>5ED4DC</profile_sidebar_border_color>
-    <friends_count>91</friends_count>
-    <created_at>Tue Jul 14 19:29:38 +0000 2009</created_at>
-    <favourites_count>76</favourites_count>
-    <utc_offset>3600</utc_offset>
-    <time_zone>Berlin</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme4/bg.gif</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>1831</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Thu May 27 19:27:21 +0000 2010</created_at>
-  <id>14854465881</id>
-  <text>@padraicb it works so good *and* easy that I'm gonna make both rss and atom feeds *bows before master*</text>
-  <source>&lt;a href="http://www.echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id>14854405950</in_reply_to_status_id>
-  <in_reply_to_user_id>9075802</in_reply_to_user_id>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name>padraicb</in_reply_to_screen_name>
-  <user>
-    <id>12744542</id>
-    <name>Robert Basic</name>
-    <screen_name>robertbasic</screen_name>
-    <location>Serbia</location>
-    <description>For those about to code - I salute you.</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/630933128/twitterProfilePhoto.jpg_normal.png</profile_image_url>
-    <url>http://robertbasic.com</url>
-    <protected>false</protected>
-    <followers_count>1005</followers_count>
-    <profile_background_color>161D32</profile_background_color>
-    <profile_text_color>6B7287</profile_text_color>
-    <profile_link_color>0000FF</profile_link_color>
-    <profile_sidebar_fill_color>FDF08D</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>000000</profile_sidebar_border_color>
-    <friends_count>372</friends_count>
-    <created_at>Sun Jan 27 09:29:10 +0000 2008</created_at>
-    <favourites_count>25</favourites_count>
-    <utc_offset>3600</utc_offset>
-    <time_zone>Belgrade</time_zone>
-    <profile_background_image_url>http://a1.twimg.com/profile_background_images/3156960/header.jpg</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>15237</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Thu May 27 19:21:36 +0000 2010</created_at>
-  <id>14854191542</id>
-  <text>thank you @padraicb #zf</text>
-  <source>&lt;a href="http://www.echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>12744542</id>
-    <name>Robert Basic</name>
-    <screen_name>robertbasic</screen_name>
-    <location>Serbia</location>
-    <description>For those about to code - I salute you.</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/630933128/twitterProfilePhoto.jpg_normal.png</profile_image_url>
-    <url>http://robertbasic.com</url>
-    <protected>false</protected>
-    <followers_count>1005</followers_count>
-    <profile_background_color>161D32</profile_background_color>
-    <profile_text_color>6B7287</profile_text_color>
-    <profile_link_color>0000FF</profile_link_color>
-    <profile_sidebar_fill_color>FDF08D</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>000000</profile_sidebar_border_color>
-    <friends_count>372</friends_count>
-    <created_at>Sun Jan 27 09:29:10 +0000 2008</created_at>
-    <favourites_count>25</favourites_count>
-    <utc_offset>3600</utc_offset>
-    <time_zone>Belgrade</time_zone>
-    <profile_background_image_url>http://a1.twimg.com/profile_background_images/3156960/header.jpg</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>15237</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Thu May 27 19:05:36 +0000 2010</created_at>
-  <id>14853489927</id>
-  <text>let's see what @padraicb did with that Zend_Feed_Writer thingy...</text>
-  <source>&lt;a href="http://www.echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>12744542</id>
-    <name>Robert Basic</name>
-    <screen_name>robertbasic</screen_name>
-    <location>Serbia</location>
-    <description>For those about to code - I salute you.</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/630933128/twitterProfilePhoto.jpg_normal.png</profile_image_url>
-    <url>http://robertbasic.com</url>
-    <protected>false</protected>
-    <followers_count>1005</followers_count>
-    <profile_background_color>161D32</profile_background_color>
-    <profile_text_color>6B7287</profile_text_color>
-    <profile_link_color>0000FF</profile_link_color>
-    <profile_sidebar_fill_color>FDF08D</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>000000</profile_sidebar_border_color>
-    <friends_count>372</friends_count>
-    <created_at>Sun Jan 27 09:29:10 +0000 2008</created_at>
-    <favourites_count>25</favourites_count>
-    <utc_offset>3600</utc_offset>
-    <time_zone>Belgrade</time_zone>
-    <profile_background_image_url>http://a1.twimg.com/profile_background_images/3156960/header.jpg</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>15237</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Thu May 27 17:19:29 +0000 2010</created_at>
-  <id>14848101893</id>
-  <text>Happy to announce the release of Mockery 0.6. Power to the Mock Object! http://bit.ly/b7s26h (via @padraicb)</text>
-  <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>14457722</id>
-    <name>Eric Clemmons</name>
-    <screen_name>ericclemmons</screen_name>
-    <location>iPhone: 30.266818,-97.737081</location>
-    <description>Developer passionate about technology and user experience.</description>
-    <profile_image_url>http://a3.twimg.com/profile_images/111313709/eric_normal.png</profile_image_url>
-    <url>http://blog.uxdriven.com</url>
-    <protected>false</protected>
-    <followers_count>74</followers_count>
-    <profile_background_color>9ae4e8</profile_background_color>
-    <profile_text_color>000000</profile_text_color>
-    <profile_link_color>0000ff</profile_link_color>
-    <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-    <friends_count>53</friends_count>
-    <created_at>Mon Apr 21 03:03:14 +0000 2008</created_at>
-    <favourites_count>7</favourites_count>
-    <utc_offset>-21600</utc_offset>
-    <time_zone>Central Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>false</following>
-    <statuses_count>627</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Thu May 27 16:22:56 +0000 2010</created_at>
-  <id>14844788858</id>
-  <text>@padraicb You sure? This could go on for a while. =) But srly - great work!</text>
-  <source>&lt;a href="http://www.brizzly.com" rel="nofollow"&gt;Brizzly&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id>14844633578</in_reply_to_status_id>
-  <in_reply_to_user_id>9075802</in_reply_to_user_id>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name>padraicb</in_reply_to_screen_name>
-  <user>
-    <id>4600051</id>
-    <name>Till!</name>
-    <screen_name>klimpong</screen_name>
-    <location>Berlin, Germany</location>
-    <description>I'm immature. Don't follow if you can't handle it. I also twitter from @easybib and @roundcube. Bing!</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/18810092/till_avatar_normal.jpg</profile_image_url>
-    <url>http://till.klampaeckel.de/</url>
-    <protected>false</protected>
-    <followers_count>584</followers_count>
-    <profile_background_color>9ac2e8</profile_background_color>
-    <profile_text_color>000000</profile_text_color>
-    <profile_link_color>0071ff</profile_link_color>
-    <profile_sidebar_fill_color>ffe292</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>bc444c</profile_sidebar_border_color>
-    <friends_count>232</friends_count>
-    <created_at>Sat Apr 14 13:09:04 +0000 2007</created_at>
-    <favourites_count>15</favourites_count>
-    <utc_offset>3600</utc_offset>
-    <time_zone>Berlin</time_zone>
-    <profile_background_image_url>http://a1.twimg.com/profile_background_images/1790412/2198002194_aa7845d082_b.jpg</profile_background_image_url>
-    <profile_background_tile>true</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>true</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>7367</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Thu May 27 16:19:34 +0000 2010</created_at>
-  <id>14844582959</id>
-  <text>@padraicb: look who's mocking now? ;-)</text>
-  <source>&lt;a href="https://launchpad.net/gwibber/" rel="nofollow"&gt;Gwibber&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id>14844004546</in_reply_to_status_id>
-  <in_reply_to_user_id>9075802</in_reply_to_user_id>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name>padraicb</in_reply_to_screen_name>
-  <user>
-    <id>14407919</id>
-    <name>kenguest</name>
-    <screen_name>kenguest</screen_name>
-    <location>Nenagh, Ireland</location>
-    <description>I'm a geek and not ashamed of it :p Interests: openstreetmap, languages beginning with the letter 'P' and databases.</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/842798614/kwg2_normal.jpg</profile_image_url>
-    <url>http://blogs.linux.ie/kenguest/</url>
-    <protected>false</protected>
-    <followers_count>307</followers_count>
-    <profile_background_color>9ae4e8</profile_background_color>
-    <profile_text_color>000000</profile_text_color>
-    <profile_link_color>0000ff</profile_link_color>
-    <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-    <friends_count>405</friends_count>
-    <created_at>Wed Apr 16 13:32:35 +0000 2008</created_at>
-    <favourites_count>1</favourites_count>
-    <utc_offset>0</utc_offset>
-    <time_zone>Dublin</time_zone>
-    <profile_background_image_url>http://a3.twimg.com/profile_background_images/75441177/twilk_background_4b797d49cf805.jpg</profile_background_image_url>
-    <profile_background_tile>true</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>704</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Thu May 27 16:17:03 +0000 2010</created_at>
-  <id>14844431760</id>
-  <text>@padraicb Mock, mock!!!</text>
-  <source>&lt;a href="http://www.brizzly.com" rel="nofollow"&gt;Brizzly&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id>14844004546</in_reply_to_status_id>
-  <in_reply_to_user_id>9075802</in_reply_to_user_id>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name>padraicb</in_reply_to_screen_name>
-  <user>
-    <id>4600051</id>
-    <name>Till!</name>
-    <screen_name>klimpong</screen_name>
-    <location>Berlin, Germany</location>
-    <description>I'm immature. Don't follow if you can't handle it. I also twitter from @easybib and @roundcube. Bing!</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/18810092/till_avatar_normal.jpg</profile_image_url>
-    <url>http://till.klampaeckel.de/</url>
-    <protected>false</protected>
-    <followers_count>584</followers_count>
-    <profile_background_color>9ac2e8</profile_background_color>
-    <profile_text_color>000000</profile_text_color>
-    <profile_link_color>0071ff</profile_link_color>
-    <profile_sidebar_fill_color>ffe292</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>bc444c</profile_sidebar_border_color>
-    <friends_count>232</friends_count>
-    <created_at>Sat Apr 14 13:09:04 +0000 2007</created_at>
-    <favourites_count>15</favourites_count>
-    <utc_offset>3600</utc_offset>
-    <time_zone>Berlin</time_zone>
-    <profile_background_image_url>http://a1.twimg.com/profile_background_images/1790412/2198002194_aa7845d082_b.jpg</profile_background_image_url>
-    <profile_background_tile>true</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>true</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>7367</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Thu May 27 14:34:24 +0000 2010</created_at>
-  <id>14838395116</id>
-  <text>@padraicb Zend_Service_Twitter - saw on the mailing list you're working on stuff - if you need assistance let me know</text>
-  <source>&lt;a href="http://www.destroytwitter.com" rel="nofollow"&gt;DestroyTwitter&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id>9075802</in_reply_to_user_id>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name>padraicb</in_reply_to_screen_name>
-  <user>
-    <id>14319947</id>
-    <name>Justin Hart</name>
-    <screen_name>onyxraven</screen_name>
-    <location>Denver, CO</location>
-    <description>Gamer, lead dev for Photobucket and Twitgoo!</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/52507214/blueraven2_normal.gif</profile_image_url>
-    <url>http://twitgoo.com/u/onyxraven</url>
-    <protected>false</protected>
-    <followers_count>201</followers_count>
-    <profile_background_color>C6E2EE</profile_background_color>
-    <profile_text_color>663B12</profile_text_color>
-    <profile_link_color>1F98C7</profile_link_color>
-    <profile_sidebar_fill_color>DAECF4</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>C6E2EE</profile_sidebar_border_color>
-    <friends_count>180</friends_count>
-    <created_at>Mon Apr 07 03:52:38 +0000 2008</created_at>
-    <favourites_count>10</favourites_count>
-    <utc_offset>-25200</utc_offset>
-    <time_zone>Mountain Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274739546/images/themes/theme2/bg.gif</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>true</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>3018</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Thu May 27 13:54:32 +0000 2010</created_at>
-  <id>14835896954</id>
-  <text>@padraicb 62!? 34 Blocker + 50 Critical = 84 issues</text>
-  <source>&lt;a href="http://echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id>14834640295</in_reply_to_status_id>
-  <in_reply_to_user_id>9075802</in_reply_to_user_id>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name>padraicb</in_reply_to_screen_name>
-  <user>
-    <id>56789751</id>
-    <name>Arvid Bergelmir</name>
-    <screen_name>bergelmir</screen_name>
-    <location>Germany</location>
-    <description/>
-    <profile_image_url>http://a3.twimg.com/profile_images/479345149/1-a4e9ea4edf20b03d5318f3e1689ca9e7_normal.jpg</profile_image_url>
-    <url>http://www.flabben.net/</url>
-    <protected>false</protected>
-    <followers_count>64</followers_count>
-    <profile_background_color>0099B9</profile_background_color>
-    <profile_text_color>3C3940</profile_text_color>
-    <profile_link_color>0099B9</profile_link_color>
-    <profile_sidebar_fill_color>95E8EC</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>5ED4DC</profile_sidebar_border_color>
-    <friends_count>91</friends_count>
-    <created_at>Tue Jul 14 19:29:38 +0000 2009</created_at>
-    <favourites_count>76</favourites_count>
-    <utc_offset>3600</utc_offset>
-    <time_zone>Berlin</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme4/bg.gif</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>false</following>
-    <statuses_count>1832</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Thu May 27 13:35:24 +0000 2010</created_at>
-  <id>14834728110</id>
-  <text>RT @padraicb: Interesting #ZF issues fact: There are just 62 open issues marked Blocker/Critical. Nice focus for the next bug hunt...</text>
-  <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>20496827</id>
-    <name>Victor Farazdagi</name>
-    <screen_name>farazdagi</screen_name>
-    <location>Ставрополь</location>
-    <description/>
-    <profile_image_url>http://a3.twimg.com/profile_images/861970301/pingninja-white_normal.png</profile_image_url>
-    <url>http://phpmag.ru</url>
-    <protected>false</protected>
-    <followers_count>22</followers_count>
-    <profile_background_color>EDECE9</profile_background_color>
-    <profile_text_color>634047</profile_text_color>
-    <profile_link_color>088253</profile_link_color>
-    <profile_sidebar_fill_color>E3E2DE</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>D3D2CF</profile_sidebar_border_color>
-    <friends_count>15</friends_count>
-    <created_at>Tue Feb 10 07:17:57 +0000 2009</created_at>
-    <favourites_count>0</favourites_count>
-    <utc_offset/>
-    <time_zone/>
-    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme3/bg.gif</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>false</following>
-    <statuses_count>187</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Thu May 27 10:53:03 +0000 2010</created_at>
-  <id>14826671084</id>
-  <text>Test spies  are finally catching on? http://bit.ly/cGO75A http://bit.ly/9w6ZFd (@magnars @zmalltalker @padraicb)</text>
-  <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>14640402</id>
-    <name>dagfinnr</name>
-    <screen_name>dagfinnr</screen_name>
-    <location>Oslo, Norway</location>
-    <description>Web developer, author PHP in Action, father, husband.</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/71308130/dagfinn7_square_normal.jpg</profile_image_url>
-    <url>http://www.reiersol.com</url>
-    <protected>false</protected>
-    <followers_count>217</followers_count>
-    <profile_background_color>709397</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>FF3300</profile_link_color>
-    <profile_sidebar_fill_color>A0C5C7</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>86A4A6</profile_sidebar_border_color>
-    <friends_count>188</friends_count>
-    <created_at>Sat May 03 18:45:50 +0000 2008</created_at>
-    <favourites_count>33</favourites_count>
-    <utc_offset>3600</utc_offset>
-    <time_zone>Copenhagen</time_zone>
-    <profile_background_image_url>http://a3.twimg.com/profile_background_images/4120429/dscf0308.jpg</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>992</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Wed May 26 00:46:17 +0000 2010</created_at>
-  <id>14728733916</id>
-  <text>@padraicb yes, that was pretty amazing</text>
-  <source>&lt;a href="http://funkatron.com/spaz" rel="nofollow"&gt;Spaz&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id>14727669043</in_reply_to_status_id>
-  <in_reply_to_user_id>9075802</in_reply_to_user_id>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name>padraicb</in_reply_to_screen_name>
-  <user>
-    <id>65583</id>
-    <name>Ed Finkler</name>
-    <screen_name>funkatron</screen_name>
-    <location>47904</location>
-    <description>Dork, Dad, HiiDef Patriot, Webapp security dude, Spaz developer, webmonkey, designer, musician, ego-ho. See also: @funkalinks</description>
-    <profile_image_url>http://a3.twimg.com/profile_images/882207061/BurgerKingDiamond_square_normal.jpg</profile_image_url>
-    <url>http://funkatron.com</url>
-    <protected>false</protected>
-    <followers_count>2536</followers_count>
-    <profile_background_color>660000</profile_background_color>
-    <profile_text_color>424141</profile_text_color>
-    <profile_link_color>660000</profile_link_color>
-    <profile_sidebar_fill_color>b8b8b8</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>FFFFFF</profile_sidebar_border_color>
-    <friends_count>1023</friends_count>
-    <created_at>Thu Dec 14 00:31:16 +0000 2006</created_at>
-    <favourites_count>1417</favourites_count>
-    <utc_offset>-18000</utc_offset>
-    <time_zone>Eastern Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://a3.twimg.com/profile_background_images/90616269/funbike.png</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>27649</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Tue May 25 01:42:16 +0000 2010</created_at>
-  <id>14661998647</id>
-  <text>@padraicb how far are you into it? I didn't want to spoil much.</text>
-  <source>&lt;a href="http://funkatron.com/spaz" rel="nofollow"&gt;Spaz&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id>14654478761</in_reply_to_status_id>
-  <in_reply_to_user_id>9075802</in_reply_to_user_id>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name>padraicb</in_reply_to_screen_name>
-  <user>
-    <id>65583</id>
-    <name>Ed Finkler</name>
-    <screen_name>funkatron</screen_name>
-    <location>47904</location>
-    <description>Dork, Dad, HiiDef Patriot, Webapp security dude, Spaz developer, webmonkey, designer, musician, ego-ho. See also: @funkalinks</description>
-    <profile_image_url>http://a3.twimg.com/profile_images/882207061/BurgerKingDiamond_square_normal.jpg</profile_image_url>
-    <url>http://funkatron.com</url>
-    <protected>false</protected>
-    <followers_count>2536</followers_count>
-    <profile_background_color>660000</profile_background_color>
-    <profile_text_color>424141</profile_text_color>
-    <profile_link_color>660000</profile_link_color>
-    <profile_sidebar_fill_color>b8b8b8</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>FFFFFF</profile_sidebar_border_color>
-    <friends_count>1023</friends_count>
-    <created_at>Thu Dec 14 00:31:16 +0000 2006</created_at>
-    <favourites_count>1417</favourites_count>
-    <utc_offset>-18000</utc_offset>
-    <time_zone>Eastern Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://a3.twimg.com/profile_background_images/90616269/funbike.png</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>27649</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Mon May 24 23:33:22 +0000 2010</created_at>
-  <id>14654756605</id>
-  <text>@padraicb Jacob and Miranda were flat and disinteresting, IMHO</text>
-  <source>&lt;a href="http://funkatron.com/spaz" rel="nofollow"&gt;Spaz&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id>14654478761</in_reply_to_status_id>
-  <in_reply_to_user_id>9075802</in_reply_to_user_id>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name>padraicb</in_reply_to_screen_name>
-  <user>
-    <id>65583</id>
-    <name>Ed Finkler</name>
-    <screen_name>funkatron</screen_name>
-    <location>47904</location>
-    <description>Dork, Dad, HiiDef Patriot, Webapp security dude, Spaz developer, webmonkey, designer, musician, ego-ho. See also: @funkalinks</description>
-    <profile_image_url>http://a3.twimg.com/profile_images/882207061/BurgerKingDiamond_square_normal.jpg</profile_image_url>
-    <url>http://funkatron.com</url>
-    <protected>false</protected>
-    <followers_count>2536</followers_count>
-    <profile_background_color>660000</profile_background_color>
-    <profile_text_color>424141</profile_text_color>
-    <profile_link_color>660000</profile_link_color>
-    <profile_sidebar_fill_color>b8b8b8</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>FFFFFF</profile_sidebar_border_color>
-    <friends_count>1023</friends_count>
-    <created_at>Thu Dec 14 00:31:16 +0000 2006</created_at>
-    <favourites_count>1417</favourites_count>
-    <utc_offset>-18000</utc_offset>
-    <time_zone>Eastern Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://a3.twimg.com/profile_background_images/90616269/funbike.png</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>27649</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Mon May 24 23:32:30 +0000 2010</created_at>
-  <id>14654709942</id>
-  <text>@padraicb Mordan (Salarian) was excellent. Jack v good. Some other good ones, but they were most compelling stories and characters.</text>
-  <source>&lt;a href="http://funkatron.com/spaz" rel="nofollow"&gt;Spaz&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id>14654478761</in_reply_to_status_id>
-  <in_reply_to_user_id>9075802</in_reply_to_user_id>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name>padraicb</in_reply_to_screen_name>
-  <user>
-    <id>65583</id>
-    <name>Ed Finkler</name>
-    <screen_name>funkatron</screen_name>
-    <location>47904</location>
-    <description>Dork, Dad, HiiDef Patriot, Webapp security dude, Spaz developer, webmonkey, designer, musician, ego-ho. See also: @funkalinks</description>
-    <profile_image_url>http://a3.twimg.com/profile_images/882207061/BurgerKingDiamond_square_normal.jpg</profile_image_url>
-    <url>http://funkatron.com</url>
-    <protected>false</protected>
-    <followers_count>2536</followers_count>
-    <profile_background_color>660000</profile_background_color>
-    <profile_text_color>424141</profile_text_color>
-    <profile_link_color>660000</profile_link_color>
-    <profile_sidebar_fill_color>b8b8b8</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>FFFFFF</profile_sidebar_border_color>
-    <friends_count>1023</friends_count>
-    <created_at>Thu Dec 14 00:31:16 +0000 2006</created_at>
-    <favourites_count>1417</favourites_count>
-    <utc_offset>-18000</utc_offset>
-    <time_zone>Eastern Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://a3.twimg.com/profile_background_images/90616269/funbike.png</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>27649</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Mon May 24 23:25:48 +0000 2010</created_at>
-  <id>14654351112</id>
-  <text>@padraicb I had exactly the same issue. I enjoyed it, but it lacked the replay value of the first, I felt</text>
-  <source>&lt;a href="http://funkatron.com/spaz" rel="nofollow"&gt;Spaz&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id>14654250994</in_reply_to_status_id>
-  <in_reply_to_user_id>9075802</in_reply_to_user_id>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name>padraicb</in_reply_to_screen_name>
-  <user>
-    <id>65583</id>
-    <name>Ed Finkler</name>
-    <screen_name>funkatron</screen_name>
-    <location>47904</location>
-    <description>Dork, Dad, HiiDef Patriot, Webapp security dude, Spaz developer, webmonkey, designer, musician, ego-ho. See also: @funkalinks</description>
-    <profile_image_url>http://a3.twimg.com/profile_images/882207061/BurgerKingDiamond_square_normal.jpg</profile_image_url>
-    <url>http://funkatron.com</url>
-    <protected>false</protected>
-    <followers_count>2536</followers_count>
-    <profile_background_color>660000</profile_background_color>
-    <profile_text_color>424141</profile_text_color>
-    <profile_link_color>660000</profile_link_color>
-    <profile_sidebar_fill_color>b8b8b8</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>FFFFFF</profile_sidebar_border_color>
-    <friends_count>1023</friends_count>
-    <created_at>Thu Dec 14 00:31:16 +0000 2006</created_at>
-    <favourites_count>1417</favourites_count>
-    <utc_offset>-18000</utc_offset>
-    <time_zone>Eastern Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://a3.twimg.com/profile_background_images/90616269/funbike.png</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>27649</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Mon May 24 18:13:59 +0000 2010</created_at>
-  <id>14638944219</id>
-  <text>@padraicb's Mockery looks interesting. might have to find some time to play with it. http://bit.ly/d6eWLy #unittest #php</text>
-  <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id>9075802</in_reply_to_user_id>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name>padraicb</in_reply_to_screen_name>
-  <user>
-    <id>7021562</id>
-    <name>Chance Garcia</name>
-    <screen_name>chancegarcia</screen_name>
-    <location>Bloomington, IN</location>
-    <description>I'm a Web Applications Specialist working in php and occasionally manage to avoid the fail hammer. will be learning how to work with AS/400 on current project</description>
-    <profile_image_url>http://a3.twimg.com/profile_images/422223117/un_normal.gif</profile_image_url>
-    <url>http://chance.garciawebapps.com</url>
-    <protected>false</protected>
-    <followers_count>352</followers_count>
-    <profile_background_color>9ae4e8</profile_background_color>
-    <profile_text_color>000000</profile_text_color>
-    <profile_link_color>0000ff</profile_link_color>
-    <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
-    <friends_count>353</friends_count>
-    <created_at>Fri Jun 22 18:37:34 +0000 2007</created_at>
-    <favourites_count>8</favourites_count>
-    <utc_offset>-18000</utc_offset>
-    <time_zone>Eastern Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://a1.twimg.com/profile_background_images/308732/mka_wallpaper_1280x1024.jpg</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>4361</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Mon May 24 06:42:25 +0000 2010</created_at>
-  <id>14607181347</id>
-  <text>@padraicb Having a look Mockery it looks very good, nice work :) This is going to save me time! http://bit.ly/bScH98</text>
-  <source>web</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id>9075802</in_reply_to_user_id>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name>padraicb</in_reply_to_screen_name>
-  <user>
-    <id>18796463</id>
-    <name>Keith Pope</name>
-    <screen_name>muteor</screen_name>
-    <location>UK</location>
-    <description>Monkey...</description>
-    <profile_image_url>http://a3.twimg.com/profile_images/70376323/optimusprime_normal.png</profile_image_url>
-    <url>http://www.thepopeisdead.com</url>
-    <protected>true</protected>
-    <followers_count>30</followers_count>
-    <profile_background_color>B2DFDA</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>93A644</profile_link_color>
-    <profile_sidebar_fill_color>ffffff</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>eeeeee</profile_sidebar_border_color>
-    <friends_count>37</friends_count>
-    <created_at>Fri Jan 09 08:43:27 +0000 2009</created_at>
-    <favourites_count>0</favourites_count>
-    <utc_offset>0</utc_offset>
-    <time_zone>London</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274130900/images/themes/theme13/bg.gif</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>true</following>
-    <statuses_count>741</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-</statuses>

+ 2280 - 0
tests/Zend/Service/Twitter/_files/statuses.mentions_timeline.json

@@ -0,0 +1,2280 @@
+[
+  {
+    "created_at":"Mon Mar 04 20:24:09 +0000 2013",
+    "id":308674244714307584,
+    "id_str":"308674244714307584",
+    "text":"Just released a #ZF2 module for using the #AWS SDK for #PHP. https:\/\/t.co\/vIaeQUxk8z. Thanks to @EvanDotPro and @mwop for the help.",
+    "source":"web",
+    "truncated":false,
+    "in_reply_to_status_id":null,
+    "in_reply_to_status_id_str":null,
+    "in_reply_to_user_id":null,
+    "in_reply_to_user_id_str":null,
+    "in_reply_to_screen_name":null,
+    "user":{
+      "id":17316566,
+      "id_str":"17316566",
+      "name":"Jeremy Lindblom",
+      "screen_name":"jeremeamia",
+      "location":"Seattle, WA",
+      "description":"PHP software engineer and web application developer. I work for Amazon Web Services on the AWS SDK for PHP.",
+      "url":"http:\/\/t.co\/uEvnF4aJ",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/t.co\/uEvnF4aJ",
+              "expanded_url":"http:\/\/github.com\/jeremeamia",
+              "display_url":"github.com\/jeremeamia",
+              "indices":[
+                0,
+                20
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":315,
+      "friends_count":420,
+      "listed_count":22,
+      "created_at":"Tue Nov 11 19:05:35 +0000 2008",
+      "favourites_count":20,
+      "utc_offset":-28800,
+      "time_zone":"Pacific Time (US \u0026 Canada)",
+      "geo_enabled":true,
+      "verified":false,
+      "statuses_count":1332,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"C0DEED",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1672009461\/profile-JCL-DEC2011_normal.jpg",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1672009461\/profile-JCL-DEC2011_normal.jpg",
+      "profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/17316566\/1355869161",
+      "profile_link_color":"0084B4",
+      "profile_sidebar_border_color":"C0DEED",
+      "profile_sidebar_fill_color":"DDEEF6",
+      "profile_text_color":"333333",
+      "profile_use_background_image":true,
+      "default_profile":true,
+      "default_profile_image":false,
+      "following":null,
+      "follow_request_sent":false,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+        {
+          "text":"ZF2",
+          "indices":[
+            16,
+            20
+          ]
+        },
+        {
+          "text":"AWS",
+          "indices":[
+            42,
+            46
+          ]
+        },
+        {
+          "text":"PHP",
+          "indices":[
+            55,
+            59
+          ]
+        }
+      ],
+      "urls":[
+        {
+          "url":"https:\/\/t.co\/vIaeQUxk8z",
+          "expanded_url":"https:\/\/github.com\/aws\/aws-sdk-php-zf2",
+          "display_url":"github.com\/aws\/aws-sdk-ph\u2026",
+          "indices":[
+            61,
+            84
+          ]
+        }
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"EvanDotPro",
+          "name":"Evan Coury",
+          "id":25562030,
+          "id_str":"25562030",
+          "indices":[
+            96,
+            107
+          ]
+        },
+        {
+          "screen_name":"mwop",
+          "name":"weierophinney",
+          "id":9453382,
+          "id_str":"9453382",
+          "indices":[
+            112,
+            117
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false,
+    "possibly_sensitive":false
+  },
+  {
+    "created_at":"Mon Mar 04 20:05:42 +0000 2013",
+    "id":308669601007415296,
+    "id_str":"308669601007415296",
+    "text":"@mwop birmingham AL. Great race!  Little rock yesterday!  I ran in the sunshine!  I miss the sun!",
+    "source":"\u003Ca href=\u0022http:\/\/twitter.com\/download\/android\u0022 rel=\u0022nofollow\u0022\u003ETwitter for Android\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":308566841951936513,
+    "in_reply_to_status_id_str":"308566841951936513",
+    "in_reply_to_user_id":9453382,
+    "in_reply_to_user_id_str":"9453382",
+    "in_reply_to_screen_name":"mwop",
+    "user":{
+      "id":311531420,
+      "id_str":"311531420",
+      "name":"Laura Raeder",
+      "screen_name":"LauraRaeder",
+      "location":"",
+      "description":"",
+      "url":null,
+      "entities":{
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":122,
+      "friends_count":163,
+      "listed_count":8,
+      "created_at":"Sun Jun 05 16:24:19 +0000 2011",
+      "favourites_count":309,
+      "utc_offset":-21600,
+      "time_zone":"Central Time (US \u0026 Canada)",
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":252,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"C0DEED",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1473090685\/GetAttachment_normal.jpg",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1473090685\/GetAttachment_normal.jpg",
+      "profile_link_color":"0084B4",
+      "profile_sidebar_border_color":"C0DEED",
+      "profile_sidebar_fill_color":"DDEEF6",
+      "profile_text_color":"333333",
+      "profile_use_background_image":true,
+      "default_profile":true,
+      "default_profile_image":false,
+      "following":null,
+      "follow_request_sent":false,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"mwop",
+          "name":"weierophinney",
+          "id":9453382,
+          "id_str":"9453382",
+          "indices":[
+            0,
+            5
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Mon Mar 04 19:31:57 +0000 2013",
+    "id":308661108670095361,
+    "id_str":"308661108670095361",
+    "text":"@mwop hey I could use your help with creating a form view helper for rendering dojo dijits in zf2, can you give me a poke next time your on?",
+    "source":"web",
+    "truncated":false,
+    "in_reply_to_status_id":null,
+    "in_reply_to_status_id_str":null,
+    "in_reply_to_user_id":9453382,
+    "in_reply_to_user_id_str":"9453382",
+    "in_reply_to_screen_name":"mwop",
+    "user":{
+      "id":45822226,
+      "id_str":"45822226",
+      "name":"Gabriel Baker",
+      "screen_name":"gabriel403",
+      "location":"In the cloud somewhere",
+      "description":"Web dev, linux admin, caffeine addict, not totally insane",
+      "url":"http:\/\/autonomicpilot.co.uk",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/autonomicpilot.co.uk",
+              "expanded_url":null,
+              "indices":[
+                0,
+                27
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":68,
+      "friends_count":116,
+      "listed_count":3,
+      "created_at":"Tue Jun 09 12:08:08 +0000 2009",
+      "favourites_count":8,
+      "utc_offset":0,
+      "time_zone":"London",
+      "geo_enabled":true,
+      "verified":false,
+      "statuses_count":1562,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"000000",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/762798122\/0d0b9ded3ede183c30b139fe63bf6d05.jpeg",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/762798122\/0d0b9ded3ede183c30b139fe63bf6d05.jpeg",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/466145515\/bois_normal.jpg",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/466145515\/bois_normal.jpg",
+      "profile_link_color":"135257",
+      "profile_sidebar_border_color":"000000",
+      "profile_sidebar_fill_color":"0E0E0E",
+      "profile_text_color":"4A66C1",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":null,
+      "follow_request_sent":false,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"mwop",
+          "name":"weierophinney",
+          "id":9453382,
+          "id_str":"9453382",
+          "indices":[
+            0,
+            5
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Mon Mar 04 18:08:53 +0000 2013",
+    "id":308640205311729664,
+    "id_str":"308640205311729664",
+    "text":"@mwop where is this class you speak of? \/cc @nelstrom",
+    "source":"web",
+    "truncated":false,
+    "in_reply_to_status_id":308622045367898113,
+    "in_reply_to_status_id_str":"308622045367898113",
+    "in_reply_to_user_id":9453382,
+    "in_reply_to_user_id_str":"9453382",
+    "in_reply_to_screen_name":"mwop",
+    "user":{
+      "id":18636940,
+      "id_str":"18636940",
+      "name":"Mike Willbanks",
+      "screen_name":"mwillbanks",
+      "location":"San Jose, CA",
+      "description":"Sr. Web Architect Mgr; high performance, high availability, php",
+      "url":"http:\/\/blog.digitalstruct.com",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/blog.digitalstruct.com",
+              "expanded_url":null,
+              "indices":[
+                0,
+                29
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":427,
+      "friends_count":171,
+      "listed_count":46,
+      "created_at":"Mon Jan 05 16:58:02 +0000 2009",
+      "favourites_count":9,
+      "utc_offset":-21600,
+      "time_zone":"Central Time (US \u0026 Canada)",
+      "geo_enabled":true,
+      "verified":false,
+      "statuses_count":2117,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"EDECE9",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme3\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme3\/bg.gif",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1269296213\/mwillbanks-php-logo_normal.png",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1269296213\/mwillbanks-php-logo_normal.png",
+      "profile_link_color":"088253",
+      "profile_sidebar_border_color":"D3D2CF",
+      "profile_sidebar_fill_color":"E3E2DE",
+      "profile_text_color":"634047",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":null,
+      "follow_request_sent":false,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"mwop",
+          "name":"weierophinney",
+          "id":9453382,
+          "id_str":"9453382",
+          "indices":[
+            0,
+            5
+          ]
+        },
+        {
+          "screen_name":"nelstrom",
+          "name":"Drew Neil",
+          "id":9252942,
+          "id_str":"9252942",
+          "indices":[
+            44,
+            53
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Mon Mar 04 13:52:16 +0000 2013",
+    "id":308575624564445186,
+    "id_str":"308575624564445186",
+    "text":"@tswicegood That\u0027s strike one. \/cc @mwop @CalEvans",
+    "source":"\u003Ca href=\u0022http:\/\/twitter.com\/download\/iphone\u0022 rel=\u0022nofollow\u0022\u003ETwitter for iPhone\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":308564908407136256,
+    "in_reply_to_status_id_str":"308564908407136256",
+    "in_reply_to_user_id":9478892,
+    "in_reply_to_user_id_str":"9478892",
+    "in_reply_to_screen_name":"tswicegood",
+    "user":{
+      "id":9207672,
+      "id_str":"9207672",
+      "name":"Nate Abele",
+      "screen_name":"nateabele",
+      "location":"Philadelphia, PA",
+      "description":"Maker of invisible cathedrals (i.e. #Li3); passionate about freedom \u0026 breaking down barriers; privileged to work with awesome people at @radify (Photo: @coates)",
+      "url":"http:\/\/nateabele.com\/",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/nateabele.com\/",
+              "expanded_url":null,
+              "indices":[
+                0,
+                21
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":2245,
+      "friends_count":125,
+      "listed_count":331,
+      "created_at":"Tue Oct 02 14:21:06 +0000 2007",
+      "favourites_count":198,
+      "utc_offset":-18000,
+      "time_zone":"Eastern Time (US \u0026 Canada)",
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":11621,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"6D8F71",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1584454244\/IMG_5100_normal.jpeg",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1584454244\/IMG_5100_normal.jpeg",
+      "profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/9207672\/1353516436",
+      "profile_link_color":"1E27A6",
+      "profile_sidebar_border_color":"00570A",
+      "profile_sidebar_fill_color":"8D968F",
+      "profile_text_color":"000000",
+      "profile_use_background_image":false,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":null,
+      "follow_request_sent":false,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"tswicegood",
+          "name":"Travis Swicegood",
+          "id":9478892,
+          "id_str":"9478892",
+          "indices":[
+            0,
+            11
+          ]
+        },
+        {
+          "screen_name":"mwop",
+          "name":"weierophinney",
+          "id":9453382,
+          "id_str":"9453382",
+          "indices":[
+            35,
+            40
+          ]
+        },
+        {
+          "screen_name":"CalEvans",
+          "name":"Cal Evans",
+          "id":4795561,
+          "id_str":"4795561",
+          "indices":[
+            41,
+            50
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Mon Mar 04 13:21:26 +0000 2013",
+    "id":308567864758128640,
+    "id_str":"308567864758128640",
+    "text":"@tswicegood @mwop Couldn\u0027t have said it better myself! :)",
+    "source":"\u003Ca href=\u0022http:\/\/www.tweetdeck.com\u0022 rel=\u0022nofollow\u0022\u003ETweetDeck\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":308564908407136256,
+    "in_reply_to_status_id_str":"308564908407136256",
+    "in_reply_to_user_id":9478892,
+    "in_reply_to_user_id_str":"9478892",
+    "in_reply_to_screen_name":"tswicegood",
+    "user":{
+      "id":4795561,
+      "id_str":"4795561",
+      "name":"Cal Evans",
+      "screen_name":"CalEvans",
+      "location":"Nashville, TN",
+      "description":"Author of Avoiding a Goat Rodeo: How to get the website you want http:\/\/bit.ly\/goat_rodeo Read this book before you hire a developer to build your website!",
+      "url":"http:\/\/blog.calevans.com\/epk",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/blog.calevans.com\/epk",
+              "expanded_url":null,
+              "indices":[
+                0,
+                28
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":5069,
+      "friends_count":165,
+      "listed_count":540,
+      "created_at":"Sun Apr 15 20:54:29 +0000 2007",
+      "favourites_count":17,
+      "utc_offset":-21600,
+      "time_zone":"Central Time (US \u0026 Canada)",
+      "geo_enabled":true,
+      "verified":false,
+      "statuses_count":27514,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"131516",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme14\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif",
+      "profile_background_tile":true,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1376139884\/cal_dpc11_reallysmall_normal.png",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1376139884\/cal_dpc11_reallysmall_normal.png",
+      "profile_link_color":"009999",
+      "profile_sidebar_border_color":"EEEEEE",
+      "profile_sidebar_fill_color":"EFEFEF",
+      "profile_text_color":"333333",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":null,
+      "follow_request_sent":false,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"tswicegood",
+          "name":"Travis Swicegood",
+          "id":9478892,
+          "id_str":"9478892",
+          "indices":[
+            0,
+            11
+          ]
+        },
+        {
+          "screen_name":"mwop",
+          "name":"weierophinney",
+          "id":9453382,
+          "id_str":"9453382",
+          "indices":[
+            12,
+            17
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Mon Mar 04 13:09:41 +0000 2013",
+    "id":308564908407136256,
+    "id_str":"308564908407136256",
+    "text":"Actually, yes. \ud83d\ude03 RT @mwop: @tswicegood channeling your inner @CalEvans this morning?",
+    "source":"\u003Ca href=\u0022http:\/\/tapbots.com\/tweetbot\u0022 rel=\u0022nofollow\u0022\u003ETweetbot for iOS\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":null,
+    "in_reply_to_status_id_str":null,
+    "in_reply_to_user_id":null,
+    "in_reply_to_user_id_str":null,
+    "in_reply_to_screen_name":null,
+    "user":{
+      "id":9478892,
+      "id_str":"9478892",
+      "name":"Travis Swicegood",
+      "screen_name":"tswicegood",
+      "location":"Austin, TX",
+      "description":"Professional Instigator, Lone Star Hacker, Director of Tech for @TexasTribune, Digital Polyglot, and Maker of Trouble.",
+      "url":"http:\/\/www.travisswicegood.com",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/www.travisswicegood.com",
+              "expanded_url":null,
+              "indices":[
+                0,
+                30
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":2321,
+      "friends_count":487,
+      "listed_count":258,
+      "created_at":"Tue Oct 16 14:55:08 +0000 2007",
+      "favourites_count":2722,
+      "utc_offset":-21600,
+      "time_zone":"Central America",
+      "geo_enabled":true,
+      "verified":false,
+      "statuses_count":19297,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"07090B",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/561552939\/x7f4c8953e6e4bd4e1c3c3de2a384a54.png",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/561552939\/x7f4c8953e6e4bd4e1c3c3de2a384a54.png",
+      "profile_background_tile":true,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3165761278\/a2b009e6e0760b4e3234770b6fc0b4d0_normal.jpeg",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3165761278\/a2b009e6e0760b4e3234770b6fc0b4d0_normal.jpeg",
+      "profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/9478892\/1362432864",
+      "profile_link_color":"1C1F23",
+      "profile_sidebar_border_color":"BFBFBF",
+      "profile_sidebar_fill_color":"EEEEEE",
+      "profile_text_color":"336666",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":null,
+      "follow_request_sent":false,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"mwop",
+          "name":"weierophinney",
+          "id":9453382,
+          "id_str":"9453382",
+          "indices":[
+            20,
+            25
+          ]
+        },
+        {
+          "screen_name":"tswicegood",
+          "name":"Travis Swicegood",
+          "id":9478892,
+          "id_str":"9478892",
+          "indices":[
+            27,
+            38
+          ]
+        },
+        {
+          "screen_name":"CalEvans",
+          "name":"Cal Evans",
+          "id":4795561,
+          "id_str":"4795561",
+          "indices":[
+            61,
+            70
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Mon Mar 04 09:55:43 +0000 2013",
+    "id":308516094228959232,
+    "id_str":"308516094228959232",
+    "text":"@JurajSeffer You know... I haven\u2019t a clue! Maybe @mwop knows?",
+    "source":"\u003Ca href=\u0022http:\/\/tapbots.com\/software\/tweetbot\/mac\u0022 rel=\u0022nofollow\u0022\u003ETweetbot for Mac\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":308512685392293889,
+    "in_reply_to_status_id_str":"308512685392293889",
+    "in_reply_to_user_id":428573303,
+    "in_reply_to_user_id_str":"428573303",
+    "in_reply_to_screen_name":"JurajSeffer",
+    "user":{
+      "id":9244712,
+      "id_str":"9244712",
+      "name":"Rob Allen",
+      "screen_name":"akrabat",
+      "location":"Worcester, UK",
+      "description":"Author of Zend Framework in Action. Husband. Father of two sons. Creator of Daily Jotter for Mac",
+      "url":"http:\/\/akrabat.com",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/akrabat.com",
+              "expanded_url":null,
+              "indices":[
+                0,
+                18
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":4198,
+      "friends_count":251,
+      "listed_count":416,
+      "created_at":"Thu Oct 04 14:08:31 +0000 2007",
+      "favourites_count":420,
+      "utc_offset":0,
+      "time_zone":"London",
+      "geo_enabled":true,
+      "verified":false,
+      "statuses_count":13020,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"131516",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme14\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif",
+      "profile_background_tile":true,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2869088328\/73e2da0fd72b84ab0bf7a08ff90b104c_normal.jpeg",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2869088328\/73e2da0fd72b84ab0bf7a08ff90b104c_normal.jpeg",
+      "profile_link_color":"009999",
+      "profile_sidebar_border_color":"EEEEEE",
+      "profile_sidebar_fill_color":"EFEFEF",
+      "profile_text_color":"333333",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":null,
+      "follow_request_sent":false,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"JurajSeffer",
+          "name":"Juraj Seffer",
+          "id":428573303,
+          "id_str":"428573303",
+          "indices":[
+            0,
+            12
+          ]
+        },
+        {
+          "screen_name":"mwop",
+          "name":"weierophinney",
+          "id":9453382,
+          "id_str":"9453382",
+          "indices":[
+            49,
+            54
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Sun Mar 03 13:31:24 +0000 2013",
+    "id":308207987015688193,
+    "id_str":"308207987015688193",
+    "text":"actually, i think services and mappers being explicitly mentioned now help avoiding fat controllers typical of #zf1 .. @mwop @jkeppens",
+    "source":"\u003Ca href=\u0022http:\/\/twitter.com\/#!\/download\/ipad\u0022 rel=\u0022nofollow\u0022\u003ETwitter for iPad\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":308202765698609152,
+    "in_reply_to_status_id_str":"308202765698609152",
+    "in_reply_to_user_id":9453382,
+    "in_reply_to_user_id_str":"9453382",
+    "in_reply_to_screen_name":"mwop",
+    "user":{
+      "id":132493534,
+      "id_str":"132493534",
+      "name":"Steve Maraspin",
+      "screen_name":"maraspin",
+      "location":"Udine, Italy",
+      "description":"Software Engineer, @mvassociati Managing Partner. Interested in User Centred Software Development and Web Architectures. MSc, #pug Friuli founder, PHP5 ZCE",
+      "url":"http:\/\/steve.maraspin.net",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/steve.maraspin.net",
+              "expanded_url":null,
+              "indices":[
+                0,
+                25
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":421,
+      "friends_count":540,
+      "listed_count":13,
+      "created_at":"Tue Apr 13 11:34:18 +0000 2010",
+      "favourites_count":579,
+      "utc_offset":3600,
+      "time_zone":"Rome",
+      "geo_enabled":true,
+      "verified":false,
+      "statuses_count":1596,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"1A1B1F",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme9\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme9\/bg.gif",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/819610274\/steve_normal.jpg",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/819610274\/steve_normal.jpg",
+      "profile_link_color":"2FC2EF",
+      "profile_sidebar_border_color":"181A1E",
+      "profile_sidebar_fill_color":"252429",
+      "profile_text_color":"666666",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":null,
+      "follow_request_sent":false,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+        {
+          "text":"zf1",
+          "indices":[
+            111,
+            115
+          ]
+        }
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"mwop",
+          "name":"weierophinney",
+          "id":9453382,
+          "id_str":"9453382",
+          "indices":[
+            119,
+            124
+          ]
+        },
+        {
+          "screen_name":"jkeppens",
+          "name":"Jeroen Keppens",
+          "id":15749095,
+          "id_str":"15749095",
+          "indices":[
+            125,
+            134
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Sun Mar 03 13:17:43 +0000 2013",
+    "id":308204540845494272,
+    "id_str":"308204540845494272",
+    "text":"@mwop sure.",
+    "source":"\u003Ca href=\u0022http:\/\/www.echofon.com\/\u0022 rel=\u0022nofollow\u0022\u003EEchofon\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":308203463685308417,
+    "in_reply_to_status_id_str":"308203463685308417",
+    "in_reply_to_user_id":9453382,
+    "in_reply_to_user_id_str":"9453382",
+    "in_reply_to_screen_name":"mwop",
+    "user":{
+      "id":4600051,
+      "id_str":"4600051",
+      "name":"Till!",
+      "screen_name":"klimpong",
+      "location":"Berlin, Germany",
+      "description":"Most of this is SFW, unless it isn\u0027t. My book on CouchDB: http:\/\/t.co\/s1VAk1le (German)",
+      "url":"http:\/\/till.klampaeckel.de\/",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/till.klampaeckel.de\/",
+              "expanded_url":null,
+              "indices":[
+                0,
+                27
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+            {
+              "url":"http:\/\/t.co\/s1VAk1le",
+              "expanded_url":"http:\/\/bit.ly\/couchdbbuch",
+              "display_url":"bit.ly\/couchdbbuch",
+              "indices":[
+                58,
+                78
+              ]
+            }
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":1267,
+      "friends_count":322,
+      "listed_count":92,
+      "created_at":"Sat Apr 14 13:09:04 +0000 2007",
+      "favourites_count":1630,
+      "utc_offset":3600,
+      "time_zone":"Berlin",
+      "geo_enabled":true,
+      "verified":false,
+      "statuses_count":22122,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"9AC2E8",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/1790412\/2198002194_aa7845d082_b.jpg",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/1790412\/2198002194_aa7845d082_b.jpg",
+      "profile_background_tile":true,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/18810092\/till_avatar_normal.jpg",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/18810092\/till_avatar_normal.jpg",
+      "profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/4600051\/1353200308",
+      "profile_link_color":"0071FF",
+      "profile_sidebar_border_color":"BC444C",
+      "profile_sidebar_fill_color":"FFE292",
+      "profile_text_color":"000000",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":null,
+      "follow_request_sent":false,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"mwop",
+          "name":"weierophinney",
+          "id":9453382,
+          "id_str":"9453382",
+          "indices":[
+            0,
+            5
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Sun Mar 03 11:30:22 +0000 2013",
+    "id":308177525094367233,
+    "id_str":"308177525094367233",
+    "text":"@mwop Sorry, just saw your msgs on IRC. As soon as @naderman\u0027s PR is merged, we should be able to have this in satis. Heavily testing it.",
+    "source":"\u003Ca href=\u0022http:\/\/www.echofon.com\/\u0022 rel=\u0022nofollow\u0022\u003EEchofon\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":null,
+    "in_reply_to_status_id_str":null,
+    "in_reply_to_user_id":9453382,
+    "in_reply_to_user_id_str":"9453382",
+    "in_reply_to_screen_name":"mwop",
+    "user":{
+      "id":4600051,
+      "id_str":"4600051",
+      "name":"Till!",
+      "screen_name":"klimpong",
+      "location":"Berlin, Germany",
+      "description":"Most of this is SFW, unless it isn\u0027t. My book on CouchDB: http:\/\/t.co\/s1VAk1le (German)",
+      "url":"http:\/\/till.klampaeckel.de\/",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/till.klampaeckel.de\/",
+              "expanded_url":null,
+              "indices":[
+                0,
+                27
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+            {
+              "url":"http:\/\/t.co\/s1VAk1le",
+              "expanded_url":"http:\/\/bit.ly\/couchdbbuch",
+              "display_url":"bit.ly\/couchdbbuch",
+              "indices":[
+                58,
+                78
+              ]
+            }
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":1267,
+      "friends_count":322,
+      "listed_count":92,
+      "created_at":"Sat Apr 14 13:09:04 +0000 2007",
+      "favourites_count":1630,
+      "utc_offset":3600,
+      "time_zone":"Berlin",
+      "geo_enabled":true,
+      "verified":false,
+      "statuses_count":22122,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"9AC2E8",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/1790412\/2198002194_aa7845d082_b.jpg",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/1790412\/2198002194_aa7845d082_b.jpg",
+      "profile_background_tile":true,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/18810092\/till_avatar_normal.jpg",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/18810092\/till_avatar_normal.jpg",
+      "profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/4600051\/1353200308",
+      "profile_link_color":"0071FF",
+      "profile_sidebar_border_color":"BC444C",
+      "profile_sidebar_fill_color":"FFE292",
+      "profile_text_color":"000000",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":null,
+      "follow_request_sent":false,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"mwop",
+          "name":"weierophinney",
+          "id":9453382,
+          "id_str":"9453382",
+          "indices":[
+            0,
+            5
+          ]
+        },
+        {
+          "screen_name":"naderman",
+          "name":"Nils Adermann",
+          "id":11754222,
+          "id_str":"11754222",
+          "indices":[
+            51,
+            60
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Sat Mar 02 20:44:28 +0000 2013",
+    "id":307954582540128256,
+    "id_str":"307954582540128256",
+    "text":"@mwop thanks, I am going to expand on it with ServiceManager and a few others too",
+    "source":"\u003Ca href=\u0022http:\/\/tapbots.com\/tweetbot\u0022 rel=\u0022nofollow\u0022\u003ETweetbot for iOS\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":307947937374281728,
+    "in_reply_to_status_id_str":"307947937374281728",
+    "in_reply_to_user_id":9453382,
+    "in_reply_to_user_id_str":"9453382",
+    "in_reply_to_screen_name":"mwop",
+    "user":{
+      "id":455064907,
+      "id_str":"455064907",
+      "name":"Phil Bennett",
+      "screen_name":"philipobenito",
+      "location":"Barnsley",
+      "description":"All round geek. PHP \u0026 JavaScript developer from South Yorkshire, UK.",
+      "url":"http:\/\/t.co\/mlcS2bJfKY",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/t.co\/mlcS2bJfKY",
+              "expanded_url":"http:\/\/www.happyaccidents.me",
+              "display_url":"happyaccidents.me",
+              "indices":[
+                0,
+                22
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":53,
+      "friends_count":284,
+      "listed_count":0,
+      "created_at":"Wed Jan 04 18:01:43 +0000 2012",
+      "favourites_count":34,
+      "utc_offset":0,
+      "time_zone":"London",
+      "geo_enabled":true,
+      "verified":false,
+      "statuses_count":446,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"FAFAFA",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/457050252\/bright_squares1.png",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/457050252\/bright_squares1.png",
+      "profile_background_tile":true,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3069420538\/1e64cae5738fdf7d28f1e90b7fcce4bf_normal.jpeg",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3069420538\/1e64cae5738fdf7d28f1e90b7fcce4bf_normal.jpeg",
+      "profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/455064907\/1360758888",
+      "profile_link_color":"475F78",
+      "profile_sidebar_border_color":"C0DEED",
+      "profile_sidebar_fill_color":"DDEEF6",
+      "profile_text_color":"333333",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":null,
+      "follow_request_sent":false,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":{
+      "id":"b9ba2ac0df3f6ab5",
+      "url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/b9ba2ac0df3f6ab5.json",
+      "place_type":"city",
+      "name":"Barnsley",
+      "full_name":"Barnsley, Barnsley",
+      "country_code":"GB",
+      "country":"United Kingdom",
+      "bounding_box":{
+        "type":"Polygon",
+        "coordinates":[
+          [
+            [
+              -1.822589,
+              53.438297
+            ],
+            [
+              -1.275751,
+              53.438297
+            ],
+            [
+              -1.275751,
+              53.612815
+            ],
+            [
+              -1.822589,
+              53.612815
+            ]
+          ]
+        ]
+      },
+      "attributes":{
+
+      }
+    },
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"mwop",
+          "name":"weierophinney",
+          "id":9453382,
+          "id_str":"9453382",
+          "indices":[
+            0,
+            5
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Sat Mar 02 20:34:13 +0000 2013",
+    "id":307952000451092481,
+    "id_str":"307952000451092481",
+    "text":"@akrabat @mwop I was wondering why I was prompted :)",
+    "source":"\u003Ca href=\u0022http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\u0022 rel=\u0022nofollow\u0022\u003ETwitter for Mac\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":307949055844179969,
+    "in_reply_to_status_id_str":"307949055844179969",
+    "in_reply_to_user_id":9244712,
+    "in_reply_to_user_id_str":"9244712",
+    "in_reply_to_screen_name":"akrabat",
+    "user":{
+      "id":11990012,
+      "id_str":"11990012",
+      "name":"Wil Moore III",
+      "screen_name":"wilmoore",
+      "location":"Colorado",
+      "description":"Christ follower, Full-Stack Web Application Craftsman and advocates for TDD, Devops, Peer Review, and Relentless Mentorship.",
+      "url":"http:\/\/github.com\/wilmoore",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/github.com\/wilmoore",
+              "expanded_url":null,
+              "indices":[
+                0,
+                26
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":516,
+      "friends_count":1858,
+      "listed_count":24,
+      "created_at":"Tue Jan 08 16:30:16 +0000 2008",
+      "favourites_count":414,
+      "utc_offset":-25200,
+      "time_zone":"Mountain Time (US \u0026 Canada)",
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":1605,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"131516",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme14\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif",
+      "profile_background_tile":true,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2432334449\/7d97opore0cqhv1yvd4z_normal.jpeg",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2432334449\/7d97opore0cqhv1yvd4z_normal.jpeg",
+      "profile_link_color":"009999",
+      "profile_sidebar_border_color":"EEEEEE",
+      "profile_sidebar_fill_color":"EFEFEF",
+      "profile_text_color":"333333",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":null,
+      "follow_request_sent":false,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"akrabat",
+          "name":"Rob Allen",
+          "id":9244712,
+          "id_str":"9244712",
+          "indices":[
+            0,
+            8
+          ]
+        },
+        {
+          "screen_name":"mwop",
+          "name":"weierophinney",
+          "id":9453382,
+          "id_str":"9453382",
+          "indices":[
+            9,
+            14
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Sat Mar 02 20:22:30 +0000 2013",
+    "id":307949055844179969,
+    "id_str":"307949055844179969",
+    "text":"@mwop I had it opened - it notified me that my password had changed... First I had heard and was a bit \u201cWTF?!\u201d",
+    "source":"\u003Ca href=\u0022http:\/\/tapbots.com\/software\/tweetbot\/mac\u0022 rel=\u0022nofollow\u0022\u003ETweetbot for Mac\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":307944603007475712,
+    "in_reply_to_status_id_str":"307944603007475712",
+    "in_reply_to_user_id":9453382,
+    "in_reply_to_user_id_str":"9453382",
+    "in_reply_to_screen_name":"mwop",
+    "user":{
+      "id":9244712,
+      "id_str":"9244712",
+      "name":"Rob Allen",
+      "screen_name":"akrabat",
+      "location":"Worcester, UK",
+      "description":"Author of Zend Framework in Action. Husband. Father of two sons. Creator of Daily Jotter for Mac",
+      "url":"http:\/\/akrabat.com",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/akrabat.com",
+              "expanded_url":null,
+              "indices":[
+                0,
+                18
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":4198,
+      "friends_count":251,
+      "listed_count":416,
+      "created_at":"Thu Oct 04 14:08:31 +0000 2007",
+      "favourites_count":420,
+      "utc_offset":0,
+      "time_zone":"London",
+      "geo_enabled":true,
+      "verified":false,
+      "statuses_count":13020,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"131516",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme14\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif",
+      "profile_background_tile":true,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2869088328\/73e2da0fd72b84ab0bf7a08ff90b104c_normal.jpeg",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2869088328\/73e2da0fd72b84ab0bf7a08ff90b104c_normal.jpeg",
+      "profile_link_color":"009999",
+      "profile_sidebar_border_color":"EEEEEE",
+      "profile_sidebar_fill_color":"EFEFEF",
+      "profile_text_color":"333333",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":null,
+      "follow_request_sent":false,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"mwop",
+          "name":"weierophinney",
+          "id":9453382,
+          "id_str":"9453382",
+          "indices":[
+            0,
+            5
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Sat Mar 02 20:14:13 +0000 2013",
+    "id":307946970448801793,
+    "id_str":"307946970448801793",
+    "text":"Sitting on the bus reading this from @mwop. I really hope this isn\u0027t the beginning of the end of PHP-FIG http:\/\/t.co\/lb518zJkse",
+    "source":"\u003Ca href=\u0022http:\/\/twitter.com\/download\/iphone\u0022 rel=\u0022nofollow\u0022\u003ETwitter for iPhone\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":null,
+    "in_reply_to_status_id_str":null,
+    "in_reply_to_user_id":null,
+    "in_reply_to_user_id_str":null,
+    "in_reply_to_screen_name":null,
+    "user":{
+      "id":19536633,
+      "id_str":"19536633",
+      "name":"Jamie Hurst",
+      "screen_name":"JamieFDHurst",
+      "location":"Washington, Tyne and Wear, UK",
+      "description":"PHP web dev at @HurstDEV; engaged to @YajunWei; attendee\/helper at @phpNE; commonly found listening to daft music and attending pubs. Whingy sod.",
+      "url":"http:\/\/www.jamiehurst.co.uk\/",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/www.jamiehurst.co.uk\/",
+              "expanded_url":null,
+              "indices":[
+                0,
+                28
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":786,
+      "friends_count":555,
+      "listed_count":35,
+      "created_at":"Mon Jan 26 14:35:51 +0000 2009",
+      "favourites_count":22,
+      "utc_offset":0,
+      "time_zone":"London",
+      "geo_enabled":true,
+      "verified":false,
+      "statuses_count":13454,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"1A1B1F",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme9\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme9\/bg.gif",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1644989727\/3d7383fc4945a769cfff46653671bd1f_normal.png",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1644989727\/3d7383fc4945a769cfff46653671bd1f_normal.png",
+      "profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/19536633\/1359903435",
+      "profile_link_color":"2FC2EF",
+      "profile_sidebar_border_color":"181A1E",
+      "profile_sidebar_fill_color":"252429",
+      "profile_text_color":"666666",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":null,
+      "follow_request_sent":false,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+        {
+          "url":"http:\/\/t.co\/lb518zJkse",
+          "expanded_url":"http:\/\/www.mwop.net\/blog\/2013-02-27-resigned-from-php-fig.html",
+          "display_url":"mwop.net\/blog\/2013-02-2\u2026",
+          "indices":[
+            105,
+            127
+          ]
+        }
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"mwop",
+          "name":"weierophinney",
+          "id":9453382,
+          "id_str":"9453382",
+          "indices":[
+            37,
+            42
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false,
+    "possibly_sensitive":false
+  },
+  {
+    "created_at":"Sat Mar 02 16:39:14 +0000 2013",
+    "id":307892867731427329,
+    "id_str":"307892867731427329",
+    "text":"Benchmarking Dependency Injection Containers http:\/\/t.co\/TCwUhpRsTU \/cc @mwop @taylorotwell @fabpot",
+    "source":"web",
+    "truncated":false,
+    "in_reply_to_status_id":null,
+    "in_reply_to_status_id_str":null,
+    "in_reply_to_user_id":null,
+    "in_reply_to_user_id_str":null,
+    "in_reply_to_screen_name":null,
+    "user":{
+      "id":455064907,
+      "id_str":"455064907",
+      "name":"Phil Bennett",
+      "screen_name":"philipobenito",
+      "location":"Barnsley",
+      "description":"All round geek. PHP \u0026 JavaScript developer from South Yorkshire, UK.",
+      "url":"http:\/\/t.co\/mlcS2bJfKY",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/t.co\/mlcS2bJfKY",
+              "expanded_url":"http:\/\/www.happyaccidents.me",
+              "display_url":"happyaccidents.me",
+              "indices":[
+                0,
+                22
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":53,
+      "friends_count":284,
+      "listed_count":0,
+      "created_at":"Wed Jan 04 18:01:43 +0000 2012",
+      "favourites_count":34,
+      "utc_offset":0,
+      "time_zone":"London",
+      "geo_enabled":true,
+      "verified":false,
+      "statuses_count":446,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"FAFAFA",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/457050252\/bright_squares1.png",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/457050252\/bright_squares1.png",
+      "profile_background_tile":true,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3069420538\/1e64cae5738fdf7d28f1e90b7fcce4bf_normal.jpeg",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3069420538\/1e64cae5738fdf7d28f1e90b7fcce4bf_normal.jpeg",
+      "profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/455064907\/1360758888",
+      "profile_link_color":"475F78",
+      "profile_sidebar_border_color":"C0DEED",
+      "profile_sidebar_fill_color":"DDEEF6",
+      "profile_text_color":"333333",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":null,
+      "follow_request_sent":false,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":1,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+        {
+          "url":"http:\/\/t.co\/TCwUhpRsTU",
+          "expanded_url":"http:\/\/happyaccidents.me\/blog\/benchmarking-dependency-injection-containers",
+          "display_url":"happyaccidents.me\/blog\/benchmark\u2026",
+          "indices":[
+            45,
+            67
+          ]
+        }
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"mwop",
+          "name":"weierophinney",
+          "id":9453382,
+          "id_str":"9453382",
+          "indices":[
+            72,
+            77
+          ]
+        },
+        {
+          "screen_name":"taylorotwell",
+          "name":"Taylor Otwell",
+          "id":28870687,
+          "id_str":"28870687",
+          "indices":[
+            78,
+            91
+          ]
+        },
+        {
+          "screen_name":"fabpot",
+          "name":"Fabien Potencier",
+          "id":15072316,
+          "id_str":"15072316",
+          "indices":[
+            92,
+            99
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false,
+    "possibly_sensitive":false
+  },
+  {
+    "created_at":"Sat Mar 02 02:50:23 +0000 2013",
+    "id":307684279247319040,
+    "id_str":"307684279247319040",
+    "text":"On PHP-FIG :: phly, boy, phly http:\/\/t.co\/0w7ONZNYzv via @mwop",
+    "source":"\u003Ca href=\u0022http:\/\/twitter.com\/download\/android\u0022 rel=\u0022nofollow\u0022\u003ETwitter for Android\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":null,
+    "in_reply_to_status_id_str":null,
+    "in_reply_to_user_id":null,
+    "in_reply_to_user_id_str":null,
+    "in_reply_to_screen_name":null,
+    "user":{
+      "id":15685803,
+      "id_str":"15685803",
+      "name":"Jeremiah Small",
+      "screen_name":"jeremiahsmall",
+      "location":"Altadena, CA",
+      "description":"",
+      "url":"http:\/\/jsmall.us",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/jsmall.us",
+              "expanded_url":null,
+              "indices":[
+                0,
+                16
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":40,
+      "friends_count":68,
+      "listed_count":1,
+      "created_at":"Fri Aug 01 05:02:08 +0000 2008",
+      "favourites_count":3,
+      "utc_offset":-28800,
+      "time_zone":"Pacific Time (US \u0026 Canada)",
+      "geo_enabled":true,
+      "verified":false,
+      "statuses_count":127,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"B2DFDA",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme13\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme13\/bg.gif",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/756248431\/js_profile_icon_normal.jpg",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/756248431\/js_profile_icon_normal.jpg",
+      "profile_link_color":"93A644",
+      "profile_sidebar_border_color":"EEEEEE",
+      "profile_sidebar_fill_color":"FFFFFF",
+      "profile_text_color":"333333",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":null,
+      "follow_request_sent":false,
+      "notifications":null
+    },
+    "geo":{
+      "type":"Point",
+      "coordinates":[
+        34.1956833,
+        -118.11858767
+      ]
+    },
+    "coordinates":{
+      "type":"Point",
+      "coordinates":[
+        -118.11858767,
+        34.1956833
+      ]
+    },
+    "place":{
+      "id":"fb76b3aa366004c9",
+      "url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/fb76b3aa366004c9.json",
+      "place_type":"city",
+      "name":"Altadena",
+      "full_name":"Altadena, CA",
+      "country_code":"US",
+      "country":"United States",
+      "bounding_box":{
+        "type":"Polygon",
+        "coordinates":[
+          [
+            [
+              -118.177575,
+              34.16765
+            ],
+            [
+              -118.094903,
+              34.16765
+            ],
+            [
+              -118.094903,
+              34.220091
+            ],
+            [
+              -118.177575,
+              34.220091
+            ]
+          ]
+        ]
+      },
+      "attributes":{
+
+      }
+    },
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+        {
+          "url":"http:\/\/t.co\/0w7ONZNYzv",
+          "expanded_url":"http:\/\/www.mwop.net\/blog\/2013-02-27-resigned-from-php-fig.html",
+          "display_url":"mwop.net\/blog\/2013-02-2\u2026",
+          "indices":[
+            30,
+            52
+          ]
+        }
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"mwop",
+          "name":"weierophinney",
+          "id":9453382,
+          "id_str":"9453382",
+          "indices":[
+            57,
+            62
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false,
+    "possibly_sensitive":false
+  },
+  {
+    "created_at":"Fri Mar 01 23:48:34 +0000 2013",
+    "id":307638523610161153,
+    "id_str":"307638523610161153",
+    "text":"@mwop you and me both!  couldn\u0027t get away :( \/cc @SaraMG",
+    "source":"web",
+    "truncated":false,
+    "in_reply_to_status_id":307567084462800896,
+    "in_reply_to_status_id_str":"307567084462800896",
+    "in_reply_to_user_id":9453382,
+    "in_reply_to_user_id_str":"9453382",
+    "in_reply_to_screen_name":"mwop",
+    "user":{
+      "id":18636940,
+      "id_str":"18636940",
+      "name":"Mike Willbanks",
+      "screen_name":"mwillbanks",
+      "location":"San Jose, CA",
+      "description":"Sr. Web Architect Mgr; high performance, high availability, php",
+      "url":"http:\/\/blog.digitalstruct.com",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/blog.digitalstruct.com",
+              "expanded_url":null,
+              "indices":[
+                0,
+                29
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":427,
+      "friends_count":171,
+      "listed_count":46,
+      "created_at":"Mon Jan 05 16:58:02 +0000 2009",
+      "favourites_count":9,
+      "utc_offset":-21600,
+      "time_zone":"Central Time (US \u0026 Canada)",
+      "geo_enabled":true,
+      "verified":false,
+      "statuses_count":2117,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"EDECE9",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme3\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme3\/bg.gif",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1269296213\/mwillbanks-php-logo_normal.png",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1269296213\/mwillbanks-php-logo_normal.png",
+      "profile_link_color":"088253",
+      "profile_sidebar_border_color":"D3D2CF",
+      "profile_sidebar_fill_color":"E3E2DE",
+      "profile_text_color":"634047",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":null,
+      "follow_request_sent":false,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"mwop",
+          "name":"weierophinney",
+          "id":9453382,
+          "id_str":"9453382",
+          "indices":[
+            0,
+            5
+          ]
+        },
+        {
+          "screen_name":"SaraMG",
+          "name":"SaraMG",
+          "id":8295352,
+          "id_str":"8295352",
+          "indices":[
+            49,
+            56
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Fri Mar 01 22:34:57 +0000 2013",
+    "id":307619996945752065,
+    "id_str":"307619996945752065",
+    "text":"@jcarouth Ha! Wasn\u0027t really much of choice, mainly done out of necessity. \/cc @mwop",
+    "source":"\u003Ca href=\u0022http:\/\/twitter.com\/tweetbutton\u0022 rel=\u0022nofollow\u0022\u003ETweet Button\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":307619370950090752,
+    "in_reply_to_status_id_str":"307619370950090752",
+    "in_reply_to_user_id":12731142,
+    "in_reply_to_user_id_str":"12731142",
+    "in_reply_to_screen_name":"jcarouth",
+    "user":{
+      "id":10909812,
+      "id_str":"10909812",
+      "name":"Bradley Holt",
+      "screen_name":"BradleyHolt",
+      "location":"Burlington, VT",
+      "description":"@FoundLine Co-Founder; @BTVGig @NEPHP @VTCodeCamp organizer; @VERMONTCAM @btvwag Board Member; #SXSWi #OSCON #jqcon #ZendCon speaker; @OReillyMedia author",
+      "url":"http:\/\/bradley-holt.com\/",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/bradley-holt.com\/",
+              "expanded_url":null,
+              "indices":[
+                0,
+                24
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":1322,
+      "friends_count":437,
+      "listed_count":143,
+      "created_at":"Thu Dec 06 17:37:04 +0000 2007",
+      "favourites_count":1,
+      "utc_offset":-18000,
+      "time_zone":"Eastern Time (US \u0026 Canada)",
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":9435,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"EBEBEB",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme7\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme7\/bg.gif",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2866448717\/2b0a7540cd2a1b0ce8449a0408b4e4a3_normal.jpeg",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2866448717\/2b0a7540cd2a1b0ce8449a0408b4e4a3_normal.jpeg",
+      "profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/10909812\/1353274114",
+      "profile_link_color":"990000",
+      "profile_sidebar_border_color":"DFDFDF",
+      "profile_sidebar_fill_color":"F3F3F3",
+      "profile_text_color":"333333",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":null,
+      "follow_request_sent":false,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"jcarouth",
+          "name":"Jeff Carouth",
+          "id":12731142,
+          "id_str":"12731142",
+          "indices":[
+            0,
+            9
+          ]
+        },
+        {
+          "screen_name":"mwop",
+          "name":"weierophinney",
+          "id":9453382,
+          "id_str":"9453382",
+          "indices":[
+            78,
+            83
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Fri Mar 01 22:32:27 +0000 2013",
+    "id":307619370950090752,
+    "id_str":"307619370950090752",
+    "text":"@BradleyHolt You are the smartest of all of us for that. \/cc @mwop",
+    "source":"\u003Ca href=\u0022http:\/\/twitter.com\/download\/android\u0022 rel=\u0022nofollow\u0022\u003ETwitter for Android\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":307618414413893632,
+    "in_reply_to_status_id_str":"307618414413893632",
+    "in_reply_to_user_id":10909812,
+    "in_reply_to_user_id_str":"10909812",
+    "in_reply_to_screen_name":"BradleyHolt",
+    "user":{
+      "id":12731142,
+      "id_str":"12731142",
+      "name":"Jeff Carouth",
+      "screen_name":"jcarouth",
+      "location":"College Station, Texas, USA",
+      "description":"Web and mobile developer. Liftopian (@liftopia). Co-Organzier of #bcsphp. Food fanatic. ",
+      "url":"http:\/\/carouth.com",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/carouth.com",
+              "expanded_url":null,
+              "indices":[
+                0,
+                18
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":612,
+      "friends_count":144,
+      "listed_count":49,
+      "created_at":"Sat Jan 26 21:55:40 +0000 2008",
+      "favourites_count":154,
+      "utc_offset":-21600,
+      "time_zone":"Central Time (US \u0026 Canada)",
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":7905,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"131516",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/711094417\/ed049140086102868773707bddce9943.jpeg",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/711094417\/ed049140086102868773707bddce9943.jpeg",
+      "profile_background_tile":true,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2963153528\/893067fe8709c631f0d1ae7a3303aa31_normal.jpeg",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2963153528\/893067fe8709c631f0d1ae7a3303aa31_normal.jpeg",
+      "profile_link_color":"009999",
+      "profile_sidebar_border_color":"FFFFFF",
+      "profile_sidebar_fill_color":"EFEFEF",
+      "profile_text_color":"333333",
+      "profile_use_background_image":false,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":null,
+      "follow_request_sent":false,
+      "notifications":null
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"BradleyHolt",
+          "name":"Bradley Holt",
+          "id":10909812,
+          "id_str":"10909812",
+          "indices":[
+            0,
+            12
+          ]
+        },
+        {
+          "screen_name":"mwop",
+          "name":"weierophinney",
+          "id":9453382,
+          "id_str":"9453382",
+          "indices":[
+            61,
+            66
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  }
+]

+ 1534 - 0
tests/Zend/Service/Twitter/_files/statuses.sample.json

@@ -0,0 +1,1534 @@
+[
+    {
+        "contributors": null,
+        "coordinates": {
+            "coordinates": [
+                -90.532719,
+                19.830304
+            ],
+            "type": "Point"
+        },
+        "created_at": "Sun May 30 00:31:38 +0000 2010",
+        "entities": {
+            "hashtags": [ ],
+            "urls": [
+                {
+                    "url": "http://myloc.me/7AsT6",
+                    "indices": [
+                        28,
+                        48
+                    ]
+                }
+            ],
+            "user_mentions": [ ]
+        },
+        "favorited": false,
+        "geo": null,
+        "id": 15007779000,
+        "id_str": "15007779000",
+        "in_reply_to_screen_name": null,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "source": "<a href=\"http://ubertwitter.com\" rel=\"nofollow\">UberTwitter</a>",
+        "text": "Vamos x la 2da peliculita  http://myloc.me/7AsT6",
+        "truncated": false,
+        "user": {
+            "contributors_enabled": false,
+            "created_at": "Wed Sep 30 02:10:26 +0000 2009",
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": null,
+            "entities": {
+                "hashtags": [],
+                "urls": [],
+                "user_mentions": []
+            },
+            "expanded_url": null,
+            "favourites_count": 1,
+            "followers_count": 118,
+            "following": false,
+            "follow_request_sent": false,
+            "friends_count": 238,
+            "geo_enabled": true,
+            "id": 78485547,
+            "id_str": "78485547",
+            "is_translator": false,
+            "lang": "es",
+            "listed_count": 0,
+            "location": "ÜT: 19.830304,-90.532719",
+            "name": "veronica martinez",
+            "notifications": false,
+            "profile_background_color": "DBE9ED",
+            "profile_background_image_url": "http://a0.twimg.com/a/1274899949/images/themes/theme17/bg.gif",
+            "profile_background_image_url_https": "https://si0.twimg.com/a/1274899949/images/themes/theme17/bg.gif",
+            "profile_background_tile": false,
+            "profile_image_url": "http://a1.twimg.com/profile_images/825836252/DSCF3118_normal.JPG",
+            "profile_image_url_https": "https://si1.twimg.com/profile_images/825836252/DSCF3118_normal.JPG",
+            "profile_link_color": "CC3366",
+            "profile_sidebar_border_color": "DBE9ED",
+            "profile_sidebar_fill_color": "E6F6F9",
+            "profile_text_color": 333333,
+            "profile_use_background_image": true,
+            "protected": false,
+            "screen_name": "PillitaMartinez",
+            "show_all_inline_media": false,
+            "statuses_count": 1163,
+            "time_zone": "Central Time (US &amp; Canada)",
+            "url": null,
+            "utc_offset": "-21600",
+            "verified": false
+        }
+    },
+    {
+        "created_at": "Sun May 30 00:31:37 +0000 2010",
+        "id": 15007778000,
+        "id_str": "15007778000",
+        "text": "vh1 classic es una buena forma de matar el aburrimiento o de despertar de una siesta",
+        "source": "web",
+        "truncated": false,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "entities": {
+            "hashtags": [ ],
+            "urls": [ ],
+            "user_mentions": [ ]
+        },
+        "favorited": false,
+        "in_reply_to_screen_name": null,
+        "user": {
+            "id": 27191178,
+            "id_str": "27191178",
+            "name": "sinistro iturralde",
+            "screen_name": "sinistrobjj",
+            "show_all_inline_media": false,
+            "location": "arround the world",
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": "multiple times BJJ WORLD CHAMP",
+            "entities": {
+                "hashtags": [],
+                "urls": [],
+                "user_mentions": []
+            },
+            "expanded_url": null,
+            "profile_image_url": "http://a1.twimg.com/profile_images/879992980/28159_413740013932_591928932_5147275_6661219_n_1__normal.jpg",
+            "profile_image_url_https": "https://si1.twimg.com/profile_images/879992980/28159_413740013932_591928932_5147275_6661219_n_1__normal.jpg",
+            "url": "http://www.alliance-ecuador.blogspot.com",
+            "protected": false,
+            "followers_count": 99,
+            "profile_background_color": "1A1B1F",
+            "profile_text_color": 666666,
+            "profile_use_background_image": true,
+            "profile_link_color": "2FC2EF",
+            "profile_sidebar_fill_color": 252429,
+            "profile_sidebar_border_color": "181A1E",
+            "friends_count": 89,
+            "created_at": "Sat Mar 28 06:25:43 +0000 2009",
+            "favourites_count": 2,
+            "utc_offset": "-21600",
+            "time_zone": "Central Time (US &amp; Canada)",
+            "profile_background_image_url": "http://a3.twimg.com/profile_background_images/50908903/_MG_4623.jpg",
+            "profile_background_image_url_https": "https://si3.twimg.com/profile_background_images/50908903/_MG_4623.jpg",
+            "profile_background_tile": true,
+            "notifications": null,
+            "geo_enabled": true,
+            "verified": false,
+            "following": null,
+            "follow_request_sent": false,
+            "statuses_count": 945,
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "contributors_enabled": false
+        },
+        "geo": null,
+        "coordinates": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "contributors": null
+    },
+    {
+        "created_at": "Sun May 30 00:31:35 +0000 2010",
+        "id": 15007777000,
+        "id_str": "15007777000",
+        "text": "at home watching eurovision missed it so yea :/ :L lol haha",
+        "source": "web",
+        "truncated": false,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "entities": {
+            "hashtags": [ ],
+            "urls": [ ],
+            "user_mentions": [ ]
+        },
+        "favorited": false,
+        "in_reply_to_screen_name": null,
+        "user": {
+            "id": 63556065,
+            "id_str": "63556065",
+            "name": "rebekah n",
+            "screen_name": "destinyxcyrus",
+            "show_all_inline_media": false,
+            "location": null,
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": null,
+            "entities": {
+                "hashtags": [],
+                "urls": [],
+                "user_mentions": []
+            },
+            "expanded_url": null,
+            "profile_image_url": "http://a3.twimg.com/profile_images/930881677/100410_172128_normal.jpg",
+            "profile_image_url_https": "https://si3.twimg.com/profile_images/930881677/100410_172128_normal.jpg",
+            "url": null,
+            "protected": false,
+            "followers_count": 24,
+            "profile_background_color": 131516,
+            "profile_text_color": 333333,
+            "profile_use_background_image": true,
+            "profile_link_color": "009999",
+            "profile_sidebar_fill_color": "efefef",
+            "profile_sidebar_border_color": "eeeeee",
+            "friends_count": 67,
+            "created_at": "Thu Aug 06 22:11:37 +0000 2009",
+            "favourites_count": 0,
+            "utc_offset": null,
+            "time_zone": null,
+            "profile_background_image_url": "http://a3.twimg.com/profile_background_images/67769949/zwbra7.jpg",
+            "profile_background_image_url_https": "https://si3.twimg.com/profile_background_images/67769949/zwbra7.jpg",
+            "profile_background_tile": true,
+            "notifications": null,
+            "geo_enabled": false,
+            "verified": false,
+            "following": null,
+            "follow_request_sent": false,
+            "statuses_count": 458,
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "contributors_enabled": false
+        },
+        "geo": null,
+        "coordinates": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "contributors": null
+    },
+    {
+        "created_at": "Sun May 30 00:31:31 +0000 2010",
+        "id": 15007774000,
+        "id_str": "15007774000",
+        "text": "Milhares de pessoas prestigiam lançamento do programa Minha Casa, Minha Vida em Juazeiro. www.sertaocentral.com.br",
+        "source": "web",
+        "truncated": false,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "entities": {
+            "hashtags": [ ],
+            "urls": [
+                {
+                    "url": "http://www.sertaocentral.com.br",
+                    "indices": [
+                        92,
+                        115
+                    ]
+                }
+            ],
+            "user_mentions": [ ]
+        },
+        "favorited": false,
+        "in_reply_to_screen_name": null,
+        "user": {
+            "id": 79738493,
+            "id_str": "79738493",
+            "name": "Site Sertão Central",
+            "screen_name": "sertao_central",
+            "show_all_inline_media": false,
+            "location": "Brasil",
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": "Higo Carlos",
+            "entities": {
+                "hashtags": [],
+                "urls": [],
+                "user_mentions": []
+            },
+            "expanded_url": null,
+            "profile_image_url": "http://a1.twimg.com/profile_images/661970544/logo_normal.jpg",
+            "profile_image_url_https": "https://si1.twimg.com/profile_images/661970544/logo_normal.jpg",
+            "url": "http://www.sertaocentral.com.br",
+            "protected": false,
+            "followers_count": 761,
+            "profile_background_color": "022330",
+            "profile_text_color": 333333,
+            "profile_use_background_image": true,
+            "profile_link_color": "0084B4",
+            "profile_sidebar_fill_color": "C0DFEC",
+            "profile_sidebar_border_color": "a8c7f7",
+            "friends_count": 1996,
+            "created_at": "Sun Oct 04 14:12:27 +0000 2009",
+            "favourites_count": 6,
+            "utc_offset": "-14400",
+            "time_zone": "Santiago",
+            "profile_background_image_url": "http://a3.twimg.com/profile_background_images/44248325/higo.jpg",
+            "profile_background_image_url_https": "https://si3.twimg.com/profile_background_images/44248325/higo.jpg",
+            "profile_background_tile": false,
+            "notifications": null,
+            "geo_enabled": false,
+            "verified": false,
+            "following": null,
+            "follow_request_sent": false,
+            "statuses_count": 1126,
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "contributors_enabled": false
+        },
+        "geo": null,
+        "coordinates": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "contributors": null
+    },
+    {
+        "created_at": "Sun May 30 00:31:30 +0000 2010",
+        "id": 15007773000,
+        "id_str": "15007773000",
+        "text": "Wonderin why my nipple hurtin my dumb ass had money stuck in my ring lmao*",
+        "source": "<a href=\"http://blackberry.com/twitter\" rel=\"nofollow\">Twitter for BlackBerry®</a>",
+        "truncated": false,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "entities": {
+            "hashtags": [ ],
+            "urls": [ ],
+            "user_mentions": [ ]
+        },
+        "favorited": false,
+        "in_reply_to_screen_name": null,
+        "user": {
+            "id": 127754413,
+            "id_str": "127754413",
+            "name": "*Coco*",
+            "screen_name": "thiicknic69",
+            "show_all_inline_media": false,
+            "location": "Harlem home of the Greatest*",
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": "Bad chocolate bitch nuff said*  href=http://mylikes.com/signup?token=thiicknic69img src=http://mylikes.com/images/mylikes125.png//",
+            "entities": {
+                "hashtags": [],
+                "urls": [],
+                "user_mentions": []
+            },
+            "expanded_url": null,
+            "profile_image_url": "http://a1.twimg.com/profile_images/880181726/100391586_normal.jpg",
+            "profile_image_url_https": "https://si1.twimg.com/profile_images/880181726/100391586_normal.jpg",
+            "url": "http://null",
+            "protected": false,
+            "followers_count": 366,
+            "profile_background_color": "C0DEED",
+            "profile_text_color": 333333,
+            "profile_use_background_image": true,
+            "profile_link_color": "0084B4",
+            "profile_sidebar_fill_color": "DDEEF6",
+            "profile_sidebar_border_color": "C0DEED",
+            "friends_count": 360,
+            "created_at": "Tue Mar 30 04:10:19 +0000 2010",
+            "favourites_count": 0,
+            "utc_offset": null,
+            "time_zone": null,
+            "profile_background_image_url": "http://a1.twimg.com/profile_background_images/88880974/Jan23_014.jpg",
+            "profile_background_image_url_https": "https://si1.twimg.com/profile_background_images/88880974/Jan23_014.jpg",
+            "profile_background_tile": true,
+            "notifications": null,
+            "geo_enabled": false,
+            "verified": false,
+            "following": null,
+            "follow_request_sent": false,
+            "statuses_count": 4170,
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "contributors_enabled": false
+        },
+        "geo": null,
+        "coordinates": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "contributors": null
+    },
+    {
+        "created_at": "Sun May 30 00:31:29 +0000 2010",
+        "id": 15007772000,
+        "id_str": "15007772000",
+        "text": "ハルピン・トゥルルルソン?",
+        "source": "<a href=\"http://apiwiki.twitter.com/\" rel=\"nofollow\">API</a>",
+        "truncated": false,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "entities": {
+            "hashtags": [ ],
+            "urls": [ ],
+            "user_mentions": [ ]
+        },
+        "favorited": false,
+        "in_reply_to_screen_name": null,
+        "user": {
+            "id": 128592391,
+            "id_str": "128592391",
+            "name": "ピザまん",
+            "screen_name": "pizaman_",
+            "show_all_inline_media": false,
+            "location": "せいろ",
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": "蒸したてあつあつのピザまんだよ!【自動botです。なにかありましたらDMをお送りください】",
+            "entities": {
+                "hashtags": [],
+                "urls": [],
+                "user_mentions": []
+            },
+            "expanded_url": null,
+            "profile_image_url": "http://a1.twimg.com/profile_images/790683386/o0350046010331203264_1__normal.jpg",
+            "profile_image_url_https": "https://si1.twimg.com/profile_images/790683386/o0350046010331203264_1__normal.jpg",
+            "url": "http://pleurer.web.fc2.com/newdir/pizaman.html",
+            "protected": false,
+            "followers_count": 89,
+            "profile_background_color": "9ae4e8",
+            "profile_text_color": "000000",
+            "profile_use_background_image": true,
+            "profile_link_color": "0000ff",
+            "profile_sidebar_fill_color": "e0ff92",
+            "profile_sidebar_border_color": "87bc44",
+            "friends_count": 93,
+            "created_at": "Thu Apr 01 15:47:08 +0000 2010",
+            "favourites_count": 0,
+            "utc_offset": "-36000",
+            "time_zone": "Hawaii",
+            "profile_background_image_url": "http://a0.twimg.com/a/1274144130/images/themes/theme1/bg.png",
+            "profile_background_image_url_https": "https://si0.twimg.com/a/1274144130/images/themes/theme1/bg.png",
+            "profile_background_tile": false,
+            "notifications": null,
+            "geo_enabled": false,
+            "verified": false,
+            "following": null,
+            "follow_request_sent": false,
+            "statuses_count": 3890,
+            "is_translator": false,
+            "lang": "ja",
+            "listed_count": 0,
+            "contributors_enabled": false
+        },
+        "geo": null,
+        "coordinates": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "contributors": null
+    },
+    {
+        "created_at": "Sun May 30 00:31:27 +0000 2010",
+        "id": 15007771000,
+        "id_str": "15007771000",
+        "text": "irei fazer um formspring.me para o #euja_ ok? hahaha :)",
+        "source": "web",
+        "truncated": false,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "entities": {
+            "hashtags": [
+                {
+                    "text": "euja_",
+                    "indices": [
+                        36,
+                        41
+                    ]
+                }
+            ],
+            "urls": [ ],
+            "user_mentions": [ ]
+        },
+        "favorited": false,
+        "in_reply_to_screen_name": null,
+        "user": {
+            "id": 142114624,
+            "id_str": "142114624",
+            "name": "euja...",
+            "screen_name": "euja_",
+            "show_all_inline_media": false,
+            "location": null,
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": "Um twitter feito por @karol_arantes e @analuiza_farias , no dia 09.05.10 ; com a inteção de sempre postar... eu já quis.. auehaieuhaeiuha. :) ",
+            "entities": {
+                "hashtags": [],
+                "urls": [],
+                "user_mentions": []
+            },
+            "expanded_url": null,
+            "profile_image_url": "http://a3.twimg.com/profile_images/939283957/e_normal.jpg",
+            "profile_image_url_https": "https://si3.twimg.com/profile_images/939283957/e_normal.jpg",
+            "url": null,
+            "protected": false,
+            "followers_count": 349,
+            "profile_background_color": "ACDED6",
+            "profile_text_color": "ff6a3d",
+            "profile_use_background_image": true,
+            "profile_link_color": "038543",
+            "profile_sidebar_fill_color": "e1bbf0",
+            "profile_sidebar_border_color": "1cc758",
+            "friends_count": 281,
+            "created_at": "Mon May 10 00:54:47 +0000 2010",
+            "favourites_count": 1,
+            "utc_offset": "-14400",
+            "time_zone": "Santiago",
+            "profile_background_image_url": "http://a1.twimg.com/profile_background_images/106463556/3487472232_05ea679f3c.jpg",
+            "profile_background_image_url_https": "https://si1.twimg.com/profile_background_images/106463556/3487472232_05ea679f3c.jpg",
+            "profile_background_tile": true,
+            "notifications": null,
+            "geo_enabled": false,
+            "verified": false,
+            "following": null,
+            "follow_request_sent": false,
+            "statuses_count": 1186,
+            "is_translator": false,
+            "lang": "es",
+            "listed_count": 0,
+            "contributors_enabled": false
+        },
+        "geo": null,
+        "coordinates": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "contributors": null
+    },
+    {
+        "created_at": "Sun May 30 00:31:26 +0000 2010",
+        "id": 15007770000,
+        "id_str": "15007770000",
+        "text": "本日、「SOLAR FREQUENCY 」スガユウスケは13時より90分Playします。  http://www.techno.vc/",
+        "source": "web",
+        "truncated": false,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "entities": {
+            "hashtags": [ ],
+            "urls": [
+                {
+                    "url": "http://www.techno.vc/",
+                    "indices": [
+                        91,
+                        111
+                    ]
+                }
+            ],
+            "user_mentions": [ ]
+        },
+        "favorited": false,
+        "in_reply_to_screen_name": null,
+        "user": {
+            "id": 123203587,
+            "id_str": "123203587",
+            "name": "SilentMusicTW",
+            "screen_name": "SilentMusicTW",
+            "show_all_inline_media": false,
+            "location": null,
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": "柏を中心にTECHNO PARTY 'FUTURETECH'と'BIORIC'を開催しています",
+            "entities": {
+                "hashtags": [],
+                "urls": [],
+                "user_mentions": []
+            },
+            "expanded_url": null,
+            "profile_image_url": "http://a3.twimg.com/profile_images/780902559/35855767_22_normal.jpg",
+            "profile_image_url_https": "https://si3.twimg.com/profile_images/780902559/35855767_22_normal.jpg",
+            "url": "http://www.techno.vc/",
+            "protected": false,
+            "followers_count": 60,
+            "profile_background_color": "9ae4e8",
+            "profile_text_color": "000000",
+            "profile_use_background_image": true,
+            "profile_link_color": "0000ff",
+            "profile_sidebar_fill_color": "e0ff92",
+            "profile_sidebar_border_color": "87bc44",
+            "friends_count": 116,
+            "created_at": "Mon Mar 15 09:56:59 +0000 2010",
+            "favourites_count": 0,
+            "utc_offset": 32400,
+            "time_zone": "Tokyo",
+            "profile_background_image_url": "http://a0.twimg.com/a/1274899949/images/themes/theme1/bg.png",
+            "profile_background_image_url_https": "https://si0.twimg.com/a/1274899949/images/themes/theme1/bg.png",
+            "profile_background_tile": false,
+            "notifications": null,
+            "geo_enabled": false,
+            "verified": false,
+            "following": null,
+            "follow_request_sent": false,
+            "statuses_count": 36,
+            "is_translator": false,
+            "lang": "ja",
+            "listed_count": 0,
+            "contributors_enabled": false
+        },
+        "geo": null,
+        "coordinates": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "contributors": null
+    },
+    {
+        "created_at": "Sun May 30 00:31:25 +0000 2010",
+        "id": 15007769000,
+        "id_str": "15007769000",
+        "text": "justin bieber is sexy",
+        "source": "web",
+        "truncated": false,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "entities": {
+            "hashtags": [ ],
+            "urls": [ ],
+            "user_mentions": [ ]
+        },
+        "favorited": false,
+        "in_reply_to_screen_name": null,
+        "user": {
+            "id": 146108581,
+            "id_str": "146108581",
+            "name": "Dalisa ",
+            "screen_name": "ilovejustinB493",
+            "show_all_inline_media": false,
+            "location": "California",
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": "I love justin bieber and i am training to become a singer",
+            "entities": {
+                "hashtags": [],
+                "urls": [],
+                "user_mentions": []
+            },
+            "expanded_url": null,
+            "profile_image_url": "http://a3.twimg.com/profile_images/939650119/Photo_on_2010-05-28_at_19.44__7_normal.jpg",
+            "profile_image_url_https": "https://si3.twimg.com/profile_images/939650119/Photo_on_2010-05-28_at_19.44__7_normal.jpg",
+            "url": null,
+            "protected": false,
+            "followers_count": 1,
+            "profile_background_color": "642D8B",
+            "profile_text_color": "3D1957",
+            "profile_use_background_image": true,
+            "profile_link_color": "FF0000",
+            "profile_sidebar_fill_color": "7AC3EE",
+            "profile_sidebar_border_color": "65B0DA",
+            "friends_count": 4,
+            "created_at": "Thu May 20 16:25:16 +0000 2010",
+            "favourites_count": 10,
+            "utc_offset": "-28800",
+            "time_zone": "Pacific Time (US &amp; Canada)",
+            "profile_background_image_url": "http://a0.twimg.com/a/1274899949/images/themes/theme10/bg.gif",
+            "profile_background_image_url_https": "https://si0.twimg.com/a/1274899949/images/themes/theme10/bg.gif",
+            "profile_background_tile": true,
+            "notifications": null,
+            "geo_enabled": false,
+            "verified": false,
+            "following": null,
+            "follow_request_sent": false,
+            "statuses_count": 55,
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "contributors_enabled": false
+        },
+        "geo": null,
+        "coordinates": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "contributors": null
+    },
+    {
+        "created_at": "Sun May 30 00:31:22 +0000 2010",
+        "id": 15007767000,
+        "id_str": "15007767000",
+        "text": "Im not there ,missin the slack promotions lol RT @abunny_: @MyKhal - LMAO. you here?. where you at?.",
+        "source": "<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>",
+        "truncated": false,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "entities": {
+            "hashtags": [ ],
+            "urls": [ ],
+            "user_mentions": [
+                {
+                    "id": 237163438,
+                    "id_str": "237163438",
+                    "screen_name": "abunny_",
+                    "name": "annmarie \u2728",
+                    "indices": [
+                        50,
+                        57
+                    ]
+                },
+                {
+                    "id": 30716605,
+                    "id_str": "30716605",
+                    "screen_name": "MyKhal",
+                    "name": "\ue502 MyKhal Angelo",
+                    "indices": [
+                        60,
+                        66
+                    ]
+                }
+            ]
+        },
+        "favorited": false,
+        "in_reply_to_screen_name": null,
+        "user": {
+            "id": 30716605,
+            "id_str": "30716605",
+            "name": "MyKhal Angelo",
+            "screen_name": "MyKhal",
+            "show_all_inline_media": false,
+            "location": "B R O O K L Y N",
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": "If skill could kill then my art might Body Ya !  ",
+            "entities": {
+                "hashtags": [],
+                "urls": [],
+                "user_mentions": []
+            },
+            "expanded_url": null,
+            "profile_image_url": "http://a3.twimg.com/profile_images/643472599/Screen_shot_2010-01-20_at_3.41.00_AM_normal.png",
+            "profile_image_url_https": "https://si3.twimg.com/profile_images/643472599/Screen_shot_2010-01-20_at_3.41.00_AM_normal.png",
+            "url": "http://Www.Grimeyville.Com",
+            "protected": false,
+            "followers_count": 437,
+            "profile_background_color": "000000",
+            "profile_text_color": "050505",
+            "profile_use_background_image": true,
+            "profile_link_color": "545a4d",
+            "profile_sidebar_fill_color": "f4f3f1",
+            "profile_sidebar_border_color": "f4f3f1",
+            "friends_count": 396,
+            "created_at": "Sun Apr 12 20:37:49 +0000 2009",
+            "favourites_count": 88,
+            "utc_offset": "-18000",
+            "time_zone": "Quito",
+            "profile_background_image_url": "http://a3.twimg.com/profile_background_images/80588363/mikey-twitter.gif",
+            "profile_background_image_url_https": "https://si3.twimg.com/profile_background_images/80588363/mikey-twitter.gif",
+            "profile_background_tile": true,
+            "notifications": null,
+            "geo_enabled": false,
+            "verified": false,
+            "following": null,
+            "follow_request_sent": false,
+            "statuses_count": 13284,
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "contributors_enabled": false
+        },
+        "geo": null,
+        "coordinates": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "contributors": null
+    },
+    {
+        "created_at": "Sun May 30 00:31:21 +0000 2010",
+        "id": 15007766000,
+        "id_str": "15007766000",
+        "text": "Uyu Damla uyu sabah kalkılamayacak sanırım :S Uyyykkkuuuuu ZZzzzzzZZZZzzzzzZzZzzZ",
+        "source": "web",
+        "truncated": false,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "entities": {
+            "hashtags": [ ],
+            "urls": [ ],
+            "user_mentions": [ ]
+        },
+        "favorited": false,
+        "in_reply_to_screen_name": null,
+        "user": {
+            "id": 84396856,
+            "id_str": "84396856",
+            "name": "Damla YILMAZ",
+            "screen_name": "yakamozdamla",
+            "show_all_inline_media": false,
+            "location": null,
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": null,
+            "entities": {
+                "hashtags": [],
+                "urls": [],
+                "user_mentions": []
+            },
+            "expanded_url": null,
+            "profile_image_url": "http://a1.twimg.com/profile_images/905579364/GetAttachment_normal.jpg",
+            "profile_image_url_https": "https://si1.twimg.com/profile_images/905579364/GetAttachment_normal.jpg",
+            "url": "http://twitter.com/yakamozdamla",
+            "protected": false,
+            "followers_count": 63,
+            "profile_background_color": "1A1B1F",
+            "profile_text_color": "9c009c",
+            "profile_use_background_image": true,
+            "profile_link_color": 258505,
+            "profile_sidebar_fill_color": 252429,
+            "profile_sidebar_border_color": "181A1E",
+            "friends_count": 53,
+            "created_at": "Thu Oct 22 19:03:22 +0000 2009",
+            "favourites_count": 26,
+            "utc_offset": null,
+            "time_zone": null,
+            "profile_background_image_url": "http://a0.twimg.com/a/1274899949/images/themes/theme9/bg.gif",
+            "profile_background_image_url_https": "https://si0.twimg.com/a/1274899949/images/themes/theme9/bg.gif",
+            "profile_background_tile": false,
+            "notifications": null,
+            "geo_enabled": false,
+            "verified": false,
+            "following": null,
+            "follow_request_sent": false,
+            "statuses_count": 2599,
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "contributors_enabled": false
+        },
+        "geo": null,
+        "coordinates": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "contributors": null
+    },
+    {
+        "created_at": "Sun May 30 00:31:18 +0000 2010",
+        "id": 15007764000,
+        "id_str": "15007764000",
+        "text": "Road sodas :) http://tweetphoto.com/24627509",
+        "source": "<a href=\"http://ubertwitter.com\" rel=\"nofollow\">UberTwitter</a>",
+        "truncated": false,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "entities": {
+            "hashtags": [ ],
+            "urls": [
+                {
+                    "url": "http://tweetphoto.com/24627509",
+                    "indices": [
+                        15,
+                        44
+                    ]
+                }
+            ],
+            "user_mentions": [ ]
+        },
+        "favorited": false,
+        "in_reply_to_screen_name": null,
+        "user": {
+            "id": 16322863,
+            "id_str": "16322863",
+            "name": "HeardREI",
+            "screen_name": "HeardREI",
+            "show_all_inline_media": false,
+            "location": "Georgia",
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": "Name:Reina,3 degrees:Business Administration/Econ,Public Relations, Master of Science in Leadership.Now working on my Ph.D in Psychology!",
+            "entities": {
+                "hashtags": [],
+                "urls": [],
+                "user_mentions": []
+            },
+            "expanded_url": null,
+            "profile_image_url": "http://a3.twimg.com/profile_images/787409701/rei1_normal.jpg",
+            "profile_image_url_https": "https://si3.twimg.com/profile_images/787409701/rei1_normal.jpg",
+            "url": null,
+            "protected": false,
+            "followers_count": 182,
+            "profile_background_color": "FF6699",
+            "profile_text_color": 362720,
+            "profile_use_background_image": true,
+            "profile_link_color": "f2ea3a",
+            "profile_sidebar_fill_color": "E5507E",
+            "profile_sidebar_border_color": "CC3366",
+            "friends_count": 397,
+            "created_at": "Wed Sep 17 03:07:06 +0000 2008",
+            "favourites_count": 0,
+            "utc_offset": "-18000",
+            "time_zone": "Eastern Time (US &amp; Canada)",
+            "profile_background_image_url": "http://a1.twimg.com/profile_background_images/70594212/DSC04739.JPG",
+            "profile_background_image_url_https": "https://si1.twimg.com/profile_background_images/70594212/DSC04739.JPG",
+            "profile_background_tile": true,
+            "notifications": false,
+            "geo_enabled": false,
+            "verified": false,
+            "following": false,
+            "follow_request_sent": false,
+            "statuses_count": 2425,
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "contributors_enabled": false
+        },
+        "geo": null,
+        "coordinates": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "contributors": null
+    },
+    {
+        "created_at": "Sun May 30 00:31:13 +0000 2010",
+        "id": 15007760000,
+        "id_str": "15007760000",
+        "text": "Just got my eyebrows threaded...i forgot how much that crap hurts compared to waxing",
+        "source": "<a href=\"/devices\" rel=\"nofollow\">txt</a>",
+        "truncated": false,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "entities": {
+            "hashtags": [ ],
+            "urls": [ ],
+            "user_mentions": [ ]
+        },
+        "favorited": false,
+        "in_reply_to_screen_name": null,
+        "user": {
+            "id": 74595984,
+            "id_str": "74595984",
+            "name": "taylor robinson",
+            "screen_name": "Taybaybay4",
+            "show_all_inline_media": false,
+            "location": "p_town",
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": "haha you know me! diamondback 4 life",
+            "entities": {
+                "hashtags": [],
+                "urls": [],
+                "user_mentions": []
+            },
+            "expanded_url": null,
+            "profile_image_url": "http://a1.twimg.com/profile_images/444160016/taybaybay_normal.jpg",
+            "profile_image_url_https": "https://si1.twimg.com/profile_images/444160016/taybaybay_normal.jpg",
+            "url": null,
+            "protected": false,
+            "followers_count": 32,
+            "profile_background_color": "000000",
+            "profile_text_color": "000000",
+            "profile_use_background_image": true,
+            "profile_link_color": "ff0090",
+            "profile_sidebar_fill_color": "000000",
+            "profile_sidebar_border_color": "000000",
+            "friends_count": 14,
+            "created_at": "Tue Sep 15 23:53:06 +0000 2009",
+            "favourites_count": 1,
+            "utc_offset": "-32400",
+            "time_zone": "Alaska",
+            "profile_background_image_url": "http://a3.twimg.com/profile_background_images/41293963/dots__.br.jpg",
+            "profile_background_image_url_https": "https://si3.twimg.com/profile_background_images/41293963/dots__.br.jpg",
+            "profile_background_tile": true,
+            "notifications": null,
+            "geo_enabled": false,
+            "verified": false,
+            "following": null,
+            "follow_request_sent": false,
+            "statuses_count": 2737,
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "contributors_enabled": false
+        },
+        "geo": null,
+        "coordinates": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "contributors": null
+    },
+    {
+        "created_at": "Sun May 30 00:31:12 +0000 2010",
+        "id": 15007759000,
+        "id_str": "15007759000",
+        "text": "RT @portrait23: One more unfollower===&amp;gt;@innBloom &amp;lt;smh #damnshame",
+        "source": "<a href=\"http://ubertwitter.com\" rel=\"nofollow\">UberTwitter</a>",
+        "truncated": false,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "entities": {
+            "hashtags": [
+                {
+                    "text": "damnshame",
+                    "indices": [
+                        69,
+                        78
+                    ]
+                }
+            ],
+            "urls": [ ],
+            "user_mentions": [
+                {
+                    "id": 750834726,
+                    "id_str": "750834726",
+                    "screen_name": "portrait23",
+                    "name": "\ucd0c\ub2d8",
+                    "indices": [
+                        4,
+                        14
+                    ]
+                },
+                {
+                    "id": 574135525,
+                    "id_str": "574135525",
+                    "screen_name": "innBloom",
+                    "name": "izzy watson",
+                    "indices": [
+                        47,
+                        55
+                    ]
+                }
+            ]
+        },
+        "favorited": false,
+        "in_reply_to_screen_name": null,
+        "user": {
+            "id": 28163598,
+            "id_str": "28163598",
+            "name": "Miss Lady Q. Johnson",
+            "screen_name": "QueenBorne9",
+            "show_all_inline_media": false,
+            "location": "ÜT: 40.686027,-73.76704",
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": "Complicated, simple, highly intelligent and sarcastic as hell.",
+            "entities": {
+                "hashtags": [],
+                "urls": [],
+                "user_mentions": []
+            },
+            "expanded_url": null,
+            "profile_image_url": "http://a1.twimg.com/profile_images/930692380/109816998_normal.jpg",
+            "profile_image_url_https": "https://si1.twimg.com/profile_images/930692380/109816998_normal.jpg",
+            "url": "http://tweetphoto.com/user/972361",
+            "protected": false,
+            "followers_count": 1401,
+            "profile_background_color": "0a0401",
+            "profile_text_color": "0e35f5",
+            "profile_use_background_image": true,
+            "profile_link_color": "0a0909",
+            "profile_sidebar_fill_color": "dbd0d4",
+            "profile_sidebar_border_color": "c90202",
+            "friends_count": 1361,
+            "created_at": "Wed Apr 01 18:38:14 +0000 2009",
+            "favourites_count": 110,
+            "utc_offset": "-18000",
+            "time_zone": "Eastern Time (US &amp; Canada)",
+            "profile_background_image_url": "http://a1.twimg.com/profile_background_images/79602114/GmasRose2.jpg",
+            "profile_background_image_url_https": "https://si1.twimg.com/profile_background_images/79602114/GmasRose2.jpg",
+            "profile_background_tile": true,
+            "notifications": null,
+            "geo_enabled": false,
+            "verified": false,
+            "following": null,
+            "follow_request_sent": false,
+            "statuses_count": 46598,
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "contributors_enabled": false
+        },
+        "geo": null,
+        "coordinates": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "contributors": null
+    },
+    {
+        "created_at": "Sun May 30 00:31:10 +0000 2010",
+        "id": 15007758000,
+        "id_str": "15007758000",
+        "text": "ALEX MANDAME SALUDOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOS !! TEAMOOOOO! :d (@speitzeroficial live on http://twitcam.com/tmoe))",
+        "source": "<a href=\"http://apiwiki.twitter.com/\" rel=\"nofollow\">API</a>",
+        "truncated": false,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "entities": {
+            "hashtags": [ ],
+            "urls": [
+                {
+                    "url": "http://twitcam.com/tmoe",
+                    "indices": [
+                        95,
+                        117
+                    ]
+                }
+            ],
+            "user_mentions": [ ]
+        },
+        "favorited": false,
+        "in_reply_to_screen_name": null,
+        "user": {
+            "id": 109114456,
+            "id_str": "109114456",
+            "name": "Mari Carmen ",
+            "screen_name": "Magykc",
+            "show_all_inline_media": false,
+            "location": "Crazy land",
+            "description": "soii muii liinda\nztoii bn pinch fumada\njeje ♥I LOVE ME♥",
+            "profile_image_url": "http://a1.twimg.com/profile_images/866514626/Happy0700_normal.jpg",
+            "profile_image_url_https": "https://si1.twimg.com/profile_images/866514626/Happy0700_normal.jpg",
+            "url": null,
+            "protected": false,
+            "followers_count": 24,
+            "profile_background_color": "e31d76",
+            "profile_text_color": "000000",
+            "profile_use_background_image": true,
+            "profile_link_color": "254ec7",
+            "profile_sidebar_fill_color": "ff0558",
+            "profile_sidebar_border_color": "ff0d4a",
+            "friends_count": 213,
+            "created_at": "Thu Jan 28 01:02:37 +0000 2010",
+            "favourites_count": 3,
+            "utc_offset": null,
+            "time_zone": null,
+            "profile_background_image_url": "http://a1.twimg.com/profile_background_images/80836420/colores.jpg",
+            "profile_background_image_url_https": "https://si1.twimg.com/profile_background_images/80836420/colores.jpg",
+            "profile_background_tile": true,
+            "notifications": null,
+            "geo_enabled": false,
+            "verified": false,
+            "following": null,
+            "follow_request_sent": false,
+            "statuses_count": 897,
+            "is_translator": false,
+            "lang": "es",
+            "listed_count": 0,
+            "contributors_enabled": false
+        },
+        "geo": null,
+        "coordinates": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "contributors": null
+    },
+    {
+        "created_at": "Sun May 30 00:31:08 +0000 2010",
+        "id": 15007756000,
+        "id_str": "15007756000",
+        "text": "#MUNDIAL \"Si Palermo es habilidoso yo soy malabarista\"",
+        "source": "web",
+        "truncated": false,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "entities": {
+            "hashtags": [
+                {
+                    "text": "MUDIAL",
+                    "indices": [
+                        1,
+                        8
+                    ]
+                }
+            ],
+            "urls": [ ],
+            "user_mentions": [ ]
+        },
+        "favorited": false,
+        "in_reply_to_screen_name": null,
+        "user": {
+            "id": 83685648,
+            "id_str": "83685648",
+            "name": "NESTOR ARIEL",
+            "screen_name": "NESTOR_ARIEL",
+            "show_all_inline_media": false,
+            "location": "Monte Grande, Buenos Aires",
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": "Amo la expresión, no puedo parar de hacerlo!!!. También me gusta escuchar, lo aprendo cada día más y es hermoso. Amo el arte de la conversación!!!",
+            "entities": {
+                "hashtags": [],
+                "urls": [],
+                "user_mentions": []
+            },
+            "expanded_url": null,
+            "profile_image_url": "http://a1.twimg.com/profile_images/505429704/m_db3c052c1ece4970baf0a67b95150757_normal.jpg",
+            "profile_image_url_https": "https://si1.twimg.com/profile_images/505429704/m_db3c052c1ece4970baf0a67b95150757_normal.jpg",
+            "url": "http://tuexpresasyoexpreso.blogspot.com/",
+            "protected": false,
+            "followers_count": 15,
+            "profile_background_color": "FFF04D",
+            "profile_text_color": 333333,
+            "profile_use_background_image": true,
+            "profile_link_color": "0099CC",
+            "profile_sidebar_fill_color": "f6ffd1",
+            "profile_sidebar_border_color": "fff8ad",
+            "friends_count": 17,
+            "created_at": "Mon Oct 19 20:49:29 +0000 2009",
+            "favourites_count": 1,
+            "utc_offset": "-10800",
+            "time_zone": "Buenos Aires",
+            "profile_background_image_url": "http://a3.twimg.com/profile_background_images/99861997/rosa.jpg",
+            "profile_background_image_url_https": "https://si3.twimg.com/profile_background_images/99861997/rosa.jpg",
+            "profile_background_tile": false,
+            "notifications": null,
+            "geo_enabled": false,
+            "verified": false,
+            "following": null,
+            "follow_request_sent": false,
+            "statuses_count": 514,
+            "is_translator": false,
+            "lang": "es",
+            "listed_count": 0,
+            "contributors_enabled": false
+        },
+        "geo": null,
+        "coordinates": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "contributors": null
+    },
+    {
+        "created_at": "Sun May 30 00:31:06 +0000 2010",
+        "id": 15007755000,
+        "id_str": "15007755000",
+        "text": "830 n my night iz jus about done.... Sleepy as hell so I'm turnin it in early latta twitter-nation",
+        "source": "<a href=\"http://ubertwitter.com\" rel=\"nofollow\">UberTwitter</a>",
+        "truncated": false,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "entities": {
+            "hashtags": [ ],
+            "urls": [ ],
+            "user_mentions": [ ]
+        },
+        "favorited": false,
+        "in_reply_to_screen_name": null,
+        "user": {
+            "id": 131211884,
+            "id_str": "131211884",
+            "name": "Its me",
+            "screen_name": "TheReal_W1nner",
+            "show_all_inline_media": false,
+            "location": "ÜT: 36.7992,-76.003899",
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": "Yea on my twitter grind HHEEAAVVYY... I fukz wit my team #teamfollowback ... Llleettttzzz ggoooo #teamblackberry in the buildin pin:24b15e5a ",
+            "entities": {
+                "hashtags": [],
+                "urls": [],
+                "user_mentions": []
+            },
+            "expanded_url": null,
+            "profile_image_url": "http://a3.twimg.com/profile_images/913144683/IMG00145-20100519-1051_normal.jpg",
+            "profile_image_url_https": "https://si3.twimg.com/profile_images/913144683/IMG00145-20100519-1051_normal.jpg",
+            "url": "http://null",
+            "protected": false,
+            "followers_count": 1012,
+            "profile_background_color": "9ae4e8",
+            "profile_text_color": "000000",
+            "profile_use_background_image": true,
+            "profile_link_color": "0000ff",
+            "profile_sidebar_fill_color": "e0ff92",
+            "profile_sidebar_border_color": "87bc44",
+            "friends_count": 1039,
+            "created_at": "Fri Apr 09 16:15:31 +0000 2010",
+            "favourites_count": 0,
+            "utc_offset": null,
+            "time_zone": null,
+            "profile_background_image_url": "http://a0.twimg.com/a/1274899949/images/themes/theme1/bg.png",
+            "profile_background_image_url_https": "https://si0.twimg.com/a/1274899949/images/themes/theme1/bg.png",
+            "profile_background_tile": false,
+            "notifications": null,
+            "geo_enabled": false,
+            "verified": false,
+            "following": null,
+            "follow_request_sent": false,
+            "statuses_count": 1429,
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "contributors_enabled": false
+        },
+        "geo": null,
+        "coordinates": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "contributors": null
+    },
+    {
+        "created_at": "Sun May 30 00:31:04 +0000 2010",
+        "id": 15007753000,
+        "id_str": "15007753000",
+        "text": "Done and done. Show went so well! The crowd was awesome. Had 2 head home early but we'll be back w/Toby next week in Baltimore.",
+        "source": "<a href=\"http://itunes.apple.com/app/twitter/id333903271?mt=8\" rel=\"nofollow\">Twitter for iPhone</a>",
+        "truncated": false,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "entities": {
+            "hashtags": [ ],
+            "urls": [ ],
+            "user_mentions": [ ]
+        },
+        "favorited": false,
+        "in_reply_to_screen_name": null,
+        "user": {
+            "id": 15972949,
+            "id_str": "15972949",
+            "name": "Carter's Chord",
+            "screen_name": "CartersChord",
+            "show_all_inline_media": false,
+            "location": "Nashville, TN",
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": "recording artists makin' music you should hear",
+            "entities": {
+                "hashtags": [],
+                "urls": [],
+                "user_mentions": []
+            },
+            "expanded_url": null,
+            "profile_image_url": "http://a3.twimg.com/profile_images/615208191/19548_239204716217_7475971217_3779790_317186_n_normal.jpg",
+            "profile_image_url_https": "https://si3.twimg.com/profile_images/615208191/19548_239204716217_7475971217_3779790_317186_n_normal.jpg",
+            "url": "http://carterschord.com",
+            "protected": false,
+            "followers_count": 836,
+            "profile_background_color": "fbebd2",
+            "profile_text_color": 919191,
+            "profile_use_background_image": true,
+            "profile_link_color": "dd002c",
+            "profile_sidebar_fill_color": "3c193f",
+            "profile_sidebar_border_color": "36173f",
+            "friends_count": 80,
+            "created_at": "Sun Aug 24 21:33:33 +0000 2008",
+            "favourites_count": 1,
+            "utc_offset": "-21600",
+            "time_zone": "Central Time (US &amp; Canada)",
+            "profile_background_image_url": "http://a0.twimg.com/a/1274144130/images/themes/theme8/bg.gif",
+            "profile_background_image_url_https": "https://si0.twimg.com/a/1274144130/images/themes/theme8/bg.gif",
+            "profile_background_tile": false,
+            "notifications": false,
+            "geo_enabled": false,
+            "verified": false,
+            "following": false,
+            "follow_request_sent": false,
+            "statuses_count": 744,
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "contributors_enabled": false
+        },
+        "geo": null,
+        "coordinates": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "contributors": null
+    },
+    {
+        "created_at": "Sun May 30 00:31:02 +0000 2010",
+        "id": 15007752000,
+        "id_str": "15007752000",
+        "text": "http://dld.bz/dGt5 Does self-checkout actually save you any money?",
+        "source": "<a href=\"http://www.socialoomph.com\" rel=\"nofollow\">SocialOomph</a>",
+        "truncated": false,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "entities": {
+            "hashtags": [ ],
+            "urls": [
+                {
+                    "url": "http://dld.bz/dGt5",
+                    "indices": [
+                        1,
+                        18
+                    ]
+                }
+            ],
+            "user_mentions": [ ]
+        },
+        "favorited": false,
+        "in_reply_to_screen_name": null,
+        "user": {
+            "id": 141693017,
+            "id_str": "141693017",
+            "name": "CodyNew",
+            "screen_name": "CodyWrites2",
+            "show_all_inline_media": false,
+            "location": null,
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": null,
+            "entities": {
+                "hashtags": [],
+                "urls": [],
+                "user_mentions": []
+            },
+            "expanded_url": null,
+            "profile_image_url": "http://a0.twimg.com/a/1274144130/images/default_profile_4_normal.png",
+            "profile_image_url_https": "https://si0.twimg.com/a/1274144130/images/default_profile_4_normal.png",
+            "url": null,
+            "protected": false,
+            "followers_count": 225,
+            "profile_background_color": "9ae4e8",
+            "profile_text_color": "000000",
+            "profile_use_background_image": true,
+            "profile_link_color": "0000ff",
+            "profile_sidebar_fill_color": "e0ff92",
+            "profile_sidebar_border_color": "87bc44",
+            "friends_count": 234,
+            "created_at": "Sat May 08 19:23:26 +0000 2010",
+            "favourites_count": 0,
+            "utc_offset": null,
+            "time_zone": null,
+            "profile_background_image_url": "http://a0.twimg.com/a/1274144130/images/themes/theme1/bg.png",
+            "profile_background_image_url_https": "https://si0.twimg.com/a/1274144130/images/themes/theme1/bg.png",
+            "profile_background_tile": false,
+            "notifications": null,
+            "geo_enabled": false,
+            "verified": false,
+            "following": null,
+            "follow_request_sent": false,
+            "statuses_count": 4815,
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "contributors_enabled": false
+        },
+        "geo": null,
+        "coordinates": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "contributors": null
+    },
+    {
+        "created_at": "Sun May 30 00:31:01 +0000 2010",
+        "id": 15007751000,
+        "id_str": "15007751000",
+        "text": "Who tryna do something...I'm bored.lol",
+        "source": "web",
+        "truncated": false,
+        "in_reply_to_status_id": null,
+        "in_reply_to_status_id_str": null,
+        "in_reply_to_user_id": null,
+        "in_reply_to_user_id_str": null,
+        "entities": {
+            "hashtags": [ ],
+            "urls": [ ],
+            "user_mentions": [ ]
+        },
+        "favorited": false,
+        "in_reply_to_screen_name": null,
+        "user": {
+            "id": 140059643,
+            "id_str": "140059643",
+            "name": "Greg Mandall",
+            "screen_name": "cizinevyxul",
+            "show_all_inline_media": false,
+            "location": "Brissy",
+            "default_profile": false,
+            "default_profile_image": false,
+            "description": "Guitarist for Autumn Heartache D",
+            "entities": {
+                "hashtags": [],
+                "urls": [],
+                "user_mentions": []
+            },
+            "expanded_url": null,
+            "profile_image_url": "http://a1.twimg.com/profile_images/941686188/GHTNKx_normal.jpg",
+            "profile_image_url_https": "https://si1.twimg.com/profile_images/941686188/GHTNKx_normal.jpg",
+            "url": null,
+            "protected": false,
+            "followers_count": 15,
+            "profile_background_color": "9ae4e8",
+            "profile_text_color": "000000",
+            "profile_use_background_image": true,
+            "profile_link_color": "0000ff",
+            "profile_sidebar_fill_color": "e0ff92",
+            "profile_sidebar_border_color": "87bc44",
+            "friends_count": 85,
+            "created_at": "Tue May 04 13:05:41 +0000 2010",
+            "favourites_count": 0,
+            "utc_offset": null,
+            "time_zone": null,
+            "profile_background_image_url": "http://a0.twimg.com/a/1274899949/images/themes/theme1/bg.png",
+            "profile_background_image_url_https": "https://si0.twimg.com/a/1274899949/images/themes/theme1/bg.png",
+            "profile_background_tile": false,
+            "notifications": null,
+            "geo_enabled": false,
+            "verified": false,
+            "following": null,
+            "follow_request_sent": false,
+            "statuses_count": 28,
+            "is_translator": false,
+            "lang": "en",
+            "listed_count": 0,
+            "contributors_enabled": false
+        },
+        "geo": null,
+        "coordinates": null,
+        "place": null,
+        "retweet_count": 0,
+        "retweeted": false,
+        "contributors": null
+    }
+]

+ 89 - 0
tests/Zend/Service/Twitter/_files/statuses.show.json

@@ -0,0 +1,89 @@
+{
+  "created_at":"Fri Mar 01 16:36:36 +0000 2013",
+  "id":307529814640840705,
+  "id_str":"307529814640840705",
+  "text":"To those who write docs for APIs: please alphabetize properties\/members\/whatever. So hard to compare when they\u0027re unordered.",
+  "source":"\u003Ca href=\u0022http:\/\/hotot.org\u0022 rel=\u0022nofollow\u0022\u003EHotot for Chrome\u003C\/a\u003E",
+  "truncated":false,
+  "in_reply_to_status_id":null,
+  "in_reply_to_status_id_str":null,
+  "in_reply_to_user_id":null,
+  "in_reply_to_user_id_str":null,
+  "in_reply_to_screen_name":null,
+  "user":{
+    "id":9453382,
+    "id_str":"9453382",
+    "name":"weierophinney",
+    "screen_name":"mwop",
+    "location":"Sioux Falls, SD",
+    "description":"PHP and ZF Developer; crazed father of two.",
+    "url":"http:\/\/mwop.net\/",
+    "entities":{
+      "url":{
+        "urls":[
+          {
+            "url":"http:\/\/mwop.net\/",
+            "expanded_url":null,
+            "indices":[
+              0,
+              16
+            ]
+          }
+        ]
+      },
+      "description":{
+        "urls":[
+
+        ]
+      }
+    },
+    "protected":false,
+    "followers_count":6358,
+    "friends_count":191,
+    "listed_count":610,
+    "created_at":"Mon Oct 15 11:34:13 +0000 2007",
+    "favourites_count":357,
+    "utc_offset":3600,
+    "time_zone":"Brussels",
+    "geo_enabled":false,
+    "verified":false,
+    "statuses_count":13278,
+    "lang":"en",
+    "contributors_enabled":false,
+    "is_translator":false,
+    "profile_background_color":"352726",
+    "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme5\/bg.gif",
+    "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif",
+    "profile_background_tile":false,
+    "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+    "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+    "profile_link_color":"D02B55",
+    "profile_sidebar_border_color":"829D5E",
+    "profile_sidebar_fill_color":"99CC33",
+    "profile_text_color":"3E4415",
+    "profile_use_background_image":true,
+    "default_profile":false,
+    "default_profile_image":false,
+    "following":false,
+    "follow_request_sent":false,
+    "notifications":false
+  },
+  "geo":null,
+  "coordinates":null,
+  "place":null,
+  "contributors":null,
+  "retweet_count":3,
+  "entities":{
+    "hashtags":[
+
+    ],
+    "urls":[
+
+    ],
+    "user_mentions":[
+
+    ]
+  },
+  "favorited":false,
+  "retweeted":false
+}

+ 0 - 46
tests/Zend/Service/Twitter/_files/statuses.show.xml

@@ -1,46 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<status>
-  <created_at>Sun May 30 13:48:40 +0000 2010</created_at>
-  <id>15042159587</id>
-  <text>Test Message 1</text>
-  <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>9075802</id>
-    <name>Pádraic Brady</name>
-    <screen_name>padraicb</screen_name>
-    <location>Dublin, Ireland, Europe!</location>
-    <description>PHP Developer, Open Source Contributor, and FS Audit Consultant</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/374757042/twitterProfilePhoto_normal.jpg</profile_image_url>
-    <url>http://blog.astrumfutura.com</url>
-    <protected>false</protected>
-    <followers_count>847</followers_count>
-    <profile_background_color>022330</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>0084B4</profile_link_color>
-    <profile_sidebar_fill_color>C0DFEC</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>a8c7f7</profile_sidebar_border_color>
-    <friends_count>469</friends_count>
-    <created_at>Mon Sep 24 19:35:22 +0000 2007</created_at>
-    <favourites_count>20</favourites_count>
-    <utc_offset>0</utc_offset>
-    <time_zone>Dublin</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme15/bg.png</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>false</following>
-    <statuses_count>5929</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>

+ 89 - 0
tests/Zend/Service/Twitter/_files/statuses.update.json

@@ -0,0 +1,89 @@
+{
+  "created_at":"Fri Mar 01 16:36:36 +0000 2013",
+  "id":307529814640840705,
+  "id_str":"307529814640840705",
+  "text":"To those who write docs for APIs: please alphabetize properties\/members\/whatever. So hard to compare when they\u0027re unordered.",
+  "source":"\u003Ca href=\u0022http:\/\/hotot.org\u0022 rel=\u0022nofollow\u0022\u003EHotot for Chrome\u003C\/a\u003E",
+  "truncated":false,
+  "in_reply_to_status_id":null,
+  "in_reply_to_status_id_str":null,
+  "in_reply_to_user_id":null,
+  "in_reply_to_user_id_str":null,
+  "in_reply_to_screen_name":null,
+  "user":{
+    "id":9453382,
+    "id_str":"9453382",
+    "name":"weierophinney",
+    "screen_name":"mwop",
+    "location":"Sioux Falls, SD",
+    "description":"PHP and ZF Developer; crazed father of two.",
+    "url":"http:\/\/mwop.net\/",
+    "entities":{
+      "url":{
+        "urls":[
+          {
+            "url":"http:\/\/mwop.net\/",
+            "expanded_url":null,
+            "indices":[
+              0,
+              16
+            ]
+          }
+        ]
+      },
+      "description":{
+        "urls":[
+
+        ]
+      }
+    },
+    "protected":false,
+    "followers_count":6358,
+    "friends_count":191,
+    "listed_count":610,
+    "created_at":"Mon Oct 15 11:34:13 +0000 2007",
+    "favourites_count":357,
+    "utc_offset":3600,
+    "time_zone":"Brussels",
+    "geo_enabled":false,
+    "verified":false,
+    "statuses_count":13278,
+    "lang":"en",
+    "contributors_enabled":false,
+    "is_translator":false,
+    "profile_background_color":"352726",
+    "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme5\/bg.gif",
+    "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif",
+    "profile_background_tile":false,
+    "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+    "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+    "profile_link_color":"D02B55",
+    "profile_sidebar_border_color":"829D5E",
+    "profile_sidebar_fill_color":"99CC33",
+    "profile_text_color":"3E4415",
+    "profile_use_background_image":true,
+    "default_profile":false,
+    "default_profile_image":false,
+    "following":false,
+    "follow_request_sent":false,
+    "notifications":false
+  },
+  "geo":null,
+  "coordinates":null,
+  "place":null,
+  "contributors":null,
+  "retweet_count":3,
+  "entities":{
+    "hashtags":[
+
+    ],
+    "urls":[
+
+    ],
+    "user_mentions":[
+
+    ]
+  },
+  "favorited":false,
+  "retweeted":false
+}

+ 0 - 46
tests/Zend/Service/Twitter/_files/statuses.update.xml

@@ -1,46 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<status>
-  <created_at>Sun May 30 13:48:40 +0000 2010</created_at>
-  <id>15042159587</id>
-  <text>Test Message 1</text>
-  <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>9075802</id>
-    <name>Pádraic Brady</name>
-    <screen_name>padraicb</screen_name>
-    <location>Dublin, Ireland, Europe!</location>
-    <description>PHP Developer, Open Source Contributor, and FS Audit Consultant</description>
-    <profile_image_url>http://a1.twimg.com/profile_images/374757042/twitterProfilePhoto_normal.jpg</profile_image_url>
-    <url>http://blog.astrumfutura.com</url>
-    <protected>false</protected>
-    <followers_count>847</followers_count>
-    <profile_background_color>022330</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>0084B4</profile_link_color>
-    <profile_sidebar_fill_color>C0DFEC</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>a8c7f7</profile_sidebar_border_color>
-    <friends_count>469</friends_count>
-    <created_at>Mon Sep 24 19:35:22 +0000 2007</created_at>
-    <favourites_count>20</favourites_count>
-    <utc_offset>0</utc_offset>
-    <time_zone>Dublin</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme15/bg.png</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>false</verified>
-    <following>false</following>
-    <statuses_count>5929</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>false</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>

+ 2454 - 0
tests/Zend/Service/Twitter/_files/statuses.user_timeline.mwop.json

@@ -0,0 +1,2454 @@
+[
+  {
+    "created_at":"Mon Mar 04 22:01:32 +0000 2013",
+    "id":308698753609646081,
+    "id_str":"308698753609646081",
+    "text":"I think Twitter has been deliberately vague about how to create the oauth_signature for its headers.",
+    "source":"\u003Ca href=\u0022http:\/\/hotot.org\u0022 rel=\u0022nofollow\u0022\u003EHotot for Chrome\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":null,
+    "in_reply_to_status_id_str":null,
+    "in_reply_to_user_id":null,
+    "in_reply_to_user_id_str":null,
+    "in_reply_to_screen_name":null,
+    "user":{
+      "id":9453382,
+      "id_str":"9453382",
+      "name":"weierophinney",
+      "screen_name":"mwop",
+      "location":"Sioux Falls, SD",
+      "description":"PHP and ZF Developer; crazed father of two.",
+      "url":"http:\/\/mwop.net\/",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/mwop.net\/",
+              "expanded_url":null,
+              "indices":[
+                0,
+                16
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":6358,
+      "friends_count":191,
+      "listed_count":610,
+      "created_at":"Mon Oct 15 11:34:13 +0000 2007",
+      "favourites_count":357,
+      "utc_offset":3600,
+      "time_zone":"Brussels",
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":13279,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"352726",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_link_color":"D02B55",
+      "profile_sidebar_border_color":"829D5E",
+      "profile_sidebar_fill_color":"99CC33",
+      "profile_text_color":"3E4415",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":false,
+      "follow_request_sent":false,
+      "notifications":false
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Mon Mar 04 21:05:50 +0000 2013",
+    "id":308684734299525120,
+    "id_str":"308684734299525120",
+    "text":"RT @ralphschindler: Got old #php code you still need to convert to namespaces? Give this tool a try: https:\/\/t.co\/Vtc8wOyuds (works on # ...",
+    "source":"\u003Ca href=\u0022http:\/\/hotot.org\u0022 rel=\u0022nofollow\u0022\u003EHotot for Chrome\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":null,
+    "in_reply_to_status_id_str":null,
+    "in_reply_to_user_id":null,
+    "in_reply_to_user_id_str":null,
+    "in_reply_to_screen_name":null,
+    "user":{
+      "id":9453382,
+      "id_str":"9453382",
+      "name":"weierophinney",
+      "screen_name":"mwop",
+      "location":"Sioux Falls, SD",
+      "description":"PHP and ZF Developer; crazed father of two.",
+      "url":"http:\/\/mwop.net\/",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/mwop.net\/",
+              "expanded_url":null,
+              "indices":[
+                0,
+                16
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":6358,
+      "friends_count":191,
+      "listed_count":610,
+      "created_at":"Mon Oct 15 11:34:13 +0000 2007",
+      "favourites_count":357,
+      "utc_offset":3600,
+      "time_zone":"Brussels",
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":13279,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"352726",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_link_color":"D02B55",
+      "profile_sidebar_border_color":"829D5E",
+      "profile_sidebar_fill_color":"99CC33",
+      "profile_text_color":"3E4415",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":false,
+      "follow_request_sent":false,
+      "notifications":false
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweeted_status":{
+      "created_at":"Mon Mar 04 21:01:16 +0000 2013",
+      "id":308683586461110272,
+      "id_str":"308683586461110272",
+      "text":"Got old #php code you still need to convert to namespaces? Give this tool a try: https:\/\/t.co\/Vtc8wOyuds (works on #ZF1 projects too!)",
+      "source":"\u003Ca href=\u0022http:\/\/www.tweetdeck.com\u0022 rel=\u0022nofollow\u0022\u003ETweetDeck\u003C\/a\u003E",
+      "truncated":false,
+      "in_reply_to_status_id":null,
+      "in_reply_to_status_id_str":null,
+      "in_reply_to_user_id":null,
+      "in_reply_to_user_id_str":null,
+      "in_reply_to_screen_name":null,
+      "user":{
+        "id":13209052,
+        "id_str":"13209052",
+        "name":"Ralph Schindler",
+        "screen_name":"ralphschindler",
+        "location":"New Orleans, LA",
+        "description":"PHP Developer, Zender, ZFer, Hiker, Professional Eater, Nerd.",
+        "url":"http:\/\/ralphschindler.com",
+        "entities":{
+          "url":{
+            "urls":[
+              {
+                "url":"http:\/\/ralphschindler.com",
+                "expanded_url":null,
+                "indices":[
+                  0,
+                  25
+                ]
+              }
+            ]
+          },
+          "description":{
+            "urls":[
+
+            ]
+          }
+        },
+        "protected":false,
+        "followers_count":2692,
+        "friends_count":328,
+        "listed_count":259,
+        "created_at":"Thu Feb 07 16:07:55 +0000 2008",
+        "favourites_count":0,
+        "utc_offset":-21600,
+        "time_zone":"Central Time (US \u0026 Canada)",
+        "geo_enabled":false,
+        "verified":false,
+        "statuses_count":1729,
+        "lang":"en",
+        "contributors_enabled":false,
+        "is_translator":false,
+        "profile_background_color":"C0DEED",
+        "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png",
+        "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png",
+        "profile_background_tile":false,
+        "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2218255450\/_DSC4891_normal.jpg",
+        "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2218255450\/_DSC4891_normal.jpg",
+        "profile_link_color":"0084B4",
+        "profile_sidebar_border_color":"C0DEED",
+        "profile_sidebar_fill_color":"DDEEF6",
+        "profile_text_color":"333333",
+        "profile_use_background_image":true,
+        "default_profile":true,
+        "default_profile_image":false,
+        "following":null,
+        "follow_request_sent":false,
+        "notifications":null
+      },
+      "geo":null,
+      "coordinates":null,
+      "place":null,
+      "contributors":null,
+      "retweet_count":13,
+      "entities":{
+        "hashtags":[
+          {
+            "text":"php",
+            "indices":[
+              8,
+              12
+            ]
+          },
+          {
+            "text":"ZF1",
+            "indices":[
+              115,
+              119
+            ]
+          }
+        ],
+        "urls":[
+          {
+            "url":"https:\/\/t.co\/Vtc8wOyuds",
+            "expanded_url":"https:\/\/github.com\/ralphschindler\/Namespacer",
+            "display_url":"github.com\/ralphschindler\u2026",
+            "indices":[
+              81,
+              104
+            ]
+          }
+        ],
+        "user_mentions":[
+
+        ]
+      },
+      "favorited":false,
+      "retweeted":false,
+      "possibly_sensitive":false
+    },
+    "retweet_count":13,
+    "entities":{
+      "hashtags":[
+        {
+          "text":"php",
+          "indices":[
+            28,
+            32
+          ]
+        }
+      ],
+      "urls":[
+        {
+          "url":"https:\/\/t.co\/Vtc8wOyuds",
+          "expanded_url":"https:\/\/github.com\/ralphschindler\/Namespacer",
+          "display_url":"github.com\/ralphschindler\u2026",
+          "indices":[
+            101,
+            124
+          ]
+        }
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"ralphschindler",
+          "name":"Ralph Schindler",
+          "id":13209052,
+          "id_str":"13209052",
+          "indices":[
+            3,
+            18
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false,
+    "possibly_sensitive":false
+  },
+  {
+    "created_at":"Mon Mar 04 21:05:36 +0000 2013",
+    "id":308684676262928384,
+    "id_str":"308684676262928384",
+    "text":"@tswicegood Something\u0027s messed up with that; quite some number in the top 20 are now no longer on that list.",
+    "source":"\u003Ca href=\u0022http:\/\/hotot.org\u0022 rel=\u0022nofollow\u0022\u003EHotot for Chrome\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":308681699364052992,
+    "in_reply_to_status_id_str":"308681699364052992",
+    "in_reply_to_user_id":9478892,
+    "in_reply_to_user_id_str":"9478892",
+    "in_reply_to_screen_name":"tswicegood",
+    "user":{
+      "id":9453382,
+      "id_str":"9453382",
+      "name":"weierophinney",
+      "screen_name":"mwop",
+      "location":"Sioux Falls, SD",
+      "description":"PHP and ZF Developer; crazed father of two.",
+      "url":"http:\/\/mwop.net\/",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/mwop.net\/",
+              "expanded_url":null,
+              "indices":[
+                0,
+                16
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":6358,
+      "friends_count":191,
+      "listed_count":610,
+      "created_at":"Mon Oct 15 11:34:13 +0000 2007",
+      "favourites_count":357,
+      "utc_offset":3600,
+      "time_zone":"Brussels",
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":13279,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"352726",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_link_color":"D02B55",
+      "profile_sidebar_border_color":"829D5E",
+      "profile_sidebar_fill_color":"99CC33",
+      "profile_text_color":"3E4415",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":false,
+      "follow_request_sent":false,
+      "notifications":false
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"tswicegood",
+          "name":"Travis Swicegood",
+          "id":9478892,
+          "id_str":"9478892",
+          "indices":[
+            0,
+            11
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Mon Mar 04 19:39:03 +0000 2013",
+    "id":308662893719744512,
+    "id_str":"308662893719744512",
+    "text":"@gabriel403 Will have some availability tomorrow; ping me when you see me.",
+    "source":"\u003Ca href=\u0022http:\/\/hotot.org\u0022 rel=\u0022nofollow\u0022\u003EHotot for Chrome\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":308661108670095361,
+    "in_reply_to_status_id_str":"308661108670095361",
+    "in_reply_to_user_id":45822226,
+    "in_reply_to_user_id_str":"45822226",
+    "in_reply_to_screen_name":"gabriel403",
+    "user":{
+      "id":9453382,
+      "id_str":"9453382",
+      "name":"weierophinney",
+      "screen_name":"mwop",
+      "location":"Sioux Falls, SD",
+      "description":"PHP and ZF Developer; crazed father of two.",
+      "url":"http:\/\/mwop.net\/",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/mwop.net\/",
+              "expanded_url":null,
+              "indices":[
+                0,
+                16
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":6358,
+      "friends_count":191,
+      "listed_count":610,
+      "created_at":"Mon Oct 15 11:34:13 +0000 2007",
+      "favourites_count":357,
+      "utc_offset":3600,
+      "time_zone":"Brussels",
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":13279,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"352726",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_link_color":"D02B55",
+      "profile_sidebar_border_color":"829D5E",
+      "profile_sidebar_fill_color":"99CC33",
+      "profile_text_color":"3E4415",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":false,
+      "follow_request_sent":false,
+      "notifications":false
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"gabriel403",
+          "name":"Gabriel Baker",
+          "id":45822226,
+          "id_str":"45822226",
+          "indices":[
+            0,
+            11
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Mon Mar 04 18:16:56 +0000 2013",
+    "id":308642228635578368,
+    "id_str":"308642228635578368",
+    "text":"@mwillbanks Online. :-) Subscribe to the vimcasts RSS feed so you can see when @nelstrom announces the next one. :)",
+    "source":"\u003Ca href=\u0022http:\/\/hotot.org\u0022 rel=\u0022nofollow\u0022\u003EHotot for Chrome\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":308640205311729664,
+    "in_reply_to_status_id_str":"308640205311729664",
+    "in_reply_to_user_id":18636940,
+    "in_reply_to_user_id_str":"18636940",
+    "in_reply_to_screen_name":"mwillbanks",
+    "user":{
+      "id":9453382,
+      "id_str":"9453382",
+      "name":"weierophinney",
+      "screen_name":"mwop",
+      "location":"Sioux Falls, SD",
+      "description":"PHP and ZF Developer; crazed father of two.",
+      "url":"http:\/\/mwop.net\/",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/mwop.net\/",
+              "expanded_url":null,
+              "indices":[
+                0,
+                16
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":6358,
+      "friends_count":191,
+      "listed_count":610,
+      "created_at":"Mon Oct 15 11:34:13 +0000 2007",
+      "favourites_count":357,
+      "utc_offset":3600,
+      "time_zone":"Brussels",
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":13279,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"352726",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_link_color":"D02B55",
+      "profile_sidebar_border_color":"829D5E",
+      "profile_sidebar_fill_color":"99CC33",
+      "profile_text_color":"3E4415",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":false,
+      "follow_request_sent":false,
+      "notifications":false
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"mwillbanks",
+          "name":"Mike Willbanks",
+          "id":18636940,
+          "id_str":"18636940",
+          "indices":[
+            0,
+            11
+          ]
+        },
+        {
+          "screen_name":"nelstrom",
+          "name":"Drew Neil",
+          "id":9252942,
+          "id_str":"9252942",
+          "indices":[
+            79,
+            88
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Mon Mar 04 16:56:44 +0000 2013",
+    "id":308622045367898113,
+    "id_str":"308622045367898113",
+    "text":"Just starting the #Vim masterclass with @nelstrom - can\u0027t wait to see what tips\/tricks\/tools I pick up today!",
+    "source":"\u003Ca href=\u0022http:\/\/hotot.org\u0022 rel=\u0022nofollow\u0022\u003EHotot for Chrome\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":null,
+    "in_reply_to_status_id_str":null,
+    "in_reply_to_user_id":null,
+    "in_reply_to_user_id_str":null,
+    "in_reply_to_screen_name":null,
+    "user":{
+      "id":9453382,
+      "id_str":"9453382",
+      "name":"weierophinney",
+      "screen_name":"mwop",
+      "location":"Sioux Falls, SD",
+      "description":"PHP and ZF Developer; crazed father of two.",
+      "url":"http:\/\/mwop.net\/",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/mwop.net\/",
+              "expanded_url":null,
+              "indices":[
+                0,
+                16
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":6358,
+      "friends_count":191,
+      "listed_count":610,
+      "created_at":"Mon Oct 15 11:34:13 +0000 2007",
+      "favourites_count":357,
+      "utc_offset":3600,
+      "time_zone":"Brussels",
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":13279,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"352726",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_link_color":"D02B55",
+      "profile_sidebar_border_color":"829D5E",
+      "profile_sidebar_fill_color":"99CC33",
+      "profile_text_color":"3E4415",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":false,
+      "follow_request_sent":false,
+      "notifications":false
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+        {
+          "text":"Vim",
+          "indices":[
+            18,
+            22
+          ]
+        }
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"nelstrom",
+          "name":"Drew Neil",
+          "id":9252942,
+          "id_str":"9252942",
+          "indices":[
+            40,
+            49
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Mon Mar 04 16:30:20 +0000 2013",
+    "id":308615401036738560,
+    "id_str":"308615401036738560",
+    "text":"RT @MisfitGeek: The Growing PHP Community \u2013 Meet Shishir Chakraborty- http:\/\/t.co\/mKGgbfE7Oy",
+    "source":"\u003Ca href=\u0022http:\/\/hotot.org\u0022 rel=\u0022nofollow\u0022\u003EHotot for Chrome\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":null,
+    "in_reply_to_status_id_str":null,
+    "in_reply_to_user_id":null,
+    "in_reply_to_user_id_str":null,
+    "in_reply_to_screen_name":null,
+    "user":{
+      "id":9453382,
+      "id_str":"9453382",
+      "name":"weierophinney",
+      "screen_name":"mwop",
+      "location":"Sioux Falls, SD",
+      "description":"PHP and ZF Developer; crazed father of two.",
+      "url":"http:\/\/mwop.net\/",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/mwop.net\/",
+              "expanded_url":null,
+              "indices":[
+                0,
+                16
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":6358,
+      "friends_count":191,
+      "listed_count":610,
+      "created_at":"Mon Oct 15 11:34:13 +0000 2007",
+      "favourites_count":357,
+      "utc_offset":3600,
+      "time_zone":"Brussels",
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":13279,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"352726",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_link_color":"D02B55",
+      "profile_sidebar_border_color":"829D5E",
+      "profile_sidebar_fill_color":"99CC33",
+      "profile_text_color":"3E4415",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":false,
+      "follow_request_sent":false,
+      "notifications":false
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweeted_status":{
+      "created_at":"Mon Mar 04 16:25:08 +0000 2013",
+      "id":308614096075493378,
+      "id_str":"308614096075493378",
+      "text":"The Growing PHP Community \u2013 Meet Shishir Chakraborty- http:\/\/t.co\/mKGgbfE7Oy",
+      "source":"\u003Ca href=\u0022http:\/\/www.tweetdeck.com\u0022 rel=\u0022nofollow\u0022\u003ETweetDeck\u003C\/a\u003E",
+      "truncated":false,
+      "in_reply_to_status_id":null,
+      "in_reply_to_status_id_str":null,
+      "in_reply_to_user_id":null,
+      "in_reply_to_user_id_str":null,
+      "in_reply_to_screen_name":null,
+      "user":{
+        "id":9321012,
+        "id_str":"9321012",
+        "name":"Joe Stagner",
+        "screen_name":"MisfitGeek",
+        "location":"USA - Zend !",
+        "description":"Building Web Apps and Strategies since 1993 - Currently PHP !",
+        "url":"http:\/\/www.MisfitGeek.com",
+        "entities":{
+          "url":{
+            "urls":[
+              {
+                "url":"http:\/\/www.MisfitGeek.com",
+                "expanded_url":null,
+                "indices":[
+                  0,
+                  25
+                ]
+              }
+            ]
+          },
+          "description":{
+            "urls":[
+
+            ]
+          }
+        },
+        "protected":false,
+        "followers_count":5515,
+        "friends_count":1513,
+        "listed_count":450,
+        "created_at":"Tue Oct 09 02:52:01 +0000 2007",
+        "favourites_count":7,
+        "utc_offset":-18000,
+        "time_zone":"Eastern Time (US \u0026 Canada)",
+        "geo_enabled":false,
+        "verified":false,
+        "statuses_count":12096,
+        "lang":"en",
+        "contributors_enabled":false,
+        "is_translator":false,
+        "profile_background_color":"C0DEED",
+        "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png",
+        "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png",
+        "profile_background_tile":false,
+        "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2204148489\/JoeStagner-HTML5_normal.png",
+        "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2204148489\/JoeStagner-HTML5_normal.png",
+        "profile_link_color":"0084B4",
+        "profile_sidebar_border_color":"C0DEED",
+        "profile_sidebar_fill_color":"DDEEF6",
+        "profile_text_color":"333333",
+        "profile_use_background_image":true,
+        "default_profile":true,
+        "default_profile_image":false,
+        "following":null,
+        "follow_request_sent":false,
+        "notifications":null
+      },
+      "geo":null,
+      "coordinates":null,
+      "place":null,
+      "contributors":null,
+      "retweet_count":3,
+      "entities":{
+        "hashtags":[
+
+        ],
+        "urls":[
+          {
+            "url":"http:\/\/t.co\/mKGgbfE7Oy",
+            "expanded_url":"http:\/\/devzone.zend.com\/2818\/the-growing-php-community-meet-shishir-chakraborty\/",
+            "display_url":"devzone.zend.com\/2818\/the-growi\u2026",
+            "indices":[
+              54,
+              76
+            ]
+          }
+        ],
+        "user_mentions":[
+
+        ]
+      },
+      "favorited":false,
+      "retweeted":false,
+      "possibly_sensitive":false
+    },
+    "retweet_count":3,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+        {
+          "url":"http:\/\/t.co\/mKGgbfE7Oy",
+          "expanded_url":"http:\/\/devzone.zend.com\/2818\/the-growing-php-community-meet-shishir-chakraborty\/",
+          "display_url":"devzone.zend.com\/2818\/the-growi\u2026",
+          "indices":[
+            70,
+            92
+          ]
+        }
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"MisfitGeek",
+          "name":"Joe Stagner",
+          "id":9321012,
+          "id_str":"9321012",
+          "indices":[
+            3,
+            14
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false,
+    "possibly_sensitive":false
+  },
+  {
+    "created_at":"Mon Mar 04 14:50:31 +0000 2013",
+    "id":308590284353196032,
+    "id_str":"308590284353196032",
+    "text":"RT @grmpyprogrammer: IT\u0027S LIVE http:\/\/t.co\/OgkikLWSHd",
+    "source":"\u003Ca href=\u0022http:\/\/hotot.org\u0022 rel=\u0022nofollow\u0022\u003EHotot for Chrome\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":null,
+    "in_reply_to_status_id_str":null,
+    "in_reply_to_user_id":null,
+    "in_reply_to_user_id_str":null,
+    "in_reply_to_screen_name":null,
+    "user":{
+      "id":9453382,
+      "id_str":"9453382",
+      "name":"weierophinney",
+      "screen_name":"mwop",
+      "location":"Sioux Falls, SD",
+      "description":"PHP and ZF Developer; crazed father of two.",
+      "url":"http:\/\/mwop.net\/",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/mwop.net\/",
+              "expanded_url":null,
+              "indices":[
+                0,
+                16
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":6358,
+      "friends_count":191,
+      "listed_count":610,
+      "created_at":"Mon Oct 15 11:34:13 +0000 2007",
+      "favourites_count":357,
+      "utc_offset":3600,
+      "time_zone":"Brussels",
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":13279,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"352726",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_link_color":"D02B55",
+      "profile_sidebar_border_color":"829D5E",
+      "profile_sidebar_fill_color":"99CC33",
+      "profile_text_color":"3E4415",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":false,
+      "follow_request_sent":false,
+      "notifications":false
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweeted_status":{
+      "created_at":"Mon Mar 04 14:45:01 +0000 2013",
+      "id":308588900304179200,
+      "id_str":"308588900304179200",
+      "text":"IT\u0027S LIVE http:\/\/t.co\/OgkikLWSHd",
+      "source":"\u003Ca href=\u0022http:\/\/tapbots.com\/tweetbot\u0022 rel=\u0022nofollow\u0022\u003ETweetbot for iOS\u003C\/a\u003E",
+      "truncated":false,
+      "in_reply_to_status_id":null,
+      "in_reply_to_status_id_str":null,
+      "in_reply_to_user_id":null,
+      "in_reply_to_user_id_str":null,
+      "in_reply_to_screen_name":null,
+      "user":{
+        "id":7418052,
+        "id_str":"7418052",
+        "name":"Chris Hartjes",
+        "screen_name":"grmpyprogrammer",
+        "location":"Milton, Ontario, Canada",
+        "description":"Grumpy web developer and tester, @gtaphp organizer, running @truenorthphp, just waiting for people to START WRITING TESTS",
+        "url":"http:\/\/www.littlehart.net\/atthekeyboard",
+        "entities":{
+          "url":{
+            "urls":[
+              {
+                "url":"http:\/\/www.littlehart.net\/atthekeyboard",
+                "expanded_url":null,
+                "indices":[
+                  0,
+                  39
+                ]
+              }
+            ]
+          },
+          "description":{
+            "urls":[
+
+            ]
+          }
+        },
+        "protected":false,
+        "followers_count":3063,
+        "friends_count":294,
+        "listed_count":241,
+        "created_at":"Thu Jul 12 02:36:44 +0000 2007",
+        "favourites_count":14,
+        "utc_offset":-18000,
+        "time_zone":"Eastern Time (US \u0026 Canada)",
+        "geo_enabled":false,
+        "verified":false,
+        "statuses_count":29416,
+        "lang":"en",
+        "contributors_enabled":false,
+        "is_translator":false,
+        "profile_background_color":"9AE4E8",
+        "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png",
+        "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png",
+        "profile_background_tile":false,
+        "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/3312427651\/a329ae66656ae180cb9de9d629dbb872_normal.jpeg",
+        "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/3312427651\/a329ae66656ae180cb9de9d629dbb872_normal.jpeg",
+        "profile_link_color":"0000FF",
+        "profile_sidebar_border_color":"87BC44",
+        "profile_sidebar_fill_color":"E0FF92",
+        "profile_text_color":"000000",
+        "profile_use_background_image":true,
+        "default_profile":false,
+        "default_profile_image":false,
+        "following":null,
+        "follow_request_sent":false,
+        "notifications":null
+      },
+      "geo":null,
+      "coordinates":null,
+      "place":null,
+      "contributors":null,
+      "retweet_count":30,
+      "entities":{
+        "hashtags":[
+
+        ],
+        "urls":[
+          {
+            "url":"http:\/\/t.co\/OgkikLWSHd",
+            "expanded_url":"http:\/\/grumpy-phpunit.com",
+            "display_url":"grumpy-phpunit.com",
+            "indices":[
+              10,
+              32
+            ]
+          }
+        ],
+        "user_mentions":[
+
+        ]
+      },
+      "favorited":false,
+      "retweeted":false,
+      "possibly_sensitive":false
+    },
+    "retweet_count":30,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+        {
+          "url":"http:\/\/t.co\/OgkikLWSHd",
+          "expanded_url":"http:\/\/grumpy-phpunit.com",
+          "display_url":"grumpy-phpunit.com",
+          "indices":[
+            31,
+            53
+          ]
+        }
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"grmpyprogrammer",
+          "name":"Chris Hartjes",
+          "id":7418052,
+          "id_str":"7418052",
+          "indices":[
+            3,
+            19
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false,
+    "possibly_sensitive":false
+  },
+  {
+    "created_at":"Mon Mar 04 13:17:22 +0000 2013",
+    "id":308566841951936513,
+    "id_str":"308566841951936513",
+    "text":"@LauraRaeder so, where did you race in February?",
+    "source":"\u003Ca href=\u0022http:\/\/tapbots.com\/tweetbot\u0022 rel=\u0022nofollow\u0022\u003ETweetbot for iOS\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":null,
+    "in_reply_to_status_id_str":null,
+    "in_reply_to_user_id":311531420,
+    "in_reply_to_user_id_str":"311531420",
+    "in_reply_to_screen_name":"LauraRaeder",
+    "user":{
+      "id":9453382,
+      "id_str":"9453382",
+      "name":"weierophinney",
+      "screen_name":"mwop",
+      "location":"Sioux Falls, SD",
+      "description":"PHP and ZF Developer; crazed father of two.",
+      "url":"http:\/\/mwop.net\/",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/mwop.net\/",
+              "expanded_url":null,
+              "indices":[
+                0,
+                16
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":6358,
+      "friends_count":191,
+      "listed_count":610,
+      "created_at":"Mon Oct 15 11:34:13 +0000 2007",
+      "favourites_count":357,
+      "utc_offset":3600,
+      "time_zone":"Brussels",
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":13279,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"352726",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_link_color":"D02B55",
+      "profile_sidebar_border_color":"829D5E",
+      "profile_sidebar_fill_color":"99CC33",
+      "profile_text_color":"3E4415",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":false,
+      "follow_request_sent":false,
+      "notifications":false
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"LauraRaeder",
+          "name":"Laura Raeder",
+          "id":311531420,
+          "id_str":"311531420",
+          "indices":[
+            0,
+            12
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Mon Mar 04 13:02:04 +0000 2013",
+    "id":308562989253013505,
+    "id_str":"308562989253013505",
+    "text":"@tswicegood channeling your inner @CalEvans this morning?",
+    "source":"\u003Ca href=\u0022http:\/\/tapbots.com\/tweetbot\u0022 rel=\u0022nofollow\u0022\u003ETweetbot for iOS\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":308561906170466306,
+    "in_reply_to_status_id_str":"308561906170466306",
+    "in_reply_to_user_id":9478892,
+    "in_reply_to_user_id_str":"9478892",
+    "in_reply_to_screen_name":"tswicegood",
+    "user":{
+      "id":9453382,
+      "id_str":"9453382",
+      "name":"weierophinney",
+      "screen_name":"mwop",
+      "location":"Sioux Falls, SD",
+      "description":"PHP and ZF Developer; crazed father of two.",
+      "url":"http:\/\/mwop.net\/",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/mwop.net\/",
+              "expanded_url":null,
+              "indices":[
+                0,
+                16
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":6358,
+      "friends_count":191,
+      "listed_count":610,
+      "created_at":"Mon Oct 15 11:34:13 +0000 2007",
+      "favourites_count":357,
+      "utc_offset":3600,
+      "time_zone":"Brussels",
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":13279,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"352726",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_link_color":"D02B55",
+      "profile_sidebar_border_color":"829D5E",
+      "profile_sidebar_fill_color":"99CC33",
+      "profile_text_color":"3E4415",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":false,
+      "follow_request_sent":false,
+      "notifications":false
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"tswicegood",
+          "name":"Travis Swicegood",
+          "id":9478892,
+          "id_str":"9478892",
+          "indices":[
+            0,
+            11
+          ]
+        },
+        {
+          "screen_name":"CalEvans",
+          "name":"Cal Evans",
+          "id":4795561,
+          "id_str":"4795561",
+          "indices":[
+            34,
+            43
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Mon Mar 04 01:41:24 +0000 2013",
+    "id":308391696440360960,
+    "id_str":"308391696440360960",
+    "text":"RT @jvandemo: Just wrote alpha version of #Oauth2 service for @Zend Framework 2 and would really appreciate your feedback: https:\/\/t.co\/ ...",
+    "source":"\u003Ca href=\u0022http:\/\/tapbots.com\/tweetbot\u0022 rel=\u0022nofollow\u0022\u003ETweetbot for iOS\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":null,
+    "in_reply_to_status_id_str":null,
+    "in_reply_to_user_id":null,
+    "in_reply_to_user_id_str":null,
+    "in_reply_to_screen_name":null,
+    "user":{
+      "id":9453382,
+      "id_str":"9453382",
+      "name":"weierophinney",
+      "screen_name":"mwop",
+      "location":"Sioux Falls, SD",
+      "description":"PHP and ZF Developer; crazed father of two.",
+      "url":"http:\/\/mwop.net\/",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/mwop.net\/",
+              "expanded_url":null,
+              "indices":[
+                0,
+                16
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":6358,
+      "friends_count":191,
+      "listed_count":610,
+      "created_at":"Mon Oct 15 11:34:13 +0000 2007",
+      "favourites_count":357,
+      "utc_offset":3600,
+      "time_zone":"Brussels",
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":13279,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"352726",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_link_color":"D02B55",
+      "profile_sidebar_border_color":"829D5E",
+      "profile_sidebar_fill_color":"99CC33",
+      "profile_text_color":"3E4415",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":false,
+      "follow_request_sent":false,
+      "notifications":false
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweeted_status":{
+      "created_at":"Sun Mar 03 23:47:13 +0000 2013",
+      "id":308362961053958145,
+      "id_str":"308362961053958145",
+      "text":"Just wrote alpha version of #Oauth2 service for @Zend Framework 2 and would really appreciate your feedback: https:\/\/t.co\/duV3Pm5Isf #ZF2",
+      "source":"web",
+      "truncated":false,
+      "in_reply_to_status_id":null,
+      "in_reply_to_status_id_str":null,
+      "in_reply_to_user_id":null,
+      "in_reply_to_user_id_str":null,
+      "in_reply_to_screen_name":null,
+      "user":{
+        "id":108026902,
+        "id_str":"108026902",
+        "name":"Jurgen Van de Moere",
+        "screen_name":"jvandemo",
+        "location":"Evergem",
+        "description":"Coder \/\/ Lead developer \/\/ Food freak \/\/ Gymnast \/\/ Dad \/\/ Deleted old tweets \/\/ English only now",
+        "url":null,
+        "entities":{
+          "description":{
+            "urls":[
+
+            ]
+          }
+        },
+        "protected":false,
+        "followers_count":178,
+        "friends_count":388,
+        "listed_count":7,
+        "created_at":"Sun Jan 24 15:33:38 +0000 2010",
+        "favourites_count":188,
+        "utc_offset":3600,
+        "time_zone":"Brussels",
+        "geo_enabled":false,
+        "verified":false,
+        "statuses_count":246,
+        "lang":"en",
+        "contributors_enabled":false,
+        "is_translator":false,
+        "profile_background_color":"252525",
+        "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/683745743\/4576ecd1645451a79e7425bd927b01f4.jpeg",
+        "profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/683745743\/4576ecd1645451a79e7425bd927b01f4.jpeg",
+        "profile_background_tile":false,
+        "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1782123335\/jurgen9_normal.jpg",
+        "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1782123335\/jurgen9_normal.jpg",
+        "profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/108026902\/1357739890",
+        "profile_link_color":"0084B4",
+        "profile_sidebar_border_color":"FFFFFF",
+        "profile_sidebar_fill_color":"DDEEF6",
+        "profile_text_color":"333333",
+        "profile_use_background_image":true,
+        "default_profile":false,
+        "default_profile_image":false,
+        "following":null,
+        "follow_request_sent":false,
+        "notifications":null
+      },
+      "geo":null,
+      "coordinates":null,
+      "place":null,
+      "contributors":null,
+      "retweet_count":14,
+      "entities":{
+        "hashtags":[
+          {
+            "text":"Oauth2",
+            "indices":[
+              28,
+              35
+            ]
+          },
+          {
+            "text":"ZF2",
+            "indices":[
+              133,
+              137
+            ]
+          }
+        ],
+        "urls":[
+          {
+            "url":"https:\/\/t.co\/duV3Pm5Isf",
+            "expanded_url":"https:\/\/github.com\/jvandemo\/ZendService_Oauth2",
+            "display_url":"github.com\/jvandemo\/ZendS\u2026",
+            "indices":[
+              109,
+              132
+            ]
+          }
+        ],
+        "user_mentions":[
+          {
+            "screen_name":"zend",
+            "name":"zend",
+            "id":15012215,
+            "id_str":"15012215",
+            "indices":[
+              48,
+              53
+            ]
+          }
+        ]
+      },
+      "favorited":false,
+      "retweeted":false,
+      "possibly_sensitive":false
+    },
+    "retweet_count":14,
+    "entities":{
+      "hashtags":[
+        {
+          "text":"Oauth2",
+          "indices":[
+            42,
+            49
+          ]
+        }
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"jvandemo",
+          "name":"Jurgen Van de Moere",
+          "id":108026902,
+          "id_str":"108026902",
+          "indices":[
+            3,
+            12
+          ]
+        },
+        {
+          "screen_name":"zend",
+          "name":"zend",
+          "id":15012215,
+          "id_str":"15012215",
+          "indices":[
+            62,
+            67
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Sun Mar 03 13:13:26 +0000 2013",
+    "id":308203463685308417,
+    "id_str":"308203463685308417",
+    "text":"@klimpong cool - do me a favor? Ping me when merged? \/cc @naderman",
+    "source":"\u003Ca href=\u0022http:\/\/tapbots.com\/tweetbot\u0022 rel=\u0022nofollow\u0022\u003ETweetbot for iOS\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":308177525094367233,
+    "in_reply_to_status_id_str":"308177525094367233",
+    "in_reply_to_user_id":4600051,
+    "in_reply_to_user_id_str":"4600051",
+    "in_reply_to_screen_name":"klimpong",
+    "user":{
+      "id":9453382,
+      "id_str":"9453382",
+      "name":"weierophinney",
+      "screen_name":"mwop",
+      "location":"Sioux Falls, SD",
+      "description":"PHP and ZF Developer; crazed father of two.",
+      "url":"http:\/\/mwop.net\/",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/mwop.net\/",
+              "expanded_url":null,
+              "indices":[
+                0,
+                16
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":6358,
+      "friends_count":191,
+      "listed_count":610,
+      "created_at":"Mon Oct 15 11:34:13 +0000 2007",
+      "favourites_count":357,
+      "utc_offset":3600,
+      "time_zone":"Brussels",
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":13279,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"352726",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_link_color":"D02B55",
+      "profile_sidebar_border_color":"829D5E",
+      "profile_sidebar_fill_color":"99CC33",
+      "profile_text_color":"3E4415",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":false,
+      "follow_request_sent":false,
+      "notifications":false
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"klimpong",
+          "name":"Till!",
+          "id":4600051,
+          "id_str":"4600051",
+          "indices":[
+            0,
+            9
+          ]
+        },
+        {
+          "screen_name":"naderman",
+          "name":"Nils Adermann",
+          "id":11754222,
+          "id_str":"11754222",
+          "indices":[
+            57,
+            66
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Sun Mar 03 13:10:40 +0000 2013",
+    "id":308202765698609152,
+    "id_str":"308202765698609152",
+    "text":"@jkeppens um, that\u2019s true in zf1, too. We\u2019ve shied away from it, as we don\u2019t want to dictate how domain models are structured.",
+    "source":"\u003Ca href=\u0022http:\/\/tapbots.com\/tweetbot\u0022 rel=\u0022nofollow\u0022\u003ETweetbot for iOS\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":308162641854099456,
+    "in_reply_to_status_id_str":"308162641854099456",
+    "in_reply_to_user_id":15749095,
+    "in_reply_to_user_id_str":"15749095",
+    "in_reply_to_screen_name":"jkeppens",
+    "user":{
+      "id":9453382,
+      "id_str":"9453382",
+      "name":"weierophinney",
+      "screen_name":"mwop",
+      "location":"Sioux Falls, SD",
+      "description":"PHP and ZF Developer; crazed father of two.",
+      "url":"http:\/\/mwop.net\/",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/mwop.net\/",
+              "expanded_url":null,
+              "indices":[
+                0,
+                16
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":6358,
+      "friends_count":191,
+      "listed_count":610,
+      "created_at":"Mon Oct 15 11:34:13 +0000 2007",
+      "favourites_count":357,
+      "utc_offset":3600,
+      "time_zone":"Brussels",
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":13279,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"352726",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_link_color":"D02B55",
+      "profile_sidebar_border_color":"829D5E",
+      "profile_sidebar_fill_color":"99CC33",
+      "profile_text_color":"3E4415",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":false,
+      "follow_request_sent":false,
+      "notifications":false
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"jkeppens",
+          "name":"Jeroen Keppens",
+          "id":15749095,
+          "id_str":"15749095",
+          "indices":[
+            0,
+            9
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Sat Mar 02 22:42:44 +0000 2013",
+    "id":307984345782689792,
+    "id_str":"307984345782689792",
+    "text":"@padraicb I am experiencing both schadenfreude and guilt reading your tweet stream.",
+    "source":"\u003Ca href=\u0022http:\/\/tapbots.com\/tweetbot\u0022 rel=\u0022nofollow\u0022\u003ETweetbot for iOS\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":307958321434984448,
+    "in_reply_to_status_id_str":"307958321434984448",
+    "in_reply_to_user_id":9075802,
+    "in_reply_to_user_id_str":"9075802",
+    "in_reply_to_screen_name":"padraicb",
+    "user":{
+      "id":9453382,
+      "id_str":"9453382",
+      "name":"weierophinney",
+      "screen_name":"mwop",
+      "location":"Sioux Falls, SD",
+      "description":"PHP and ZF Developer; crazed father of two.",
+      "url":"http:\/\/mwop.net\/",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/mwop.net\/",
+              "expanded_url":null,
+              "indices":[
+                0,
+                16
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":6358,
+      "friends_count":191,
+      "listed_count":610,
+      "created_at":"Mon Oct 15 11:34:13 +0000 2007",
+      "favourites_count":357,
+      "utc_offset":3600,
+      "time_zone":"Brussels",
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":13279,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"352726",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_link_color":"D02B55",
+      "profile_sidebar_border_color":"829D5E",
+      "profile_sidebar_fill_color":"99CC33",
+      "profile_text_color":"3E4415",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":false,
+      "follow_request_sent":false,
+      "notifications":false
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"padraicb",
+          "name":"P\u00e1draic Brady",
+          "id":9075802,
+          "id_str":"9075802",
+          "indices":[
+            0,
+            9
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Sat Mar 02 20:18:04 +0000 2013",
+    "id":307947937374281728,
+    "id_str":"307947937374281728",
+    "text":"@philipobenito Nice set of comparisons, though!",
+    "source":"\u003Ca href=\u0022http:\/\/tapbots.com\/tweetbot\u0022 rel=\u0022nofollow\u0022\u003ETweetbot for iOS\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":307892867731427329,
+    "in_reply_to_status_id_str":"307892867731427329",
+    "in_reply_to_user_id":455064907,
+    "in_reply_to_user_id_str":"455064907",
+    "in_reply_to_screen_name":"philipobenito",
+    "user":{
+      "id":9453382,
+      "id_str":"9453382",
+      "name":"weierophinney",
+      "screen_name":"mwop",
+      "location":"Sioux Falls, SD",
+      "description":"PHP and ZF Developer; crazed father of two.",
+      "url":"http:\/\/mwop.net\/",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/mwop.net\/",
+              "expanded_url":null,
+              "indices":[
+                0,
+                16
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":6358,
+      "friends_count":191,
+      "listed_count":610,
+      "created_at":"Mon Oct 15 11:34:13 +0000 2007",
+      "favourites_count":357,
+      "utc_offset":3600,
+      "time_zone":"Brussels",
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":13279,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"352726",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_link_color":"D02B55",
+      "profile_sidebar_border_color":"829D5E",
+      "profile_sidebar_fill_color":"99CC33",
+      "profile_text_color":"3E4415",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":false,
+      "follow_request_sent":false,
+      "notifications":false
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"philipobenito",
+          "name":"Phil Bennett",
+          "id":455064907,
+          "id_str":"455064907",
+          "indices":[
+            0,
+            14
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Sat Mar 02 20:17:46 +0000 2013",
+    "id":307947864535990272,
+    "id_str":"307947864535990272",
+    "text":"@philipobenito but they\u2019re not well documented nor well developed. SM is more flexible and faster, which is why we favor it. (More)",
+    "source":"\u003Ca href=\u0022http:\/\/tapbots.com\/tweetbot\u0022 rel=\u0022nofollow\u0022\u003ETweetbot for iOS\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":307892867731427329,
+    "in_reply_to_status_id_str":"307892867731427329",
+    "in_reply_to_user_id":455064907,
+    "in_reply_to_user_id_str":"455064907",
+    "in_reply_to_screen_name":"philipobenito",
+    "user":{
+      "id":9453382,
+      "id_str":"9453382",
+      "name":"weierophinney",
+      "screen_name":"mwop",
+      "location":"Sioux Falls, SD",
+      "description":"PHP and ZF Developer; crazed father of two.",
+      "url":"http:\/\/mwop.net\/",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/mwop.net\/",
+              "expanded_url":null,
+              "indices":[
+                0,
+                16
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":6358,
+      "friends_count":191,
+      "listed_count":610,
+      "created_at":"Mon Oct 15 11:34:13 +0000 2007",
+      "favourites_count":357,
+      "utc_offset":3600,
+      "time_zone":"Brussels",
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":13279,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"352726",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_link_color":"D02B55",
+      "profile_sidebar_border_color":"829D5E",
+      "profile_sidebar_fill_color":"99CC33",
+      "profile_text_color":"3E4415",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":false,
+      "follow_request_sent":false,
+      "notifications":false
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"philipobenito",
+          "name":"Phil Bennett",
+          "id":455064907,
+          "id_str":"455064907",
+          "indices":[
+            0,
+            14
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Sat Mar 02 20:16:43 +0000 2013",
+    "id":307947597514043393,
+    "id_str":"307947597514043393",
+    "text":"@philipobenito pimple is more analogous to zend\\servicemanager. Also, zend\\di allows non-reflection strategies to help speed it up (more)",
+    "source":"\u003Ca href=\u0022http:\/\/tapbots.com\/tweetbot\u0022 rel=\u0022nofollow\u0022\u003ETweetbot for iOS\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":307892867731427329,
+    "in_reply_to_status_id_str":"307892867731427329",
+    "in_reply_to_user_id":455064907,
+    "in_reply_to_user_id_str":"455064907",
+    "in_reply_to_screen_name":"philipobenito",
+    "user":{
+      "id":9453382,
+      "id_str":"9453382",
+      "name":"weierophinney",
+      "screen_name":"mwop",
+      "location":"Sioux Falls, SD",
+      "description":"PHP and ZF Developer; crazed father of two.",
+      "url":"http:\/\/mwop.net\/",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/mwop.net\/",
+              "expanded_url":null,
+              "indices":[
+                0,
+                16
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":6358,
+      "friends_count":191,
+      "listed_count":610,
+      "created_at":"Mon Oct 15 11:34:13 +0000 2007",
+      "favourites_count":357,
+      "utc_offset":3600,
+      "time_zone":"Brussels",
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":13279,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"352726",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_link_color":"D02B55",
+      "profile_sidebar_border_color":"829D5E",
+      "profile_sidebar_fill_color":"99CC33",
+      "profile_text_color":"3E4415",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":false,
+      "follow_request_sent":false,
+      "notifications":false
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"philipobenito",
+          "name":"Phil Bennett",
+          "id":455064907,
+          "id_str":"455064907",
+          "indices":[
+            0,
+            14
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Sat Mar 02 20:04:49 +0000 2013",
+    "id":307944603007475712,
+    "id_str":"307944603007475712",
+    "text":"@akrabat That explains why I couldn\u2019t log into my app this morning\u2026",
+    "source":"\u003Ca href=\u0022http:\/\/tapbots.com\/tweetbot\u0022 rel=\u0022nofollow\u0022\u003ETweetbot for iOS\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":307888014732955649,
+    "in_reply_to_status_id_str":"307888014732955649",
+    "in_reply_to_user_id":9244712,
+    "in_reply_to_user_id_str":"9244712",
+    "in_reply_to_screen_name":"akrabat",
+    "user":{
+      "id":9453382,
+      "id_str":"9453382",
+      "name":"weierophinney",
+      "screen_name":"mwop",
+      "location":"Sioux Falls, SD",
+      "description":"PHP and ZF Developer; crazed father of two.",
+      "url":"http:\/\/mwop.net\/",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/mwop.net\/",
+              "expanded_url":null,
+              "indices":[
+                0,
+                16
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":6358,
+      "friends_count":191,
+      "listed_count":610,
+      "created_at":"Mon Oct 15 11:34:13 +0000 2007",
+      "favourites_count":357,
+      "utc_offset":3600,
+      "time_zone":"Brussels",
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":13279,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"352726",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_link_color":"D02B55",
+      "profile_sidebar_border_color":"829D5E",
+      "profile_sidebar_fill_color":"99CC33",
+      "profile_text_color":"3E4415",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":false,
+      "follow_request_sent":false,
+      "notifications":false
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"akrabat",
+          "name":"Rob Allen",
+          "id":9244712,
+          "id_str":"9244712",
+          "indices":[
+            0,
+            8
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Sat Mar 02 20:02:54 +0000 2013",
+    "id":307944123330072577,
+    "id_str":"307944123330072577",
+    "text":"@michaellehmkuhl tmux over ssh. :-)",
+    "source":"\u003Ca href=\u0022http:\/\/tapbots.com\/tweetbot\u0022 rel=\u0022nofollow\u0022\u003ETweetbot for iOS\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":307882357065654272,
+    "in_reply_to_status_id_str":"307882357065654272",
+    "in_reply_to_user_id":1269541,
+    "in_reply_to_user_id_str":"1269541",
+    "in_reply_to_screen_name":"michaellehmkuhl",
+    "user":{
+      "id":9453382,
+      "id_str":"9453382",
+      "name":"weierophinney",
+      "screen_name":"mwop",
+      "location":"Sioux Falls, SD",
+      "description":"PHP and ZF Developer; crazed father of two.",
+      "url":"http:\/\/mwop.net\/",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/mwop.net\/",
+              "expanded_url":null,
+              "indices":[
+                0,
+                16
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":6358,
+      "friends_count":191,
+      "listed_count":610,
+      "created_at":"Mon Oct 15 11:34:13 +0000 2007",
+      "favourites_count":357,
+      "utc_offset":3600,
+      "time_zone":"Brussels",
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":13279,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"352726",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_link_color":"D02B55",
+      "profile_sidebar_border_color":"829D5E",
+      "profile_sidebar_fill_color":"99CC33",
+      "profile_text_color":"3E4415",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":false,
+      "follow_request_sent":false,
+      "notifications":false
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"michaellehmkuhl",
+          "name":"Michael Lehmkuhl",
+          "id":1269541,
+          "id_str":"1269541",
+          "indices":[
+            0,
+            16
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  {
+    "created_at":"Fri Mar 01 22:25:26 +0000 2013",
+    "id":307617603055144960,
+    "id_str":"307617603055144960",
+    "text":"@BradleyHolt I love that. And nice to see you on twitter again. :)",
+    "source":"\u003Ca href=\u0022http:\/\/hotot.org\u0022 rel=\u0022nofollow\u0022\u003EHotot for Chrome\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":307608289842180096,
+    "in_reply_to_status_id_str":"307608289842180096",
+    "in_reply_to_user_id":10909812,
+    "in_reply_to_user_id_str":"10909812",
+    "in_reply_to_screen_name":"BradleyHolt",
+    "user":{
+      "id":9453382,
+      "id_str":"9453382",
+      "name":"weierophinney",
+      "screen_name":"mwop",
+      "location":"Sioux Falls, SD",
+      "description":"PHP and ZF Developer; crazed father of two.",
+      "url":"http:\/\/mwop.net\/",
+      "entities":{
+        "url":{
+          "urls":[
+            {
+              "url":"http:\/\/mwop.net\/",
+              "expanded_url":null,
+              "indices":[
+                0,
+                16
+              ]
+            }
+          ]
+        },
+        "description":{
+          "urls":[
+
+          ]
+        }
+      },
+      "protected":false,
+      "followers_count":6358,
+      "friends_count":191,
+      "listed_count":610,
+      "created_at":"Mon Oct 15 11:34:13 +0000 2007",
+      "favourites_count":357,
+      "utc_offset":3600,
+      "time_zone":"Brussels",
+      "geo_enabled":false,
+      "verified":false,
+      "statuses_count":13279,
+      "lang":"en",
+      "contributors_enabled":false,
+      "is_translator":false,
+      "profile_background_color":"352726",
+      "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif",
+      "profile_background_tile":false,
+      "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+      "profile_link_color":"D02B55",
+      "profile_sidebar_border_color":"829D5E",
+      "profile_sidebar_fill_color":"99CC33",
+      "profile_text_color":"3E4415",
+      "profile_use_background_image":true,
+      "default_profile":false,
+      "default_profile_image":false,
+      "following":false,
+      "follow_request_sent":false,
+      "notifications":false
+    },
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+        {
+          "screen_name":"BradleyHolt",
+          "name":"Bradley Holt",
+          "id":10909812,
+          "id_str":"10909812",
+          "indices":[
+            0,
+            12
+          ]
+        }
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  }
+]

+ 0 - 659
tests/Zend/Service/Twitter/_files/user_timeline.twitter.xml

@@ -1,659 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<statuses type="array">
-<status>
-  <created_at>Fri May 28 21:14:05 +0000 2010</created_at>
-  <id>14932507266</id>
-  <text>Good news for people everywhere http://bit.ly/b1Cf9A</text>
-  <source>web</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>783214</id>
-    <name>Twitter</name>
-    <screen_name>twitter</screen_name>
-    <location>San Francisco, CA</location>
-    <description>Always wondering what's happening. </description>
-    <profile_image_url>http://a1.twimg.com/profile_images/878669694/twitter_bird_normal.jpg</profile_image_url>
-    <url>http://twitter.com</url>
-    <protected>false</protected>
-    <followers_count>3223630</followers_count>
-    <profile_background_color>ACDED6</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>038543</profile_link_color>
-    <profile_sidebar_fill_color>F6F6F6</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>EEEEEE</profile_sidebar_border_color>
-    <friends_count>247</friends_count>
-    <created_at>Tue Feb 20 14:35:54 +0000 2007</created_at>
-    <favourites_count>2</favourites_count>
-    <utc_offset>-28800</utc_offset>
-    <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme18/bg.gif</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>true</verified>
-    <following>true</following>
-    <statuses_count>745</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>true</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors>
-    <user_id>16739704</user_id>
-  </contributors>
-</status>
-<status>
-  <created_at>Mon May 24 16:02:43 +0000 2010</created_at>
-  <id>14632050758</id>
-  <text>The Twitter Platform: Enduring Value, Ecosystem Clarity, Fostering Innovation http://bit.ly/azilHc</text>
-  <source>web</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>783214</id>
-    <name>Twitter</name>
-    <screen_name>twitter</screen_name>
-    <location>San Francisco, CA</location>
-    <description>Always wondering what's happening. </description>
-    <profile_image_url>http://a1.twimg.com/profile_images/878669694/twitter_bird_normal.jpg</profile_image_url>
-    <url>http://twitter.com</url>
-    <protected>false</protected>
-    <followers_count>3210585</followers_count>
-    <profile_background_color>ACDED6</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>038543</profile_link_color>
-    <profile_sidebar_fill_color>F6F6F6</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>EEEEEE</profile_sidebar_border_color>
-    <friends_count>246</friends_count>
-    <created_at>Tue Feb 20 14:35:54 +0000 2007</created_at>
-    <favourites_count>2</favourites_count>
-    <utc_offset>-28800</utc_offset>
-    <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme18/bg.gif</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>true</verified>
-    <following>true</following>
-    <statuses_count>743</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>true</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors>
-    <user_id>7694352</user_id>
-  </contributors>
-</status>
-<status>
-  <created_at>Thu May 20 23:17:25 +0000 2010</created_at>
-  <id>14391164138</id>
-  <text>Feel free to keep the stories coming. You can also check out @cleveraccounts to learn about interesting examples from more clever folks.</text>
-  <source>web</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>783214</id>
-    <name>Twitter</name>
-    <screen_name>twitter</screen_name>
-    <location>San Francisco, CA</location>
-    <description>Always wondering what's happening. </description>
-    <profile_image_url>http://a1.twimg.com/profile_images/878669694/twitter_bird_normal.jpg</profile_image_url>
-    <url>http://twitter.com</url>
-    <protected>false</protected>
-    <followers_count>3196883</followers_count>
-    <profile_background_color>ACDED6</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>038543</profile_link_color>
-    <profile_sidebar_fill_color>F6F6F6</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>EEEEEE</profile_sidebar_border_color>
-    <friends_count>246</friends_count>
-    <created_at>Tue Feb 20 14:35:54 +0000 2007</created_at>
-    <favourites_count>2</favourites_count>
-    <utc_offset>-28800</utc_offset>
-    <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme18/bg.gif</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>true</verified>
-    <following>true</following>
-    <statuses_count>741</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>true</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors/>
-</status>
-<status>
-  <created_at>Thu May 20 22:59:49 +0000 2010</created_at>
-  <id>14390500918</id>
-  <text>Cool to hear all of your stories! Of course it's too hard to pick just one to retweet, so here are a few that stood out...</text>
-  <source>web</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>783214</id>
-    <name>Twitter</name>
-    <screen_name>twitter</screen_name>
-    <location>San Francisco, CA</location>
-    <description>Always wondering what's happening. </description>
-    <profile_image_url>http://a1.twimg.com/profile_images/878669694/twitter_bird_normal.jpg</profile_image_url>
-    <url>http://twitter.com</url>
-    <protected>false</protected>
-    <followers_count>3199005</followers_count>
-    <profile_background_color>ACDED6</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>038543</profile_link_color>
-    <profile_sidebar_fill_color>F6F6F6</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>EEEEEE</profile_sidebar_border_color>
-    <friends_count>246</friends_count>
-    <created_at>Tue Feb 20 14:35:54 +0000 2007</created_at>
-    <favourites_count>2</favourites_count>
-    <utc_offset>-28800</utc_offset>
-    <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme18/bg.gif</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>true</verified>
-    <following>true</following>
-    <statuses_count>741</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>true</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors>
-    <user_id>16739704</user_id>
-  </contributors>
-</status>
-<status>
-  <created_at>Thu May 20 21:39:43 +0000 2010</created_at>
-  <id>14386817576</id>
-  <text>Have you ever learned about something just in the nick of time because you checked Twitter? Share your story &amp; we'll retweet the best one!</text>
-  <source>web</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>783214</id>
-    <name>Twitter</name>
-    <screen_name>twitter</screen_name>
-    <location>San Francisco, CA</location>
-    <description>Always wondering what's happening. </description>
-    <profile_image_url>http://a1.twimg.com/profile_images/878669694/twitter_bird_normal.jpg</profile_image_url>
-    <url>http://twitter.com</url>
-    <protected>false</protected>
-    <followers_count>3196754</followers_count>
-    <profile_background_color>ACDED6</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>038543</profile_link_color>
-    <profile_sidebar_fill_color>F6F6F6</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>EEEEEE</profile_sidebar_border_color>
-    <friends_count>246</friends_count>
-    <created_at>Tue Feb 20 14:35:54 +0000 2007</created_at>
-    <favourites_count>2</favourites_count>
-    <utc_offset>-28800</utc_offset>
-    <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme18/bg.gif</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>true</verified>
-    <following>true</following>
-    <statuses_count>736</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>true</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors>
-    <user_id>16739704</user_id>
-  </contributors>
-</status>
-<status>
-  <created_at>Thu May 20 18:32:50 +0000 2010</created_at>
-  <id>14378412372</id>
-  <text>40cents a day = 2 lifesaving pills. http://bit.ly/93qPj3 Film premieres tonight on @hbo. Go @joinred!</text>
-  <source>web</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>783214</id>
-    <name>Twitter</name>
-    <screen_name>twitter</screen_name>
-    <location>San Francisco, CA</location>
-    <description>Always wondering what's happening. </description>
-    <profile_image_url>http://a1.twimg.com/profile_images/878669694/twitter_bird_normal.jpg</profile_image_url>
-    <url>http://twitter.com</url>
-    <protected>false</protected>
-    <followers_count>3227196</followers_count>
-    <profile_background_color>ACDED6</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>038543</profile_link_color>
-    <profile_sidebar_fill_color>F6F6F6</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>EEEEEE</profile_sidebar_border_color>
-    <friends_count>247</friends_count>
-    <created_at>Tue Feb 20 14:35:54 +0000 2007</created_at>
-    <favourites_count>2</favourites_count>
-    <utc_offset>-28800</utc_offset>
-    <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme18/bg.gif</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>true</verified>
-    <following>true</following>
-    <statuses_count>745</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>true</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors>
-    <user_id>16739704</user_id>
-  </contributors>
-</status>
-<status>
-  <created_at>Wed May 19 17:50:12 +0000 2010</created_at>
-  <id>14307539760</id>
-  <text>Twitter for iPhone now available in the iTunes App Store http://bit.ly/bu4gSu</text>
-  <source>web</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>783214</id>
-    <name>Twitter</name>
-    <screen_name>twitter</screen_name>
-    <location>San Francisco, CA</location>
-    <description>Always wondering what's happening. </description>
-    <profile_image_url>http://a1.twimg.com/profile_images/878669694/twitter_bird_normal.jpg</profile_image_url>
-    <url>http://twitter.com</url>
-    <protected>false</protected>
-    <followers_count>3205225</followers_count>
-    <profile_background_color>ACDED6</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>038543</profile_link_color>
-    <profile_sidebar_fill_color>F6F6F6</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>EEEEEE</profile_sidebar_border_color>
-    <friends_count>246</friends_count>
-    <created_at>Tue Feb 20 14:35:54 +0000 2007</created_at>
-    <favourites_count>2</favourites_count>
-    <utc_offset>-28800</utc_offset>
-    <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme18/bg.gif</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>true</verified>
-    <following>true</following>
-    <statuses_count>742</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>true</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors>
-    <user_id>7694352</user_id>
-  </contributors>
-</status>
-<status>
-  <created_at>Sun May 16 05:38:12 +0000 2010</created_at>
-  <id>14080930416</id>
-  <text>@justinbieber the TT tweak is nothing personal. It was long planned &amp; better shows what is emerging right now. See http://bit.ly/byhJ7M. Thx</text>
-  <source>web</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id>27260086</in_reply_to_user_id>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name>justinbieber</in_reply_to_screen_name>
-  <user>
-    <id>783214</id>
-    <name>Twitter</name>
-    <screen_name>twitter</screen_name>
-    <location>San Francisco, CA</location>
-    <description>Always wondering what's happening. </description>
-    <profile_image_url>http://a1.twimg.com/profile_images/878669694/twitter_bird_normal.jpg</profile_image_url>
-    <url>http://twitter.com</url>
-    <protected>false</protected>
-    <followers_count>3180216</followers_count>
-    <profile_background_color>ACDED6</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>038543</profile_link_color>
-    <profile_sidebar_fill_color>F6F6F6</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>EEEEEE</profile_sidebar_border_color>
-    <friends_count>236</friends_count>
-    <created_at>Tue Feb 20 14:35:54 +0000 2007</created_at>
-    <favourites_count>2</favourites_count>
-    <utc_offset>-28800</utc_offset>
-    <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1273875281/images/themes/theme18/bg.gif</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>true</verified>
-    <following>true</following>
-    <statuses_count>733</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>true</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors>
-    <user_id>822571</user_id>
-  </contributors>
-</status>
-<status>
-  <created_at>Fri May 14 21:24:23 +0000 2010</created_at>
-  <id>13998259745</id>
-  <text>Curious about the recent changes to the Worldwide Trending Topic algorithm?  See: http://bit.ly/byhJ7M</text>
-  <source>web</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>783214</id>
-    <name>Twitter</name>
-    <screen_name>twitter</screen_name>
-    <location>San Francisco, CA</location>
-    <description>Always wondering what's happening. </description>
-    <profile_image_url>http://a1.twimg.com/profile_images/878669694/twitter_bird_normal.jpg</profile_image_url>
-    <url>http://twitter.com</url>
-    <protected>false</protected>
-    <followers_count>3223641</followers_count>
-    <profile_background_color>ACDED6</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>038543</profile_link_color>
-    <profile_sidebar_fill_color>F6F6F6</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>EEEEEE</profile_sidebar_border_color>
-    <friends_count>247</friends_count>
-    <created_at>Tue Feb 20 14:35:54 +0000 2007</created_at>
-    <favourites_count>2</favourites_count>
-    <utc_offset>-28800</utc_offset>
-    <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme18/bg.gif</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>true</verified>
-    <following>false</following>
-    <statuses_count>745</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>true</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors>
-    <user_id>822571</user_id>
-  </contributors>
-</status>
-<status>
-  <created_at>Thu May 13 19:09:31 +0000 2010</created_at>
-  <id>13929657914</id>
-  <text>It's bike-to-work day everyday when you're headquartered in San Francisco! @jointheflock</text>
-  <source>web</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>783214</id>
-    <name>Twitter</name>
-    <screen_name>twitter</screen_name>
-    <location>San Francisco, CA</location>
-    <description>Always wondering what's happening. </description>
-    <profile_image_url>http://a1.twimg.com/profile_images/878669694/twitter_bird_normal.jpg</profile_image_url>
-    <url>http://twitter.com</url>
-    <protected>false</protected>
-    <followers_count>3220708</followers_count>
-    <profile_background_color>ACDED6</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>038543</profile_link_color>
-    <profile_sidebar_fill_color>F6F6F6</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>EEEEEE</profile_sidebar_border_color>
-    <friends_count>247</friends_count>
-    <created_at>Tue Feb 20 14:35:54 +0000 2007</created_at>
-    <favourites_count>2</favourites_count>
-    <utc_offset>-28800</utc_offset>
-    <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274739546/images/themes/theme18/bg.gif</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>true</verified>
-    <following>true</following>
-    <statuses_count>744</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>true</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors>
-    <user_id>16739704</user_id>
-  </contributors>
-</status>
-<status>
-  <created_at>Thu May 13 00:28:59 +0000 2010</created_at>
-  <id>13881748072</id>
-  <text>We have tweaked our worldwide trending topic algorithm to better capture the most emergent trends being talked about on Twitter *right now*</text>
-  <source>web</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>783214</id>
-    <name>Twitter</name>
-    <screen_name>twitter</screen_name>
-    <location>San Francisco, CA</location>
-    <description>Always wondering what's happening. </description>
-    <profile_image_url>http://a1.twimg.com/profile_images/878669694/twitter_bird_normal.jpg</profile_image_url>
-    <url>http://twitter.com</url>
-    <protected>false</protected>
-    <followers_count>3201215</followers_count>
-    <profile_background_color>ACDED6</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>038543</profile_link_color>
-    <profile_sidebar_fill_color>F6F6F6</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>EEEEEE</profile_sidebar_border_color>
-    <friends_count>246</friends_count>
-    <created_at>Tue Feb 20 14:35:54 +0000 2007</created_at>
-    <favourites_count>2</favourites_count>
-    <utc_offset>-28800</utc_offset>
-    <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme18/bg.gif</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>true</verified>
-    <following>true</following>
-    <statuses_count>742</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>true</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors>
-    <user_id>822571</user_id>
-  </contributors>
-</status>
-<status>
-  <created_at>Mon May 10 17:15:53 +0000 2010</created_at>
-  <id>13737532357</id>
-  <text>Follow bug discovered, remedied. Read our status blog for details. http://bit.ly/dhQ3fF</text>
-  <source>web</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>783214</id>
-    <name>Twitter</name>
-    <screen_name>twitter</screen_name>
-    <location>San Francisco, CA</location>
-    <description>Always wondering what's happening. </description>
-    <profile_image_url>http://a1.twimg.com/profile_images/878669694/twitter_bird_normal.jpg</profile_image_url>
-    <url>http://twitter.com</url>
-    <protected>false</protected>
-    <followers_count>3201215</followers_count>
-    <profile_background_color>ACDED6</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>038543</profile_link_color>
-    <profile_sidebar_fill_color>F6F6F6</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>EEEEEE</profile_sidebar_border_color>
-    <friends_count>246</friends_count>
-    <created_at>Tue Feb 20 14:35:54 +0000 2007</created_at>
-    <favourites_count>2</favourites_count>
-    <utc_offset>-28800</utc_offset>
-    <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme18/bg.gif</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>true</verified>
-    <following>true</following>
-    <statuses_count>742</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>true</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors>
-    <user_id>16739704</user_id>
-  </contributors>
-</status>
-<status>
-  <created_at>Mon May 10 17:02:18 +0000 2010</created_at>
-  <id>13736700173</id>
-  <text>Follow count display is set to 0 and follow/unfollow is temporarily offline while we fix a bug.</text>
-  <source>web</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>783214</id>
-    <name>Twitter</name>
-    <screen_name>twitter</screen_name>
-    <location>San Francisco, CA</location>
-    <description>Always wondering what's happening. </description>
-    <profile_image_url>http://a1.twimg.com/profile_images/878669694/twitter_bird_normal.jpg</profile_image_url>
-    <url>http://twitter.com</url>
-    <protected>false</protected>
-    <followers_count>3226158</followers_count>
-    <profile_background_color>ACDED6</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>038543</profile_link_color>
-    <profile_sidebar_fill_color>F6F6F6</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>EEEEEE</profile_sidebar_border_color>
-    <friends_count>247</friends_count>
-    <created_at>Tue Feb 20 14:35:54 +0000 2007</created_at>
-    <favourites_count>2</favourites_count>
-    <utc_offset>-28800</utc_offset>
-    <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme18/bg.gif</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>true</verified>
-    <following>true</following>
-    <statuses_count>745</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>true</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors>
-    <user_id>13</user_id>
-  </contributors>
-</status>
-<status>
-  <created_at>Sat May 08 01:39:13 +0000 2010</created_at>
-  <id>13581872903</id>
-  <text>Enjoying 2 barrels of @fledgling wine that will pour 3000 generous glasses. We've got a lot to work to do tonight. Cheers @roomtoread!</text>
-  <source>web</source>
-  <truncated>false</truncated>
-  <in_reply_to_status_id/>
-  <in_reply_to_user_id/>
-  <favorited>false</favorited>
-  <in_reply_to_screen_name/>
-  <user>
-    <id>783214</id>
-    <name>Twitter</name>
-    <screen_name>twitter</screen_name>
-    <location>San Francisco, CA</location>
-    <description>Always wondering what's happening. </description>
-    <profile_image_url>http://a1.twimg.com/profile_images/878669694/twitter_bird_normal.jpg</profile_image_url>
-    <url>http://twitter.com</url>
-    <protected>false</protected>
-    <followers_count>3201330</followers_count>
-    <profile_background_color>ACDED6</profile_background_color>
-    <profile_text_color>333333</profile_text_color>
-    <profile_link_color>038543</profile_link_color>
-    <profile_sidebar_fill_color>F6F6F6</profile_sidebar_fill_color>
-    <profile_sidebar_border_color>EEEEEE</profile_sidebar_border_color>
-    <friends_count>246</friends_count>
-    <created_at>Tue Feb 20 14:35:54 +0000 2007</created_at>
-    <favourites_count>2</favourites_count>
-    <utc_offset>-28800</utc_offset>
-    <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-    <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme18/bg.gif</profile_background_image_url>
-    <profile_background_tile>false</profile_background_tile>
-    <notifications>false</notifications>
-    <geo_enabled>false</geo_enabled>
-    <verified>true</verified>
-    <following>true</following>
-    <statuses_count>742</statuses_count>
-    <lang>en</lang>
-    <contributors_enabled>true</contributors_enabled>
-  </user>
-  <geo/>
-  <coordinates/>
-  <place/>
-  <contributors>
-    <user_id>16739704</user_id>
-  </contributors>
-</status>
-</statuses>

+ 2429 - 0
tests/Zend/Service/Twitter/_files/users.search.json

@@ -0,0 +1,2429 @@
+[
+  {
+    "id":15012215,
+    "created_at":"Thu Jun 05 00:20:39 +0000 2008",
+    "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/126087338\/zendlogolarge_normal.gif",
+    "entities":{
+      "url":{
+        "urls":[
+          {
+            "url":"http:\/\/www.zend.com",
+            "indices":[
+              0,
+              19
+            ],
+            "display_url":null,
+            "expanded_url":null
+          }
+        ]
+      },
+      "description":{
+        "urls":[
+
+        ]
+      }
+    },
+    "profile_use_background_image":true,
+    "statuses_count":2368,
+    "url":"http:\/\/www.zend.com",
+    "profile_text_color":"333333",
+    "id_str":"15012215",
+    "follow_request_sent":false,
+    "utc_offset":-28800,
+    "default_profile_image":false,
+    "name":"zend",
+    "lang":"en",
+    "notifications":false,
+    "profile_sidebar_border_color":"C0DEED",
+    "favourites_count":0,
+    "friends_count":277,
+    "screen_name":"zend",
+    "protected":false,
+    "location":"Cupertino, Tel Aviv, Worldwide",
+    "profile_background_tile":false,
+    "followers_count":17664,
+    "profile_sidebar_fill_color":"DDEEF6",
+    "following":true,
+    "verified":false,
+    "default_profile":false,
+    "is_translator":false,
+    "profile_background_color":"C0DEED",
+    "contributors_enabled":false,
+    "time_zone":"Pacific Time (US \u0026 Canada)",
+    "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/126087338\/zendlogolarge_normal.gif",
+    "status":{
+      "entities":{
+        "user_mentions":[
+
+        ],
+        "hashtags":[
+
+        ],
+        "urls":[
+          {
+            "url":"http:\/\/t.co\/fvaw7rLSOe",
+            "indices":[
+              117,
+              139
+            ],
+            "display_url":"fb.me\/2befkr53L",
+            "expanded_url":"http:\/\/fb.me\/2befkr53L"
+          }
+        ]
+      },
+      "favorited":false,
+      "place":null,
+      "geo":null,
+      "retweet_count":3,
+      "coordinates":null,
+      "possibly_sensitive":false,
+      "contributors":null,
+      "in_reply_to_screen_name":null,
+      "in_reply_to_status_id_str":null,
+      "in_reply_to_user_id":null,
+      "id_str":"309661711189831683",
+      "retweeted":false,
+      "in_reply_to_user_id_str":null,
+      "truncated":false,
+      "text":"Did you see that the recording of our Zend Studio 10 introduction webinar with Natalia Bartol is available on our... http:\/\/t.co\/fvaw7rLSOe",
+      "in_reply_to_status_id":null,
+      "source":"\u003Ca href=\u0022http:\/\/www.facebook.com\/twitter\u0022 rel=\u0022nofollow\u0022\u003EFacebook\u003C\/a\u003E",
+      "id":309661711189831683,
+      "created_at":"Thu Mar 07 13:47:59 +0000 2013"
+    },
+    "profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/61357839\/zend_twitter.jpg",
+    "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/61357839\/zend_twitter.jpg",
+    "listed_count":1205,
+    "description":"Zend Technologies - The PHP Company",
+    "profile_link_color":"0084B4",
+    "geo_enabled":false
+  },
+  {
+    "id_str":"51834991",
+    "id":51834991,
+    "friends_count":121,
+    "created_at":"Sun Jun 28 20:33:54 +0000 2009",
+    "follow_request_sent":false,
+    "favourites_count":14,
+    "entities":{
+      "url":{
+        "urls":[
+          {
+            "expanded_url":null,
+            "url":"http:\/\/framework.zend.com",
+            "indices":[
+              0,
+              25
+            ],
+            "display_url":null
+          }
+        ]
+      },
+      "description":{
+        "urls":[
+
+        ]
+      }
+    },
+    "profile_sidebar_border_color":"829D5E",
+    "url":"http:\/\/framework.zend.com",
+    "utc_offset":3600,
+    "profile_background_tile":false,
+    "followers_count":4966,
+    "name":"Zend Framework",
+    "lang":"en",
+    "notifications":false,
+    "profile_sidebar_fill_color":"99CC33",
+    "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/421924014\/zend-framework_normal.png",
+    "screen_name":"zfChannel",
+    "default_profile":false,
+    "protected":false,
+    "verified":false,
+    "location":"ZF is all around you",
+    "profile_background_color":"352726",
+    "contributors_enabled":false,
+    "listed_count":338,
+    "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif",
+    "time_zone":"Amsterdam",
+    "following":true,
+    "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/421924014\/zend-framework_normal.png",
+    "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme5\/bg.gif",
+    "profile_link_color":"344869",
+    "geo_enabled":false,
+    "statuses_count":303,
+    "status":{
+      "entities":{
+        "user_mentions":[
+
+        ],
+        "hashtags":[
+
+        ],
+        "urls":[
+          {
+            "expanded_url":"http:\/\/yamgo.com",
+            "url":"http:\/\/t.co\/4LN2D8qs",
+            "indices":[
+              49,
+              69
+            ],
+            "display_url":"yamgo.com"
+          },
+          {
+            "expanded_url":"http:\/\/iadvize.com",
+            "url":"http:\/\/t.co\/BZhYbFOT",
+            "indices":[
+              71,
+              91
+            ],
+            "display_url":"iadvize.com"
+          },
+          {
+            "expanded_url":"http:\/\/truesocialmetrics.com",
+            "url":"http:\/\/t.co\/ecBayEur",
+            "indices":[
+              93,
+              113
+            ],
+            "display_url":"truesocialmetrics.com"
+          },
+          {
+            "expanded_url":"http:\/\/fr.semvisu.com",
+            "url":"http:\/\/t.co\/ugFsIO6q",
+            "indices":[
+              115,
+              135
+            ],
+            "display_url":"fr.semvisu.com"
+          }
+        ]
+      },
+      "place":null,
+      "geo":null,
+      "favorited":false,
+      "coordinates":null,
+      "retweet_count":5,
+      "possibly_sensitive":false,
+      "contributors":null,
+      "in_reply_to_screen_name":null,
+      "in_reply_to_user_id":null,
+      "text":"While ago I asked for ZF sites, here are some... http:\/\/t.co\/4LN2D8qs, http:\/\/t.co\/BZhYbFOT, http:\/\/t.co\/ecBayEur, http:\/\/t.co\/ugFsIO6q!",
+      "in_reply_to_status_id_str":null,
+      "id_str":"300749763253510144",
+      "retweeted":false,
+      "source":"web",
+      "truncated":false,
+      "id":300749763253510144,
+      "created_at":"Sun Feb 10 23:35:05 +0000 2013",
+      "in_reply_to_user_id_str":null,
+      "in_reply_to_status_id":null
+    },
+    "profile_use_background_image":true,
+    "is_translator":false,
+    "default_profile_image":false,
+    "description":"Zend Framework news and updates, other related subjects and even personal help.",
+    "profile_text_color":"3E4415"
+  },
+  {
+    "id":15184101,
+    "created_at":"Fri Jun 20 20:34:58 +0000 2008",
+    "entities":{
+      "url":{
+        "urls":[
+          {
+            "url":"http:\/\/www.zend.com\/resources\/webinars",
+            "indices":[
+              0,
+              38
+            ],
+            "display_url":null,
+            "expanded_url":null
+          }
+        ]
+      },
+      "description":{
+        "urls":[
+
+        ]
+      }
+    },
+    "profile_use_background_image":true,
+    "url":"http:\/\/www.zend.com\/resources\/webinars",
+    "profile_text_color":"333333",
+    "id_str":"15184101",
+    "follow_request_sent":false,
+    "statuses_count":861,
+    "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/558946653\/___moodspin___WebinarsatZend_normal.jpeg",
+    "utc_offset":-28800,
+    "name":"WebinarsatZend",
+    "lang":"en",
+    "default_profile_image":false,
+    "notifications":false,
+    "profile_sidebar_border_color":"C0DEED",
+    "screen_name":"WebinarsatZend",
+    "favourites_count":1,
+    "friends_count":25,
+    "protected":false,
+    "location":"Cupertino, CA",
+    "profile_background_tile":false,
+    "followers_count":2069,
+    "profile_sidebar_fill_color":"DDEEF6",
+    "is_translator":false,
+    "following":false,
+    "verified":false,
+    "default_profile":false,
+    "profile_background_color":"C0DEED",
+    "contributors_enabled":false,
+    "time_zone":"Pacific Time (US \u0026 Canada)",
+    "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/558946653\/___moodspin___WebinarsatZend_normal.jpeg",
+    "status":{
+      "in_reply_to_status_id_str":null,
+      "entities":{
+        "user_mentions":[
+          {
+            "screen_name":"alanseiden",
+            "name":"Alan Seiden",
+            "indices":[
+              80,
+              91
+            ],
+            "id_str":"85011009",
+            "id":85011009
+          }
+        ],
+        "hashtags":[
+          {
+            "indices":[
+              16,
+              20
+            ],
+            "text":"PHP"
+          },
+          {
+            "indices":[
+              43,
+              47
+            ],
+            "text":"IBM"
+          },
+          {
+            "indices":[
+              133,
+              138
+            ],
+            "text":"IBMi"
+          }
+        ],
+        "urls":[
+          {
+            "url":"http:\/\/t.co\/R7S5FlwkNC",
+            "indices":[
+              110,
+              132
+            ],
+            "display_url":"bit.ly\/ZpuJo2",
+            "expanded_url":"http:\/\/bit.ly\/ZpuJo2"
+          }
+        ]
+      },
+      "favorited":false,
+      "place":null,
+      "geo":null,
+      "retweet_count":2,
+      "possibly_sensitive":false,
+      "in_reply_to_user_id_str":null,
+      "coordinates":null,
+      "contributors":null,
+      "in_reply_to_screen_name":null,
+      "in_reply_to_user_id":null,
+      "id_str":"309288770790912000",
+      "retweeted":false,
+      "truncated":false,
+      "text":"Do you know the #PHP Toolkit from Zend and #IBM? If not, learn more about it in @alanseiden \u0027s webinar today! http:\/\/t.co\/R7S5FlwkNC #IBMi",
+      "in_reply_to_status_id":null,
+      "source":"web",
+      "id":309288770790912000,
+      "created_at":"Wed Mar 06 13:06:03 +0000 2013"
+    },
+    "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/61356634\/zend_twitter.jpg",
+    "description":"Zend Webinars provide knowledge and best practices around PHP development, deployment and management, across mobile and cloud. And they are FREE!",
+    "profile_link_color":"0084B4",
+    "geo_enabled":true,
+    "listed_count":150,
+    "profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/61356634\/zend_twitter.jpg"
+  },
+  {
+    "id":9244712,
+    "created_at":"Thu Oct 04 14:08:31 +0000 2007",
+    "statuses_count":13045,
+    "entities":{
+      "url":{
+        "urls":[
+          {
+            "url":"http:\/\/akrabat.com",
+            "indices":[
+              0,
+              18
+            ],
+            "display_url":null,
+            "expanded_url":null
+          }
+        ]
+      },
+      "description":{
+        "urls":[
+
+        ]
+      }
+    },
+    "default_profile_image":false,
+    "profile_use_background_image":true,
+    "friends_count":254,
+    "url":"http:\/\/akrabat.com",
+    "profile_text_color":"333333",
+    "favourites_count":421,
+    "id_str":"9244712",
+    "follow_request_sent":false,
+    "utc_offset":0,
+    "name":"Rob Allen",
+    "lang":"en",
+    "notifications":false,
+    "profile_sidebar_border_color":"eeeeee",
+    "screen_name":"akrabat",
+    "protected":false,
+    "is_translator":false,
+    "location":"Worcester, UK",
+    "profile_background_tile":true,
+    "followers_count":4204,
+    "default_profile":false,
+    "profile_sidebar_fill_color":"efefef",
+    "following":true,
+    "verified":false,
+    "profile_background_color":"131516",
+    "listed_count":417,
+    "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif",
+    "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2869088328\/73e2da0fd72b84ab0bf7a08ff90b104c_normal.jpeg",
+    "contributors_enabled":false,
+    "time_zone":"London",
+    "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2869088328\/73e2da0fd72b84ab0bf7a08ff90b104c_normal.jpeg",
+    "status":{
+      "entities":{
+        "user_mentions":[
+          {
+            "screen_name":"lornajane",
+            "name":"Lorna Mitchell",
+            "indices":[
+              0,
+              10
+            ],
+            "id_str":"7356002",
+            "id":7356002
+          }
+        ],
+        "hashtags":[
+
+        ],
+        "urls":[
+
+        ]
+      },
+      "favorited":false,
+      "place":null,
+      "geo":null,
+      "retweet_count":0,
+      "coordinates":null,
+      "contributors":null,
+      "in_reply_to_screen_name":"lornajane",
+      "in_reply_to_user_id":7356002,
+      "id_str":"309794226693091328",
+      "retweeted":false,
+      "truncated":false,
+      "text":"@lornajane I\u2019m expecting a blog post! As an encore, can you fix Google groups\u2019 \u201ctext area\u201d?!",
+      "in_reply_to_status_id_str":"309791344157655040",
+      "in_reply_to_status_id":309791344157655040,
+      "source":"\u003Ca href=\u0022http:\/\/tapbots.com\/tweetbot\u0022 rel=\u0022nofollow\u0022\u003ETweetbot for iOS\u003C\/a\u003E",
+      "id":309794226693091328,
+      "created_at":"Thu Mar 07 22:34:34 +0000 2013",
+      "in_reply_to_user_id_str":"7356002"
+    },
+    "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme14\/bg.gif",
+    "description":"Author of Zend Framework in Action. Husband. Father of two sons. Creator of Daily Jotter for Mac",
+    "profile_link_color":"009999",
+    "geo_enabled":true
+  },
+  {
+    "id":9594462,
+    "created_at":"Mon Oct 22 09:40:49 +0000 2007",
+    "entities":{
+      "url":{
+        "urls":[
+          {
+            "url":"http:\/\/dragonbe.com",
+            "indices":[
+              0,
+              19
+            ],
+            "display_url":null,
+            "expanded_url":null
+          }
+        ]
+      },
+      "description":{
+        "urls":[
+
+        ]
+      }
+    },
+    "profile_use_background_image":true,
+    "statuses_count":14944,
+    "url":"http:\/\/dragonbe.com",
+    "profile_text_color":"666666",
+    "id_str":"9594462",
+    "follow_request_sent":false,
+    "utc_offset":3600,
+    "default_profile_image":false,
+    "name":"Michelangelo van Dam",
+    "lang":"en",
+    "notifications":false,
+    "profile_sidebar_border_color":"181A1E",
+    "favourites_count":387,
+    "friends_count":464,
+    "screen_name":"DragonBe",
+    "is_translator":false,
+    "protected":false,
+    "location":"Mechelen, Antwerp, Belgium",
+    "profile_background_tile":false,
+    "followers_count":2696,
+    "profile_banner_url":"https:\/\/twimg0-a.akamaihd.net\/profile_banners\/9594462\/1354579428",
+    "profile_sidebar_fill_color":"252429",
+    "following":true,
+    "verified":false,
+    "default_profile":false,
+    "profile_background_color":"1A1B1F",
+    "profile_image_url_https":"https:\/\/twimg0-a.akamaihd.net\/profile_images\/2694181454\/3b0c7ca0cd31c0cc5f6984cfebc48ff2_normal.jpeg",
+    "contributors_enabled":false,
+    "time_zone":"Brussels",
+    "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2694181454\/3b0c7ca0cd31c0cc5f6984cfebc48ff2_normal.jpeg",
+    "status":{
+      "entities":{
+        "user_mentions":[
+          {
+            "screen_name":"grmpyprogrammer",
+            "name":"Chris Hartjes",
+            "indices":[
+              0,
+              16
+            ],
+            "id_str":"7418052",
+            "id":7418052
+          }
+        ],
+        "hashtags":[
+
+        ],
+        "urls":[
+
+        ]
+      },
+      "favorited":false,
+      "place":{
+        "name":"Mechelen",
+        "url":"http:\/\/api.twitter.com\/1\/geo\/id\/6d6198a460e4073a.json",
+        "country":"Belgium",
+        "place_type":"city",
+        "country_code":"BE",
+        "bounding_box":{
+          "type":"Polygon",
+          "coordinates":[
+            [
+              [
+                4.370356,
+                50.9911961
+              ],
+              [
+                4.5487362,
+                50.9911961
+              ],
+              [
+                4.5487362,
+                51.0785736
+              ],
+              [
+                4.370356,
+                51.0785736
+              ]
+            ]
+          ]
+        },
+        "attributes":{
+
+        },
+        "id":"6d6198a460e4073a",
+        "full_name":"Mechelen, Mechelen"
+      },
+      "geo":{
+        "type":"Point",
+        "coordinates":[
+          51.03010369,
+          4.46616853
+        ]
+      },
+      "retweet_count":0,
+      "in_reply_to_status_id_str":"309765981805363200",
+      "coordinates":{
+        "type":"Point",
+        "coordinates":[
+          4.46616853,
+          51.03010369
+        ]
+      },
+      "in_reply_to_user_id_str":"7418052",
+      "contributors":null,
+      "in_reply_to_screen_name":"grmpyprogrammer",
+      "in_reply_to_user_id":7418052,
+      "id_str":"309772050057265152",
+      "retweeted":false,
+      "truncated":false,
+      "text":"@grmpyprogrammer well deserved! Keep up this evangelizing of testing!",
+      "in_reply_to_status_id":309765981805363200,
+      "source":"\u003Ca href=\u0022http:\/\/twitter.com\/download\/iphone\u0022 rel=\u0022nofollow\u0022\u003ETwitter for iPhone\u003C\/a\u003E",
+      "id":309772050057265152,
+      "created_at":"Thu Mar 07 21:06:26 +0000 2013"
+    },
+    "profile_background_image_url_https":"https:\/\/twimg0-a.akamaihd.net\/images\/themes\/theme9\/bg.gif",
+    "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme9\/bg.gif",
+    "listed_count":255,
+    "description":"Michelangelo is a senior PHP\/Zend Framework consultant, a member of the PHP community and president of the PHP user group PHPBenelux.",
+    "profile_link_color":"2FC2EF",
+    "geo_enabled":true
+  },
+  {
+    "is_translator":false,
+    "id":9453382,
+    "created_at":"Mon Oct 15 11:34:13 +0000 2007",
+    "entities":{
+      "url":{
+        "urls":[
+          {
+            "url":"http:\/\/mwop.net\/",
+            "indices":[
+              0,
+              16
+            ],
+            "display_url":null,
+            "expanded_url":null
+          }
+        ]
+      },
+      "description":{
+        "urls":[
+
+        ]
+      }
+    },
+    "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+    "profile_use_background_image":true,
+    "statuses_count":13317,
+    "url":"http:\/\/mwop.net\/",
+    "profile_text_color":"3E4415",
+    "id_str":"9453382",
+    "follow_request_sent":false,
+    "utc_offset":3600,
+    "default_profile_image":false,
+    "name":"weierophinney",
+    "lang":"en",
+    "notifications":false,
+    "profile_sidebar_border_color":"829D5E",
+    "favourites_count":357,
+    "friends_count":191,
+    "screen_name":"mwop",
+    "protected":false,
+    "location":"Sioux Falls, SD",
+    "profile_background_tile":false,
+    "followers_count":6372,
+    "profile_sidebar_fill_color":"99CC33",
+    "following":false,
+    "verified":false,
+    "default_profile":false,
+    "profile_background_color":"352726",
+    "contributors_enabled":false,
+    "time_zone":"Brussels",
+    "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+    "status":{
+      "entities":{
+        "user_mentions":[
+          {
+            "screen_name":"rdohms",
+            "name":"Rafael Dohms",
+            "indices":[
+              0,
+              7
+            ],
+            "id_str":"9453502",
+            "id":9453502
+          },
+          {
+            "screen_name":"tiscilla",
+            "name":"Tiscilla C. Dohms",
+            "indices":[
+              97,
+              106
+            ],
+            "id_str":"36050374",
+            "id":36050374
+          }
+        ],
+        "hashtags":[
+
+        ],
+        "urls":[
+
+        ]
+      },
+      "favorited":false,
+      "place":null,
+      "geo":null,
+      "retweet_count":0,
+      "coordinates":null,
+      "in_reply_to_status_id_str":null,
+      "contributors":null,
+      "in_reply_to_screen_name":"rdohms",
+      "in_reply_to_user_id":9453502,
+      "in_reply_to_user_id_str":"9453502",
+      "id_str":"309770838184452097",
+      "retweeted":false,
+      "truncated":false,
+      "text":"@rdohms Happy birthday! Hope you still have some pop tarts left to celebrate. While you can. \/cc @tiscilla",
+      "in_reply_to_status_id":null,
+      "source":"\u003Ca href=\u0022http:\/\/hotot.org\u0022 rel=\u0022nofollow\u0022\u003EHotot for Chrome\u003C\/a\u003E",
+      "id":309770838184452097,
+      "created_at":"Thu Mar 07 21:01:37 +0000 2013"
+    },
+    "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif",
+    "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme5\/bg.gif",
+    "listed_count":611,
+    "description":"PHP and ZF Developer; crazed father of two.",
+    "profile_link_color":"D02B55",
+    "geo_enabled":false
+  },
+  {
+    "is_translator":false,
+    "id":12778882,
+    "created_at":"Mon Jan 28 09:56:17 +0000 2008",
+    "entities":{
+      "url":{
+        "urls":[
+          {
+            "url":"http:\/\/phpdeveloper.org",
+            "indices":[
+              0,
+              23
+            ],
+            "display_url":null,
+            "expanded_url":null
+          }
+        ]
+      },
+      "description":{
+        "urls":[
+
+        ]
+      }
+    },
+    "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/46486852\/twitter_img_normal.gif",
+    "profile_use_background_image":true,
+    "statuses_count":9226,
+    "url":"http:\/\/phpdeveloper.org",
+    "profile_text_color":"000000",
+    "id_str":"12778882",
+    "follow_request_sent":false,
+    "utc_offset":-25200,
+    "default_profile_image":false,
+    "name":"phpdeveloper",
+    "lang":"en",
+    "notifications":false,
+    "profile_sidebar_border_color":"7D4D4D",
+    "favourites_count":0,
+    "friends_count":1,
+    "screen_name":"phpdeveloper",
+    "protected":false,
+    "location":null,
+    "profile_background_tile":false,
+    "followers_count":11255,
+    "profile_sidebar_fill_color":"D5D5D5",
+    "following":false,
+    "verified":false,
+    "default_profile":false,
+    "profile_background_color":"FFFFFF",
+    "contributors_enabled":false,
+    "time_zone":"Mountain Time (US \u0026 Canada)",
+    "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/46486852\/twitter_img_normal.gif",
+    "status":{
+      "entities":{
+        "user_mentions":[
+
+        ],
+        "hashtags":[
+
+        ],
+        "urls":[
+          {
+            "url":"http:\/\/t.co\/XpCeabAQqL",
+            "indices":[
+              114,
+              136
+            ],
+            "display_url":"bit.ly\/10lZiji",
+            "expanded_url":"http:\/\/bit.ly\/10lZiji"
+          }
+        ]
+      },
+      "favorited":false,
+      "place":null,
+      "geo":null,
+      "retweet_count":0,
+      "coordinates":null,
+      "in_reply_to_status_id_str":null,
+      "contributors":null,
+      "in_reply_to_screen_name":null,
+      "in_reply_to_user_id":null,
+      "in_reply_to_user_id_str":null,
+      "id_str":"309737475574738945",
+      "retweeted":false,
+      "truncated":false,
+      "text":"Lorna Mitchell: Installing XHGui: \nLorna Mitchell has a new post today showing you how to install XHGui to hel... http:\/\/t.co\/XpCeabAQqL",
+      "possibly_sensitive":false,
+      "in_reply_to_status_id":null,
+      "source":"\u003Ca href=\u0022http:\/\/twitterfeed.com\u0022 rel=\u0022nofollow\u0022\u003Etwitterfeed\u003C\/a\u003E",
+      "id":309737475574738945,
+      "created_at":"Thu Mar 07 18:49:03 +0000 2013"
+    },
+    "profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/1927752\/sidebar_img.gif",
+    "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/1927752\/sidebar_img.gif",
+    "listed_count":681,
+    "description":"PHPDeveloper.org - PHP News, Views \u0026 Community",
+    "profile_link_color":"961A1E",
+    "geo_enabled":false
+  },
+  {
+    "id":24173089,
+    "created_at":"Fri Mar 13 13:51:31 +0000 2009",
+    "profile_image_url_https":"https:\/\/twimg0-a.akamaihd.net\/profile_images\/94865980\/39d66a8cf.7605677_normal.jpg",
+    "entities":{
+      "url":{
+        "urls":[
+          {
+            "url":"http:\/\/t.co\/zLVoh56J",
+            "indices":[
+              0,
+              20
+            ],
+            "display_url":"goo.gl\/YU5C2",
+            "expanded_url":"http:\/\/goo.gl\/YU5C2"
+          }
+        ]
+      },
+      "description":{
+        "urls":[
+
+        ]
+      }
+    },
+    "profile_use_background_image":true,
+    "is_translator":false,
+    "statuses_count":895,
+    "url":"http:\/\/t.co\/zLVoh56J",
+    "profile_text_color":"333333",
+    "id_str":"24173089",
+    "follow_request_sent":false,
+    "utc_offset":3600,
+    "default_profile_image":false,
+    "name":"Jonathan Maron",
+    "lang":"en",
+    "notifications":false,
+    "profile_sidebar_border_color":"BDDCAD",
+    "favourites_count":2,
+    "friends_count":311,
+    "screen_name":"JonathanMaron",
+    "protected":false,
+    "location":"Charlotte \u00b7 Bremen \u00b7 Taipei",
+    "profile_background_tile":false,
+    "followers_count":5213,
+    "profile_sidebar_fill_color":"DDFFCC",
+    "following":false,
+    "verified":false,
+    "default_profile":false,
+    "profile_background_color":"9AE4E8",
+    "contributors_enabled":false,
+    "time_zone":"Berlin",
+    "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/94865980\/39d66a8cf.7605677_normal.jpg",
+    "status":{
+      "entities":{
+        "user_mentions":[
+
+        ],
+        "hashtags":[
+          {
+            "indices":[
+              90,
+              95
+            ],
+            "text":"jobs"
+          }
+        ],
+        "urls":[
+          {
+            "url":"http:\/\/t.co\/fTUapkKc",
+            "indices":[
+              96,
+              116
+            ],
+            "display_url":"lnkd.in\/T_Xk8C",
+            "expanded_url":"http:\/\/lnkd.in\/T_Xk8C"
+          }
+        ]
+      },
+      "favorited":false,
+      "place":null,
+      "geo":null,
+      "retweet_count":2,
+      "coordinates":null,
+      "contributors":null,
+      "in_reply_to_screen_name":null,
+      "in_reply_to_status_id_str":null,
+      "in_reply_to_user_id":null,
+      "id_str":"303484676146855936",
+      "retweeted":false,
+      "in_reply_to_user_id_str":null,
+      "truncated":false,
+      "text":"I\u0027m hiring! Web Developer - PHP, Zend Framework, HTM at The Imaging Source Asia  - Taiwan #jobs http:\/\/t.co\/fTUapkKc",
+      "in_reply_to_status_id":null,
+      "source":"\u003Ca href=\u0022http:\/\/www.linkedin.com\/\u0022 rel=\u0022nofollow\u0022\u003ELinkedIn\u003C\/a\u003E",
+      "id":303484676146855936,
+      "created_at":"Mon Feb 18 12:42:39 +0000 2013",
+      "possibly_sensitive":false
+    },
+    "profile_background_image_url_https":"https:\/\/twimg0-a.akamaihd.net\/profile_background_images\/6047727\/sky369.jpg",
+    "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/6047727\/sky369.jpg",
+    "listed_count":305,
+    "description":"Head of Web Development. Multi-Cultural Project Manger in Europe and Asia. Senior PHP Developer. Unconference Organizer. Zend Framework 1 and 2 Contributor.",
+    "profile_link_color":"0084B4",
+    "geo_enabled":false
+  },
+  {
+    "is_translator":false,
+    "id":9075802,
+    "created_at":"Mon Sep 24 19:35:22 +0000 2007",
+    "entities":{
+      "url":{
+        "urls":[
+          {
+            "url":"http:\/\/blog.astrumfutura.com",
+            "indices":[
+              0,
+              28
+            ],
+            "display_url":null,
+            "expanded_url":null
+          }
+        ]
+      },
+      "description":{
+        "urls":[
+
+        ]
+      }
+    },
+    "profile_use_background_image":true,
+    "url":"http:\/\/blog.astrumfutura.com",
+    "profile_text_color":"3E4415",
+    "id_str":"9075802",
+    "follow_request_sent":false,
+    "statuses_count":9614,
+    "utc_offset":0,
+    "name":"P\u00e1draic Brady",
+    "lang":"en",
+    "default_profile_image":false,
+    "notifications":false,
+    "profile_sidebar_border_color":"829D5E",
+    "screen_name":"padraicb",
+    "favourites_count":70,
+    "friends_count":870,
+    "profile_image_url_https":"https:\/\/twimg0-a.akamaihd.net\/profile_images\/374757042\/twitterProfilePhoto_normal.jpg",
+    "protected":false,
+    "location":"Dublin, Ireland, Europe!",
+    "profile_background_tile":false,
+    "followers_count":2561,
+    "profile_sidebar_fill_color":"99CC33",
+    "following":true,
+    "verified":false,
+    "default_profile":false,
+    "profile_background_color":"352726",
+    "contributors_enabled":false,
+    "time_zone":"Dublin",
+    "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/374757042\/twitterProfilePhoto_normal.jpg",
+    "status":{
+      "entities":{
+        "user_mentions":[
+
+        ],
+        "hashtags":[
+
+        ],
+        "urls":[
+          {
+            "url":"http:\/\/t.co\/bsPABZjxCb",
+            "indices":[
+              51,
+              73
+            ],
+            "display_url":"kck.st\/YPBIUV",
+            "expanded_url":"http:\/\/kck.st\/YPBIUV"
+          }
+        ]
+      },
+      "favorited":false,
+      "place":null,
+      "geo":null,
+      "retweet_count":2,
+      "in_reply_to_status_id_str":null,
+      "coordinates":null,
+      "in_reply_to_user_id_str":null,
+      "contributors":null,
+      "in_reply_to_screen_name":null,
+      "in_reply_to_user_id":null,
+      "id_str":"309786369847328769",
+      "retweeted":false,
+      "possibly_sensitive":false,
+      "truncated":false,
+      "text":"This kickstarter is quickly becoming ridiculous... http:\/\/t.co\/bsPABZjxCb $1.8m in two days. ~30 days to go.",
+      "in_reply_to_status_id":null,
+      "source":"\u003Ca href=\u0022http:\/\/www.tweetdeck.com\u0022 rel=\u0022nofollow\u0022\u003ETweetDeck\u003C\/a\u003E",
+      "id":309786369847328769,
+      "created_at":"Thu Mar 07 22:03:20 +0000 2013"
+    },
+    "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme5\/bg.gif",
+    "description":"Grumpy Irish PHP developer. Contributor to Zend Framework. Author of the Web Pirate\u0027s Guide To PHP Security. Creator of Mockery, Escaper and Stickler libraries.",
+    "profile_link_color":"D02B55",
+    "geo_enabled":false,
+    "listed_count":259,
+    "profile_background_image_url_https":"https:\/\/twimg0-a.akamaihd.net\/images\/themes\/theme5\/bg.gif"
+  },
+  {
+    "is_translator":false,
+    "id":26628904,
+    "created_at":"Wed Mar 25 23:42:12 +0000 2009",
+    "entities":{
+      "url":{
+        "urls":[
+          {
+            "url":"http:\/\/www.planet-php.net\/",
+            "indices":[
+              0,
+              26
+            ],
+            "display_url":null,
+            "expanded_url":null
+          }
+        ]
+      },
+      "description":{
+        "urls":[
+
+        ]
+      }
+    },
+    "profile_use_background_image":true,
+    "statuses_count":5135,
+    "url":"http:\/\/www.planet-php.net\/",
+    "profile_text_color":"333333",
+    "id_str":"26628904",
+    "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/584197411\/twitterProfilePhoto_normal.jpg",
+    "follow_request_sent":false,
+    "utc_offset":0,
+    "default_profile_image":false,
+    "name":"Planet PHP",
+    "lang":"en",
+    "notifications":false,
+    "profile_sidebar_border_color":"C0DEED",
+    "favourites_count":0,
+    "friends_count":45,
+    "screen_name":"planetphp",
+    "protected":false,
+    "location":"Web",
+    "profile_background_tile":false,
+    "followers_count":19005,
+    "profile_sidebar_fill_color":"DDEEF6",
+    "following":true,
+    "verified":false,
+    "default_profile":true,
+    "profile_background_color":"C0DEED",
+    "contributors_enabled":false,
+    "time_zone":"London",
+    "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/584197411\/twitterProfilePhoto_normal.jpg",
+    "status":{
+      "entities":{
+        "user_mentions":[
+
+        ],
+        "hashtags":[
+
+        ],
+        "urls":[
+
+        ]
+      },
+      "favorited":false,
+      "place":null,
+      "geo":null,
+      "retweet_count":0,
+      "in_reply_to_status_id_str":null,
+      "coordinates":null,
+      "contributors":null,
+      "in_reply_to_screen_name":null,
+      "in_reply_to_user_id_str":null,
+      "in_reply_to_user_id":null,
+      "id_str":"309748553553702912",
+      "retweeted":false,
+      "truncated":false,
+      "text":"Service Announcement: Due to a move of our (physical) servers to another data center, Planet PHP will be offline tomorrow night (CET\/UTC)",
+      "in_reply_to_status_id":null,
+      "source":"\u003Ca href=\u0022http:\/\/www.echofon.com\/\u0022 rel=\u0022nofollow\u0022\u003EEchofon\u003C\/a\u003E",
+      "id":309748553553702912,
+      "created_at":"Thu Mar 07 19:33:04 +0000 2013"
+    },
+    "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png",
+    "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png",
+    "listed_count":1131,
+    "description":"Echo of Planet PHP",
+    "profile_link_color":"0084B4",
+    "geo_enabled":false
+  },
+  {
+    "id":14309129,
+    "created_at":"Sat Apr 05 08:01:22 +0000 2008",
+    "entities":{
+      "description":{
+        "urls":[
+
+        ]
+      }
+    },
+    "profile_use_background_image":true,
+    "url":null,
+    "profile_text_color":"333333",
+    "id_str":"14309129",
+    "default_profile":true,
+    "follow_request_sent":false,
+    "utc_offset":-28800,
+    "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1879952169\/IMG_0829-4_normal.JPG",
+    "name":"andigutmans",
+    "lang":"en",
+    "notifications":false,
+    "profile_sidebar_border_color":"C0DEED",
+    "screen_name":"andigutmans",
+    "protected":false,
+    "listed_count":306,
+    "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png",
+    "location":null,
+    "profile_background_tile":false,
+    "followers_count":3284,
+    "profile_sidebar_fill_color":"DDEEF6",
+    "following":true,
+    "verified":false,
+    "statuses_count":951,
+    "profile_background_color":"C0DEED",
+    "default_profile_image":false,
+    "contributors_enabled":false,
+    "is_translator":false,
+    "favourites_count":3,
+    "time_zone":"Pacific Time (US \u0026 Canada)",
+    "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1879952169\/IMG_0829-4_normal.JPG",
+    "friends_count":372,
+    "status":{
+      "entities":{
+        "user_mentions":[
+          {
+            "screen_name":"bhorowitz",
+            "name":"bhorowitz",
+            "indices":[
+              3,
+              13
+            ],
+            "id_str":"16242081",
+            "id":16242081
+          }
+        ],
+        "hashtags":[
+
+        ],
+        "urls":[
+          {
+            "url":"http:\/\/t.co\/qAxyTTGWYo",
+            "indices":[
+              54,
+              76
+            ],
+            "display_url":"rapgenius.com\/1548040",
+            "expanded_url":"http:\/\/rapgenius.com\/1548040"
+          }
+        ]
+      },
+      "favorited":false,
+      "retweeted_status":{
+        "entities":{
+          "user_mentions":[
+
+          ],
+          "hashtags":[
+
+          ],
+          "urls":[
+            {
+              "url":"http:\/\/t.co\/qAxyTTGWYo",
+              "indices":[
+                39,
+                61
+              ],
+              "display_url":"rapgenius.com\/1548040",
+              "expanded_url":"http:\/\/rapgenius.com\/1548040"
+            }
+          ]
+        },
+        "favorited":false,
+        "place":null,
+        "geo":null,
+        "retweet_count":49,
+        "possibly_sensitive":false,
+        "in_reply_to_status_id_str":null,
+        "coordinates":null,
+        "contributors":null,
+        "in_reply_to_screen_name":null,
+        "in_reply_to_user_id_str":null,
+        "in_reply_to_user_id":null,
+        "id_str":"308018039599816704",
+        "retweeted":false,
+        "truncated":false,
+        "text":"Marc Andreessen decoding Andrew Mason: http:\/\/t.co\/qAxyTTGWYo",
+        "in_reply_to_status_id":null,
+        "source":"web",
+        "id":308018039599816704,
+        "created_at":"Sun Mar 03 00:56:37 +0000 2013"
+      },
+      "place":null,
+      "geo":null,
+      "retweet_count":49,
+      "possibly_sensitive":false,
+      "in_reply_to_status_id_str":null,
+      "coordinates":null,
+      "contributors":null,
+      "in_reply_to_screen_name":null,
+      "in_reply_to_user_id_str":null,
+      "in_reply_to_user_id":null,
+      "id_str":"308025904884490240",
+      "retweeted":false,
+      "truncated":false,
+      "text":"RT @bhorowitz: Marc Andreessen decoding Andrew Mason: http:\/\/t.co\/qAxyTTGWYo",
+      "in_reply_to_status_id":null,
+      "source":"\u003Ca href=\u0022http:\/\/twitter.com\/#!\/download\/ipad\u0022 rel=\u0022nofollow\u0022\u003ETwitter for iPad\u003C\/a\u003E",
+      "id":308025904884490240,
+      "created_at":"Sun Mar 03 01:27:53 +0000 2013"
+    },
+    "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png",
+    "description":null,
+    "profile_link_color":"0084B4",
+    "geo_enabled":false
+  },
+  {
+    "id":4795561,
+    "created_at":"Sun Apr 15 20:54:29 +0000 2007",
+    "entities":{
+      "url":{
+        "urls":[
+          {
+            "url":"http:\/\/blog.calevans.com\/epk",
+            "indices":[
+              0,
+              28
+            ],
+            "display_url":null,
+            "expanded_url":null
+          }
+        ]
+      },
+      "description":{
+        "urls":[
+
+        ]
+      }
+    },
+    "profile_use_background_image":true,
+    "url":"http:\/\/blog.calevans.com\/epk",
+    "profile_text_color":"333333",
+    "id_str":"4795561",
+    "follow_request_sent":false,
+    "statuses_count":27679,
+    "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1376139884\/cal_dpc11_reallysmall_normal.png",
+    "utc_offset":-21600,
+    "name":"Cal Evans",
+    "lang":"en",
+    "default_profile_image":false,
+    "notifications":true,
+    "profile_sidebar_border_color":"eeeeee",
+    "screen_name":"CalEvans",
+    "favourites_count":17,
+    "friends_count":167,
+    "protected":false,
+    "location":"Nashville, TN",
+    "profile_background_tile":true,
+    "followers_count":5085,
+    "profile_sidebar_fill_color":"efefef",
+    "is_translator":false,
+    "following":true,
+    "verified":false,
+    "default_profile":false,
+    "profile_background_color":"131516",
+    "contributors_enabled":false,
+    "time_zone":"Central Time (US \u0026 Canada)",
+    "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1376139884\/cal_dpc11_reallysmall_normal.png",
+    "status":{
+      "in_reply_to_status_id_str":null,
+      "entities":{
+        "user_mentions":[
+          {
+            "screen_name":"nashvillegeeks",
+            "name":"Nashville Geeks",
+            "indices":[
+              3,
+              18
+            ],
+            "id_str":"14105595",
+            "id":14105595
+          },
+          {
+            "screen_name":"kateo",
+            "name":"Kate O\u0027Neill",
+            "indices":[
+              23,
+              29
+            ],
+            "id_str":"668563",
+            "id":668563
+          },
+          {
+            "screen_name":"ellestar27",
+            "name":"Lora Stevenson",
+            "indices":[
+              47,
+              58
+            ],
+            "id_str":"16287570",
+            "id":16287570
+          }
+        ],
+        "hashtags":[
+          {
+            "indices":[
+              104,
+              114
+            ],
+            "text":"nashville"
+          },
+          {
+            "indices":[
+              115,
+              120
+            ],
+            "text":"tech"
+          }
+        ],
+        "urls":[
+
+        ]
+      },
+      "favorited":false,
+      "retweeted_status":{
+        "in_reply_to_status_id_str":null,
+        "entities":{
+          "user_mentions":[
+            {
+              "screen_name":"kateo",
+              "name":"Kate O\u0027Neill",
+              "indices":[
+                3,
+                9
+              ],
+              "id_str":"668563",
+              "id":668563
+            },
+            {
+              "screen_name":"ellestar27",
+              "name":"Lora Stevenson",
+              "indices":[
+                27,
+                38
+              ],
+              "id_str":"16287570",
+              "id":16287570
+            }
+          ],
+          "hashtags":[
+            {
+              "indices":[
+                84,
+                94
+              ],
+              "text":"nashville"
+            },
+            {
+              "indices":[
+                95,
+                100
+              ],
+              "text":"tech"
+            }
+          ],
+          "urls":[
+            {
+              "url":"http:\/\/t.co\/3sziCz0vGK",
+              "indices":[
+                112,
+                134
+              ],
+              "display_url":"wp.me\/p2JUV5-hk",
+              "expanded_url":"http:\/\/wp.me\/p2JUV5-hk"
+            }
+          ]
+        },
+        "favorited":false,
+        "place":null,
+        "geo":null,
+        "retweet_count":3,
+        "possibly_sensitive":false,
+        "in_reply_to_user_id_str":null,
+        "coordinates":null,
+        "contributors":null,
+        "in_reply_to_screen_name":null,
+        "in_reply_to_user_id":null,
+        "id_str":"309794970510979074",
+        "retweeted":false,
+        "truncated":false,
+        "text":"RT @kateo: Code Kerfuffle: @ellestar27 elegantly explains some growing pains in the #nashville #tech community: http:\/\/t.co\/3sziCz0vGK",
+        "in_reply_to_status_id":null,
+        "source":"\u003Ca href=\u0022http:\/\/www.hootsuite.com\u0022 rel=\u0022nofollow\u0022\u003EHootSuite\u003C\/a\u003E",
+        "id":309794970510979074,
+        "created_at":"Thu Mar 07 22:37:31 +0000 2013"
+      },
+      "place":null,
+      "geo":null,
+      "retweet_count":3,
+      "in_reply_to_user_id_str":null,
+      "coordinates":null,
+      "contributors":null,
+      "in_reply_to_screen_name":null,
+      "in_reply_to_user_id":null,
+      "id_str":"309795592857600000",
+      "retweeted":false,
+      "truncated":false,
+      "text":"RT @nashvillegeeks: RT @kateo: Code Kerfuffle: @ellestar27 elegantly explains some growing pains in the #nashville #tech community: http ...",
+      "in_reply_to_status_id":null,
+      "source":"\u003Ca href=\u0022http:\/\/www.tweetdeck.com\u0022 rel=\u0022nofollow\u0022\u003ETweetDeck\u003C\/a\u003E",
+      "id":309795592857600000,
+      "created_at":"Thu Mar 07 22:39:59 +0000 2013"
+    },
+    "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme14\/bg.gif",
+    "description":"Author of Avoiding a Goat Rodeo: How to get the website you want http:\/\/bit.ly\/goat_rodeo Read this book before you hire a developer to build your website!",
+    "profile_link_color":"009999",
+    "geo_enabled":true,
+    "listed_count":540,
+    "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif"
+  },
+  {
+    "id":147184528,
+    "created_at":"Sun May 23 12:43:11 +0000 2010",
+    "entities":{
+      "description":{
+        "urls":[
+
+        ]
+      }
+    },
+    "profile_use_background_image":true,
+    "url":null,
+    "profile_text_color":"666666",
+    "id_str":"147184528",
+    "follow_request_sent":false,
+    "statuses_count":540,
+    "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/923777414\/zf-logo-mark-big-rect_normal.png",
+    "utc_offset":null,
+    "name":"All Zend Framework",
+    "lang":"en",
+    "default_profile_image":false,
+    "notifications":false,
+    "profile_sidebar_border_color":"181A1E",
+    "screen_name":"allzend",
+    "favourites_count":0,
+    "friends_count":0,
+    "protected":false,
+    "location":"Paris, France",
+    "profile_background_tile":false,
+    "followers_count":783,
+    "profile_sidebar_fill_color":"252429",
+    "is_translator":false,
+    "following":true,
+    "verified":false,
+    "default_profile":false,
+    "profile_background_color":"1A1B1F",
+    "contributors_enabled":false,
+    "time_zone":null,
+    "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/923777414\/zf-logo-mark-big-rect_normal.png",
+    "status":{
+      "in_reply_to_status_id_str":null,
+      "entities":{
+        "user_mentions":[
+
+        ],
+        "hashtags":[
+          {
+            "indices":[
+              131,
+              134
+            ],
+            "text":"zf"
+          }
+        ],
+        "urls":[
+          {
+            "url":"http:\/\/t.co\/jVGcNCsCPa",
+            "indices":[
+              108,
+              130
+            ],
+            "display_url":"bit.ly\/XCWWII",
+            "expanded_url":"http:\/\/bit.ly\/XCWWII"
+          }
+        ]
+      },
+      "favorited":false,
+      "place":null,
+      "geo":null,
+      "retweet_count":0,
+      "possibly_sensitive":false,
+      "in_reply_to_user_id_str":null,
+      "coordinates":null,
+      "contributors":null,
+      "in_reply_to_screen_name":null,
+      "in_reply_to_user_id":null,
+      "id_str":"308413623498313728",
+      "retweeted":false,
+      "truncated":false,
+      "text":"Event: WEBINAR: Mobile App Development in Zend Studio 10: WEBINAR: Mobile App Development in Zend Studio 10 http:\/\/t.co\/jVGcNCsCPa #zf",
+      "in_reply_to_status_id":null,
+      "source":"\u003Ca href=\u0022http:\/\/twitterfeed.com\u0022 rel=\u0022nofollow\u0022\u003Etwitterfeed\u003C\/a\u003E",
+      "id":308413623498313728,
+      "created_at":"Mon Mar 04 03:08:32 +0000 2013"
+    },
+    "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme9\/bg.gif",
+    "description":"Ultimate feed of all things Zend Framework. Pure knowledge. No noise. By @maciejzgadzaj",
+    "profile_link_color":"69B604",
+    "geo_enabled":false,
+    "listed_count":59,
+    "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme9\/bg.gif"
+  },
+  {
+    "id":50256541,
+    "created_at":"Wed Jun 24 08:55:29 +0000 2009",
+    "entities":{
+      "url":{
+        "urls":[
+          {
+            "url":"http:\/\/www.zend.com",
+            "indices":[
+              0,
+              19
+            ],
+            "display_url":null,
+            "expanded_url":null
+          }
+        ]
+      },
+      "description":{
+        "urls":[
+
+        ]
+      }
+    },
+    "profile_use_background_image":true,
+    "url":"http:\/\/www.zend.com",
+    "profile_text_color":"333333",
+    "id_str":"50256541",
+    "follow_request_sent":false,
+    "statuses_count":217,
+    "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1425848890\/Icon-for-Twitter-FR-flag_normal.gif",
+    "utc_offset":3600,
+    "name":"Zend France",
+    "lang":"fr",
+    "default_profile_image":false,
+    "notifications":false,
+    "profile_sidebar_border_color":"FFFFFF",
+    "screen_name":"Zend_France",
+    "favourites_count":1,
+    "friends_count":164,
+    "protected":false,
+    "location":"Levallois-Perret",
+    "profile_background_tile":false,
+    "followers_count":180,
+    "profile_sidebar_fill_color":"DDEEF6",
+    "is_translator":false,
+    "following":false,
+    "verified":false,
+    "default_profile":false,
+    "profile_background_color":"C0DEED",
+    "contributors_enabled":false,
+    "time_zone":"Paris",
+    "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1425848890\/Icon-for-Twitter-FR-flag_normal.gif",
+    "status":{
+      "in_reply_to_status_id_str":null,
+      "entities":{
+        "user_mentions":[
+          {
+            "screen_name":"MisfitGeek",
+            "name":"Joe Stagner",
+            "indices":[
+              3,
+              14
+            ],
+            "id_str":"9321012",
+            "id":9321012
+          }
+        ],
+        "hashtags":[
+
+        ],
+        "urls":[
+          {
+            "url":"http:\/\/t.co\/VkMvtTWRae",
+            "indices":[
+              78,
+              100
+            ],
+            "display_url":"misfitgeek.com\/2013\/02\/instal\u2026",
+            "expanded_url":"http:\/\/www.misfitgeek.com\/2013\/02\/installing-and-configuring-zend-server-6-on-mac-osx\/"
+          }
+        ]
+      },
+      "favorited":false,
+      "retweeted_status":{
+        "in_reply_to_status_id_str":null,
+        "entities":{
+          "user_mentions":[
+
+          ],
+          "hashtags":[
+
+          ],
+          "urls":[
+            {
+              "url":"http:\/\/t.co\/VkMvtTWRae",
+              "indices":[
+                62,
+                84
+              ],
+              "display_url":"misfitgeek.com\/2013\/02\/instal\u2026",
+              "expanded_url":"http:\/\/www.misfitgeek.com\/2013\/02\/installing-and-configuring-zend-server-6-on-mac-osx\/"
+            }
+          ]
+        },
+        "favorited":false,
+        "place":null,
+        "geo":null,
+        "retweet_count":6,
+        "possibly_sensitive":false,
+        "in_reply_to_user_id_str":null,
+        "coordinates":null,
+        "contributors":null,
+        "in_reply_to_screen_name":null,
+        "in_reply_to_user_id":null,
+        "id_str":"307153746515853313",
+        "retweeted":false,
+        "truncated":false,
+        "text":"New post: Installing and Configuring Zend Server 6 on Mac OSX http:\/\/t.co\/VkMvtTWRae",
+        "in_reply_to_status_id":null,
+        "source":"\u003Ca href=\u0022http:\/\/www.MisfitGeek.com\u0022 rel=\u0022nofollow\u0022\u003EMisfitGeek.com\u003C\/a\u003E",
+        "id":307153746515853313,
+        "created_at":"Thu Feb 28 15:42:14 +0000 2013"
+      },
+      "place":null,
+      "geo":null,
+      "retweet_count":6,
+      "possibly_sensitive":false,
+      "in_reply_to_user_id_str":null,
+      "coordinates":null,
+      "contributors":null,
+      "in_reply_to_screen_name":null,
+      "in_reply_to_user_id":null,
+      "id_str":"307154780801888256",
+      "retweeted":false,
+      "truncated":false,
+      "text":"RT @MisfitGeek: New post: Installing and Configuring Zend Server 6 on Mac OSX http:\/\/t.co\/VkMvtTWRae",
+      "in_reply_to_status_id":null,
+      "source":"web",
+      "id":307154780801888256,
+      "created_at":"Thu Feb 28 15:46:21 +0000 2013"
+    },
+    "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/791397899\/31a03fb7249b58fc5b264f7c29d9bfd1.jpeg",
+    "description":"Zend fournit des solutions pour d\u00e9velopper, g\u00e9rer et d\u00e9ployer des applis PHP",
+    "profile_link_color":"112585",
+    "geo_enabled":false,
+    "listed_count":13,
+    "profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/791397899\/31a03fb7249b58fc5b264f7c29d9bfd1.jpeg"
+  },
+  {
+    "id":786965016,
+    "created_at":"Tue Aug 28 13:06:07 +0000 2012",
+    "entities":{
+      "description":{
+        "urls":[
+
+        ]
+      }
+    },
+    "profile_use_background_image":true,
+    "url":null,
+    "profile_text_color":"333333",
+    "id_str":"786965016",
+    "follow_request_sent":false,
+    "statuses_count":3,
+    "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2552246710\/zf-logo-mark_normal.png",
+    "utc_offset":null,
+    "name":"Zend Framework Devel",
+    "lang":"en",
+    "default_profile_image":false,
+    "notifications":true,
+    "profile_sidebar_border_color":"C0DEED",
+    "screen_name":"zfdevteam",
+    "favourites_count":0,
+    "friends_count":0,
+    "protected":false,
+    "location":null,
+    "profile_background_tile":false,
+    "followers_count":135,
+    "profile_sidebar_fill_color":"DDEEF6",
+    "is_translator":false,
+    "following":true,
+    "verified":false,
+    "default_profile":true,
+    "profile_background_color":"C0DEED",
+    "contributors_enabled":false,
+    "time_zone":null,
+    "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2552246710\/zf-logo-mark_normal.png",
+    "status":{
+      "in_reply_to_status_id_str":null,
+      "entities":{
+        "user_mentions":[
+
+        ],
+        "hashtags":[
+          {
+            "indices":[
+              9,
+              12
+            ],
+            "text":"zf"
+          },
+          {
+            "indices":[
+              92,
+              106
+            ],
+            "text":"zendframework"
+          },
+          {
+            "indices":[
+              107,
+              111
+            ],
+            "text":"php"
+          }
+        ],
+        "urls":[
+          {
+            "url":"http:\/\/t.co\/9bQ2Md6KNF",
+            "indices":[
+              69,
+              91
+            ],
+            "display_url":"bit.ly\/zf1-12-2",
+            "expanded_url":"http:\/\/bit.ly\/zf1-12-2"
+          }
+        ]
+      },
+      "favorited":false,
+      "place":null,
+      "geo":null,
+      "retweet_count":22,
+      "possibly_sensitive":false,
+      "in_reply_to_user_id_str":null,
+      "coordinates":null,
+      "contributors":null,
+      "in_reply_to_screen_name":null,
+      "in_reply_to_user_id":null,
+      "id_str":"306168130894438400",
+      "retweeted":true,
+      "truncated":false,
+      "text":"Released #zf 1.12.2 - in particular, updating the Twitter component: http:\/\/t.co\/9bQ2Md6KNF #zendframework #php",
+      "in_reply_to_status_id":null,
+      "source":"web",
+      "id":306168130894438400,
+      "created_at":"Mon Feb 25 22:25:45 +0000 2013"
+    },
+    "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png",
+    "description":"Official Zend Framework development team account. http:\/\/framework.zend.com\/",
+    "profile_link_color":"0084B4",
+    "geo_enabled":false,
+    "listed_count":7,
+    "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png"
+  },
+  {
+    "id":53009060,
+    "created_at":"Thu Jul 02 08:23:41 +0000 2009",
+    "entities":{
+      "url":{
+        "urls":[
+          {
+            "url":"http:\/\/www.zend.com",
+            "indices":[
+              0,
+              19
+            ],
+            "display_url":null,
+            "expanded_url":null
+          }
+        ]
+      },
+      "description":{
+        "urls":[
+
+        ]
+      }
+    },
+    "profile_use_background_image":true,
+    "url":"http:\/\/www.zend.com",
+    "profile_text_color":"333333",
+    "id_str":"53009060",
+    "follow_request_sent":false,
+    "statuses_count":148,
+    "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2645974572\/646a68a2eb36beb744f8e15b5c6097f4_normal.jpeg",
+    "utc_offset":3600,
+    "name":"Stefanie Gebke",
+    "lang":"de",
+    "default_profile_image":false,
+    "notifications":false,
+    "profile_sidebar_border_color":"C0DEED",
+    "screen_name":"ZEND_Stefanie",
+    "favourites_count":0,
+    "friends_count":87,
+    "protected":false,
+    "location":"Germany, Stuttgart",
+    "profile_background_tile":false,
+    "followers_count":140,
+    "profile_sidebar_fill_color":"DDEEF6",
+    "is_translator":false,
+    "following":false,
+    "verified":false,
+    "default_profile":true,
+    "profile_background_color":"C0DEED",
+    "contributors_enabled":false,
+    "time_zone":"Berlin",
+    "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2645974572\/646a68a2eb36beb744f8e15b5c6097f4_normal.jpeg",
+    "status":{
+      "in_reply_to_status_id_str":null,
+      "entities":{
+        "user_mentions":[
+
+        ],
+        "hashtags":[
+
+        ],
+        "urls":[
+          {
+            "url":"http:\/\/t.co\/x60QC75e",
+            "indices":[
+              119,
+              139
+            ],
+            "display_url":"lnkd.in\/HS_CCK",
+            "expanded_url":"http:\/\/lnkd.in\/HS_CCK"
+          }
+        ]
+      },
+      "favorited":false,
+      "place":null,
+      "geo":null,
+      "retweet_count":0,
+      "possibly_sensitive":false,
+      "in_reply_to_user_id_str":null,
+      "coordinates":null,
+      "contributors":null,
+      "in_reply_to_screen_name":null,
+      "in_reply_to_user_id":null,
+      "id_str":"279533819902693376",
+      "retweeted":false,
+      "truncated":false,
+      "text":"Die wichtigsten Funktionalit\u00e4ten des automatisierten Deployment-Verfahrens von Zend Server 6 stellen wir in einem 6-Mi\u2026http:\/\/t.co\/x60QC75e",
+      "in_reply_to_status_id":null,
+      "source":"\u003Ca href=\u0022http:\/\/www.linkedin.com\/\u0022 rel=\u0022nofollow\u0022\u003ELinkedIn\u003C\/a\u003E",
+      "id":279533819902693376,
+      "created_at":"Fri Dec 14 10:30:30 +0000 2012"
+    },
+    "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png",
+    "description":"Zend Technologies GmbH, Senior Account Manager, Central Europe",
+    "profile_link_color":"0084B4",
+    "geo_enabled":false,
+    "listed_count":4,
+    "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png"
+  },
+  {
+    "id":34441429,
+    "created_at":"Wed Apr 22 23:26:25 +0000 2009",
+    "entities":{
+      "description":{
+        "urls":[
+
+        ]
+      }
+    },
+    "profile_use_background_image":true,
+    "url":null,
+    "profile_text_color":"333333",
+    "id_str":"34441429",
+    "follow_request_sent":false,
+    "statuses_count":2620,
+    "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/183352980\/Unbenannt-2_normal.jpg",
+    "utc_offset":-10800,
+    "name":"framework_zend",
+    "lang":"en",
+    "default_profile_image":false,
+    "notifications":false,
+    "profile_sidebar_border_color":"C0DEED",
+    "screen_name":"framework_zend",
+    "favourites_count":0,
+    "friends_count":15,
+    "protected":false,
+    "location":null,
+    "profile_background_tile":false,
+    "followers_count":1568,
+    "profile_sidebar_fill_color":"DDEEF6",
+    "is_translator":false,
+    "following":false,
+    "verified":false,
+    "default_profile":true,
+    "profile_background_color":"C0DEED",
+    "contributors_enabled":false,
+    "time_zone":"Greenland",
+    "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/183352980\/Unbenannt-2_normal.jpg",
+    "status":{
+      "in_reply_to_status_id_str":null,
+      "entities":{
+        "user_mentions":[
+
+        ],
+        "hashtags":[
+
+        ],
+        "urls":[
+          {
+            "url":"http:\/\/t.co\/sidOilGaZ0",
+            "indices":[
+              114,
+              136
+            ],
+            "display_url":"bit.ly\/14yZzMD",
+            "expanded_url":"http:\/\/bit.ly\/14yZzMD"
+          }
+        ]
+      },
+      "favorited":false,
+      "place":null,
+      "geo":null,
+      "retweet_count":0,
+      "possibly_sensitive":false,
+      "in_reply_to_user_id_str":null,
+      "coordinates":null,
+      "contributors":null,
+      "in_reply_to_screen_name":null,
+      "in_reply_to_user_id":null,
+      "id_str":"309762667642499073",
+      "retweeted":false,
+      "truncated":false,
+      "text":"Propel ORM Integration und Models: Hey,  \n \nwie handelt ihr den Zugriff auf die Propel Objekte ab? Greift ihr ... http:\/\/t.co\/sidOilGaZ0",
+      "in_reply_to_status_id":null,
+      "source":"\u003Ca href=\u0022http:\/\/twitterfeed.com\u0022 rel=\u0022nofollow\u0022\u003Etwitterfeed\u003C\/a\u003E",
+      "id":309762667642499073,
+      "created_at":"Thu Mar 07 20:29:09 +0000 2013"
+    },
+    "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png",
+    "description":"Blogging important informations on zend_framework",
+    "profile_link_color":"0084B4",
+    "geo_enabled":false,
+    "listed_count":89,
+    "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png"
+  },
+  {
+    "id":9737982,
+    "created_at":"Sat Oct 27 17:13:43 +0000 2007",
+    "entities":{
+      "url":{
+        "urls":[
+          {
+            "url":"http:\/\/www.magentocommerce.com\/",
+            "indices":[
+              0,
+              31
+            ],
+            "display_url":null,
+            "expanded_url":null
+          }
+        ]
+      },
+      "description":{
+        "urls":[
+
+        ]
+      }
+    },
+    "profile_use_background_image":true,
+    "url":"http:\/\/www.magentocommerce.com\/",
+    "profile_text_color":"000000",
+    "id_str":"9737982",
+    "follow_request_sent":false,
+    "statuses_count":3838,
+    "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1431382474\/DSN-157MagentoTwitter_UpdatedLogo_normal.png",
+    "utc_offset":-28800,
+    "name":"Magento",
+    "lang":"en",
+    "default_profile_image":false,
+    "notifications":false,
+    "profile_sidebar_border_color":"000000",
+    "screen_name":"magento",
+    "favourites_count":2,
+    "friends_count":12544,
+    "protected":false,
+    "location":"Los Angeles, CA",
+    "profile_background_tile":false,
+    "followers_count":30683,
+    "profile_sidebar_fill_color":"FFF7E1",
+    "is_translator":false,
+    "profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/9737982\/1358458709",
+    "following":false,
+    "verified":true,
+    "default_profile":false,
+    "profile_background_color":"000000",
+    "contributors_enabled":false,
+    "time_zone":"Pacific Time (US \u0026 Canada)",
+    "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1431382474\/DSN-157MagentoTwitter_UpdatedLogo_normal.png",
+    "status":{
+      "in_reply_to_status_id_str":null,
+      "entities":{
+        "user_mentions":[
+          {
+            "screen_name":"monocat",
+            "name":"Mosses Akizian",
+            "indices":[
+              3,
+              11
+            ],
+            "id_str":"16366137",
+            "id":16366137
+          }
+        ],
+        "hashtags":[
+          {
+            "indices":[
+              23,
+              39
+            ],
+            "text":"MagentoBugathon"
+          }
+        ],
+        "urls":[
+          {
+            "url":"http:\/\/t.co\/3VWM2PJl96",
+            "indices":[
+              86,
+              108
+            ],
+            "display_url":"monoc.at\/W8q3UM",
+            "expanded_url":"http:\/\/monoc.at\/W8q3UM"
+          }
+        ]
+      },
+      "favorited":false,
+      "retweeted_status":{
+        "in_reply_to_status_id_str":null,
+        "entities":{
+          "user_mentions":[
+
+          ],
+          "hashtags":[
+            {
+              "indices":[
+                10,
+                26
+              ],
+              "text":"MagentoBugathon"
+            }
+          ],
+          "urls":[
+            {
+              "url":"http:\/\/t.co\/3VWM2PJl96",
+              "indices":[
+                73,
+                95
+              ],
+              "display_url":"monoc.at\/W8q3UM",
+              "expanded_url":"http:\/\/monoc.at\/W8q3UM"
+            },
+            {
+              "url":"http:\/\/t.co\/6XZ8n95dIc",
+              "indices":[
+                118,
+                140
+              ],
+              "display_url":"monoc.at\/XKUBZ1",
+              "expanded_url":"http:\/\/monoc.at\/XKUBZ1"
+            }
+          ]
+        },
+        "favorited":false,
+        "place":null,
+        "geo":null,
+        "retweet_count":3,
+        "possibly_sensitive":false,
+        "in_reply_to_user_id_str":null,
+        "coordinates":null,
+        "contributors":null,
+        "in_reply_to_screen_name":null,
+        "in_reply_to_user_id":null,
+        "id_str":"309734410004099072",
+        "retweeted":false,
+        "truncated":false,
+        "text":"Attending #MagentoBugathon devs- please follow the GitHub acct 4 updates http:\/\/t.co\/3VWM2PJl96 Want 2 join us in LA? http:\/\/t.co\/6XZ8n95dIc",
+        "in_reply_to_status_id":null,
+        "source":"\u003Ca href=\u0022http:\/\/bitly.com\u0022 rel=\u0022nofollow\u0022\u003Ebitly\u003C\/a\u003E",
+        "id":309734410004099072,
+        "created_at":"Thu Mar 07 18:36:52 +0000 2013"
+      },
+      "place":null,
+      "geo":null,
+      "retweet_count":3,
+      "possibly_sensitive":false,
+      "in_reply_to_user_id_str":null,
+      "coordinates":null,
+      "contributors":null,
+      "in_reply_to_screen_name":null,
+      "in_reply_to_user_id":null,
+      "id_str":"309782857113542657",
+      "retweeted":false,
+      "truncated":false,
+      "text":"RT @monocat: Attending #MagentoBugathon devs- please follow the GitHub acct 4 updates http:\/\/t.co\/3VWM2PJl96 Want 2 join us in LA? http: ...",
+      "in_reply_to_status_id":null,
+      "source":"\u003Ca href=\u0022http:\/\/www.tweetdeck.com\u0022 rel=\u0022nofollow\u0022\u003ETweetDeck\u003C\/a\u003E",
+      "id":309782857113542657,
+      "created_at":"Thu Mar 07 21:49:23 +0000 2013"
+    },
+    "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/766413455\/e67020773abe0008269e7ff5878cf25b.jpeg",
+    "description":"Flexible eCommerce solutions, a vibrant extensions marketplace and an open global ecosystem",
+    "profile_link_color":"F47B20",
+    "geo_enabled":false,
+    "listed_count":1496,
+    "profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/766413455\/e67020773abe0008269e7ff5878cf25b.jpeg"
+  },
+  {
+    "id":129482704,
+    "created_at":"Sun Apr 04 12:39:19 +0000 2010",
+    "entities":{
+      "url":{
+        "urls":[
+          {
+            "url":"http:\/\/www.zend.com\/studio",
+            "indices":[
+              0,
+              26
+            ],
+            "display_url":null,
+            "expanded_url":null
+          }
+        ]
+      },
+      "description":{
+        "urls":[
+
+        ]
+      }
+    },
+    "profile_use_background_image":false,
+    "url":"http:\/\/www.zend.com\/studio",
+    "profile_text_color":"3C3940",
+    "id_str":"129482704",
+    "follow_request_sent":false,
+    "statuses_count":347,
+    "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/831022894\/st_normal.JPG",
+    "utc_offset":3600,
+    "name":"Zend Studio Team",
+    "lang":"en",
+    "default_profile_image":false,
+    "notifications":false,
+    "profile_sidebar_border_color":"5ED4DC",
+    "screen_name":"ZendStudioFan",
+    "favourites_count":0,
+    "friends_count":1829,
+    "protected":false,
+    "location":"Cupertino, CA",
+    "profile_background_tile":false,
+    "followers_count":963,
+    "profile_sidebar_fill_color":"A39B9B",
+    "is_translator":false,
+    "following":false,
+    "verified":false,
+    "default_profile":false,
+    "profile_background_color":"159909",
+    "contributors_enabled":false,
+    "time_zone":"Amsterdam",
+    "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/831022894\/st_normal.JPG",
+    "status":{
+      "in_reply_to_status_id_str":null,
+      "entities":{
+        "user_mentions":[
+          {
+            "screen_name":"nataliabartol",
+            "name":"Natalia Bartol",
+            "indices":[
+              3,
+              17
+            ],
+            "id_str":"245770498",
+            "id":245770498
+          }
+        ],
+        "hashtags":[
+
+        ],
+        "urls":[
+
+        ]
+      },
+      "favorited":false,
+      "retweeted_status":{
+        "in_reply_to_status_id_str":null,
+        "entities":{
+          "user_mentions":[
+
+          ],
+          "hashtags":[
+
+          ],
+          "urls":[
+            {
+              "url":"http:\/\/t.co\/Wi52c65h",
+              "indices":[
+                110,
+                130
+              ],
+              "display_url":"goo.gl\/EEG3x",
+              "expanded_url":"http:\/\/goo.gl\/EEG3x"
+            }
+          ]
+        },
+        "favorited":false,
+        "place":null,
+        "geo":null,
+        "retweet_count":2,
+        "possibly_sensitive":false,
+        "in_reply_to_user_id_str":null,
+        "coordinates":null,
+        "contributors":null,
+        "in_reply_to_screen_name":null,
+        "in_reply_to_user_id":null,
+        "id_str":"303899315728949248",
+        "retweeted":false,
+        "truncated":false,
+        "text":"Developed Cloud Connected Mobile application in Studio 10 Beta and now updated to final release? Please read: http:\/\/t.co\/Wi52c65h",
+        "in_reply_to_status_id":null,
+        "source":"web",
+        "id":303899315728949248,
+        "created_at":"Tue Feb 19 16:10:17 +0000 2013"
+      },
+      "place":null,
+      "geo":null,
+      "retweet_count":2,
+      "in_reply_to_user_id_str":null,
+      "coordinates":null,
+      "contributors":null,
+      "in_reply_to_screen_name":null,
+      "in_reply_to_user_id":null,
+      "id_str":"303899594364952576",
+      "retweeted":false,
+      "truncated":false,
+      "text":"RT @nataliabartol: Developed Cloud Connected Mobile application in Studio 10 Beta and now updated to final release? Please read: http:\/\/ ...",
+      "in_reply_to_status_id":null,
+      "source":"web",
+      "id":303899594364952576,
+      "created_at":"Tue Feb 19 16:11:24 +0000 2013"
+    },
+    "profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/93075947\/st.JPG",
+    "description":"Professional-grade PHP IDE designed to maximize developer productivity, solve application problems quickly and improve team collaboration",
+    "profile_link_color":"010F0E",
+    "geo_enabled":true,
+    "listed_count":72,
+    "profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/93075947\/st.JPG"
+  },
+  {
+    "id":928961,
+    "created_at":"Sun Mar 11 15:39:19 +0000 2007",
+    "entities":{
+      "url":{
+        "urls":[
+          {
+            "url":"http:\/\/toys.lerdorf.com",
+            "indices":[
+              0,
+              23
+            ],
+            "display_url":null,
+            "expanded_url":null
+          }
+        ]
+      },
+      "description":{
+        "urls":[
+
+        ]
+      }
+    },
+    "profile_use_background_image":true,
+    "url":"http:\/\/toys.lerdorf.com",
+    "profile_text_color":"666666",
+    "id_str":"928961",
+    "follow_request_sent":false,
+    "statuses_count":4181,
+    "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1844920209\/rl_crop-modified_normal.jpg",
+    "utc_offset":-28800,
+    "name":"Rasmus Lerdorf",
+    "lang":"en",
+    "default_profile_image":false,
+    "notifications":false,
+    "profile_sidebar_border_color":"181A1E",
+    "screen_name":"rasmus",
+    "favourites_count":3,
+    "friends_count":114,
+    "protected":false,
+    "location":"Santa Clara County, California",
+    "profile_background_tile":false,
+    "followers_count":22873,
+    "profile_sidebar_fill_color":"252429",
+    "is_translator":false,
+    "following":false,
+    "verified":false,
+    "default_profile":false,
+    "profile_background_color":"1A1B1F",
+    "contributors_enabled":false,
+    "time_zone":"Pacific Time (US \u0026 Canada)",
+    "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1844920209\/rl_crop-modified_normal.jpg",
+    "status":{
+      "in_reply_to_status_id_str":null,
+      "entities":{
+        "user_mentions":[
+          {
+            "screen_name":"marthakelly",
+            "name":"martha kelly",
+            "indices":[
+              15,
+              27
+            ],
+            "id_str":"17578918",
+            "id":17578918
+          }
+        ],
+        "hashtags":[
+          {
+            "indices":[
+              112,
+              117
+            ],
+            "text":"etsy"
+          }
+        ],
+        "urls":[
+          {
+            "url":"http:\/\/t.co\/POgyVprHaR",
+            "indices":[
+              30,
+              52
+            ],
+            "display_url":"onforb.es\/104EJE1",
+            "expanded_url":"http:\/\/onforb.es\/104EJE1"
+          }
+        ]
+      },
+      "favorited":false,
+      "place":{
+        "name":"Sunnyvale",
+        "url":"http:\/\/api.twitter.com\/1\/geo\/id\/45cadd6ef118ec9f.json",
+        "country":"United States",
+        "place_type":"city",
+        "country_code":"US",
+        "bounding_box":{
+          "type":"Polygon",
+          "coordinates":[
+            [
+              [
+                -122.065265,
+                37.329895
+              ],
+              [
+                -121.98242,
+                37.329895
+              ],
+              [
+                -121.98242,
+                37.464087
+              ],
+              [
+                -122.065265,
+                37.464087
+              ]
+            ]
+          ]
+        },
+        "attributes":{
+
+        },
+        "id":"45cadd6ef118ec9f",
+        "full_name":"Sunnyvale, CA"
+      },
+      "geo":null,
+      "retweet_count":6,
+      "possibly_sensitive":false,
+      "in_reply_to_user_id_str":null,
+      "coordinates":null,
+      "contributors":null,
+      "in_reply_to_screen_name":null,
+      "in_reply_to_user_id":null,
+      "id_str":"309198995660627968",
+      "retweeted":false,
+      "truncated":false,
+      "text":"Nice interview @marthakelly - http:\/\/t.co\/POgyVprHaR - and yes, I did notice your favourite languages answer :) #etsy",
+      "in_reply_to_status_id":null,
+      "source":"web",
+      "id":309198995660627968,
+      "created_at":"Wed Mar 06 07:09:19 +0000 2013"
+    },
+    "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme9\/bg.gif",
+    "description":"Breaking the Web",
+    "profile_link_color":"2FC2EF",
+    "geo_enabled":true,
+    "listed_count":1768,
+    "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme9\/bg.gif"
+  }
+]

+ 89 - 0
tests/Zend/Service/Twitter/_files/users.show.mwop.json

@@ -0,0 +1,89 @@
+{
+  "id":9453382,
+  "id_str":"9453382",
+  "name":"weierophinney",
+  "screen_name":"mwop",
+  "location":"Sioux Falls, SD",
+  "description":"PHP and ZF Developer; crazed father of two.",
+  "url":"http:\/\/mwop.net\/",
+  "entities":{
+    "url":{
+      "urls":[
+        {
+          "url":"http:\/\/mwop.net\/",
+          "expanded_url":null,
+          "indices":[
+            0,
+            16
+          ]
+        }
+      ]
+    },
+    "description":{
+      "urls":[
+
+      ]
+    }
+  },
+  "protected":false,
+  "followers_count":6358,
+  "friends_count":191,
+  "listed_count":610,
+  "created_at":"Mon Oct 15 11:34:13 +0000 2007",
+  "favourites_count":357,
+  "utc_offset":3600,
+  "time_zone":"Brussels",
+  "geo_enabled":false,
+  "verified":false,
+  "statuses_count":13279,
+  "lang":"en",
+  "status":{
+    "created_at":"Mon Mar 04 22:01:32 +0000 2013",
+    "id":308698753609646081,
+    "id_str":"308698753609646081",
+    "text":"I think Twitter has been deliberately vague about how to create the oauth_signature for its headers.",
+    "source":"\u003Ca href=\u0022http:\/\/hotot.org\u0022 rel=\u0022nofollow\u0022\u003EHotot for Chrome\u003C\/a\u003E",
+    "truncated":false,
+    "in_reply_to_status_id":null,
+    "in_reply_to_status_id_str":null,
+    "in_reply_to_user_id":null,
+    "in_reply_to_user_id_str":null,
+    "in_reply_to_screen_name":null,
+    "geo":null,
+    "coordinates":null,
+    "place":null,
+    "contributors":null,
+    "retweet_count":0,
+    "entities":{
+      "hashtags":[
+
+      ],
+      "urls":[
+
+      ],
+      "user_mentions":[
+
+      ]
+    },
+    "favorited":false,
+    "retweeted":false
+  },
+  "contributors_enabled":false,
+  "is_translator":false,
+  "profile_background_color":"352726",
+  "profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme5\/bg.gif",
+  "profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif",
+  "profile_background_tile":false,
+  "profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+  "profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/58517578\/logo_normal.gif",
+  "profile_link_color":"D02B55",
+  "profile_sidebar_border_color":"829D5E",
+  "profile_sidebar_fill_color":"99CC33",
+  "profile_text_color":"3E4415",
+  "profile_use_background_image":true,
+  "default_profile":false,
+  "default_profile_image":false,
+  "following":false,
+  "follow_request_sent":false,
+  "notifications":false
+}

+ 0 - 48
tests/Zend/Service/Twitter/_files/users.show.twitter.xml

@@ -1,48 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<user>
-  <id>783214</id>
-  <name>Twitter</name>
-  <screen_name>twitter</screen_name>
-  <location>San Francisco, CA</location>
-  <description>Always wondering what's happening. </description>
-  <profile_image_url>http://a1.twimg.com/profile_images/878669694/twitter_bird_normal.jpg</profile_image_url>
-  <url>http://twitter.com</url>
-  <protected>false</protected>
-  <followers_count>3229178</followers_count>
-  <profile_background_color>ACDED6</profile_background_color>
-  <profile_text_color>333333</profile_text_color>
-  <profile_link_color>038543</profile_link_color>
-  <profile_sidebar_fill_color>F6F6F6</profile_sidebar_fill_color>
-  <profile_sidebar_border_color>EEEEEE</profile_sidebar_border_color>
-  <friends_count>247</friends_count>
-  <created_at>Tue Feb 20 14:35:54 +0000 2007</created_at>
-  <favourites_count>2</favourites_count>
-  <utc_offset>-28800</utc_offset>
-  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
-  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme18/bg.gif</profile_background_image_url>
-  <profile_background_tile>false</profile_background_tile>
-  <notifications>false</notifications>
-  <geo_enabled>false</geo_enabled>
-  <verified>true</verified>
-  <following>true</following>
-  <statuses_count>745</statuses_count>
-  <lang>en</lang>
-  <contributors_enabled>true</contributors_enabled>
-  <status>
-    <created_at>Fri May 28 21:14:05 +0000 2010</created_at>
-    <id>14932507266</id>
-    <text>Good news for people everywhere http://bit.ly/b1Cf9A</text>
-    <source>web</source>
-    <truncated>false</truncated>
-    <in_reply_to_status_id/>
-    <in_reply_to_user_id/>
-    <favorited>false</favorited>
-    <in_reply_to_screen_name/>
-    <geo/>
-    <coordinates/>
-    <place/>
-    <contributors>
-      <user_id>16739704</user_id>
-    </contributors>
-  </status>
-</user>

部分文件因为文件数量过多而无法显示