<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
<link rel="self" type="application/atom+xml" href="http://theeyetribe.com/forum/feed.php?f=24&amp;t=293" />

<title>The Eye Tribe</title>
<subtitle>Developer Forum</subtitle>
<link href="http://theeyetribe.com/forum/index.php" />
<updated>2016-09-06T12:47:08+02:00</updated>

<author><name><![CDATA[The Eye Tribe]]></name></author>
<id>http://theeyetribe.com/forum/feed.php?f=24&amp;t=293</id>
<entry>
<author><name><![CDATA[pbawa1509@gmail.com]]></name></author>
<updated>2016-09-06T12:47:08+02:00</updated>
<published>2016-09-06T12:47:08+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=2619#p2619</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=2619#p2619"/>
<title type="html"><![CDATA[Re: calibration]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=2619#p2619"><![CDATA[
Carlos, could you explain whats GraphicsLogic that youre using in the constructor of your code?<br /> Thanks<p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=12279">skatapbawa1509@gmail.com</a> — 06 Sep 2016, 12:47</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Anders]]></name></author>
<updated>2014-12-10T17:03:04+02:00</updated>
<published>2014-12-10T17:03:04+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=1565#p1565</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=1565#p1565"/>
<title type="html"><![CDATA[Re: calibration]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=1565#p1565"><![CDATA[
Np. Glad I could 'help'.<br /><br />Btw, our next SDK release will have hashCode() implementations for public datatypes.<br /><br />BR,<br />Anders<p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=120">skataAnders</a> — 10 Dec 2014, 17:03</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[alina]]></name></author>
<updated>2014-12-10T17:12:18+02:00</updated>
<published>2014-12-10T15:11:22+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=1564#p1564</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=1564#p1564"/>
<title type="html"><![CDATA[Re: calibration]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=1564#p1564"><![CDATA[
Hi,<br /><br />ok, I think now I understand the problem and it has nothing to do with the code. What I wanted to do is just not possible, and - thinking again - also doesn't make any sense at all. Shame on me and sorry for wasting your time <img src="http://theeyetribe.com/forum/images/smilies/icon_e_wink.gif" alt=";)" title="Wink" /><p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=4716">skataalina</a> — 10 Dec 2014, 15:11</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Anders]]></name></author>
<updated>2014-12-10T12:48:19+02:00</updated>
<published>2014-12-10T12:48:19+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=1563#p1563</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=1563#p1563"/>
<title type="html"><![CDATA[Re: calibration]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=1563#p1563"><![CDATA[
Hi Alina<br /><br />Your resampling algorithm should look something like this<br /><br /><dl class="codebox"><dt>Code: </dt><dd><code>   private final int NUM_MAX_CALIBRATION_ATTEMPTS = 3;<br />   private final int NUM_MAX_RESAMPLE_POINTS = 4;<br />   private int resampleCount;<br /><br />   @Override<br />   public void onCalibrationResult(final CalibrationResult calibResult)<br />   {               <br />       if(calibResult.result)<br />       {<br />           //Success, update state of UI and/or proceed in flow<br />       }<br />       else<br />       {<br />           //resampling needed<br />           final ArrayList&lt;Point2D&gt; resamplePoints = new ArrayList&lt;Point2D&gt;();<br /><br />           //Evaluate results<br />           for (CalibrationPoint calibPoint : calibResult.calibpoints)<br />           {<br />               if (calibPoint.state == CalibrationPoint.STATE_RESAMPLE || calibPoint.state == CalibrationPoint.STATE_NO_DATA)<br />               {<br />                   resamplePoints.add(new Point2D(Math.round(calibPoint.coordinates.x), Math.round(calibPoint.coordinates.y)));<br />               }<br />           }<br /><br />           //Should we abort?<br />           if (resampleCount++ &gt;= NUM_MAX_CALIBRATION_ATTEMPTS || resamplePoints.size() == 0|| resamplePoints.size() &gt;= NUM_MAX_RESAMPLE_POINTS)<br />           {<br />               GazeManager.getInstance().calibrationAbort();<br /><br />               //Resampling failed despite retries, update UI explaining that calibration failed<br /><br />               resampleCount = 0;<br /><br />               return;<br />           }<br /><br />           //TODO: Set up UI with identified resampling points and re-run calibration process for these<br />       }<br />   }</code></dd></dl><br /><br />Hope this help!<br /><br />Also, you might wanna reconsider using hashcode as a key depending on your scenario. See point #2 <a href="http://eclipsesource.com/blogs/2012/09/04/the-3-things-you-should-know-about-hashcode/" class="postlink">here</a>.<br /><br />BTW make sure you update to latest version of the Java SDK<br /><br />BR,<br />Anders<p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=120">skataAnders</a> — 10 Dec 2014, 12:48</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[alina]]></name></author>
<updated>2014-12-10T11:55:27+02:00</updated>
<published>2014-12-10T11:55:27+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=1562#p1562</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=1562#p1562"/>
<title type="html"><![CDATA[Re: calibration]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=1562#p1562"><![CDATA[
Hi,<br /><br />I recently revisited my problem and found the source of the NPE, it happened because I used the Point2D class as a key in an Hash-Map but the class doesn't implement the hashCode Method, maybe you want to include this in future releases.<br /><br />But solving this stll didn't enable me to resample some points (I'd like to resample points with too low accuracy, because a good average accuracy usually doesn't mean that the accuracy is very high when you lok at the outer regions of the screen):<br />I've been looking at the code of the C# calibration example, but I still don't get how to restart the calibration for the points I want to resample:<br />By the time onCalibrationResult is called, isCalibrating is false, so I have to start a new calibration, otherwise &quot;calibrationPointStart&quot; will throw an error. But this means I have to sample all points again, doesn't it? <br /><br />I'm sorry for the probably stupid question, but I just can't find the difference between my code and the C# example...<p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=4716">skataalina</a> — 10 Dec 2014, 11:55</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Anders]]></name></author>
<updated>2014-11-03T18:33:43+02:00</updated>
<published>2014-11-03T18:33:43+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=1484#p1484</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=1484#p1484"/>
<title type="html"><![CDATA[Re: calibration]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=1484#p1484"><![CDATA[
Hi Alina<br /><br /><blockquote class="uncited"><div><br />I get an exception &quot;Exception while calling ICalibrationProcessHandler.OnCalibrationResult() on listener eyeTracker.CalibrationHandler@5154e1cc: null&quot;.<br /></div></blockquote><br /><br />From your message, it is clear that something is going on in your implementation of ICalibrationProcessHandler. I am guessing a NPE that is not handled. That means an error in your side of the code.<br /><br />As mentioned earlier in this thread, maybe <a href="http://theeyetribe.com/forum/viewtopic.php?f=24&amp;t=329&amp;p=1392&amp;sid=306364bd5dd2b3fd3ad5ddb23dedfbe8&amp;sid=306364bd5dd2b3fd3ad5ddb23dedfbe8#p1392" class="postlink">this post</a> can help you understand the calibration and how to handle the resampling procedure better. <br /><br />Best of luck.<br /><br />BR,<br />Anders<p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=120">skataAnders</a> — 03 Nov 2014, 18:33</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[alina]]></name></author>
<updated>2014-10-29T16:26:45+02:00</updated>
<published>2014-10-29T16:26:45+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=1474#p1474</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=1474#p1474"/>
<title type="html"><![CDATA[Re: calibration]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=1474#p1474"><![CDATA[
Hi,<br /><br />first of all, carlos, your code was very helpful, thanks a lot! But I was wondering whether it actually works if there are points to be resampled: <br />In that case, I get an exception &quot;Exception while calling ICalibrationProcessHandler.OnCalibrationResult() on listener eyeTracker.CalibrationHandler@5154e1cc: null&quot;. Is there anything I can do about that? Or can anyone tell me what goes wrong?<br /><br />Also, I often get errors because either calibration is already running (despite of a call to calibrationAbort() before) or because the tracker is not calibrating when the first calls to calibrationPointStart(..) are made (despite of checking isCalibrating() before). The latter case doesn't go well with the impossibility to recalibrate a single point, too.... Any help? Did I miss something?<p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=4716">skataalina</a> — 29 Oct 2014, 16:26</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[carlos.gomes@m-iti.org]]></name></author>
<updated>2014-10-03T11:06:18+02:00</updated>
<published>2014-10-03T11:06:18+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=1442#p1442</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=1442#p1442"/>
<title type="html"><![CDATA[Re: calibration]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=1442#p1442"><![CDATA[
Hi,<br /><br />I have done the calibration process on Java with no problems (see an excerpt of the java code). <br /><br />Any question you can email me <!-- e --><a href="mailto:varz86@gmail.com">varz86@gmail.com</a><!-- e --><br /><br />PS: I am not doing some interesting checks. For instance, notice that I am not implementing ITrackerStateListener.<br /><br /><dl class="codebox"><dt>Code: </dt><dd><code>package Calibration;<br /><br />import java.util.LinkedList;<br />import java.util.Queue;<br />import Utilities.Point2D;<br />import com.theeyetribe.client.GazeManager;<br />import com.theeyetribe.client.GazeManager.ApiVersion;<br />import com.theeyetribe.client.GazeManager.ClientMode;<br />import com.theeyetribe.client.ICalibrationProcessHandler;<br />import com.theeyetribe.client.IGazeListener;<br />import com.theeyetribe.client.data.CalibrationResult;<br />import com.theeyetribe.client.data.CalibrationResult.CalibrationPoint;<br />import com.theeyetribe.client.data.GazeData;<br /><br />public class Cali implements ICalibrationProcessHandler{  <br /><br />   private int number_points;<br />   private int reSamplingCount;<br /><br />   Queue&lt;Point2D&gt; calibrationPoints;<br />   Point2D currentPoint;<br />   private final int NUM_MAX_CALIBRATION_ATTEMPTS = 2;<br />   private final int NUM_MAX_RESAMPLE_POINTS = 4;<br /><br />   Cali(GraphicsLogic SC){<br /><br />      if (GazeManager.getInstance().isActivated()){<br />         GazeManager.getInstance().deactivate();<br />      }<br /><br />      GazeManager.getInstance().activate(ApiVersion.VERSION_1_0, ClientMode.PUSH);<br /><br />      this.number_points = 9;<br /><br />      final GazeListener gazeListener = new GazeListener();<br />      GazeManager.getInstance().addGazeListener(gazeListener);<br /><br />      Runtime.getRuntime().addShutdownHook(new Thread()<br />      {<br />         @Override<br />         public void run()<br />         {<br />            GazeManager.getInstance().removeGazeListener(gazeListener);<br />            GazeManager.getInstance().deactivate();<br />         }<br />      });<br /><br /><br />   }<br /><br />   public void StartCalibration(){<br /><br />      System.out.println(&quot;Start&quot;);      <br /><br />      //Checking if Eye Tracker is OK -&gt; ITrackerStateListener<br />      //StopAndClose(&quot;Error: Device is not in a valid state, cannot calibrate.&quot;);<br /><br />      DoCalibrate();<br />   }<br /><br />   public void DoCalibrate(){<br />      System.out.println(&quot;DoCalibrate&quot;);<br />      reSamplingCount = 0;<br /><br />      System.out.println(&quot;isCalibrating: &quot; +GazeManager.getInstance().isCalibrating());<br /><br />      calibrationPoints = createPointList(); <br />      currentPoint = PickNextPoint();      <br /><br />      if (GazeManager.getInstance().isCalibrating()){ //I am not sure if this is the best way to do it<br />         GazeManager.getInstance().calibrationAbort();<br />         GazeManager.getInstance().calibrationClear();<br />      }<br /><br />      // Signal tracker server that we're about to start a calibration<br />      GazeManager.getInstance().calibrationStart(number_points, this);<br /><br />   }<br /><br />   public void Step(Point2D point){<br />      //View.newPos((int)point.getX(),(int)point.getY()); //Put a new point graphically<br />      <br />      try{Thread.sleep(500);}catch (Exception e){}; //wait for the gaze to meet the point<br />      GazeManager.getInstance().calibrationPointStart((int)point.getX(),(int)point.getY()); //start the calibration process<br />      <br />      try{Thread.sleep(500);}catch (Exception e){}; //wait for the calibration process to take the data<br />      GazeManager.getInstance().calibrationPointEnd(); //end the calibration process<br />   }<br /><br />   @Override<br />   public void onCalibrationStarted() {<br />      // tracker engine is ready to calibrate - check if we can start to calibrate<br />      //calibrationServiceReady = true;<br />      if (currentPoint != null)//if there is another poitn to calibrate, do it<br />         Step(currentPoint);<br />      else{<br />         StopAndClose(&quot;onCalibrationStarted: currentPoint is null&quot;); //otherwise Close<br />      }<br />   }<br /><br />   @Override<br />   public void onCalibrationProgress(double progress) { <br />      if (calibrationPoints.size() &gt; 0){ //The process will be done as long as there are points to be calibrarted<br />         currentPoint = PickNextPoint();<br />         Step(currentPoint);<br />      }        <br />   }<br /><br />   @Override<br />   public void onCalibrationProcessing() {<br />      System.out.println(&quot;--------------onCalibrationProcessing&quot;);<br />   }<br /><br />   @Override<br />   public void onCalibrationResult(CalibrationResult res) {<br />      System.out.println(&quot;--------------onCalibrationResult &quot;);<br /><br />      //If there is not result, Stop<br />      if (res == null || res.calibpoints == null){<br />         StopAndClose(&quot;Error: Calibration result is empty.&quot;);<br />      }<br /><br />      //There might points that need to be recalibrated<br />      for (CalibrationPoint calPoint : res.calibpoints){<br />         if (calPoint == null || calPoint.coordinates == null)<br />            continue;<br /><br />         //information is taken from the Tracker<br />         if (calPoint.state == CalibrationPoint.STATE_RESAMPLE || calPoint.state == CalibrationPoint.STATE_NO_DATA){<br />            calibrationPoints.add(new Point2D((int)calPoint.coordinates.x, (int)calPoint.coordinates.y));<br />         }<br />      }<br /><br />      //The process will not run forever. <br />      //-&gt; there is a fixed number for recalibration<br />      //-&gt; the calibration is done again if there are not so many points to be recalibrated<br />      if (reSamplingCount++ &gt;= NUM_MAX_CALIBRATION_ATTEMPTS || calibrationPoints.size() &gt;= NUM_MAX_RESAMPLE_POINTS){<br />         StopAndClose(&quot;Failure: Unable to calibrate.&quot;);<br />      }<br /><br />      currentPoint = null;<br />      if (calibrationPoints.size() &gt; 0)<br />         currentPoint = PickNextPoint();<br /><br />      if (currentPoint != null){<br />         Step(currentPoint);<br />      }else{<br />         StopAndClose(RatingFunction(res.averageErrorDegree));<br />      }<br />   }<br /><br />   private void StopAndClose(String msg){<br />      System.out.println(&quot;Done!&quot;);<br />      //View.end_calibration(msg); //tell the graphics to stop<br />      return;<br />      //View.close(); //close the window<br />      //System.exit(0);<br />   }<br /><br />   public String RatingFunction(double accuracy){<br />      if (accuracy &lt; 0.5)<br />         return &quot;Calibration Quality: PERFECT&quot;;<br /><br />      if (accuracy &lt; 0.7)<br />         return &quot;Calibration Quality: GOOD&quot;;<br /><br />      if (accuracy &lt; 1)<br />         return &quot;Calibration Quality: MODERATE&quot;;<br /><br />      if (accuracy &lt; 1.5)<br />         return &quot;Calibration Quality: POOR&quot;;<br /><br />      return &quot;Calibration Quality: REDO&quot;;<br />   }<br /><br />   public Queue&lt;Point2D&gt; createPointList(){<br />      System.out.println(&quot;createPointList()&quot;);<br />      Queue&lt;Point2D&gt; res = new LinkedList&lt;Point2D&gt;();<br />      //Create the points taking into account the size of the current screen<br />      return res;<br />   }<br /><br />   private Point2D PickNextPoint(){<br />      if (calibrationPoints == null)<br />         calibrationPoints = createPointList();<br /><br />      if (calibrationPoints.size() != 0)<br />         return calibrationPoints.remove();<br /><br />      return null;<br />   }<br />}<br /><br /><br />class GazeListener implements IGazeListener<br />{<br /><br />   @Override<br />   public void onGazeUpdate(GazeData gazeData) {<br />   }<br /><br />}</code></dd></dl><p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=691">skatacarlos.gomes@m-iti.org</a> — 03 Oct 2014, 11:06</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Anders]]></name></author>
<updated>2014-09-19T08:07:49+02:00</updated>
<published>2014-09-19T08:07:49+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=1394#p1394</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=1394#p1394"/>
<title type="html"><![CDATA[Re: calibration]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=1394#p1394"><![CDATA[
Maybe taking a look at the resources references in <a href="http://theeyetribe.com/forum/viewtopic.php?f=24&amp;t=329&amp;p=1392&amp;sid=8edd32576e0f0af211342af9dad74ad5&amp;sid=8edd32576e0f0af211342af9dad74ad5#p1392" class="postlink">this post</a> will help you understand and implement the calibration process.<br /><br />BR,<br />Anders<p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=120">skataAnders</a> — 19 Sep 2014, 08:07</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[sourabhbans0007@gmail.com]]></name></author>
<updated>2014-08-21T16:50:04+02:00</updated>
<published>2014-08-21T16:50:04+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=1317#p1317</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=1317#p1317"/>
<title type="html"><![CDATA[Re: calibration]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=1317#p1317"><![CDATA[
Hi there , I am facing same kind of problems (Calibration process). I need to implement calibration process in my application. but no idea how to do that. I have implemented the code that is given in previous article and it is showing calibrating, but some times it show calibration result failed. And i am confused how to show the calibration screen. Is someone have code sample or example or any kind of information about it please contact me. Can someone help me ?<br /><br /><br /> Thanks and regards... <br /><br />Sourabh bans<br />email:- <!-- e --><a href="mailto:sourabhbans007@gmail.com">sourabhbans007@gmail.com</a><!-- e --><p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=4745">skatasourabhbans0007@gmail.com</a> — 21 Aug 2014, 16:50</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Javier]]></name></author>
<updated>2014-08-05T17:12:26+02:00</updated>
<published>2014-08-05T17:12:26+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=1219#p1219</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=1219#p1219"/>
<title type="html"><![CDATA[Re: calibration]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=1219#p1219"><![CDATA[
The Java SDK does not include any UI elements to draw the calibration points. We recommend you take a look at the C# samples on GitHub to get some inspiration on how to build a calibration routine.<p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=93">skataJavier</a> — 05 Aug 2014, 17:12</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[rZamora]]></name></author>
<updated>2014-08-05T15:57:19+02:00</updated>
<published>2014-08-05T15:57:19+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=1215#p1215</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=1215#p1215"/>
<title type="html"><![CDATA[calibration]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=293&amp;p=1215#p1215"><![CDATA[
Can i please get some help on implementing the calibration process.  I have taken code from the previous thread ([Resolved] Geting no calibresult data in last pointed ) but i do not understand if the API will draw the points in the screen or i have to do that with my code.  Would appreciate if someone can share some code.<br />many thanks<p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=4638">skatarZamora</a> — 05 Aug 2014, 15:57</p><hr />
]]></content>
</entry>
</feed>