<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" 
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    xmlns:admin="http://webns.net/mvcb/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">
	<channel>
<title>My RSS Feed</title><link>http://tkntech.com/repair/index.php</link><description>Hot News&#x21;</description><dc:language>en</dc:language><dc:creator>TuInfor@Ymail.Com</dc:creator><dc:rights>Copyright 2010 Tu Nguyen</dc:rights><dc:date>2011-01-20T13:38:27-05:00</dc:date><admin:generatorAgent rdf:resource="http://www.realmacsoftware.com/" />
<admin:errorReportsTo rdf:resource="mailto:TuInfor@Ymail.Com" /><sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<sy:updateBase>2000-01-01T12:00+00:00</sy:updateBase>
<lastBuildDate>Mon, 03 May 2010 01:51:43 -0400</lastBuildDate><item><title>The Mac Terminal</title><dc:creator>TuInfor@Ymail.Com</dc:creator><category>Mac Tutorial</category><dc:date>2011-01-20T13:38:27-05:00</dc:date><link>http://tkntech.com/repair/files/f1eecea55347d0e4296e192cd21e06de-40.php#unique-entry-id-40</link><guid isPermaLink="true">http://tkntech.com/repair/files/f1eecea55347d0e4296e192cd21e06de-40.php#unique-entry-id-40</guid><content:encoded><![CDATA[<img class="imageStyle" alt="terminal" width="128" height="128" src="http://tkntech.com/repair/files/page4_blog_entry40-terminal.png" /><br /><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#181818;">To open Terminal, navigate to your Applications folder, open Utilities, and double click on Terminal. You will be greeted with a message similar to this:<br /></span><span style="font:12px Courier, mono; color:#181818;">Last login: Tue Mar 6 17:21:36 on console
Welcome to Darwin!
ibook:~ Alex$</span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#181818;"><br />The last line you see is called the prompt. This will appear after every command you enter and this is where you type your commands. It consists of your computer name, your current directory, and your short username. When you first start Terminal, your current directory will be &ldquo;~&rdquo;, which is short for your home directory (/Users/Your username).<br />One of commands you will use most is </span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; font-weight:bold; color:#181818;font-weight:bold; ">ls</span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#181818;">. The </span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; font-weight:bold; color:#181818;font-weight:bold; ">ls</span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#181818;"> command will show you the files and directories that are contained in your current directory. Here&rsquo;s an example:<br /></span><span style="font:12px Courier, mono; color:#181818;">ibook:~/Desktop/mammoth Alex$ ls
final1.jpg final3.jpg final5.jpg final6.jpg final7.jpg</span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#181818;"><br />By typing </span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; font-weight:bold; color:#181818;font-weight:bold; ">ls</span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#181818;"> and hitting enter, the terminal shows me all the files that are in my &ldquo;mammoth&rdquo; directory. If you want to see the contents of a directory besides the one you are in, just type </span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; font-weight:bold; color:#181818;font-weight:bold; ">ls</span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#181818;"> followed by the directory.<br />You are probably wondering how to change your current directory. This is done with the </span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; font-weight:bold; color:#181818;font-weight:bold; ">cd</span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#181818;"> (change directory) command. Just type </span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; font-weight:bold; color:#181818;font-weight:bold; ">cd</span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#181818;"> followed by the directory you want to change to. Example:
</span><span style="font:12px Courier, mono; color:#181818;">
ibook:~/Desktop/mammoth Alex$ cd /Users/Alex/Desktop
ibook:~/Desktop Alex$</span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#181818;"><br />If you want to get to a directory that is inside of your current directory, just type </span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; font-weight:bold; color:#181818;font-weight:bold; ">cd</span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#181818;"> followed by the directory name, as there is no need for a full path. To save time, the terminal has an autocomplete feature (most command lines have this). To use it, press tab when typing a file or directory and Terminal will guess what you are trying to type. Don&rsquo;t forget about ~. Entering </span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; font-weight:bold; color:#181818;font-weight:bold; ">cd ~</span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#181818;"> will get you back to your home directory. A final, and very useful </span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; font-weight:bold; color:#181818;font-weight:bold; ">cd</span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#181818;"> tip is that </span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; font-weight:bold; color:#181818;font-weight:bold; ">cd ..</span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#181818;">, will navigate you to the directory above the one that you were in.<br />If you are experimenting with UNIX commands and need help with a certain command, it is always available. Either type:<br /></span><span style="font:12px Courier, mono; color:#181818;">command --help</span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#181818;"> (quick help) or </span><span style="font:12px Courier, mono; color:#181818;">man command</span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#181818;"> (full manual) Typing q will get you out of a command&rsquo;s man page.<br />Although </span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; font-weight:bold; color:#181818;font-weight:bold; ">cd</span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#181818;"> and </span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; font-weight:bold; color:#181818;font-weight:bold; ">ls</span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#181818;"> don&rsquo;t do much, they are a good foundation for further command line adventures.<br /></span><br /><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; font-weight:bold; color:#181818;font-weight:bold; ">Creating Directories</span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#181818;"><br /></span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#181818;">Creating directories is very easy with the command mkdir. The syntax for this command is </span><span style="font:12px Courier, mono; color:#181818;">mkdir <path of new directory></span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#181818;">. For example, if I wanted to create a directory called new inside of the beta directory, I would enter<br /></span><span style="font:12px Courier, mono; color:#181818;">ibook:~/beta Alex$ mkdir new</span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#181818;"><br />And if I wanted to make a new directory somewhere else,<br /></span><span style="font:12px Courier, mono; color:#181818;">ibook:~/beta Alex$ mkdir /path/to/new/directory</span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#181818;"><br /></span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; font-weight:bold; color:#181818;font-weight:bold; ">Copying and Moving Files</span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#181818;"><br />The commands cp and mv, for copy and move, respectively, have very similar syntax, so we will cover them together. Copying is like copy and paste while moving is like cut and paste. For both cp and mv, the syntax is </span><span style="font:12px Courier, mono; color:#181818;">cp <file or directory to be copied/moved> <destination of file or directory></span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#181818;">. If I wanted to copy the file test.txt to my desktop as test2.txt, I would use
</span><span style="font:12px Courier, mono; color:#181818;">
ibook:~/beta Alex$ cp test.txt /Users/Alex/Desktop/test2.txt</span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#181818;"><br />If I wanted to move the file test.txt to the directory above it, I would use<br /></span><span style="font:12px Courier, mono; color:#181818;">ibook:~/beta Alex$ mv test.txt ..</span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#181818;"><br /></span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; font-weight:bold; color:#181818;font-weight:bold; ">Removing files</span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#181818;"><br />Removing, or deleting files can be done with the rm command. The syntax for rm is just </span><span style="font:12px Courier, mono; color:#181818;">rm <file to be deleted></span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#181818;">. You have to be very careful with rm, because this command doesn&rsquo;t send files to the Trash, where files can be easily recovered, it removes them completely. You&rsquo;ve been warned!<br />The asterisk (*) can be used with many unix commands to signify a wildcard. For example, to delete all the files in the beta directory, I would enter<br /></span><span style="font:12px Courier, mono; color:#181818;">ibook:~/beta/beta Alex$ rm *</span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#181818;"><br />The asterisk can be used in any command in the context of files and directories. I defined the double period (..) in the last tutorial, which signifies the directory above. Another similar shortcut is the single period (.). The single period denotes the current directory, so if I wanted to copy the file test.txt to my current directory, I would enter
</span><span style="font:12px Courier, mono; color:#181818;">
ibook:/ Alex$ cp /Users/Alex/Desktop/test.txt .</span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#181818;"><br /></span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; font-weight:bold; color:#181818;font-weight:bold; ">Permissions</span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#181818;"><br />Sometimes when you are trying to delete, copy, or move a file or directory, you will get a permission denied error. This means that you were trying to do an operation on a file or directory that did not belong to your specific user. If this happens, and you are sure you still want to complete the command, just preface your command with sudo. Sudo will complete the command with the root user. Root is the administrator account that has full control of your system. When you use sudo to run a command, it will ask you for a password, which will be your admin password on your Mac.</span>]]></content:encoded></item><item><title>How to Set &#x22;Time&#x22; Your iPhone Rings Before It Goes To Voicemail</title><dc:creator>TuInfor@Ymail.Com</dc:creator><category>Iphone Tutorial</category><dc:date>2011-01-18T12:26:41-05:00</dc:date><link>http://tkntech.com/repair/files/850ccf1823d02de8ea24b3eae59cca56-39.php#unique-entry-id-39</link><guid isPermaLink="true">http://tkntech.com/repair/files/850ccf1823d02de8ea24b3eae59cca56-39.php#unique-entry-id-39</guid><content:encoded><![CDATA[<span style="font:11px Geneva, serif; color:#535353;">These are instructions on how to set the number of rings before your iPhone goes to Voicemail. You can increase or decrease the amount of time your iPhone rings by following the simple steps below.

Step One
Press the Phone icon in your iPhone's dock.
</span><img class="imageStyle" alt="11109" width="320" height="480" src="http://tkntech.com/repair/files/page4_blog_entry39-11109.png" /><span style="font:11px Geneva, serif; color:#535353;">

Step Two
Press to select Keypad from the tabs at the bottom of the screen. Then enter *#61# and press the Call button.
</span><img class="imageStyle" alt="11110" width="320" height="480" src="http://tkntech.com/repair/files/page4_blog_entry39-11110.png" /><span style="font:11px Geneva, serif; color:#535353;">

Step Three
An information screen will appear. Take note of the Voice Call Forwarding number. It should say something like 
Voice Call Forwarding
When Unanswered
Forwards to +16478396148.

Press the Dismiss button to return to the Keypad.
</span><img class="imageStyle" alt="11111" width="320" height="480" src="http://tkntech.com/repair/files/page4_blog_entry39-11111.png" /><span style="font:11px Geneva, serif; color:#535353;">

Step Four
Enter *61*, followed by the Voice Call Forwarding number we retrieved above, followed by *11, followed by *s# (replace s with the number of seconds your iPhone should ring before going to Voicemail)

Example: *61*+16478396148*11*20#

NOTE*: You can enter a + by holding down 0. The default ring time before going to Voicemail is usually 20 seconds.

Press the Call button.
</span><img class="imageStyle" alt="11112" width="320" height="480" src="http://tkntech.com/repair/files/page4_blog_entry39-11112.png" /><span style="font:11px Geneva, serif; color:#535353;">

Step Five
Your iPhone will inform you that 
Setting Activation Succeeded 
Voice Call Forwarding 
When Unanswered

Press the Dismiss button to return to the Keypad. The next time someone calls your iPhone it will ring for your specified amount of seconds before going to Voicemail.
</span><img class="imageStyle" alt="11113" width="320" height="480" src="http://tkntech.com/repair/files/page4_blog_entry39-11113.png" />]]></content:encoded></item><item><title>Mac App Store Cracked</title><dc:creator>TuInfor@Ymail.Com</dc:creator><category>Mac Tutorial</category><dc:date>2011-01-08T14:08:54-05:00</dc:date><link>http://tkntech.com/repair/files/45d10cb3ad55f7a8fd9469346e575bf2-38.php#unique-entry-id-38</link><guid isPermaLink="true">http://tkntech.com/repair/files/45d10cb3ad55f7a8fd9469346e575bf2-38.php#unique-entry-id-38</guid><content:encoded><![CDATA[<p style="text-align:center;"><img class="imageStyle" alt="Mac-App-Store" width="500" height="277" src="http://tkntech.com/repair/files/page4_blog_entry38-mac-app-store.png" /><span style="font:12px CenturyGothic; color:#070016;"><br /></span></p><p style="text-align:left;"><span style="font:12px CenturyGothic; color:#070016;">Mac App Store Cracked! Here&rsquo;s How to install Cracked Apps [Guide]</span><span style="font:12px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#070016;">
</span><span style="font:12px CenturyGothic; color:#070016;">Few hours ago, just after 9 hours from the release of the Mac App Store, we post that Someone has devised a new way of cracking Mac store applications. The post wrote with a fast title and fast guides. Most of my friends sent me to repost it with more details, Here is the more they want:<br />Interestingly, the method does not use KickBack or Hackulous&rsquo;s Installous 4.0. The method only replaces the signature files from free apps into the paid apps. Follow the simple steps below to install cracked apps on your Mac.<br />How to Install Cracked Mac Store Apps on Mac<br />Step 1: Install the latest Snow Leopard update (10.6.6) and sign into the new App Store (in your dock).<br />Step 2: Download Twitter for Mac and navigate to Applications folder to locate Twitter. Just right click and select Show Package Contents and then navigate to Contents folder. Copy _CodeSignature, _MASReceipt and CodeResources.<br />Step 3: Download Angry Birds </span><span style="font:12px CenturyGothic; color:#070016;"><a href="http://bit.ly/gy9wzk">Here</a></span><span style="font:12px CenturyGothic; color:#070016;">.<br />Step 4: Run the dmg file and drag Angry Birds into the Applications folder.<br />Step 5: Right click and select Show Package Contents and then navigate to Contents folder and delete _CodeSignature, _MASReceipt and CodeResources.<br />Step 6: Now paste in the files you copied from the Twitter.app.<br />Step 7: Done. Enjoy Angry Birds and any other .app file from the new Mac App Store that you can find online.</span></p>]]></content:encoded></item><item><title>Cracked Application From Cydia</title><dc:creator>TuInfor@Ymail.Com</dc:creator><category>Download</category><dc:date>2011-01-02T15:02:18-05:00</dc:date><link>http://tkntech.com/repair/files/c5708af2fb9ce3f5451ac7407ab16389-37.php#unique-entry-id-37</link><guid isPermaLink="true">http://tkntech.com/repair/files/c5708af2fb9ce3f5451ac7407ab16389-37.php#unique-entry-id-37</guid><content:encoded><![CDATA[<span style="font:10px Monaco; "><ul><li><b><a href="http://www.multiupload.com/4Y53E93UM0">3G  Unrestrictor 2.3.1-1</a></b> : Trick the apps on  thinking they are on WiFi , even though  you are on 3G or EDGE (or <a href="http://www.multiupload.com/RRQFAF8AEC">My3G 4.7.1</a>)</li><br /><li><b><a href="http://www.mediafire.com/?78oprsvip5po0a4">AndroidLock  XT 1.2-1</a> :</b> Have a lock passcode similar to Android</li><br /><li><b><a href="http://www.multiupload.com/SXDHNT2L5N">AnyRing 3.90</a>  :</b> Select any music on your iPod library to play as a ringtone</li><br /><li><b><a href="http://www.multiupload.com/81WMEWVFOX">AppCake 2.02b</a></b>  : Download and install cracked applications from  AppStore</li><br /><li><b><a href="http://www.multiupload.com/38AI7SJA7W">AppLocket 3.1</a> </b>:<b> </b>Lock all iPhone apps with a motion lock/unlocker<b> </b></li><br /><li><b><a href="http://www.multiupload.com/5JTYNVDWCT">App Switcher Rotator 1.1-1</a> </b>:<b> </b>Plugin that Addresses a Display Optimization Issue Currently Existent in the iPhone<b> </b></li><br /><li><a href="http://www.multiupload.com/EWWB1921PJ"><b>AttachmentSaver 1.4.0</b></a>  : Extension to the iPhone's Mail app that allows you to save attachment</li><br /><li><b><a href="http://www.4shared.com/file/242493761/49e09959/ATimeTool_17_Cracked.html">aTimeTool 1.7</a></b>  : Set timers that allow the ability to turn on/off your iPhone&#8217;s  Airplane mode, Power, WiFi etc...</li><br /><li><b><a href="http://www.multiupload.com/LERO9KZK2T">Auto3G 3.0.1</a>  :</b> Extend your battery life by automatically turning off the 3G   (for 2G) when you lock your iPhone</li><br /><li><b><a href="http://www.multiupload.com/XIO1LKDBBB">Auto  ShutDown 1.0-2</a></b> : Timer that you set to shut down, reboot  etc, your  device at a time interval  you set</li><br /><li><b><a href="http://www.multiupload.com/EFU8YP7SVD">BackLiter 1.1</a> :</b> Adjust your brightness&nbsp;</li><br /><li><b><a href="http://www.multiupload.com/UZ92NMT4YT">BiteSMS 5.0</a>  :</b> Replacement to the built-in Messaging application</li><br /><li><b><a href="http://www.multiupload.com/ZR2ET2TY4K">Buzzy 1.0-1</a></b>  : Manage  your Google Buzz account</li><br /><li><b><a href="http://www.multiupload.com/Q4LLPC5DKK">CallClear 3.2</a></b>  : Delete your calls one by one in your history instead of deleting them  all</li><br /><li><a href="http://www.multiupload.com/JBJFXO8P3R"><b>CallController 2.5</b></a>  : Use the built in  accelerometer to control your calls. AutoAnswer  calls  while using  headphones</li><br /><li><b><a href="http://mwnwrv.link-protector.com/">Call  Counter 2.3-8</a> :</b> Call Counting app </li><br /><li> <b><a href="http://www.multiupload.com/6AUFH96KGU">CallTell 2.0-1</a>  :</b> Announce who's   calling you before ringing</li><br /><li><b><a href="http://www.multiupload.com/W36T5ANY85">Categories 1.7.4-1</a>  :</b> Allow SpringBoard's icons to be grouped into  folders</li><br /><li><b><a href="http://fileape.com/dl/6GrwQYA4dD9nBt2n">Chronus 2.2</a></b>  : <span class="smallbody">Keep multiple states of a par</span>ticular  program by<span class="smallbody"> saving its  preferences/settings/databases</span></li><br /><li><b><a href="http://www.multiupload.com/9JIWVIUPGM">CodeThemed 1.2</a></b>  : <span style="font-family: inherit;">Create WinterBoard themes  for  your iPhone or iPod touch</span></li><br /><li><span class="smallbody"><b><a href="http://www.4shared.com/file/242498956/2136f532/Cycorder.html">Cycorder 0.9-6</a></b>  : Video recorder for iPhone 3G </span></li><br /><li><b><a href="http://www.mediafire.com/?2f7gbkgzq1zn4gu">CyDialer 0.93-1</a></b>  : Show your favorite contacts on the lockscreen of your iPhone</li><br /><li><b><a href="http://www.multiupload.com/RH99WKELZK">Cyntact 1.4.1-1</a></b>  : Display profile  pictures in the contact  lists</li><br /><li><a href="http://www.multiupload.com/LYKIQ3QH4H"><b>DisplayOut 1.3.3</b></a>  : Mirror screen on external display via Apple's vga and composite  cables</li><br /><li><b><a href="http://www.multiupload.com/X3IM5YUZEF">DisplayRecorder 1.0.0-1</a></b>  : Record your iPhone display activity  and save  videos as .avi files (or <a href="http://www.multiupload.com/AC3T6IMAGM">ScreenRecorder 1.6</a>)</li><br /><li><b><a href="http://www.megaupload.com/?d=I630GKX2">Dock 1.1.2</a></b>  : App like Dock of Mac  OSX,that can manage the background processes,  app shortcuts, etc...</li><br /><li><b><a href="http://www.multiupload.com/0FU3884Y98">Elert 4.2.1</a></b>  : Whether you're surfing, reading text messages, or playing a game, you     can get a quick email alert</li><br /><li><b><a href="http://www.mediafire.com/?ql06x56hd9wad5z">EnhancedTabs 0.95</a> </b>:<b> </b><span style="font-size: small;"><span style="color: black;">Make Safari's tabs much better</span></span></li><br /><li><b><a href="http://www.multiupload.com/OOB7CJ7KSJ">External iPod Controls 1.0</a> </b>:<b> </b>Convert your volume buttons into iPod controls<b> </b></li><br /><li><a href="http://www.multiupload.com/DO4RAQXVTD"><b>EZDecline 1.1</b></a> :<b> </b>Restore the  "Accept"/"Decline" buttons from a call, EVEN when your phone is  currently asleep/locked<b> </b></li><br /><li><b><a href="http://www.multiupload.com/M8EHTOW39L">FaceBreak 1.16</a>  :</b> Enable FaceTime over 3G</li><br /><li><a href="http://www.mediafire.com/?1ltyj9ielq47m3o"><b>FastSnap 1.32</b></a> :<b> </b><span class="bbc_center">Allow taking photos/videos using the volume controls (or </span><a href="http://www.multiupload.com/NNCL6RI2DH">SnapTap 1.0</a><span class="bbc_center">)</span><b> </b></li><br /><li><b><a href="http://www.multiupload.com/NRAVYR6NHQ">Firewall  IP 1.49-1</a> :</b> Add a firewall to your iPhone</li><br /><li><b><a href="http://www.multiupload.com/XYJIUW1VUB">FolderEnhancer 1.3.1</a> </b>:<b>&nbsp; </b>Enhance your iOS4's native folders (no limits, faster...)<b><br /><br /></b></li><br /><li><b><a href="http://www.multiupload.com/NW31D6IF7G">FoldersinFolders 0.93</a> </b>:<b> </b>Add Folders inside Folders</li><br /><li><b><a href="http://www.2shared.com/file/ETe4MfHz/comrobertorfischerfrontcontact.html">Front  Contacts 1.2</a></b> : Quick way to contact through the lockscreen with a  really simple and friendly interface</li><br /><li><b><a href="http://www.multiupload.com/57M801FH1F">FullPreview 2.0</a></b> : Show you the complete Music Videos for your preferred songs  right in  the iTunes.app </li><br /><li><b><a href="http://www.sendspace.com/file/kywhfq">FullScreen for Safari 1.16-2</a> </b>:<b> </b>Offer not only a FullScreen mode: also makes Safari a real multitouch browser</li><br /><li><b><a href="http://www.multiupload.com/B2OXOL01HD">GPower Pro 3.0-1</a> : </b>Easily perform commonly needed power  operations not available from the power down screen</li><br /><li><a href="http://www.multiupload.com/LI6RFZ91NN"><b>Gridlock 1.2.4-1</b></a>  : Arrange your icons however you would  like</li><br /><li><b><a href="http://www.multiupload.com/XS0YP7G2IA">GroupSend 1.2-1</a> </b>:<b> </b>Allow to send a message to many people in a few taps<b> </b></li><br /><li><b><a href="http://www.multiupload.com/8UJIE3B5TR">GuizmoVPN 0.96</a></b>  : OpenVPN Gui for iPhone, designed to be easy to  setup,  configure and run</li><br /><li><b><a href="http://www.multiupload.com/VNOEHI27LN">Home Page in Safari 1.0.1</a> </b>:<b> </b>Set a home page in Mobile Safari by simply tapping the "+"   button<b> </b></li><br /><li><b><a href="http://www.4shared.com/file/237036644/b47ce958/iaccounts_103_Cracked.html">iAccount 1.03</a></b>s  : Create users on your iDevice and set different permissions to them </li><br /><li><span class="smallbody"><b><a href="http://www.multiupload.com/FR18WHK0YX">iBlacklist 4.2</a>  :</b> Create a blacklist or  whitelist for filtering your contacts</span></li><br /><li><b><a href="http://www.4shared.com/file/229019468/324e2b6a/ibluenova_201_Cracked.html">iBlueNova 2.0.1</a></b>  : Free your bluetooth and allows you the file-swapping, ringings,  videos between iPhones</li><br /><li><b><a href="http://www.multiupload.com/01D8KQEGFC">iBluever 2.4.3</a></b>  : Use your phone's 3G/GPRS network by connecting to the Bluetooth  Dial-up   Networking service</li><br /><li><span class="smallbody"><b><a href="http://www.multiupload.com/82CFCKM727">iCallAnnounce 1.35</a> </b>:<b> </b></span>Announce (in a human voice) the name of the caller you're just receiving a call from<span class="smallbody"><b> </b></span></li><br /><li><span class="smallbody"><b><a href="http://www.4shared.com/file/GgyZXU-L/iclassic_15_Cracked.html">iClassic 1.5</a></b>  : </span><span class="IL_AD" id="IL_AD9">Media player for</span> your  library,  that mimics the interface of the famous iPod Classic<span class="smallbody"> </span></li><br /><li><b><a href="http://www.multiupload.com/TN2QOYOEO4">iControl 1.0.1</a> </b>:<b> </b><span style="color: black;">A</span><span style="color: black;">utomatically manage the state of your WiFi, 3G, Bluetooth,  and 2G radios to maximize the battery life of your iPhone</span><b> </b></li><br /><li><b><a href="http://www.multiupload.com/FNGO2LVEQN">iFile 1.3.2-2</a>  :</b> File Manager and Viewer</li><br /><li><b><a href="http://www.multiupload.com/WQPUDDT82T">iGoogler 1.1-1</a></b>  : Fast access to many applications like  Gmail, Youtube, Google reader, etc&#8230;</li><br /><li><b><a href="http://www.multiupload.com/RQHH2079VT">iGotYa 1.0.17-1</a> : </b>Take a picture of  the thief or persons face and get  the location where your iPhone is<b> </b></li><br /><li><b><a href="http://www.4shared.com/file/232343312/77f10be8/ilockmusic_12_Cracked.html">iLockMusic 1.2</a></b>  : Show you the content of your musical Library on your  lockscreen</li><br /><li> <b><a href="http://www.multiupload.com/ZJ6WW96WCY">iNES 1.4</a></b>  : Nintendo Entertainment  System (NES)  emulator for iPhone / iPod Touch</li><br /><li><b><a href="http://www.multiupload.com/TM63VAOCBC">Infiniboard 1.7.2-1</a></b>  : Have a&nbsp;vertical scrolling of your Springboard's icons</li><br /><li><b><a href="http://www.multiupload.com/A8X12190Q0">Infinidock 1.7-1</a>  :</b> Full dock customization: scrolling, adjustable icon amounts, and  more</li><br /><li><b><a href="http://www.multiupload.com/LCUDEXJFT2">Infinifolders 1.3.3-1</a></b>  : Add more than 12 applications in the  same&nbsp;Folder</li><br /><li><a href="http://www.multiupload.com/LFDHLLYSV0"><b>Insomnia  Pro 4.2-1</b></a> : Allow applications to continue to run and WiFi  to stay  connected after lock the screen</li><br /><li><span id="main" style="visibility: visible;"><b><a href="http://hackstor.blogspot.com/2010/04/instapaper-plugin-10-crack.html">Instapaper  plugin</a></b> :&nbsp;</span> Browser support for the popular Instapaper</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/02/intelliscreen-2967-crack.html">Intelliscreen</a></b>  : Access your SMS, mails, calendar etc... on your Lockscreen (or <a href="http://hackstor.blogspot.com/2010/02/lockinfo.html">LockInfo</a>)</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/09/ipicmycontacts-10-crack.html">iPicMyContacts</a> : </b>Display the contact picture next to it's name inside the contacts and favorites screens</li><br /><li><a href="http://hackstor.blogspot.com/2010/11/ipod-remote-controller-10-crack.html"><b>iPod Remote Controller</b></a> :<b> </b><span style="font-size: 15px;">This is the server for the iPod Remote Controller</span><b> </b></li><br /><li><b><a href="http://hackstor.blogspot.com/2010/02/irealsms-3013.html">iRealSMS</a></b>  : Get a real SMS service</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/08/iremix-110.html">iRemix</a>  </b>: Enhance your iPod experience with some features </li><br /><li><b><a href="http://hackstor.blogspot.com/2010/04/ischeduler-101-crack.html">iScheduler</a>  :</b> Automation tool on iPhone, scheduler your iPhone&nbsp;</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/03/isilent-2004.html">iSilent</a>  : </b>Define automatically your iPhone in silent mode when  you are in meeting or anything else</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/07/isnes-10-crack.html">iSNES</a></b>  : Super Nintendo Entertainment  System (SNES)  emulator for iPhone / iPod Touch</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/04/mystrings-10-crack.html">iStrings</a></b>  : Easily change thier   system default strings ("Slide to unlock"  etc...) in a nice and clean  interface</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/11/itracker-131-crack.html">iTracker</a> </b>:<b> </b>Help you to recover your iPhone in case you lose it</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/02/iwep-pro.html">iWep  PRO</a></b> :&nbsp;WEP/WPA cracking utility which relies on exploiting the  default key generation algorithms of routers</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/05/iwhiteboard-11-crack.html">iWhiteboard</a>  </b>:&nbsp; Draw on  any app, even 3D  games, YouTube, and live camera images, etc...</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/09/landscape-lock-rotation-11-crack.html">Landscape  Lock Rotation</a> :</b> Lock the application you want in Landscape mode  with Multitask Lock button</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/05/lockdown-63.html">LockDown  Pro</a> :</b> Password protect any of your applications</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/09/lockdown-pro-sbsettings-toggle-10-crack.html">Lockdown  (Pro) SBSettings Toggle</a></b> : SBSettings  toggle for the  application Lockdown  Pro</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/02/lockinfo.html">LockInfo</a></b>  : Customize your lockscreen to  get the information you need,  when  you need it</li><br /><li><a href="http://hackstor.blogspot.com/2010/08/locktopus-11-crack-hs-repo.html"><b>LocktoPus</b></a>  : Password-protect individual apps DIRECTLY from SpringBoard</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/04/longitude-153-crack.html">Longitude</a></b>  : Keep the location of your iPhone up-to-date with Google Latitude</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/05/lsrotator-01-beta-crack.html">LSRotator</a> </b>:<b> </b>Rotate your LockScreen (or <a href="http://hackstor.blogspot.com/2010/03/news-springboard-rotator.html">SBRotator</a>)<b> </b></li><br /><li><b><a href="http://hackstor.blogspot.com/2010/11/markthatmessage-10-crack.html">MarkThatMessage</a> </b>:<b> </b><span style="font-family: inherit;"><span style="font-size: 15px;">Timestamps for ALL messages(SMS/MMS)</span></span><b> </b></li><br /><li><b><a href="http://hackstor.blogspot.com/2010/05/mecanto-10-crack.html">MeCanto</a></b>  : Listen to your entire  music collection on your iPhone and on the web</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/02/mcallshow-14-crack.html">MCallShow</a></b>  : Let you know the information of the  phone number, like which network that number belongs to</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/08/mitime-09.html">MiTime</a> :</b> Fix this issue to activate&nbsp;FaceTime</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/05/mobile-kiosk-10-crack.html">Mobile  Kiosk</a></b> :&nbsp;Quickly access system information no matter what  application you are in</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/04/mobile-profiles-151-crack.html">Mobile  Profiles</a> :</b> Create custom profiles with iPhone system  settings</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/06/mquickdo-16-crack.html">mQuickDo</a></b>  :&nbsp;Operate iPhone easily, like exit a program, reboot or power  off,  switch or quit a  task, etc...</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/10/multicleaner-211-crack.html">MultiCleaner</a> </b>: Replace the Apple multitasking by a real one<b> </b></li><br /><li><b><a href="http://visual%20multitasking%20for%20the%20iphone%20and%20ipad%21%20/">Multifl0w</a>  :</b> Visual multitasking for the iPhone and iPad</li><br /><li><a href="http://hackstor.blogspot.com/2010/09/multimusicinfo-10-crack.html"><b>MultiMusicInfo</b></a>  : Show you all of the information of  the song right in the Multitask  playing  bar</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/06/musicbarextended-10-crack.html">MusicBarExtended</a></b>  : Provide a<a href="http://www.blogger.com/post-edit.g?blogID=4941880364211206150&amp;postID=6973555313924588999" id="AdBriteInlineAd_functionally" name="AdBriteInlineAd_functionally" style="background: url(&quot;http://files.adbrite.com/mb/images/green-double-underline-006600.gif&quot;) repeat-x scroll center bottom transparent; color: #006600; cursor: pointer; margin-bottom: -2px; padding-bottom: 2px; text-decoration: none;" target="_top"></a>  pleasing method of controlling your  music from your status bar</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/04/msecret-10-crack.html">mSecret</a></b>  : Security software, specially developed for iphone to keep  your  information</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/02/my3g-131-crack.html">My3G</a></b>  : Make your apps believe that they are on WiFi instead of 3G (or <a href="http://hackstor.blogspot.com/2010/07/3g-unrestrictor-21-crack.html">3G   Unrestrictor</a>) </li><br /><li><b><a href="http://hackstor.blogspot.com/2010/11/myos-101-2-crack.html">MyOS</a> </b>:<b> </b>Easily enable or  disable iOS4 features on your iDevice straight from Settings.app</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/02/mywi.html">MyWi</a>  :</b> Create a WiFi HotSpot with a press of a finger (or <span class="smallbody"><a href="http://hackstor.blogspot.com/2010/02/pdanet.html">PdaNet)</a></span></li><br /><li><b><a href="http://hackstor.blogspot.com/2010/09/navigate-from-maps-11-crack.html">Navigate From Maps</a> : </b>Navigate with your GPS application installed to the location indicated into Maps</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/11/notesfont-10-crack.html">NotesFont</a> </b>:<b> </b><span style="color: black; font-family: inherit;"><span style="font-size: 15px;">Set the font names and sizes of note titles and note contents in MobileNotes app</span></span><b> </b></li><br /><li><b><a href="http://hackstor.blogspot.com/2010/08/notified-pro-11-1.html">Notified  Pro</a> :</b> Add notifications in your iDevice</li><br /><li><a href="http://hackstor.blogspot.com/2010/11/notifier-40-2-crack.html"><b>Notifier +</b></a> :<b> </b>Give the ability to create and   schedule reminders for many kinds of events</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/02/notify-pro-125-crack.html">Notify  Pro</a></b> : Send SMS, Call, Email, and Push notifications to any  PC/Mac machine that is running  Growl</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/05/overboard-114-crack.html">Overboard</a></b>  : Suickly switch between page to page of  SpringBoard</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/03/panicroom-10.html">PanicRoom</a></b>  : Clear all your personal needs, such as: SMS/MMS, Every Email Account,  All Phone Logs etc...</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/05/panorama-10014-crack.html">Panorama</a></b>  : Bring the ANDROID's panoramic wallpaper to the iPhone</li><br /><li><span class="smallbody"><b><a href="http://hackstor.blogspot.com/2010/07/news-pagepreview-project-of-limneos.html">PagePreview</a> </b>:<b> </b></span>Preview all your SpringBoard pages without  leaving  your current page<span class="smallbody"><b> </b></span></li><br /><li><span class="smallbody"><b><a href="http://hackstor.blogspot.com/2010/02/pdanet.html">PdaNet</a></b> :  </span>Turn your iPhone into a  true WiFi router for your computer<span class="smallbody"> to go online  through 3G (or </span><a href="http://hackstor.blogspot.com/2010/02/mywi.html">MyWi</a>)&nbsp;</li><br /><li><span style="font-family: inherit;"><b><a href="http://hackstor.blogspot.com/2010/04/perpage-1000-crack.html">PerPage</a></b>  : </span>Set a wallpaper for every single  springboard page</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/06/pirni-pro-117-2-crack.html">Pirni  Pro</a></b> : Network sniffer for the iPhone/iPod Touch that includes a   native ARP  spoofer</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/09/pkgbackup-405-crack.html">PkgBackup</a> </b>: Backup application that  allows you to back up and restore all Cydia packages installed in  your iphone<b> </b></li><br /><li><b><a href="http://hackstor.blogspot.com/2010/08/placetrack-122.html">PlaceTrack</a>  :</b> Background updater for Google Latitude </li><br /><li><b><a href="http://hackstor.blogspot.com/2010/10/playawake-10-8-crack.html">PlayAwake</a> </b>:<b> </b>Use iPod music as alarm clock sound</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/07/popmark-10-crack.html">PopMark</a>  :</b> Mark all email messages as  read for POP accounts </li><br /><li><b><a href="http://hackstor.blogspot.com/2010/05/popup-blocker-1302-crack.html">Popup  Blocker</a> :</b> Control the annoying alerts that popup all over  your  iPhone or iPod</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/07/purgesent-10-crack.html">PurgeSent</a></b>  : Remove all Sent Items from iPhone for POP email accounts</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/07/psx4all-201.html">psx4all</a></b>  : Game emulator of&nbsp;Playstation</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/08/pwnmail-10.html">PwnMail</a>  :</b> Send free fake emails to anyone</li><br /><li><a href="http://hackstor.blogspot.com/2010/02/qtweeter-30-crack.html"><b>qTweeter</b></a>  : Tweet  and update your Facebook status</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/03/quickdo-144-crack.html">QuickDo</a></b>  : Add a virtual Home on your Lockscreen </li><br /><li><b><a href="http://hackstor.blogspot.com/2010/03/quickreply-15-for-sms-crack.html">QuickReply  for SMS</a></b> : Reply to a&nbsp;SMS quickly from your Lockcreen or  directly from an application</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/03/recent-calllog-delete-13-crack.html">Recent  / CallLog Delete</a></b> : Remove one by one calls in your recent call  list (or <a href="http://hackstor.blogspot.com/2010/03/callclear-30-1-crack.html">CallClear</a>)</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/10/remindmelater-100-661-crack.html">RemindMeLater</a> : </b>Calendar reminders the way they were meant to be</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/02/download-1.html">Resupported</a>  :</b> Play videos on your TV</li><br /><li><span id="main" style="visibility: visible;"><span id="search" style="visibility: visible;"><b><a href="http://hackstor.blogspot.com/2010/05/rockring-10-crack.html">RockRing</a></b>  : </span></span>Change your iPhone Ringtone at  pre-defined  time</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/04/roqybt-098-3-crack.html">roqyBT</a></b>  : Connect your iPod Touch / iPhone to a GPS bluetooth device</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/05/safari-download-manager-140-1-crack.html">Safari  Download Manager</a> :</b> Extension that adds a download manager to  the iPhone's web browser</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/03/news-springboard-rotator.html">SBRotator</a></b>  : Permit your icons to adapt  themselves to your&nbsp;springboard in  landscape mode(or <a href="http://hackstor.blogspot.com/2010/05/lsrotator-01-beta-crack.html">LSRotator</a>)</li><br /><li><a href="http://hackstor.blogspot.com/2010/02/sbschedule-102-crack.html"><b>SBSchedule</b></a>  : Define profile groups of  SBSettings on/off toggles state enabled on  scheduled times</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/03/sbsimplify-11-1-crack.html">SBSimplify</a></b>  : Set any gesture actions to hide or show the Dock and  the Status Bar</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/02/screendimmer-10-crack.html">ScreenDimmer</a>  :</b> Save battery life by automatically dimming  your device's screen  after a pre-defined time</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/03/screenrecorder-12-crack.html">ScreenRecorder</a></b>  : Take videocaptures of your screen for 45sec (or <a href="http://hackstor.blogspot.com/2010/06/displayrecorder-100-1-crack.html">DisplayRecorder</a>)</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/02/shrink.html">Shrink</a></b>  : Downscale your SpringBoard icons so that you can fit  more on one page</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/08/signal-131-1-crack.html">Signal</a>  :</b> Map the cell towers you are connected to and display  detailed  cellular information</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/05/sms-counter-3-v21-1-crack.html">SMS  Counter</a> :</b> SMS Counting app&nbsp;</li><br /><li><a href="http://hackstor.blogspot.com/2010/02/snappy-21-crack.html"><b>Snappy</b></a>  : Enable to take photos while running any app on your iPhone screen  without  having to close it</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/03/snaptap-10-crack.html">SnapTap</a>  :</b> Take photos or videos with lateral buttons of volume (or <a href="http://hackstor.blogspot.com/2010/10/fastsnap-13-crack.html">FastSnap</a>)</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/02/snes4iphone.html">Snes4iPhone</a>  </b>:&nbsp;Super Nintendo emulator for the iphone and iPod Touch (or <a href="http://hackstor.blogspot.com/2010/07/isnes-10-crack.html">iSNES</a>)</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/07/splash-100-5-crack.html">Splash</a></b>  : Set your personal picture, wallpaper or loading   screen as splashscreen on every app launch</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/03/springsorter-10.html">SpringSorter</a></b>  : Display to the top of  your Springboard the  most used applications on your iPhone</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/02/springvibe.html">SpringVibe</a></b>  : Select the vibratin mode you want on the application you want </li><br /><li><b><a href="http://hackstor.blogspot.com/2010/08/swirlymessage-for-ipad-104.html">SwirlyMessage</a>  :</b> Send and receive real SMSes and  MMSes with your iPad 3G</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/08/synchronicity-10-crack.html">Synchronicity</a>  :</b> Use your device while it syncs with  iTunes</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/04/tapp-10-crack.html">Tapp</a>  :</b> Launch multiple applications using a  single icon</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/08/tetherme-12-1-crack-hs-repo.html">TetherMe</a>  :</b> Enable native tethering</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/07/tonefxs-1605-crack.html">ToneFXs</a> :</b> Customize your iPhone's sounds</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/03/twitscreen-10.html">TwitScreen</a></b>  : Use Twitter directly from your  Lockscreen</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/09/uniscribe-10-crack.html">UniScribe</a> </b>:<b> </b>Create, open, save, and delete notes from inside all your apps<b> </b></li><br /><li><b><a href="http://hackstor.blogspot.com/2010/03/universal-search-108-1.html">Universal  Search</a></b> : Plugin for Spotlight feature which will permit you to  use instant search on the web</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/05/wicarrier-101-crack.html">WiCarrier</a></b>  : <span id="main" style="visibility: visible;"><span id="search" style="visibility: visible;">Replace  Your iPhones Carrier  Name With  Connected WiFi Network</span></span></li><br /><li><a href="http://hackstor.blogspot.com/2010/09/wifi-analyzer-21-1-crack.html"><b>WiFi  Analyzer</b></a> : Detect and display the information of all  wireless   networks around you</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/07/xpod-100.html">xPod</a></b>  : Music player that plays directly from the  filesystem without  the need for iTunes</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/05/yfiselect-09-1-crack.html">YFiSelect</a></b>  : Give you quick access to your WiFi network options from anywhere</li><br /><li><a href="http://hackstor.blogspot.com/2010/09/yourtube-20-1-crack.html"><b>YourTube</b></a>  : Addon to YouTube application on your  iDevice which permits you to  download videos</li><br /><li><a href="http://hackstor.blogspot.com/2010/07/yourtubehd-10-1-for-ipad-crack.html"><b>YourTubeHD</b></a>  :&nbsp; same addon as YourTube but for iPad</li><br /><li><b><a href="http://hackstor.blogspot.com/2010/05/yxflash-30-crack.html">yxFlash</a>  :</b> Video player for mobile devices supporting iPhone, iPod  Touch  and  iPad</li><br /></ul></span>]]></content:encoded></item><item><title>List of Cracked/Free Applications from Cydia</title><dc:creator>TuInfor@Ymail.Com</dc:creator><category>Download</category><dc:date>2011-01-02T14:52:39-05:00</dc:date><link>http://tkntech.com/repair/files/832999688b459946b7a7d9204a05d200-35.php#unique-entry-id-35</link><guid isPermaLink="true">http://tkntech.com/repair/files/832999688b459946b7a7d9204a05d200-35.php#unique-entry-id-35</guid><content:encoded><![CDATA[<p style="text-align:center;"><img class="imageStyle" alt="crack" width="300" height="300" src="http://tkntech.com/repair/files/page4_blog_entry35-crack.jpg" /><span style="font:13px Calibri; color:#3D3D3D;"><br /></span></p><p style="text-align:left;"><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/b6or-mgj/4x3wblanktoprowlayouticonoclas.html">4x3wblanktoprowlayouticonoclasm_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/9Hwv4sNN/5colonnes_059-1.html">5colonnes_0.59-1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/18n56gaO/5rowkeyboardios4_12_Cracked.html">5rowkeyboardios4_1.2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/289aVisf/5x3layouticonoclasm_10.html">5x3layouticonoclasm_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/ToQbYxc2/5x4wblanktoprowlayouticonoclas.html">5x4wblanktoprowlayouticonoclasm_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/NUb-QDbu/6IconDock_10.html">6IconDock_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/cIoZ3SEh/7IconDock_10.html">7IconDock_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/JwB4eaG6/8IconDock_10.html">8IconDock_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/0aSqpew9/8x5layouticonoclasm_10.html">8x5layouticonoclasm_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/OJ57N7qZ/a1blackgranite_10.html">a1blackgranite_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/yJN1hxFR/ABToggleautosilence_200001.html">AB.Toggle.auto.silence_2.0.0001.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/0VwS5c9N/abluedesirecydget_10_Cracked.html">abluedesirecydget_1.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Onh1bp_P/actionmenu-pluspack_102.html">actionmenu-pluspack_1.0.2.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/NM1VN6DJ/actionmenu_103_Cracked.html">actionmenu_1.0.3_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/s4bJSTQu/actionmenuicoz_10.html">actionmenuicoz_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/6hPuFhxX/actionmenutinyurl_10.html">actionmenutinyurl_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/kfWwpPxn/activator_FR_12-1.html">activator_FR_1.2-1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Qn6qWlM1/acurrencycalculator_11.html">acurrencycalculator_1.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/M8W9CzHq/adblock_301_Cracked.html">adblock_3.0.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/je69UBb1/addcallhistory_20-01.html">addcallhistory_2.0-01.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/o_GSCfTq/addcallhistory_21-01.html">addcallhistory_2.1-01.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/97-U6Oni/AdMobBeGone_10_Cracked.html">AdMobBeGone_1.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/lIMm0gLM/afc2add_101.html">afc2add_1.01.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/rqAKWdR1/airplayspeaker.html">airplayspeaker.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/H6g76UaO/airplayspeaker_10_Cracked.html">airplayspeaker_1.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/OvtNbY7z/ajapanthemeclock_10_Cracked.html">ajapanthemeclock_1.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/8fCQnG88/alcoholcalc_10.html">alcoholcalc_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/ynIEVLzv/alcoholcalc_11.html">alcoholcalc_1.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/p1kp5V13/allinonecydget_10.html">allinonecydget_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/dtRU-Nn5/allinonecydget_11.html">allinonecydget_1.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/egE-QGbe/allinonecydget_122.html">allinonecydget_1.2.2.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/s39pM4fd/allinonecydget_131.html">allinonecydget_1.3.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/f0dug-gB/allinonecydget_20.html">allinonecydget_2.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/fQjTJpDY/allinonecydget_212.html">allinonecydget_2.1.2.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/HaC-iGH7/allinonecydget_213.html">allinonecydget_2.1.3.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/SfRo5N13/allinonecydget_21.html">allinonecydget_2.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/tTGdt1so/allinonecydget_314.html">allinonecydget_3.1.4.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/35ScwKc_/allinonecydget_315.html">allinonecydget_3.1.5.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/DuRO9h84/allinonecydget_cygdet_20-1.html">allinonecydget_cygdet_2.0-1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/7GxAaJOP/alllcddashboardcydget_10.html">alllcddashboardcydget_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/OFciU9dv/androidlock_10-2.html">androidlock_1.0-2.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/AIsYVHEv/androidlock_10-3.html">androidlock_1.0-3.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/mqghRUtK/androidLock_20-1.html">androidLock_2.0-1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/4bzyydOV/androidlockfr_300.html">androidlockfr_3.0.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/gRvvHs3H/androidlockxt_12_Cracked.html">androidlockxt_1.2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/8au_gYbB/anonymous_201.html">anonymous_2.0.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/7D0hn6ZC/anonymous_202.html">anonymous_2.0.2.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Y1wjZsuM/any_ring_380_cracked.html">any ring 3.80 cracked.rar</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/S73LeBRQ/anyring302_Cracked.html">anyring.3.0.2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/yYCssGg-/anyring303_Cracked.html">anyring.3.0.3_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/us61QBp0/Anyring_321_Cracked.html">Anyring_3.2.1_Cracked.zip</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/k1c5Ynaw/Anyring_322_Cracked.html">Anyring_3.2.2_Cracked.zip</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/jS0IqQQD/appbackup_109-1.html">appbackup_1.0.9-1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/xcehfUZA/appbackup_1091-1.html">appbackup_1.0.9.1-1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/dqYpP51t/appBox.html">appBox.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/FFqfmrJm/appBox_321.html">appBox_3.2.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/1L5OElmX/appBox_322.html">appBox_3.2.2.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/4JGcnLYm/appbrowser_201.html">appbrowser_2.0.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/rjsrNrwt/AppBrowser_20.html">AppBrowser_2.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/9ML6CMGG/AppCake_10_Cracked.html">AppCake_1.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/XhfPsomE/AppCake_11_Cracked.html">AppCake_1.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/NbedbUYz/appcrackr_113.html">appcrackr_1.1.3.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/nHS-jKX7/appcrackr_114.html">appcrackr_1.1.4.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/AFjHypQV/appcrackr_1151.html">appcrackr_1.1.5.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/L7la__r5/AppCrackr_1152.html">AppCrackr_1.1.5.2.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/tKokQCee/appcrackr_1153.html">appcrackr_1.1.5.3.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/2Wpy983i/appcrackr_116.html">appcrackr_1.1.6.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/z2BQ-Jm5/appcrackr_131.html">appcrackr_1.3.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/azoqN8vd/appcrackr_14.html">appcrackr_1.4.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/sH1iykKF/AppCrackr_151.html">AppCrackr_1.5.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/w6ujoseD/AppCrackr_15.html">AppCrackr_1.5.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/LfpVXS9f/appflow_100.html">appflow_10.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/IHhM4ERN/applecongruency_30.html">applecongruency_3.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/sh8-bOX5/applewallpapers_10.html">applewallpapers_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/HC22MQpJ/applinks_14.html">applinks_1.4.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/OqS0aeV5/AppLocket_130_Cracked.html">AppLocket_1.3.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/pNCOeaS6/applocket_220_Cracked.html">applocket_2.2.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/TIMDJwzI/applocket_31_Cracked.html">applocket_3.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Iie099-y/appPack_10.html">appPack_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/ud0D7zzy/appsearch_10.html">appsearch_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Doyo-IfP/appswitcherbrightnesss_10_Crac.html">appswitcherbrightnesss_1.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/MCXDszjo/appswitcherrotator_01_Cracked.html">appswitcherrotator_0.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/o1hQ4ESN/appswitcherrotator_11-1_Cracke.html">appswitcherrotator_1.1-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/LPHKvf7o/AppSync_41.html">AppSync 4.1.rar</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/kFurbs2z/AppSyncos30.html">AppSync.os.3.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/KyeLaoRz/Appsyncos31.html">Appsync.os.3.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/wnhZTU-K/appsync31_101.html">appsync31_1.0.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/wyPoqNLT/aPref-B2-3.html">aPref-B2-3.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/zrrqobgn/APref-B3-2.html">APref-B3-2.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Wb3sPQ2J/Apref-B4.html">Apref-B4.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/aEuvasNz/apt7-lib_07253-7.html">apt7-lib_0.7.25.3-7.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/1GgWH-9H/apt7-lib_07253-9.html">apt7-lib_0.7.25.3-9.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/RpfAmEOC/apt7-ssl_07253-3_iphoneos-arm.html">apt7-ssl_0.7.25.3-3_iphoneos-arm.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/PDw6GIGH/apt7_07253-6.html">apt7_0.7.25.3-6.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/B7udhYsB/aquariumcydget_10_Cracked.html">aquariumcydget_1.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/9dM_z2XF/aquariumcydget_20_Cracked.html">aquariumcydget_2.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Z5HIwLkp/aquariumcydget_21_Cracked.html">aquariumcydget_2.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/a2Fh0WJg/aquariumcydget_23_Cracked.html">aquariumcydget_2.3_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/wgmH4pQ3/aquariumcydget_30_Cracked.html">aquariumcydget_3.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/lzdYNDEt/aquariumcydget_31_Cracked.html">aquariumcydget_3.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/s7ApFZvX/aquariumcydget_33_Cracked.html">aquariumcydget_3.3_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Gb3QHQ8H/arcadesaloon_101.html">arcadesaloon_1.0.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/ltfgXuZf/asktosend_10-5_Cracked.html">asktosend_1.0-5_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/gyFeLaZc/assshake_10.html">assshake_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/_ZCA5J43/atcore-10-2.html">atcore-1.0-2.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/EHp3KSVc/atimetool_121_Cracked.html">atimetool_1.2.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/qQU7w0a_/atimetool_13-1_Cracked.html">atimetool_1.3-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/sB2Fr65D/atimetool_14_Cracked.html">atimetool_1.4_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/pDf4c-pA/atimetool_16_Cracked.html">atimetool_1.6_Cracked.zip</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Whvu8bNy/ATimeTool_17_Cracked.html">ATimeTool_1.7_Cracked.rar</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/fhPZ82UO/attachmentsaver_140_Cracked.html">attachmentsaver_1.4.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/D5YXyzUp/AttachmentSaver_v110_Cracked.html">AttachmentSaver_v1.1.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/8QJcKLIs/atubevideodownloader_20.html">atubevideodownloader_2.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/vrt6DHWq/auto3g_140_Cracked.html">auto3g_1.4.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/1mdWC9Tq/auto3g_150-2_Cracked.html">auto3g_1.5.0-2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/h6gbxosF/auto3g_202_Cracked.html">auto3g_2.0.2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/o32hw6dF/auto3g_204_Crackeds.html">auto3g_2.0.4_Crackeds.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/b05m5b1x/auto3g_301_Cracked.html">auto3g_3.0.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/ztS7T3W0/auto3g_30_Cracked.html">auto3g_3.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/ap8NR7B0/autoshutdown_10-1_Cracked.html">autoshutdown_1.0-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/3hn46_p4/autosilent_154001_Cracked.html">autosilent_1.5.4001_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/p0lSL_8Y/autosilent_2000_Cracked.html">autosilent_2.0.0.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/XEhoFEvH/autosilent_3005_Cracked.html">autosilent_3.0.0.5_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/06SS2hn3/babynames_10.html">babynames_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/ihijOoKJ/backgrounder_svnr295-1.html">backgrounder_svn.r295-1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/bg-wfO36/backgrounder_svnr295.html">backgrounder_svn.r295.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Nun_1VX2/backgrounder_svnr330-3.html">backgrounder_svn.r330-3.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/vR3dA6cG/backgrounder_svnr338-1.html">backgrounder_svn.r338-1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Fv26fQWA/backliter_11_iphoneos-arm.html">backliter_1.1_iphoneos-arm.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Vsgid-tA/badges_111.html">badges_1.1.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/s_Pg7MtO/badges_113.html">badges_1.1.3.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/bXo4i8V7/barrel_100-32_Cracked.html">barrel_1.0.0-32_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/sq12VPFv/barrel_110_Cracked.html">barrel_1.1.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Xe93TY_K/barrel_121-1_Cracked.html">barrel_1.2.1-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Knv8R9qu/battery_logger_lite_05.html">battery_logger_lite_0.5.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/B2jO26lN/BatteryControl_110_Cracked.html">BatteryControl_1.1.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/f9yZRYEK/BatteryControlPremium_101_Crac.html">BatteryControlPremium_1.0.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/VJD5Vpq1/binaryconvert_10.html">binaryconvert_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/X7-Nd0B6/biteSMS_498_Cracked.html">biteSMS 4.98 Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/A1G4HaWb/bitesms_421_Cracked.html">bitesms_4.2.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/7g7lc3eQ/bitesms_441_Cracked.html">bitesms_4.4.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/pRwQUDmv/bitesms_44_Cracked.html">bitesms_4.4_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/YugbIjcs/bitesms_45_Cracked.html">bitesms_4.5_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/K2f9yjHp/bitesms_46_Cracked.html">bitesms_4.6_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/J_MCLb5s/biteSMS_47_Cracked.html">biteSMS_4.7_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/jhosxBwV/biteSMS_48beta1_Cracked.html">biteSMS_4.8beta1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/6cUgwJdV/bitesms_495_fix2_fabius.html">bitesms_4.95_fix2_fabius.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/JKRdKYII/biteSMS_497_Cracked.html">biteSMS_4.97_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/kolmD60G/bitesms_50_Cracked.html">bitesms_5.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/GUs-lCr8/blacksn0w.html">blacksn0w.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/ZQNBzX4p/blacksn0wRC2.html">blacksn0wRC2.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/6PVkzJ0V/blacksn0wRC2.html">blacksn0wRC2.rar</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/wMIgiGJ7/blacksn0wRC2_03.html">blacksn0wRC2_0.3.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/vKctiOM7/blacksn0wRC2_03.html">blacksn0wRC2_0.3.rar</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/N6s3nS_8/blacksn0wRC2_10.html">blacksn0wRC2_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/qBwYfD-k/blacksn0wRC2_11.html">blacksn0wRC2_1.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/H_kMnA7C/blanknull_110.html">blanknull_1.1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/SkrzWpO1/blinkavoid_10.html">blinkavoid_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/RNjE3zzx/bluestream.html">bluestream.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/-Lq0N_EZ/boobshake_10.html">boobshake_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/7Zg5kjam/bosspaper_111.html">bosspaper_1.1.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/qZorjl2R/bosspaper_112.html">bosspaper_1.1.2.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/9Dd1tiF-/bosspaper_113.html">bosspaper_1.1.3.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/yB_Fn35S/bossprefs_304_no_ads.html">bossprefs_3.0.4_no_ads.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/wowv2mhh/brujulachess_20.html">brujulachess_2.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/mUJmlav8/brujulapoker_20.html">brujulapoker_2.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/ZdWPmxSS/brujulareversi_11.html">brujulareversi_1.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/8Elw_zxz/brujulawebcams_10.html">brujulawebcams_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/1vyvgnhl/btstack_01-551.html">btstack_0.1-551.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/ILtx_Vx5/btstackmouse_01-23116.html">btstackmouse_0.1-23116.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/9HDICEQG/btstackmouse_01-23165.html">btstackmouse_0.1-23165.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/O69NF2BH/C4Crack.html">C4Crack.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/lNRp5X1x/C4crack_12rc.html">C4crack_1.2rc.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/LkHhpZtT/c4syncapp_30.html">c4syncapp_3.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/9I9YvM-E/cavarjuremindmelater_101-7_iph.html">ca.varju.remindmelater_1.0.1-7_iphoneos-arm.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/nlwswCg_/Call_Counter_3_v22-2_Cracked.html">Call_Counter_3_v2.2-2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/fa67D1Wq/callandexcuse_10.html">callandexcuse_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/JqjXmjUm/CallClear_25.html">CallClear_2.5.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/UDa1_kFP/callclear_30-1_Cracked.html">callclear_3.0-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/_bRzOrOt/CallController_18_Cracked.html">CallController_1.8_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/aGAGF9zr/CallController_19_sp4m.html">CallController_1.9_sp4m.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/8L7qVfwv/callcontroller_23_Cracked.html">callcontroller_2.3_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/mW6KhcBB/CallController_25_Cracked.html">CallController_2.5_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/SL5Dpvzn/calldatadbfr-090.html">calldata.db.fr-0.90.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/_jqS3-CN/calldata3-303.html">calldata3-3.0.3.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/qKS69HWy/calllock_102_Cracked.html">calllock_1.0.2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/D3AIHD6r/calltell_20-1_Cracked.html">calltell_2.0-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/i86oJLvs/camelbrowsersid_003.html">camelbrowsersid_0.0.3.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/UmThhYtB/carrierlogofixer_01.html">carrierlogofixer_0.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/YIczxlyV/categories_2266_Cracked.html">categories_2.26.6_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/AW-bBwsG/categories_226_Cracked.html">categories_2.26_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/GuMmtav-/categories_22790_Cracked.html">categories_2.27.90_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/r0pBQQiK/categories_228_Cracked.html">categories_2.28_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/GS9li2KB/categories_229_Cracked.html">categories_2.29_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/GOMovG1-/categories_2993.html">categories_2.99.3.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/nTZOLh8Y/categories_2994-4.html">categories_2.99.4-4.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Nw8ATL4u/categories_2995.html">categories_2.99.5.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/vE_NF2BH/categories_v1_icons_11.html">categories_v1_icons_1.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/lwToiILB/categoriessb_102_Cracked.html">categoriessb_1.0.2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/WX9Np2BD/categoriessb_11_Cracked.html">categoriessb_1.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/bcIEtJzU/categoriessb_12_Cracked.html">categoriessb_1.2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/jTCg9DZy/Categoriessb_14_Cracked.html">Categoriessb_1.4_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/1qgWw4n_/Categoriessb_151_Cracked.html">Categoriessb_1.5.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/x0_BV2yL/categoriessb_153_Cracked.html">categoriessb_1.5.3_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/gSglDO0a/categoriessb_161_Cracked.html">categoriessb_1.6.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/nsVEMIjJ/categoriessb_162_Cracked.html">categoriessb_1.6.2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/EdFzHo4H/categoriessb_163_Cracked.html">categoriessb_1.6.3_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/5YI8DdXW/categoriessb_166-1_Cracked.html">categoriessb_1.6.6-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Pz3RM0md/categoriessb_17-1_Cracked.html">categoriessb_1.7-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/ylhUHy9b/categoriessb_174-1_Cracked.html">categoriessb_1.7.4-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/V6hvLi3c/cerebro_10.html">cerebro_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/LePF4WPh/cerebro_11.html">cerebro_1.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/7TACs9io/chatpic_11_Cracked.html">chatpic_1.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Px1R73C4/checkerboardlayouticonoclasm_1.html">checkerboardlayouticonoclasm_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/MhAJhTAl/chronus_218_Cracked.html">chronus_2.18_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/X4sNuVRU/Chronus_22_Cracked.html">Chronus_2.2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/XV8aXfYv/circuitous_10.html">circuitous_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/hNePUlm1/circuitous_11.html">circuitous_1.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/H7sLsplU/circuitous_121.html">circuitous_1.2.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/yf05KxGY/circuitous_12.html">circuitous_1.2.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/0198agHz/circuitous_12f.html">circuitous_1.2f.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Z8RMIHls/ClearCam_112_Cracked.html">ClearCam_1.1.2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/woZ3w3pV/clockhide_160.html">clockhide_1.6.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/ADlnzj1p/codethemed_101_Cracked.html">codethemed_1.0.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/nFOPPq8d/codethemed_11_Cracked.html">codethemed_1.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/cJMmkaf8/codethemed_12_Cracked.html">codethemed_1.2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/a2N6FGqb/comappledynamic_pager.html">com.apple.dynamic_pager.plist</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Vod9vlXU/comripdevmen-303.html">com.ripdev.men-3.0.3.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/uV88TfXu/contactscydget1041.html">contactscydget1.0.4.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/_EmWP59t/contactscydget104.html">contactscydget1.0.4.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/cCe_PRXZ/cooltictactoecydget_10.html">cooltictactoecydget_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Kt4QLK8c/cornerlesslayouticonoclasm_10.html">cornerlesslayouticonoclasm_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Czk9hjrl/cpprofiles_10_Cracked.html">cpprofiles_1.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/hEjd4OIh/crashreporter_02e.html">crashreporter_0.2e.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/jod5ulGU/curiositykiller_10.html">curiositykiller_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/0V9p81Ly/currencycydget11.html">currencycydget1.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/uO_jBwuG/customhomebutton_102-1.html">customhomebutton_1.0.2-1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/zqk6ezGk/customswapmodeiconsplash_10.html">customswapmodeiconsplash_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Z7nG-5jz/cycalc_10.html">cycalc_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/dUdbBlsW/Cycorder.html">Cycorder.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/9WisSyMe/cycorder_09-6.html">cycorder_0.9-6.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/0FxVwSn_/Cycorder_09-6_without-ads_Crac.html">Cycorder_0.9-6_without-ads_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/JFXI2MkN/cycript_09332-1.html">cycript_0.9.332-1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Fgx-qCH9/cydelete_202-1.html">cydelete_2.0.2-1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/VQk-jzXl/cydget_093086-1.html">cydget_0.9.3086-1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/dqikJyuc/cydget_093141-1.html">cydget_0.9.3141-1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/5MMrgqg7/cydia_102953-59.html">cydia_1.0.2953-59.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/5YPG4aQh/cydia_103044-65.html">cydia_1.0.3044-65.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/WMZDvx5U/cydia_103044-66.html">cydia_1.0.3044-66.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/4TbR3QCN/cydia_103172-68.html">cydia_1.0.3172-68.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/ZQ6Bi1Ol/cydiadownloadstats_10.html">cydiadownloadstats_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/-Ma6NAqJ/cydiahome_10.html">cydiahome_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/nL7kwLep/CyDialer_0927-1_Cracked.html">CyDialer_0.9.27-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/QotBqVOT/cydialer_0930-1_Cracked.html">cydialer_0.9.30-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/sLZ6wNaV/CyDialer_093-1_Cracked.html">CyDialer_0.93-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/ozoDckjA/cyfix.html">cyfix</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/dkSsDH2q/Cyfix_14c.html">Cyfix_1.4c.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/T0-ejgZB/CyfixGUI.html">CyfixGUI.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Mri6Fyqb/Cylay_352.html">Cylay_3.5.2.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/mjN0na_8/Cyntact_133-1_Cracked.html">Cyntact_1.3.3-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/tof4U7p1/cyntact_141-1_Cracked.html">cyntact_1.4.1-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/JePnSqLe/datablocker_11.html">datablocker_1.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/JHjnYifg/destroyprank_10.html">destroyprank_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Ch0EBNzW/deviceinfo_10.html">deviceinfo_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/x22khKu7/deviceswitch_10-1.html">deviceswitch_1.0-1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/dUG7LYWI/deviceswitch_10.html">deviceswitch_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/iCxxrS39/diggcydget_10.html">diggcydget_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/QiauC6MG/directcloserpro_11_Cracked.html">directcloserpro_1.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/v9eDPl5Z/DisableDaemons_10_iphoneos-arm.html">DisableDaemons_1.0_iphoneos-arm.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/GxQY_GEj/diskdev-cmds_4217-3.html">diskdev-cmds_421.7-3.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/rbT-PHXt/diskdev-cmds_4217-4.html">diskdev-cmds_421.7-4.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Xm-T8vTy/displayout_131_Cracked.html">displayout_1.3.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/-aWRz28F/displayout_132_Cracked.html">displayout_1.3.2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/vz5MVKBf/displayout_133_Cracked.html">displayout_1.3.3_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/xlgg7Bt4/DisplayRecorder_100-1_Cracked.html">DisplayRecorder_1.0.0-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Z2NXwqo_/dmistak_10.html">dmistak_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/YPJdsZcU/Dock_101_Cracked.html">Dock_1.0.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/ASqIJEAI/Dock_112_for_OS3x_4x.html">Dock_1.1.2_for_OS3.x_4.x.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/XSmhJPts/Dock_11_Cracked.html">Dock_1.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/R-yvMmhd/downloadtime_10.html">downloadtime_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/gO2Fb055/EasyWakeup_274_Cracked.html">EasyWakeup_2.7.4_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/XBQz9q4i/ebuddycydget_10.html">ebuddycydget_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Cm0oANfW/Element_-_With_unofficial_Dock.html">Element - With unofficial Dock - v2.2.zip</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/IT_argYD/element_0937-1.html">element_0.9.37-1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/5YDqY9fw/element_0943-1.html">element_0.9.43-1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/0DBOn97m/element_0944-1.html">element_0.9.44-1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/yk9TOvTt/element_0945-1.html">element_0.9.45-1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/_jvhNVtZ/element_0946-1.html">element_0.9.46-1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/xuzlQSee/elert_0961_Cracked.html">elert_0.96.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/LRw9_pr5/elert_414_Cracked.html">elert_4.1.4_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/t2des7cU/elerts_421_Cracked.html">elerts_4.2.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/495cZKsg/emojienabler_10.html">emojienabler_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/IEU87bry/ewifi_20.html">ewifi_2.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/UJi6CyGa/expat_201-2.html">expat_2.0.1-2.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/-fwW0_T2/externalipodcontrols_10_Cracke.html">externalipodcontrols_1.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/HPDLTn7u/extremewifi_1004.html">extremewifi_1.0.0.4.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/4Z_0ogpD/ezdecline_11_Cracked.html">ezdecline_1.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/4K657uqi/f3lockscreen10.html">f3lockscreen1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/7wov3jxx/Facebook_11_Cracked.html">Facebook_1.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/BfRKdbBk/facebreak_112_Cracked.html">facebreak_1.12_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/i5lDqjPn/facebreak_115_Cracked.html">facebreak_1.15_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/7_f4X7_1/facebreak_116_Cracked.html">facebreak_1.16_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/uP8gBLtq/fake313_313.html">fake313_3.1.3.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/PA6m0eLg/fake_caller_id_24.html">fake_caller_id_2.4.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/dcXoHM1H/fakeaboutscreen_10.html">fakeaboutscreen_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/4D5fOuJd/fakeaboutscreen_11.html">fakeaboutscreen_1.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/QknkJzus/fakecrasher_10.html">fakecrasher_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/E2RdoXcn/fakecrasher_11.html">fakecrasher_1.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/bx3-eKH6/fakelocation_121.html">fakelocation_1.2.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/OHlKh5Al/FakeLocation_132_Cracked.html">FakeLocation_1.3.2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/FmMhYZd2/fakelocation_13.html">fakelocation_1.3.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/mFaWw6nF/fakepower_10.html">fakepower_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/LzL2KJVY/fartmachine_10.html">fartmachine_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/_auyo_hT/fastnumbercy_144_Cracked.html">fastnumbercy_1.4.4_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Vfu3oVpT/FastReader_10_Cracked.html">FastReader_1.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/DLjUMynd/fastsnap_131_Cracked.html">fastsnap_1.31_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/hIwX1p-2/fastsnap_13_Cracked.html">fastsnap_1.3_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/0OAz3myh/fasttap_10.html">fasttap_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/CNR6gHal/feedmyhome_121.html">feedmyhome_1.2.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/SHIX0sUM/findermobile_10.html">findermobile_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/mvUkWHKv/firewall_10-1_Cracked.html">firewall_1.0-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/UDAWY8ng/firewall_10_Cracked.html">firewall_1.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/SlsjTo0K/firewall_11-1_Cracked.html">firewall_1.1-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/OlEPSnSu/firewall_11-2_Cracked.html">firewall_1.1-2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/ttsHUokL/firewall_11-3_Cracked.html">firewall_1.1-3_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/ZS-G1f6w/firewall_11_Cracked.html">firewall_1.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/1VmpvP1o/Firewall_12-1_Cracked.html">Firewall_1.2-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/XgVI6Hky/Firewall_12-3_Cracked.html">Firewall_1.2-3_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/VwnCE5ir/firewall_12_Cracked.html">firewall_1.2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/A3dnglfR/Firewall_130_Cracked.html">Firewall_1.30_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/LoN48dG4/Firewall_131_Cracked.html">Firewall_1.31_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/N8bKN6AJ/Firewall_135_Cracked.html">Firewall_1.35_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/IrJS8cTO/Firewall_139-4_Cracked.html">Firewall_1.39-4_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/oRzrHm2b/Firewall_139_Cracked.html">Firewall_1.39_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/XNHuGcNH/firewall_149-1_Cracked.html">firewall_1.49-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/yRWKqgRD/Firewall_iP_139-1_Cracked.html">Firewall_iP_1.39-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/V6pye6NA/Firewall_iP_139-2_Cracked.html">Firewall_iP_1.39-2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/jprPyoSF/Five_colomn_Springboard.html">Five colomn Springboard.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/PbOqfa26/fivepicturefadetheme_theme_112.html">fivepicturefadetheme_theme_1.1.2.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/nHo8T5Wu/fixedsound_312.html">fixedsound_3.1.2.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/HKyRoSm9/fixwifi_01.html">fixwifi_0.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/vSgIWBQ1/flashlight_24.html">flashlight_2.4.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/cvlF6Oji/flexbook_10.html">flexbook_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/nAAVRSDe/flexbook_11.html">flexbook_1.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/aKV5-raz/FolderEnhancer_103-1_Cracked.html">FolderEnhancer_1.0.3-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/lOYPUwmL/folderenhancer_104-1_Cracked.html">folderenhancer_1.0.4-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/DqwcOFIZ/folderenhancer_110-1_Cracked.html">folderenhancer_1.1.0-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/kArszE2F/folderenhancer_111-1_Cracked.html">folderenhancer_1.1.1-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/p39oGLLr/folderenhancer_112-1_Cracked.html">folderenhancer_1.1.2-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/xSAAUCif/folderenhancer_113-1_Cracked.html">folderenhancer_1.1.3-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/p3uOp_BT/folderenhancer_114-1_Cracked.html">folderenhancer_1.1.4-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/sUD6DDWq/folderenhancer_115-1_cracked.html">folderenhancer_1.1.5-1_cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/4v1owNfV/fontswap_15.html">fontswap_1.5.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/aWYZT2-K/fontswapstarter_10.html">fontswapstarter_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/lJt45-_N/Frash-001.html">Frash-0.01.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/-Io3MPpt/Frash-002.html">Frash-0.02.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/6a6wsKh-/freeflix_22.html">freeflix_2.2.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/SQj8l4q8/freemovies_20.html">freemovies_2.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/oCc-yAHF/freemovies_30.html">freemovies_3.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Qja7YPaw/freeram_31.html">freeram_3.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/XehtHR2X/freesms10.html">freesms.1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/YOLbjtYR/frenchextendedkeyboard_10.html">french.extended.keyboard_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/E-HpoYfD/frontcontacts_117_Cracked.html">frontcontacts_1.1.7_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/R2t2REFK/frontcontacts_12_Cracked.html">frontcontacts_1.2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/xTLkiJKR/Fronts_Contacts_10_Cracked.html">Fronts_Contacts_1.0_Cracked.rar</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/wYC65CWh/FullPreview_10_Cracked.html">FullPreview_1.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/TwT2cHpk/fullpreview_20_cracked.html">fullpreview_2.0_cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/4Rjghyt7/FullScreenSafari-114beta_Crack.html">FullScreenSafari-1.14beta_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/KM4N23l3/funnypictures_12.html">funnypictures_1.2.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/9_r2lEFC/fuzzyband_313-1.html">fuzzyband_3.1.3-1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Om49Vxr1/gawk_316-2.html">gawk_3.1.6-2.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/a2W_51Xx/getsomeinfo_10.html">getsomeinfo_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/tS7jNuud/gettext_017-6_iphoneos-arm.html">gettext_0.17-6_iphoneos-arm.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/c1FgLDZs/gimpwimporpimp_10.html">gimpwimporpimp_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/iLayX53v/glovepod_11.html">glovepod_1.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/vQDIcDkk/glovepod_122-1.html">glovepod_1.2.2-1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/BdTI3GAh/glovepod_122.html">glovepod_1.2.2.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/59Dbgncl/glovepod_123.html">glovepod_1.2.3.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/qSRBIWic/glovepod_124.html">glovepod_1.2.4.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Y6lfKiJc/glovepod_12.html">glovepod_1.2.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Av0HRwAK/glowingclock_10.html">glowingclock_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/hUXEbM5z/gmail_10.html">gmail_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/u3hJIRkY/gnu_debugger_962-5.html">gnu_debugger_962-5.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/21MDptzT/gpowerpro_30-1_Cracked.html">gpowerpro_3.0-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/y3aMUzlv/gpSPhone_660_Cracked.html">gpSPhone_6.6.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/xuEMeDRk/gpSPhone_667_Cracked.html">gpSPhone_6.6.7_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/qJbU3zDx/gPSSerial-131.html">gPSSerial-1.3.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/F9kfniZ8/gpssms_100.html">gpssms_1.0.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/aNvg3EtN/gpssms_11-6.html">gpssms_1.1-6.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/e-PK9d74/gpssms_120.html">gpssms_1.2.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/qtlRrO89/gpssms_130.html">gpssms_1.3.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/kz38thrU/gradiance_4401.html">gradiance_44.01.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/aUsyh-xB/graviboard_102-1_Cracked.html">graviboard_1.02-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/hf2z-qij/graviboard_104-1_Cracked.html">graviboard_1.04-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/9tCTGmTb/gridlock_104-1_Cracked.html">gridlock_1.0.4-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/qWYFi2PB/gridlock_111-1_Cracked.html">gridlock_1.1.1-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/-SVDxrzp/gridlock_12-1_Cracked.html">gridlock_1.2-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/94FwADhq/gridlock_123-2_Cracked.html">gridlock_1.2.3-2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/jXzV2Vn3/gridlock_124-1_Cracked.html">gridlock_1.2.4-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/owH1VrFv/gridtab_10-0_Cracked.html">gridtab_1.0-0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/zQpit5to/GriP_01-11p.html">GriP_0.1-11p.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/VFOqGdMX/Grip_01-11r.html">Grip_0.1-11r.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/NbJBkYiC/GriPSMSNotification_11_1_.html">GriPSMSNotification_1.1(1).deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/gKHUYHnw/griPSMSNotification_11.html">griPSMSNotification_1.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/D3qdMTct/grouper_03-1.html">grouper_0.3-1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/oBw4_-FP/groupsend_12-1_Cracked.html">groupsend_1.2-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/xI9zWuOf/Gruppled_Arttheme.html">Gruppled Art.theme.zip</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/F4Dz2mih/Gruppled_LockInfotheme-0952.html">Gruppled LockInfo.theme-0.9.5.2.zip</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/JM0vGwNH/gtfont_10.html">gtfont_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/fFumE-eH/GuizmOVPN_096_Cracked.html">GuizmOVPN_0.9.6_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/DSqsIDgs/gvmobileplus_2010_Cracked.html">gvmobileplus_2.0.10_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/GhGMxHBp/HapticPro_120_Cracked.html">HapticPro_1.2.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/RfWexftp/hdphotographer_11-23_Cracked.html">hdphotographer_1.1-23_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/VV7Dru59/hdvideo3gs.html">hdvideo3gs.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/v0kJdOA6/hexabeep_10.html">hexabeep_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/RMW3F1Fr/hiddensmslite_v149.html">hiddensmslite_v1.4.9.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/MPuuF-wH/hiddenstatusbar_10.html">hiddenstatusbar_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/SVPQVJC1/hitobama_101.html">hitobama_1.0.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Q71NY2lM/hotgirlzwallpapercenter_30.html">hotgirlzwallpapercenter_3.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/1eEU1C9g/htccydget_10.html">htccydget_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/JHmPCiSa/htcherocydget_10.html">htcherocydget_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/DD5mQhf0/htcplugin_131_c.html">htcplugin_1.3.1_c.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/v6EfbnZj/htcsensecydget_101.html">htcsensecydget_1.0.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/ZjLWLc-I/htcsensecydget_103.html">htcsensecydget_1.0.3.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/LzeXxkEF/htcsensecydget_104.html">htcsensecydget_1.0.4.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/UP2W6goO/htcsensecydget_110-1.html">htcsensecydget_1.1.0-1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/dxHpKXLs/htcsensecydget_111.html">htcsensecydget_1.1.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/9vgM0ARM/hwplanner_30.html">hwplanner_3.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/CQ1zMwiJ/iacces_3044_Cracked.html">iacces_3044_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/ZvwfWoJL/iAcces_41-405302_Cracked.html">iAcces_4.1-405302_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/n9kq5713/iaccounts_103_Cracked.html">iaccounts_1.03_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/68-a2ech/iAdKiller_01.html">iAdKiller_0.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/8JbJFPAr/iaweatherslider_10.html">iaweatherslider_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/WOMoWILL/iazerty_10.html">iazerty_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/xB_u6ehi/ibassguitar_10.html">ibassguitar_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/TnK9gsbB/ibattery_10.html">ibattery_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/XgsTKnTs/iBirthdayv20.html">iBirthday.v2.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/I8I5Rrqu/iblacklist-3-118_Cracked.html">iblacklist-3-1.1.8_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/0mpFVOzf/iBlacklist_31-4_Cracked.html">iBlacklist_3.1-4_Cracked.zip</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/7zTmqaL9/iblacklist_31_Cracked.html">iblacklist_3.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/sh13l2FC/iblacklist_40-2_wortel.html">iblacklist_4.0-2_wortel.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/nLzat_rU/iblacklist_40-2A_wortel.html">iblacklist_4.0-2A_wortel.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/mKNfZstM/iblacklist_40-5_Cracked.html">iblacklist_4.0-5_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/K1zF5P5x/iblacklist_42_Cracked.html">iblacklist_4.2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/S5tL0nRw/iblank_20.html">iblank_2.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/NcyT2onN/iblank_302.html">iblank_3.0.2.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/6dut1T2w/iblank_303.html">iblank_3.0.3.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/pMp0U4of/ibluenova_201_Cracked.html">ibluenova_2.0.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/ffBxMVhZ/iBlueNova_20_Cracked.html">iBlueNova_2.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/AnTPhqC7/iBluetooth_30_Cracked.html">iBluetooth_3.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/q7xbXoYL/iBluever_1011_Cracked.html">iBluever 1.0.11_Cracked.zip</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/h4kmH70X/ibongo_10.html">ibongo_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/VJ51lxFS/ibrowse_10.html">ibrowse_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/EBzUiFTR/iBye_10_Cracked.html">iBye_1.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/qBFxOSNd/iBye_11_Cracked.html">iBye_1.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/erQmwdfV/ibye_242_Cracked.html">ibye_2.4.2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/pBXWZdE2/ibye_243_Cracked.html">ibye_2.4.3_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/FFq54mGh/icallannounce_12_Cracked.html">icallannounce_1.2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/8eCrYpg2/ichatonline_10.html">ichatonline_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/nSHulbxm/iclassic_10_Cracked.html">iclassic_1.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/GgyZXU-L/iclassic_15_Cracked.html">iclassic_1.5_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/sL2qzg2F/iconharvester_101-1_not-cracke.html">iconharvester_1.0.1-1_not-cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/JPiq561N/iconoclasm_10-1_Cracked.html">iconoclasm_1.0-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Kh1yagOz/iconoclasm_11_Cracked.html">iconoclasm_1.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/D4QLDt7W/iconoclasm_12_Cracked.html">iconoclasm_1.2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/If0VW1Tv/iconoclasm_13_Cracked.html">iconoclasm_1.3_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/4jY0rf_n/iconoclasm_141_Cracked.html">iconoclasm_1.4.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/CChvMkhJ/iconoclasm_14_Cracked.html">iconoclasm_1.4_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/gtyWZ-DM/iconoclasm_15_Cracked.html">iconoclasm_1.5_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/6Nf4i6VB/iconoclasm_162_Cracked.html">iconoclasm_1.6.2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/n8a59iWi/iconoclasm_16_Cracked.html">iconoclasm_1.6_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/U3lNRRB0/iconsupport_13.html">iconsupport_1.3.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/WhgDpkzD/icontrol_10-1_Cracked.html">icontrol_1.0-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/ry18dgrA/iDashboard_101_Cracked.html">iDashboard_1.0.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/EEpCK4Oc/iDashboard_Cracked.html">iDashboard_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Dzogsyd-/iDiscreteJB_131-1_Cracked.html">iDiscreteJB_1.3.1-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/ag71vx_U/iDitDahText_11-1_Cracked.html">iDitDahText_1.1-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Ts6SihTR/idrums_10.html">idrums_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/janrZlw2/ifacebookcydget_01.html">ifacebookcydget_0.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/K6RTHt9X/ifile_110-1_Cracked.html">ifile_1.1.0-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/izvS49Sx/ifile_120-1_Cracked.html">ifile_1.2.0-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/06MxnY3C/ifile_120-1_fixed_Cracked.html">ifile_1.2.0-1_fixed_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/aB2seMMA/iFile_130-2_NeonCoyote_WHO_Tou.html">iFile_1.3.0-2_NeonCoyote_WHO_ToughRough_FIXED.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/UCOjLs0I/ifile_131-1_Cracked.html">ifile_1.3.1-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/QB3WsgoE/ifortuneteller_10.html">ifortuneteller_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/3JSzKtOY/igoogler_10_Cracked.html">igoogler_1.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/INHe1aZg/iGotYa_1011-1_Cracked.html">iGotYa_1.0.11-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/q5Ps6IgO/iGotYa_1017-1_Cracked.html">iGotYa_1.0.17-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/z79K5h73/ihome_1002-1.html">ihome_1.0.02-1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/zynSX781/ihome_1002-4.html">ihome_1.0.02-4.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/EwRcqJIT/iHome_Cracked.html">iHome_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/x4ri44Jh/ikeyex3_02b_Cracked.html">ikeyex3_0.2b_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/6hUL5p73/iKeyEx3_Cracked.html">iKeyEx3_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/AUwic6dA/ikeyex5rowaltkeyboard_02b.html">ikeyex5rowaltkeyboard_0.2b.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/DEmBDN4W/iKeyEx_02b.html">iKeyEx_0.2b.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Hp-B5Z43/ilinkedincydget_01.html">ilinkedincydget_0.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/QqKKA9kq/iLockMusic_10.html">iLockMusic_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/mYCWI7nY/ilockmusic_12_Cracked.html">ilockmusic_1.2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/c3-xcWh6/imaraca_10.html">imaraca_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/he6v2shN/iMemory_11_Cracked.html">iMemory_1.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/3ovCN5yt/iMobileCinema_SBSettings-22276.html">iMobileCinema SBSettings-2.2.2763-b7.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/_tBEiBPR/iMobileCinema-222763-b7.html">iMobileCinema-2.2.2763-b7.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/MjKrvn2o/imuzik11.html">imuzik1.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/l6Fkry09/imyspacecydget_01.html">imyspacecydget_0.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/fXQV_UDP/inaise10.html">inaise1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/AjdGf15k/ines_14_iphoneos-arm.html">ines_1.4_iphoneos-arm.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/33oP_hC5/inetlogcydget_01.html">inetlogcydget_0.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/9Mr5Riqe/infiniboard_10_Cracked.html">infiniboard_1.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/0yBbhlsR/infiniboard_111_Cracked.html">infiniboard_1.1.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/tzT9NprZ/infiniboard_112_Cracked.html">infiniboard_1.1.2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/5JAC564N/infiniboard_11_Cracked.html">infiniboard_1.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/ZPGOB8Ba/infiniboard_12_Cracked.html">infiniboard_1.2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/76uYFzEr/infiniboard_132_Cracked.html">infiniboard_1.3.2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/L1huo2gD/infiniboard_141-1_Cracked.html">infiniboard_1.4.1-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/AVvoRzvu/infiniboard_142-1__Cracked.html">infiniboard_1.4.2-1__Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/WX0KCbRq/infiniboard_143-1_Cracked.html">infiniboard_1.4.3-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/_ONqk-fC/infiniboard_153-1_Cracked.html">infiniboard_1.5.3-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/_Kpei0I7/infiniboard_16-17_Cracked.html">infiniboard_1.6-17_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/6BIO187g/infiniboard_164-1_Cracked.html">infiniboard_1.6.4-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/64vVTP9u/infiniboard_172-1_Cracked.html">infiniboard_1.7.2-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/z8FEoyj9/infinidock_12_Cracked.html">infinidock_1.2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/9WtDljzm/infinidock_13_Cracked.html">infinidock_1.3_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/9p6RXY8L/infinidock_15-22_iphoneos-arm.html">infinidock_1.5-22_iphoneos-arm.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/sNtnhjvl/infinidock_161-1_Cracked.html">infinidock_1.6.1-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/3_DnTl10/infinidock_165-1_Cracked.html">infinidock_1.6.5-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/HujVDM9G/infinidock_166-1_Cracked.html">infinidock_1.6.6-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/qaOii-JB/infinidock_169-1_Cracked.html">infinidock_1.6.9-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/IdhS31Cx/infinifolders_11-1_Cracked.html">infinifolders_1.1-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/BoEsQBg0/infinifolders_12-5_Cracked.html">infinifolders_1.2-5_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Vu5MCIRG/infinifolders_131-1_Cracked.html">infinifolders_1.3.1-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/3oHSA8ma/inorotate_10.html">inorotate_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/sAjyC2NG/insomniapro_402_Cracked.html">insomniapro_4.0.2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/pzWElGz8/insomniapro_40_Cracked.html">insomniapro_4.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/vjdM2ulh/insomniapro_40_Fixed_Cracked.html">insomniapro_4.0_Fixed_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Cm9CwdjV/insomniapro_41_Crackeds.html">insomniapro_4.1_Crackeds.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Zq3f3rtx/insomniapro_42-1_Cracked.html">insomniapro_4.2-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/pZEDUlj1/Inspell_120_Cracked.html">Inspell_1.2.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/F7yJpQAD/install-Homepage-23install0us.html">install-Homepage-2.3install0us.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/mI8zhtyR/install-Homepage.html">install-Homepage.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/iZzGB6zG/install0us3B22.html">install0us.3.B2.2.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/TIENNRBZ/install0usapp_252theend.html">install0us.app_2.5.2.the.end.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/5GSxfV3Q/install0us_251.html">install0us_2.5.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/gJ01erVk/Installous_v203.html">Installous_v2.0.3.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/bgSV9U9O/installousvoice_10.html">installousvoice_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/4gcOD07a/instapaperplugin_10_Cracked.html">instapaperplugin_1.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/VJGQdCC6/IntellibornMyWiv341_Cracked.html">Intelliborn.MyWi.v3.4.1_Cracked.rar</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Yrd4V0Ff/intellidial2901_Cracked.html">intellidial.2.90.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/ocuO64li/intellidial_418_Cracked.html">intellidial_4.1.8_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/yP5puYLE/intelliscreen2954_Cracked.html">intelliscreen.2.95.4_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/y5I2NCFd/intelliscreen2962.html">intelliscreen.2.96.2.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/fI4Obc8z/intelliscreen2965.html">intelliscreen.2.96.5.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/CLSZbV-P/Intelliscreennorock_2967_Crack.html">Intelliscreen.norock_2.96.7_Cracked.zip</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/M2hyY1hw/intelliscreen_462_Cracked.html">intelliscreen_4.6.2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/NRU1FpFX/intelliscreen_471_Cracked.html">intelliscreen_4.7.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/hVwPIjms/intelliscreennorock_2967_Crack.html">intelliscreennorock_2.96.7_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/l30hbXZj/intellishared_312_Cracked.html">intellishared_3.1.2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/REeP7eCi/intellishared_321.html">intellishared_3.2.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/HlKF1S5g/intellishared_323.html">intellishared_3.2.3.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/5Y3iVbuv/internettethering_30.html">internettethering_3.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/5jmV1M9M/iphoneske_092973-1.html">iphone.ske_0.9.2973-1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/5PZITG6e/iphonebash10.html">iphonebash1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/WuHZhSE7/iphonebash11.html">iphonebash1.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/e6gUGvTr/iphonedelivery-011.html">iphonedelivery-0.1.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/d4MaG9Hr/iphonedelivery-012.html">iphonedelivery-0.1.2.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/F1RlUUeL/iphonedelivery-013.html">iphonedelivery-0.1.3.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/6c_AHJ4X/iphonedelivery-014.html">iphonedelivery-0.1.4.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/DWfSn18m/iphonedelivery-015.html">iphonedelivery-0.1.5.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/dl4eZbtw/iphonedelivery-021.html">iphonedelivery-0.2.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/EQGU7FD4/iphonedelivery-031.html">iphonedelivery-0.3.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/kRRLQolK/iphonedelivery-033.html">iphonedelivery-0.3.3.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/9REWA7nW/iPhoneTool_11.html">iPhoneTool_1.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/o7ABEQiH/iPhoneVM.html">iPhoneVM.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/iLj0j2-B/ipicmycontacts_115_Cracked.html">ipicmycontacts_1.15_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/SrnZeNUQ/ipicmycontacts_116_Cracked.html">ipicmycontacts_1.16_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/QQa26xp4/ipicmycontacts_11_Cracked.html">ipicmycontacts_1.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/wp58dcrA/ipicmycontacts_131_Cracked.html">ipicmycontacts_1.31_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/_VQ9BorG/iplaytunes_10_Cracked.html">iplaytunes_1.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/-VAjAkeG/ipodclassiciclassictheme_10.html">ipodclassiciclassictheme_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/qlsNqOR9/iPodClassicTheme.html">iPodClassicTheme.rar</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/eyGX0pU2/ipodmovieinfolite_10.html">ipodmovieinfolite_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/3w6stIwE/ipodremotecontroller_10_Cracke.html">ipodremotecontroller_1.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/X2rplOv8/iponder_10.html">iponder_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/DetEFyzb/iProtectv12_Cracked.html">iProtect.v1.2_Cracked.zip</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/wwI0t8E-/iProtect_v11_Cracked.html">iProtect_v1.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/NkbSa0S5/iQwerty_10_Cracked.html">iQwerty_1.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/uCCe16YM/iQwertZ_10_Cracked.html">iQwertZ_1.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/DVETylTV/iRealQuickSMS_1031_Cracked.html">iRealQuickSMS_1.0.3.1_Cracked.zip</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Sqy6XzWv/iRealSMS2093_keygen.html">iRealSMS2.0.9.3_keygen.exe</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/2yeWZ0Dg/irealsms3013_Cracked.html">irealsms3.0.1.3_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/NMjjggeB/irealsms3_Cracked.html">irealsms3_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/4AI2tCF-/iRealSMS_30_Cracked.html">iRealSMS_3.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/NzDFdRzQ/iRealSMS_dylib.html">iRealSMS_dylib.dylib</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/cuiVXL9v/iremix-103_Cracked.html">iremix-1.03_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/FKu11i_g/iremix-104_Cracked.html">iremix-1.04_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/kPBXMkoJ/iremix_10.html">iremix_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/aPhMMvlt/iremix_106_Cracked.html">iremix_1.06_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/W_qX6lo4/iretrophone_10.html">iretrophone_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/m0mb2gcN/irunning_10.html">irunning_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/twuFUOjf/ischeduler_102_Cracked.html">ischeduler_1.0.2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/UljT6fny/iScheduler_104_Cracked.html">iScheduler_1.0.4_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/WgCfPkZJ/iScheduler_103_Cracked.html">iScheduler_1.03_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/N9oWx3DV/iScheduler_111_Cracked.html">iScheduler_1.1.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/cak4h2FB/iScheduler_112_Cracked.html">iScheduler_1.1.2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/9OWaXdY1/iScheduler_11_Forenjunkie.html">iScheduler_1.1_Forenjunkie.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/qJdgFutb/ischeduler_12_Cracked.html">ischeduler_1.2_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/O7851sWM/isearchit_10.html">isearchit_1.0.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/QaqRMRmZ/isearchit_11-1.html">isearchit_1.1-1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/c_qa17X2/isearchit_11.html">isearchit_1.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/gEZQDG8a/ishakelock_01.html">ishakelock_0.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/_LvF_Ozj/ishakelock_011.html">ishakelock_0.11.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/C4w-tzro/ishakelock_020.html">ishakelock_0.20.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/0jErhlwR/ishakelock_100.html">ishakelock_1.00.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/uIF2EBpX/ishakelockfr_011-1.html">ishakelockfr_0.11-1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/XhGQMFmZ/ishshit_100_Cracked.html">ishshit_1.0.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/WY9rbt2P/iSilent_200-7_Cracked.html">iSilent_2.0.0-7_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/SyzS75Cy/iSilent_200-9_sp4m.html">iSilent_2.0.0-9_sp4m.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/-T90adVP/ismartdialer304_Cracked.html">ismartdialer.3.04_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/N-1ZeXUk/isnes_10_iphoneos-arm.html">isnes_1.0_iphoneos-arm.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/HhxAvz4o/iSpanks_01.html">iSpanks_0.1.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/VuDK566N/iSpanks_05.html">iSpanks_0.5.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/XwmaG2HH/listlauncher_12-1_Cracked.html">listlauncher_1.2-1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/DZKlWSKf/lockinfo_23111_Cracked.html">lockinfo_2.3.11.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/4R6ioceD/multicleaner_25_Cracked.html">multicleaner_2.5_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/6HOxKTNs/Multifl0w_204_Cracked.html">Multifl0w_2.0.4_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/3LdIDu6a/my3g_461_Cracked.html">my3g_4.6.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/eOrU9B94/my3g_471_Cracked.html">my3g_4.7.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Kx9N4YRN/myprofiles_433_Cracked.html">myprofiles_4.3.3_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/Kn2Tgrnl/mystrings_20_Cracked.html">mystrings_2.0_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/ZbmXJgEI/notifiedpro_153_Cracked.html">notifiedpro_1.5.3_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/1uMsiDMl/pkgbackup_405_Cracked.html">pkgbackup_4.0.5_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/XZM_oTbn/RemindMeLater_11-80_Cracked.html">RemindMeLater_1.1-80_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/sgGNEVlX/sbrotator4_104_Cracked.html">sbrotator4_1.04_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/w-rjaiK5/scrollingboard_114_Cracked.html">scrollingboard_1.14_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/l9nV7MDO/synchronicity_103_Cracked.html">synchronicity_1.0.3_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/FiAcdAsA/TetherMe_13-20_Cracked.html">TetherMe_1.3-20_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/HIoeg3cR/tlert_435_Cracked.html">tlert_4.3.5_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/kVS5QoaK/tlerts_441_Cracked.html">tlerts_4.4.1_Cracked.deb</a></u></span><span style="font:13px Calibri; color:#3D3D3D;"><br /></span><span style="font:13px Calibri; color:#005BB0;"><u><a href="http://www.4shared.com/file/DrBSr68D/zhuyinoptimizedkeyboard_12_Cra.html">zhuyinoptimizedkeyboard_1.2_Cracked.deb</a></u></span></p>]]></content:encoded></item><item><title>How To Downgrade iPhone 06.15.00 Baseband to 05.13.xx (iPhone 3G Bootloader 5.8 Only)</title><dc:creator>TuInfor@Ymail.Com</dc:creator><category>Iphone Tutorial</category><dc:date>2011-01-01T22:59:46-05:00</dc:date><link>http://tkntech.com/repair/files/4e1ad45192e64b7ea8559caeea6806f3-34.php#unique-entry-id-34</link><guid isPermaLink="true">http://tkntech.com/repair/files/4e1ad45192e64b7ea8559caeea6806f3-34.php#unique-entry-id-34</guid><content:encoded><![CDATA[<span style="font:12px Verdana, serif; font-weight:bold; color:#1A1A1A;font-weight:bold; ">Step 1:</span><span style="font:12px Verdana, serif; color:#1A1A1A;"> Download the required certificate file ICE2-06.15.00.cert </span><span style="font:12px Verdana, serif; color:#0000FF;"><u><a href="http://www.multiupload.com/2ERDT0TRDT">from here</a></u></span><span style="font:12px Verdana, serif; color:#1A1A1A;">.<br /></span><span style="font:12px Verdana, serif; font-weight:bold; color:#1A1A1A;font-weight:bold; ">Step 2:</span><span style="font:12px Verdana, serif; color:#1A1A1A;"> Install Fuzzyband from Cydia and start this app.<br /></span><span style="font:12px Verdana, serif; font-weight:bold; color:#1A1A1A;font-weight:bold; ">Step 3:</span><span style="font:12px Verdana, serif; color:#1A1A1A;"> Connect your iPhone 3G with computer via USB Cable.<br /></span><span style="font:12px Verdana, serif; font-weight:bold; color:#1A1A1A;font-weight:bold; ">Step 4:</span><span style="font:12px Verdana, serif; color:#1A1A1A;"> Start i-FunBox and click </span><span style="font:12px Verdana-Italic; color:#1A1A1A;"><em>File</em></span><span style="font:12px Verdana, serif; color:#1A1A1A;">, then navigate to </span><span style="font:12px Verdana-Italic; color:#1A1A1A;"><em>Applications/Fuzzyband.app</em></span><span style="font:12px Verdana, serif; color:#1A1A1A;">, right-click and then select Copy from PC.<br /></span><span style="font:12px Verdana, serif; font-weight:bold; color:#1A1A1A;font-weight:bold; ">Step 5:</span><span style="font:12px Verdana, serif; color:#1A1A1A;"> Select the ICE2-06.15.00.cert file you downloaded earlier and then copy it to this location: </span><span style="font:12px Verdana-Italic; color:#1A1A1A;"><em>Applications/Fuzzyband.app</em></span><span style="font:12px Verdana, serif; color:#1A1A1A;">.<br /></span><span style="font:12px Verdana, serif; font-weight:bold; color:#1A1A1A;font-weight:bold; ">Step 6:</span><span style="font:12px Verdana, serif; color:#1A1A1A;"> Now simply disconnect your iPhone from your computer and start Fuzzyband app (which you previously installed using Cydia) on your iPhone.<br /></span><span style="font:12px Verdana, serif; font-weight:bold; color:#1A1A1A;font-weight:bold; ">Step 7:</span><span style="font:12px Verdana, serif; color:#1A1A1A;"> In Fuzzyband, you will now see your current version of Baseband, (which should still be 06.15.00). But now you will have the option to downgrade it to version 05.13.xx.</span>]]></content:encoded></item><item><title>Location of Iphone&#x2c; Itouch&#x2c; Ipad Firmware Software Update</title><dc:creator>TuInfor@Ymail.Com</dc:creator><category>Iphone Tutorial</category><dc:date>2010-11-29T14:36:11-05:00</dc:date><link>http://tkntech.com/repair/files/822f660cf24b3a244bfcf17ba93fa928-33.php#unique-entry-id-33</link><guid isPermaLink="true">http://tkntech.com/repair/files/822f660cf24b3a244bfcf17ba93fa928-33.php#unique-entry-id-33</guid><content:encoded><![CDATA[<span style="font:13px Arial, Verdana, Helvetica, sans-serif; color:#262626;">Your Hardrive => Library => iTunes => Iphone Software Updates</span>]]></content:encoded></item><item><title>How To Fix Error Code 1013 on iPhone 4 (4.2.1)</title><dc:creator>TuInfor@Ymail.Com</dc:creator><category>Iphone Tutorial</category><dc:date>2010-11-29T14:25:58-05:00</dc:date><link>http://tkntech.com/repair/files/bf31c2a8cd3a98ea8b47b2f863b4af35-32.php#unique-entry-id-32</link><guid isPermaLink="true">http://tkntech.com/repair/files/bf31c2a8cd3a98ea8b47b2f863b4af35-32.php#unique-entry-id-32</guid><content:encoded><![CDATA[<span style="font:13px Arial, Verdana, Helvetica, sans-serif; color:#262626;">1. Go to your &ldquo;Applications&rdquo; folder<br /></span><span style="font:13px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#262626;">
</span><span style="font:13px Arial, Verdana, Helvetica, sans-serif; color:#262626;">2. Go to your &ldquo;Utilities&rdquo; folder<br /></span><span style="font:13px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#262626;">
</span><span style="font:13px Arial, Verdana, Helvetica, sans-serif; color:#262626;">3. Launch &ldquo;Terminal&rdquo;<br /></span><span style="font:13px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#262626;">
</span><span style="font:13px Arial, Verdana, Helvetica, sans-serif; color:#262626;">4. Type &ldquo;sudo nano /etc/hosts&rdquo; (without quotes) and hit return<br /></span><span style="font:13px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#262626;">
</span><span style="font:13px Arial, Verdana, Helvetica, sans-serif; color:#262626;">5. Enter your password<br /></span><span style="font:13px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#262626;">
</span><span style="font:13px Arial, Verdana, Helvetica, sans-serif; color:#262626;">6. Use the down arrow key to find the &ldquo;gs.apple.com&rdquo; entries.  Remove that line & the ip then type &ldquo;#&rdquo; (no quotes)<br /></span><span style="font:13px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#262626;">
</span><span style="font:13px Arial, Verdana, Helvetica, sans-serif; color:#262626;">7. Save the file by pressing CONTROL+O on the keyboard<br /></span><span style="font:13px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#262626;">
</span><span style="font:13px Arial, Verdana, Helvetica, sans-serif; color:#262626;">8. Exit the nano editor by pressing CONTROL+X on the keyboard<br /></span><span style="font:13px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#262626;">
</span><span style="font:13px Arial, Verdana, Helvetica, sans-serif; color:#262626;">9. Restore your iDevice</span>]]></content:encoded></item><item><title>Apple Brings FaceTime to the Mac</title><dc:creator>TuInfor@Ymail.Com</dc:creator><category>Daily New</category><dc:date>2010-10-20T17:29:57-04:00</dc:date><link>http://tkntech.com/repair/files/cb6215a4040c834f2b2d77b361f7d6f3-31.php#unique-entry-id-31</link><guid isPermaLink="true">http://tkntech.com/repair/files/cb6215a4040c834f2b2d77b361f7d6f3-31.php#unique-entry-id-31</guid><content:encoded><![CDATA[<img class="imageStyle" alt="" width="108" height="78" src="http://tkntech.com/repair/files/page4_blog_entry31-facetime_icon20101020.jpg" /><span style="font:13px Geneva, serif; color:#535353;">Apple today announced the public beta of FaceTime for Mac, an entirely new application that allows Mac users to video call iPhone 4 and iPod touch users as well as other Macs. Featuring an easy to use interface, FaceTime for Mac automatically uses your Address Book contacts so there&rsquo;s no need to create special buddy lists, and it works seamlessly with the built-in camera and mic on Mac notebooks, iMac and Apple LED Cinema Displays. 

"FaceTime makes video calling to or from mobile devices easy for the first time," said Steve Jobs, Apple&rsquo;s CEO. "We've sold more than 19 million FaceTime-ready iPhone 4 and iPod touch devices in the past four months, and now those users can make FaceTime calls with tens of millions of Mac users."

FaceTime for Mac requires Mac OS X Snow Leopard and is easy to set up with an Apple ID. The public beta is available immediately as a free download at </span><span style="font:13px Geneva, serif; color:#535353;"><a href="http://www.apple.com/mac/facetime">www.apple.com/mac/facetime</a></span><span style="font:13px Geneva, serif; color:#535353;">.<br /></span><p style="text-align:center;"><img class="imageStyle" alt="" width="480" height="295" src="http://tkntech.com/repair/files/page4_blog_entry31-facetime_ringing20101020.jpg" /><span style="font:13px Geneva, serif; "><br /></span><img class="imageStyle" alt="" width="480" height="287" src="http://tkntech.com/repair/files/page4_blog_entry31-facetime_views20101020.jpg" /><span style="font:13px Geneva, serif; "><br /><br /></span><span style="font:14px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#262626;"><br /></span></p><p style="text-align:left;"><span style="font:16px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; font-weight:bold; font-weight:bold; ">Your Mac is ringing.<br /></span><span style="font:14px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#262626;">Whenever someone tries to reach you, the call rings through on every Mac you own even if FaceTime isn&rsquo;t running. So you never have to worry about making yourself available. If you don&rsquo;t want to receive calls, just turn FaceTime off in Preferences.</span></p>]]></content:encoded></item><item><title>OS 4.1 Jailbreak Now</title><dc:creator>TuInfor@Ymail.Com</dc:creator><category>Daily New</category><dc:date>2010-10-14T23:07:17-04:00</dc:date><link>http://tkntech.com/repair/files/40159585f49e90a7236c3ec2efec7448-30.php#unique-entry-id-30</link><guid isPermaLink="true">http://tkntech.com/repair/files/40159585f49e90a7236c3ec2efec7448-30.php#unique-entry-id-30</guid><content:encoded><![CDATA[<p style="text-align:center;"><span style="font:22px Arial, Verdana, Helvetica, sans-serif; font-weight:bold; font-weight:bold; ">OS 4.1 Jailbreak your Iphone, Ipod, Ipad Now Only $20.00 to Get Free lots of applications & games<br />Call 770-402-6330 or Text 530-738-6175<br /></span><strong><img class="imageStyle" alt="" width="480" height="720" src="http://tkntech.com/repair/files/page4_blog_entry30-40880_165612336784698_100000077991236_576558_3221725_n.jpg" /></strong><span style="font:22px Arial, Verdana, Helvetica, sans-serif; font-weight:bold; font-weight:bold; "><br /></span><strong><img class="imageStyle" alt="" width="480" height="214" src="http://tkntech.com/repair/files/page4_blog_entry30-screen-shot-2010-10-14-at-11.11.07-pm.png" /></strong><span style="font:22px Arial, Verdana, Helvetica, sans-serif; font-weight:bold; font-weight:bold; "><br /></span><strong><img class="imageStyle" alt="" width="480" height="302" src="http://tkntech.com/repair/files/page4_blog_entry30-screen-shot-2010-10-14-at-11.11.20-pm.png" /></strong><span style="font:22px Arial, Verdana, Helvetica, sans-serif; font-weight:bold; font-weight:bold; "><br /><br /></span><strong><img class="imageStyle" alt="" width="480" height="294" src="http://tkntech.com/repair/files/page4_blog_entry30-screen-shot-2010-10-14-at-11.11.32-pm.png" /></strong><span style="font:22px Arial, Verdana, Helvetica, sans-serif; font-weight:bold; font-weight:bold; "><br /><br /></span><strong><img class="imageStyle" alt="" width="480" height="300" src="http://tkntech.com/repair/files/page4_blog_entry30-screen-shot-2010-10-14-at-11.11.54-pm.png" /></strong><span style="font:22px Arial, Verdana, Helvetica, sans-serif; font-weight:bold; font-weight:bold; "><br /><br /></span><strong><img class="imageStyle" alt="" width="480" height="298" src="http://tkntech.com/repair/files/page4_blog_entry30-screen-shot-2010-10-14-at-11.12.05-pm.png" /></strong><span style="font:22px Arial, Verdana, Helvetica, sans-serif; font-weight:bold; font-weight:bold; "><br /></span></p>]]></content:encoded></item><item><title>Inside My MacBook Pro 17&#x22;</title><dc:creator>TuInfor@Ymail.Com</dc:creator><category>Technology New</category><dc:date>2010-09-23T17:33:17-04:00</dc:date><link>http://tkntech.com/repair/files/726350bea86cb35902f6ee8ef91ed1c2-25.php#unique-entry-id-25</link><guid isPermaLink="true">http://tkntech.com/repair/files/726350bea86cb35902f6ee8ef91ed1c2-25.php#unique-entry-id-25</guid><content:encoded><![CDATA[<img class="imageStyle" alt="" width="480" height="360" src="http://tkntech.com/repair/files/page4_blog_entry25-usoetuhulzeqkmki.huge.jpg" /><br /><img class="imageStyle" alt="" width="480" height="360" src="http://tkntech.com/repair/files/page4_blog_entry25-xphrp5s2ckhwwlzd.huge.jpg" /><br />]]></content:encoded></item><item><title>Apple Relaxes Restrictions And Allows Other iPhone Development Tools</title><dc:creator>TuInfor@Ymail.Com</dc:creator><category>Daily New</category><dc:date>2010-09-09T15:03:58-04:00</dc:date><link>http://tkntech.com/repair/files/176b47ee18bdfe20d5d63ea27d1e64e4-24.php#unique-entry-id-24</link><guid isPermaLink="true">http://tkntech.com/repair/files/176b47ee18bdfe20d5d63ea27d1e64e4-24.php#unique-entry-id-24</guid><content:encoded><![CDATA[<span style="font:13px LucidaSans; ">After numerous criticisms by developers and in a slightly surprising announcement Apple has revealed they &ldquo;are relaxing all restrictions on the development tools used to create iOS apps&rdquo; and &ldquo;publishing app review guidelines.&rdquo;<br /></span><img class="imageStyle" alt="" width="480" height="360" src="http://tkntech.com/repair/files/page4_blog_entry24-iphone-sdk-31-beta-2-1.jpg" /><span style="font:13px LucidaSans; "><br /></span><span style="font:13px LucidaSans; "><br />Apple Announcment:<br /></span><span style="font:13px LucidaSans-Italic; "><em>The&nbsp;</em></span><span style="font:13px LucidaSans-Italic; color:#2C68A3;"><em><a href="" rel="self">App Store</a></em></span><span style="font:13px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; ">℠</span><span style="font:13px LucidaSans-Italic; "><em> has revolutionized the way mobile </em></span><span style="font:13px LucidaSans-Italic; color:#0048B5;"><em>applications</em></span><span style="font:13px LucidaSans-Italic; "><em> are developed and distributed. With over 250,000 apps and 6.5 billion downloads, the </em></span><span style="font:13px LucidaSans-Italic; color:#0048B5;"><em>App Store</em></span><span style="font:13px LucidaSans-Italic; "><em> has become the world&rsquo;s largest mobile application platform and App Store developers have earned over one billion dollars from the sales of their apps.</em></span><span style="font:13px LucidaSans; "><br /></span><span style="font:13px LucidaSans-Italic; "><em>We are continually trying to make the App Store even better. We have listened to our developers and taken much of their feedback to heart. Based on their input, today we are making some important changes to our iOS Developer Program license in sections 3.3.1, 3.3.2 and 3.3.9 to relax some restrictions we put in place earlier this year.</em></span><span style="font:13px LucidaSans; "><br /></span><span style="font:13px LucidaSans-Italic; "><em>In particular, we are relaxing all restrictions on the development tools used to create iOS apps, as long as the resulting apps do not download any code. This should give developers the flexibility they want, while preserving the </em></span><span style="font:13px LucidaSans-Italic; color:#0048B5;"><em>security</em></span><span style="font:13px LucidaSans-Italic; "><em> we need.</em></span><span style="font:13px LucidaSans; "><br /></span><span style="font:13px LucidaSans-Italic; "><em>In addition, for the first time we are publishing the App Store Review Guidelines to help developers understand how we review submitted apps. We hope it will make us more transparent and help our developers create even more successful apps for the App Store.</em></span><span style="font:13px LucidaSans; "><br /></span><span style="font:13px LucidaSans-Italic; "><em>The App Store is perhaps the most important milestone in the history of mobile </em></span><span style="font:13px LucidaSans-Italic; color:#0048B5;"><em>software</em></span><span style="font:13px LucidaSans-Italic; "><em>. Working together with our developers, we will continue to surprise and delight our users with innovative mobile apps.</em></span><span style="font:13px LucidaSans; "><br />This could be great news for app developers, and the coming months will definitely be an interesting time for them.</span>]]></content:encoded></item><item><title>iOS 4.1 Breaks Jailbreak and Unlock &#x2013; via Dev-Team</title><dc:creator>TuInfor@Ymail.Com</dc:creator><category>Daily New</category><dc:date>2010-09-08T16:23:48-04:00</dc:date><link>http://tkntech.com/repair/files/f5288621241a2014992bdfa19fddce7d-23.php#unique-entry-id-23</link><guid isPermaLink="true">http://tkntech.com/repair/files/f5288621241a2014992bdfa19fddce7d-23.php#unique-entry-id-23</guid><content:encoded><![CDATA[<img class="imageStyle" alt="" width="60" height="60" src="http://tkntech.com/repair/files/page4_blog_entry23-devteam.png" /><span style="font:12px Arial, Verdana, Helvetica, sans-serif; color:#181818;"><br /></span><span style="font:12px Arial, Verdana, Helvetica, sans-serif; color:#181818;">Like most firmware updates&hellip; iOS 4.1 breaks the current jailbreak and unlock. This is especially true for unlockers due to the fact there there is no way to revert your baseband. I&rsquo;m sure the guys over at the Dev-Team are working on updating the jailbreak. We will keep you informed on how they are doing. Below is what the Dev-Team has to say about upgrading to iOS 4.1.<br /></span><blockquote><p>This time of year there are lots of new iPhone owners, and not everybody knows that accepting new iOS updates is the surest way to lose your jailbreak and/or unlock. While those of you who have Cydia or TinyUmbrella backups of your FW hashes will always be able to get back to 4.0.1 if you make this mistake, this doesn&rsquo;t hold for unlockers. There&rsquo;s currently no known way to revert your baseband &mdash; if you update your baseband you&rsquo;ll lose the ultrasn0w unlock, possible forever.Please stay away from this 4.1 release until a safe jailbreak procedure (which also preserves ultrasn0w) is developed and released.P.S. There are a tiny number of iPhone3G owners who can revert their basebands due to a flaw in very early bootloaders&hellip;you will already know if you fit in this category!</p></blockquote><span style="font:11px Geneva, serif; color:#535353;">Apple has released iOS 4.1 for the iPhone and iPod touch bringing numerous new features including a fix for the iPhone 4 proximity issues.

This update contains improvements, including the following:
</span><span style="font:11px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#535353;">●</span><span style="font:11px Geneva, serif; color:#535353;"> Game Center
- Send and receive friend requests
- Invite friends to multi-player games over the Internet
- Play multi-player games by auto-matching with other players
- View LEaderboards and Achievements
- Discover new games from friends
</span><span style="font:11px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#535353;">●</span><span style="font:11px Geneva, serif; color:#535353;"> High dynamic range (HDR) photos on iPhone 4
</span><span style="font:11px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#535353;">●</span><span style="font:11px Geneva, serif; color:#535353;"> Support for TV show rentals on iTunes
</span><span style="font:11px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#535353;">●</span><span style="font:11px Geneva, serif; color:#535353;"> Ability to upload HD videos to YouTube and MobileMe over Wi-Fi on iPhone 4
</span><span style="font:11px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#535353;">●</span><span style="font:11px Geneva, serif; color:#535353;"> Additional support for AVRCP-supported accessories, including next & previous track control
</span><span style="font:11px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#535353;">●</span><span style="font:11px Geneva, serif; color:#535353;"> FaceTime calling directly from Favorites
</span><span style="font:11px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#535353;">●</span><span style="font:11px Geneva, serif; color:#535353;"> Bug fixes, including
- iPhone 4 proximity sensor performance
- iPhone 4G performance
- Nike+ iPod fixes
- Bluetooth improvements

Products compatible with this osftware update:
</span><span style="font:11px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#535353;">●</span><span style="font:11px Geneva, serif; color:#535353;"> iPhone 4
</span><span style="font:11px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#535353;">●</span><span style="font:11px Geneva, serif; color:#535353;"> iPhone 3GS
</span><span style="font:11px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#535353;">●</span><span style="font:11px Geneva, serif; color:#535353;"> iPhone 3G
</span><span style="font:11px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#535353;">●</span><span style="font:11px Geneva, serif; color:#535353;"> iPod touch 2G

Game Center requires iPhone 4, iPhone 3GS, iPod touch 2G or later

As usual jailbreakers should remember </span><span style="font:11px Geneva, serif; color:#535353;"><a href="http://www.iclarified.com/entry/index.php?enid=11548">not</a></span><span style="font:11px Geneva, serif; color:#535353;"> to update to this firmware until the iPhone Dev-Team provides a proper update path.


</span><img class="imageStyle" alt="" width="480" height="348" src="http://tkntech.com/repair/files/page4_blog_entry23-39479-500.png" />]]></content:encoded></item><item><title>How to Boost the Volume of Songs or Video in iTunes</title><dc:creator>TuInfor@Ymail.Com</dc:creator><category>Mac Tutorial</category><dc:date>2010-08-14T10:45:11-04:00</dc:date><link>http://tkntech.com/repair/files/92ca89160b218879cb4047ef06974b99-21.php#unique-entry-id-21</link><guid isPermaLink="true">http://tkntech.com/repair/files/92ca89160b218879cb4047ef06974b99-21.php#unique-entry-id-21</guid><content:encoded><![CDATA[<span style="font:11px Geneva, serif; color:#535353;">These are simple instructions on how to boost the volume level of songs or video when playing in iTunes. You may need to do this if the audio track for a particular song or video is too low to hear.

Step One
Launch iTunes from your Dock.
</span><img class="imageStyle" alt="" width="128" height="128" src="http://tkntech.com/repair/files/page4_blog_entry21-38289.png" /><span style="font:11px Geneva, serif; color:#535353;">

Step Two
If you haven't already, drag your media into iTunes to add it to the library.

Step Three
Select a song or video then press Command+i on the keyboard or right click the item and select Get Info from the contextual menu.
</span><img class="imageStyle" alt="" width="480" height="339" src="http://tkntech.com/repair/files/page4_blog_entry21-38290-500.png" /><span style="font:11px Geneva, serif; color:#535353;">

</span><img class="imageStyle" alt="" width="220" height="387" src="http://tkntech.com/repair/files/page4_blog_entry21-38291.png" /><span style="font:11px Geneva, serif; color:#535353;">

Step Four
Click to select the Options tab.
</span><img class="imageStyle" alt="" width="480" height="446" src="http://tkntech.com/repair/files/page4_blog_entry21-38292-500.png" /><span style="font:11px Geneva, serif; color:#535353;">

Step Five
Move the volume adjustment slider to the right to increase the volume then press the OK button.
</span><img class="imageStyle" alt="" width="480" height="446" src="http://tkntech.com/repair/files/page4_blog_entry21-38293-500.png" /><span style="font:11px Geneva, serif; color:#535353;">

</span><img class="imageStyle" alt="" width="480" height="446" src="http://tkntech.com/repair/files/page4_blog_entry21-38294-500.png" />]]></content:encoded></item><item><title>How to Enable Emoji on iPhone iOS 4</title><dc:creator>TuInfor@Ymail.Com</dc:creator><category>Iphone Tutorial</category><dc:date>2010-08-05T17:52:47-04:00</dc:date><link>http://tkntech.com/repair/files/d7ef020598706ef334e7410410ec3826-20.php#unique-entry-id-20</link><guid isPermaLink="true">http://tkntech.com/repair/files/d7ef020598706ef334e7410410ec3826-20.php#unique-entry-id-20</guid><content:encoded><![CDATA[<img class="imageStyle" alt="" width="480" height="720" src="http://tkntech.com/repair/files/page4_blog_entry20-emoji-icons-on-iphone-ios-4.png.png" /><span style="font:14px Arial, Verdana, Helvetica, sans-serif; color:#262626;"><br /></span><p style="text-align:justify;"><span style="font:14px Arial, Verdana, Helvetica, sans-serif; font-weight:bold; color:#262626;font-weight:bold; ">Step 1:</span><span style="font:14px Arial, Verdana, Helvetica, sans-serif; color:#262626;"> Download </span><span style="font:14px Arial, Verdana, Helvetica, sans-serif; color:#2D6398;"><a href="http://itunes.apple.com/us/app/emoji-free/id332509635?mt=8">this free app</a></span><span style="font:14px Arial, Verdana, Helvetica, sans-serif; color:#262626;"> from the App Store.<br /></span><span style="font:14px Arial, Verdana, Helvetica, sans-serif; font-weight:bold; color:#262626;font-weight:bold; ">Step 2:</span><span style="font:14px Arial, Verdana, Helvetica, sans-serif; color:#262626;"> Launch the app and tap &ldquo;ok, let&rsquo;s do this&rdquo;.<br /></span><span style="font:14px Arial, Verdana, Helvetica, sans-serif; font-weight:bold; color:#262626;font-weight:bold; ">Step 3:</span><span style="font:14px Arial, Verdana, Helvetica, sans-serif; color:#262626;"> Go to Settings > General > Keyboard > International Keyboard > Add New Keyboard > Emoji.<br /></span><span style="font:14px Arial, Verdana, Helvetica, sans-serif; font-weight:bold; color:#262626;font-weight:bold; ">Step 4:</span><span style="font:14px Arial, Verdana, Helvetica, sans-serif; color:#262626;"> Reboot your iPhone.<br />You can now get emoji icons on your iPhone. </span></p>]]></content:encoded></item><item><title>Nokia N8 Headed To T-Mobile UK</title><dc:creator>TuInfor@Ymail.Com</dc:creator><category>Technology New</category><dc:date>2010-07-26T12:51:53-04:00</dc:date><link>http://tkntech.com/repair/files/36bcf95f07d486378b6e8b43d00dd07e-19.php#unique-entry-id-19</link><guid isPermaLink="true">http://tkntech.com/repair/files/36bcf95f07d486378b6e8b43d00dd07e-19.php#unique-entry-id-19</guid><content:encoded><![CDATA[<span style="font:13px LucidaSans; ">We have already heard that the new Nokia N8 will be available with Vodafone UK, now it looks like it will also be available from UK mobile phone operator T-mobile , although we still don&rsquo;t have an exact launch date as yet.<br />The Nokia N8 features a 3.5 inch capacitive touchscreen display with a resolution of 640 x 360 pixels, and it features 16GB of built in storage, plus a </span><span style="font:13px LucidaSans; color:#0048B5;">microSD card slot</span><span style="font:13px LucidaSans; "> that can take up to 32GB cards.<br /></span><img class="imageStyle" alt="" width="480" height="405" src="http://tkntech.com/repair/files/page4_blog_entry19-nokia-n8-t-mobile.jpg" /><span style="font:13px LucidaSans; "><br /></span><span style="font:13px LucidaSans; "><br />The Nokia N8 also features a 12 megapixel camera with a Carl Zeiss lens and a Xenon flash, plus integration with a range of social networking sites like Facebook and </span><span style="font:13px LucidaSans; color:#0048B5;">Twitter</span><span style="font:13px LucidaSans; "> and updates are delivered directly to the N8&rsquo;s home screen, and it also feature access to a range of Nokia OVI services.<br />T-Mobile haven&rsquo;t given any pricing or launch date details as yet, although you can register for more details on the Nokia N8 over at the</span><span style="font:13px LucidaSans; color:#2C68A3;"><a href="http://www.t-mobile.co.uk/shop/business/coming-soon/nokia-n8/"> T-Mobile website</a></span><span style="font:13px LucidaSans; ">.</span>]]></content:encoded></item><item><title>How Install Snow Leopard via USB External/USB Flash Drive </title><dc:creator>TuInfor@Ymail.Com</dc:creator><category>Mac Tutorial</category><dc:date>2010-07-14T10:23:36-04:00</dc:date><link>http://tkntech.com/repair/files/809c4c4346035c378d824832c61bffc4-18.php#unique-entry-id-18</link><guid isPermaLink="true">http://tkntech.com/repair/files/809c4c4346035c378d824832c61bffc4-18.php#unique-entry-id-18</guid><content:encoded><![CDATA[<span style="font:18px Verdana, serif; font-weight:bold; font-weight:bold; ">Install Snow Leopard via USB External/USB Flash Drive</span><span style="font:12px Verdana, serif; "> <br /></span><ul class="disc"><li><span style="font:12px Verdana, serif; ">Disk Utility </span></li><li><span style="font:12px Verdana, serif; ">Flash Drive must be at </span><span style="font:12px Verdana, serif; font-weight:bold; font-weight:bold; ">at least 8GB</span><span style="font:12px Verdana, serif; "> (You will lose all the data on there, so back it up on your desktop for the time being) </span></li><li><span style="font:12px Verdana, serif; ">External must have at least 8GB of free space</span></li></ul><span style="font:12px Verdana, serif; "><br /></span><span style="font:12px Verdana, serif; font-weight:bold; font-weight:bold; ">1. Open Disk Utility. On the left navigation, select your flash drive and click on the "Partition" tab: <br /></span><strong><img class="imageStyle" alt="" width="480" height="422" src="http://tkntech.com/repair/files/page4_blog_entry18-f10ddc1d.png" /></strong><span style="font:12px Verdana, serif; font-weight:bold; font-weight:bold; "> <br /></span><span style="font:12px Verdana, serif; font-weight:bold; font-weight:bold; "><br />2. Under "Volume Scheme," Select "1 Partiton": <br /></span><strong><img class="imageStyle" alt="" width="215" height="314" src="http://tkntech.com/repair/files/page4_blog_entry18-01436082.png" /></strong><span style="font:12px Verdana, serif; font-weight:bold; font-weight:bold; "> <br /></span><span style="font:12px Verdana, serif; font-weight:bold; font-weight:bold; "><br />3. Once selected, hit the "Option" button at the bottom of the map: <br /></span><strong><img class="imageStyle" alt="" width="480" height="422" src="http://tkntech.com/repair/files/page4_blog_entry18-7ef50044.png" /></strong><span style="font:12px Verdana, serif; font-weight:bold; font-weight:bold; "> <br /></span><span style="font:12px Verdana, serif; font-weight:bold; font-weight:bold; "><br />4. A window will pop-up, select the GUID option (the first one): <br /></span><strong><img class="imageStyle" alt="" width="470" height="362" src="http://tkntech.com/repair/files/page4_blog_entry18-c1a5193a.png" /></strong><span style="font:12px Verdana, serif; font-weight:bold; font-weight:bold; "> <br /></span><span style="font:12px Verdana, serif; font-weight:bold; font-weight:bold; "><br />5. Once its done, navigate to the "Restore" tab. With the Snow Leopard DMG present, drag the DMG to the "Source" field, and from the navigation on the left, drag your Flash Drive to the "Destination" field: <br /></span><strong><img class="imageStyle" alt="" width="480" height="389" src="http://tkntech.com/repair/files/page4_blog_entry18-964d43cd.png" /></strong><span style="font:12px Verdana, serif; font-weight:bold; font-weight:bold; "> <br /></span><span style="font:12px Verdana, serif; font-weight:bold; font-weight:bold; "><br />6. Click Restore, once its done, your Flash Drive contents to be similar to: <br /></span><strong><img class="imageStyle" alt="" width="480" height="449" src="http://tkntech.com/repair/files/page4_blog_entry18-c070b46c.png" /></strong><span style="font:12px Verdana, serif; font-weight:bold; font-weight:bold; "> <br /></span><span style="font:12px Verdana, serif; font-weight:bold; font-weight:bold; "><br />7. Close Disk Utility, Open up System Preferences. Under "System," choose "Startup Disk," Your flash drive should be listed as the Snow Leopard installation disk. Select and press "Restart." Or you can just select "Install" from the Flash drive contents, in which it will start installing before prompting you to restart. </span>]]></content:encoded></item><item><title>Canon VIXIA HF 32 Camcorder</title><dc:creator>TuInfor@Ymail.Com</dc:creator><category>Daily New</category><dc:date>2010-07-14T10:03:27-04:00</dc:date><link>http://tkntech.com/repair/files/65d4bb7edd6e1d3d6158d777ccc49c58-17.php#unique-entry-id-17</link><guid isPermaLink="true">http://tkntech.com/repair/files/65d4bb7edd6e1d3d6158d777ccc49c58-17.php#unique-entry-id-17</guid><content:encoded><![CDATA[<span style="font:13px LucidaSans; ">Canon has updated it camcorder range with the launch of the Canon VIXIA HF 32, which comes with 64GB of built in storage, double that of the previous model.<br />If 64GB of storage isn&rsquo;t enough for you than Canon has added in SDXC </span><span style="font:13px LucidaSans; color:#0048B5;">memory card</span><span style="font:13px LucidaSans; "> compatibility, and the Canon VIXIA HF 32 can take up to 2TB of storage.<br /></span><img class="imageStyle" alt="" width="480" height="358" src="http://tkntech.com/repair/files/page4_blog_entry17-canon-vixia-hf-32-camcorder_2.jpg" /><span style="font:13px LucidaSans; "><br /></span><img class="imageStyle" alt="" width="480" height="295" src="http://tkntech.com/repair/files/page4_blog_entry17-canon-vixia-hf-32-camcorder_1.jpg" /><span style="font:13px LucidaSans; "><br /></span><img class="imageStyle" alt="" width="480" height="324" src="http://tkntech.com/repair/files/page4_blog_entry17-canon-vixia-hf-32-camcorder_31.jpg" /><span style="font:13px LucidaSans; "><br /></span><span style="font:13px LucidaSans; ">Other specifications include a 2.7 inch touchscreen LCD display, and it can record up to 24 hours of HD video. You can see a full list of the specifications and features in the press release below.<br />The Canon VIXIA HF 32 will be available in September for $999.<br />via </span><span style="font:13px LucidaSans; color:#2C68A3;"><a href="http://www.gadgetvenue.com/canon-vixia-hf-m32-64gb-flash-memory-07142516/">Gadget Venue</a></span><span style="font:13px LucidaSans; "><br /></span><span style="font:13px LucidaSans-Italic; "><em>Press Release</em></span><span style="font:13px LucidaSans; "><br /></span><span style="font:13px LucidaSans-Italic; "><em>Canon U.S.A. Expands Its VIXIA Lineup with the New VIXIA HF M32 Dual Flash Memory Camcorder</em></span><span style="font:13px LucidaSans; "><br /></span><span style="font:13px LucidaSans-Italic; "><em>New Camcorder Features 64GB of Internal Flash Memory and Provides SDXC Memory Card Compatibility for Super-Expandable Capacity Up To 2TB<br />LAKE SUCCESS, N.Y.&ndash;(BUSINESS WIRE)&ndash;Canon U.S.A., Inc., a leader in digital imaging </em></span><span style="font:13px LucidaSans-Italic; color:#0048B5;"><em>technology</em></span><span style="font:13px LucidaSans-Italic; "><em>, today introduces the new VIXIA HF M32 Dual Flash Memory camcorder. The VIXIA HF M32 is an easy-to-use, movie-making tool capable of hours upon hours of high-quality HD video recording, ideal for the aspiring family documentarian or social-networking fanatic. Equipped with 64GB of internal flash memory, the new camcorder can record up to 24 hours of HD video and also includes an SD memory card slot that is fully compatible with latest generation SDXC memory cards. The new SDXC memory card specification increases storage capacity from 32GB up to 2TB and enhances data transfer speeds.<br />&ldquo;All people, regardless of race, religion or culture, harmoniously living and working together into the future&rdquo;<br />Like its predecessors in the VIXIA HF M-series (VIXIA HF M31, HF M30, HF M300), the VIXIA HF M32 offers stunning HD video in an ultra-sleek, compact and lightweight body. The VIXIA HF M32 retains Canon&rsquo;s proprietary imaging technologies &ndash; a Genuine Canon HD Video Lens, HD CMOS Image Sensor and DIGIC DV III Image Processor &ndash; and like other VIXIA HF M-series camcorders, features a Touch Panel LCD and a host of features that make capturing and sharing stunning HD video easier than ever before, including:<br />Smart Auto: Makes shooting great video even easier by utilizing Canon&rsquo;s DIGIC DV III Image Processor to intelligently detect and analyze brightness, color, distance and movement and automatically select the best setting for the scene being recorded.</em></span><span style="font:13px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; ">
</span><span style="font:13px LucidaSans-Italic; "><em>Touch & Track: Enables users to select a subject on the Touch Panel LCD which will then be recognized and tracked. This sophisticated technology recognizes faces, objects, and even animals, ensuring the subject will always be in focus and properly exposed.</em></span><span style="font:13px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; ">
</span><span style="font:13px LucidaSans-Italic; "><em>Relay Recording: Allows users to capture uninterrupted video when the primary recording media is full. The camcorder will continue to record a scene by switching from one memory source to the other as it fills up, so that a moment of action will not be missed.</em></span><span style="font:13px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; ">
</span><span style="font:13px LucidaSans-Italic; "><em>Powered IS: In addition to Canon&rsquo;s Dynamic SuperRange Optical Image Stabilization, Powered IS provides an even higher level of compensation for subtle hand movement at the telephoto end of the zoom range. This new enhancement can be engaged by pressing the Powered IS button on the </em></span><span style="font:13px LucidaSans-Italic; color:#0048B5;"><em>LCD panel</em></span><span style="font:13px LucidaSans-Italic; "><em>.</em></span><span style="font:13px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; ">
</span><span style="font:13px LucidaSans-Italic; "><em>HD-to-SD Downconversion: Enables users to convert recorded HD video to standard-definition files while preserving the original HD video. These standard-definition files make it even more convenient to share video online or create a DVD.</em></span><span style="font:13px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; ">
</span><span style="font:13px LucidaSans-Italic; "><em>Advanced Video Snapshot: Provides the flexibility of capturing two, four, or eight second video clips while recording or during playback.<br />The VIXIA HF M32 is compatible with Eye-Fi SD memory cards, which makes it easy to wirelessly transfer video content and photos to a </em></span><span style="font:13px LucidaSans-Italic; color:#0048B5;"><em>computer</em></span><span style="font:13px LucidaSans-Italic; "><em> or sharing site. Eye-Fi SD memory cards feature a built-in Wi-Fi that uses your </em></span><span style="font:13px LucidaSans-Italic; color:#0048B5;"><em>wireless network</em></span><span style="font:13px LucidaSans-Italic; "><em> to effortlessly transfer photos and videos directly from the camcorder. The VIXIA HF M32 is also compatible with Canon&rsquo;s WP-V2 Waterproof Case allowing users to capture exciting HD footage underwater at depths up to 130 feet.<br />The VIXIA HF M32 Dual Flash Memory camcorder is scheduled to be available in September for an estimated retail price of $999.99. The Canon WP-V2 Waterproof Case is currently available for an estimated retail price of $599.</em></span>]]></content:encoded></item><item><title>New iPod Touch With 5 Megapixel Camera Coming In September?</title><dc:creator>TuInfor@Ymail.Com</dc:creator><category>Daily New</category><dc:date>2010-07-08T10:25:48-04:00</dc:date><link>http://tkntech.com/repair/files/b0fdc303be9c27ec01705a926188e73b-16.php#unique-entry-id-16</link><guid isPermaLink="true">http://tkntech.com/repair/files/b0fdc303be9c27ec01705a926188e73b-16.php#unique-entry-id-16</guid><content:encoded><![CDATA[<span style="font:13px LucidaSans; ">UK retailer, John Lewis has told the media that Apple will be releasing a new iPod Touch in September of 2010, and although this hasn&rsquo;t been confirmed by </span><span style="font:13px LucidaSans; color:#0048B5;">Apple</span><span style="font:13px LucidaSans; "> [AAPL], John Lewis are a major retailer of Apple hardware in the UK, so they should have a good idea of what is going on.<br />According to John Lewis, the new iPod Touch will feature the same 5 megapixel camera that is found in the iPhone 4, and it will have the ability to record video in </span><span style="font:13px LucidaSans; color:#0048B5;">HD</span><span style="font:13px LucidaSans; "> at 720p.<br /></span><img class="imageStyle" alt="" width="480" height="385" src="http://tkntech.com/repair/files/page4_blog_entry16-ipod-touch.jpg" /><span style="font:13px LucidaSans; "><br /></span><span style="font:13px LucidaSans; ">Other features from the iPhone 4 which are expected to be included in the new iPod Touch include the three-axis gyroscope and accelerometer, which would make sense as gaming is popular on the iPod Touch.<br />I suspect we will see a camera in this years iPod Touch, as we almost got one last year. It will be interesting to see if Apple change the design to make is look more similar to the iPhone 4 or continue to use the same design.<br /></span><img class="imageStyle" alt="" width="480" height="436" src="http://tkntech.com/repair/files/page4_blog_entry16-ipodtouch4.jpg" /><span style="font:12px Verdana, serif; color:#1A1A1A;"><br /></span><p style="text-align:center;"><span style="font:12px Verdana-Italic; color:#1A1A1A;"><em>Leaked iPod touch 4G Prototype from May 2010.</em></span></p>]]></content:encoded></item><item><title>Iphone 4 White Open Box</title><dc:creator>TuInfor@Ymail.Com</dc:creator><category>Technology New</category><dc:date>2010-07-07T14:09:15-04:00</dc:date><link>http://tkntech.com/repair/files/b78dab88824075f82a155de29501134f-15.php#unique-entry-id-15</link><guid isPermaLink="true">http://tkntech.com/repair/files/b78dab88824075f82a155de29501134f-15.php#unique-entry-id-15</guid><content:encoded><![CDATA[<span style="font:11px Geneva, serif; color:#535353;">
</span><img class="imageStyle" alt="" width="480" height="319" src="http://tkntech.com/repair/files/page4_blog_entry15-36195-500.jpg" /><span style="font:11px Geneva, serif; color:#535353;">

</span><img class="imageStyle" alt="" width="375" height="500" src="http://tkntech.com/repair/files/page4_blog_entry15-36194.jpg" /><span style="font:11px Geneva, serif; color:#535353;">

</span><img class="imageStyle" alt="" width="480" height="377" src="http://tkntech.com/repair/files/page4_blog_entry15-36193-500.jpg" /><span style="font:11px Geneva, serif; color:#535353;">

</span><img class="imageStyle" alt="" width="480" height="360" src="http://tkntech.com/repair/files/page4_blog_entry15-36192-500.jpg" /><span style="font:11px Geneva, serif; color:#535353;">

</span><img class="imageStyle" alt="" width="480" height="360" src="http://tkntech.com/repair/files/page4_blog_entry15-36191-500.jpg" /><span style="font:11px Geneva, serif; color:#535353;">

</span><img class="imageStyle" alt="" width="480" height="318" src="http://tkntech.com/repair/files/page4_blog_entry15-36190-500.jpg" />]]></content:encoded></item><item><title>The &#x24;20&#x2c;000 iPhone 4</title><dc:creator>TuInfor@Ymail.Com</dc:creator><category>Technology New</category><dc:date>2010-07-07T11:06:39-04:00</dc:date><link>http://tkntech.com/repair/files/0c89f3017474d5b969dd09d4bb14936a-14.php#unique-entry-id-14</link><guid isPermaLink="true">http://tkntech.com/repair/files/0c89f3017474d5b969dd09d4bb14936a-14.php#unique-entry-id-14</guid><content:encoded><![CDATA[<span style="font:13px LucidaSans; ">We have featured quite a few of Stuart Hughes&lsquo;creations before on Geeky Gadgets, the latest device to get covered in jewels and precious metal is Apple&rsquo;s new iPhone 4.<br />The Stuart Hughes iPhone 4 is encrusted with 6.5cts of diamonds and the casing is made of platinum, as you can see in the photo the Apple logo is also covered in diamonds.<br /></span><img class="imageStyle" alt="" width="480" height="304" src="http://tkntech.com/repair/files/page4_blog_entry14-iphone-41.jpg" /><span style="font:13px LucidaSans; "><br /></span><span style="font:13px LucidaSans; ">As usual only a limited number will be made, 50 in fact, and the price for one of these diamond encrusted iPhone 4</span><span style="font:13px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; ">&prime;</span><span style="font:13px LucidaSans; ">s is &pound;12,995 about $20,000, personally I can think of a lot better things to spends $20,000 on than a diamond covered </span><span style="font:13px LucidaSans; color:#0048B5;">iPhone</span><span style="font:13px LucidaSans; "> 4.</span>]]></content:encoded></item><item><title>Zemno DeskBook Pro Notebook Dock</title><dc:creator>TuInfor@Ymail.Com</dc:creator><category>Technology New</category><dc:date>2010-07-07T10:57:40-04:00</dc:date><link>http://tkntech.com/repair/files/04fd34514f1283e69de54d94671146b5-13.php#unique-entry-id-13</link><guid isPermaLink="true">http://tkntech.com/repair/files/04fd34514f1283e69de54d94671146b5-13.php#unique-entry-id-13</guid><content:encoded><![CDATA[<span style="font:13px LucidaSans; ">The new Zemno notebook dock is compatible with any PC or Mac book up to 15</span><span style="font:13px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; ">&Prime;</span><span style="font:13px LucidaSans; ">, but be prepared for the price as its nearly the same as a MacBook Pro, once you added storage and batteries.<br />Using Zemon&rsquo;s ModBays you can add unlimited storage using convenient hot swappable drives. Or you can insert extra batteries to help provide more juice to your notebook while out and about. Each extra battery will provide approximately 2.5 hours of extra juice.<br /></span><img class="imageStyle" alt="" width="480" height="276" src="http://tkntech.com/repair/files/page4_blog_entry13-zemmo-deskbook-pro-notebook-dock.jpg" /><span style="font:13px LucidaSans; "><br /></span><span style="font:13px LucidaSans; "><br />The notebook dock also provide you with 16 ports in total: 7 x USB ports, 3 x Firewire 800 ports, 1 x Firewire 400 port, 1 x DVI output, 1 x ESATA Data port, 1 x ESATA power connection, 1 x Audio Stereo input / ouput and a flash card reader.<br /></span><img class="imageStyle" alt="" width="480" height="306" src="http://tkntech.com/repair/files/page4_blog_entry13-zemno-deskbook-pro-notebook-dock-2.jpg" /><span style="font:13px LucidaSans; "><br /></span><span style="font:13px LucidaSans; ">The Zemno DeskBook Pro Notebook Dock is available to pre-order for $600 with extra HDD costing $180 and batteries from $150. Totalling $1030, personally I would prefer an extra iMac or Macbook Pro for the money.</span>]]></content:encoded></item><item><title>Download iPhone Firmware Files From</title><dc:creator>TuInfor@Ymail.Com</dc:creator><category>Iphone Firmware</category><dc:date>2010-09-08T16:28:42-04:00</dc:date><link>http://tkntech.com/repair/files/a7bbfcd6faf9eb17db13b54dd6caadb7-12.php#unique-entry-id-12</link><guid isPermaLink="true">http://tkntech.com/repair/files/a7bbfcd6faf9eb17db13b54dd6caadb7-12.php#unique-entry-id-12</guid><content:encoded><![CDATA[<span style="font:10px Monaco; "><p>Below you can find the direct links to the iPhone Firmware Files for every released firmware version.  Please note that if you use Safari you must disable the auto unzip feature.  It may be easier to just use Firefox!<br><br>1.0.0: <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-3538.20070629.B7vXa/iPhone1,1_1.0_1A543a_Restore.ipsw" target="_blank">iPhone1,1_1.0_1A543a_Restore.ipsw</a><br>1.0.1: <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-3614.20070731.Nt6Y7/iPhone1,1_1.0.1_1C25_Restore.ipsw" target="_blank">iPhone1,1_1.0.1_1C25_Restore.ipsw</a><br>1.0.2: <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-3823.20070821.vormd/iPhone1,1_1.0.2_1C28_Restore.ipsw" target="_blank">iPhone1,1_1.0.2_1C28_Restore.ipsw</a><br>1.1.1: <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-3883.20070927.In76t/iPhone1,1_1.1.1_3A109a_Restore.ipsw" target="_blank">iPhone1,1_1.1.1_3A109a_Restore.ipsw</a><br>1.1.2: <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-4037.20071107.5Bghn/iPhone1,1_1.1.2_3B48b_Restore.ipsw" target="_blank">iPhone1,1_1.1.2_3B48b_Restore.ipsw</a><br>1.1.3: <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-4061.20080115.4Fvn7/iPhone1,1_1.1.3_4A93_Restore.ipsw" target="_blank">iPhone1,1_1.1.3_4A93_Restore.ipsw</a><br>1.1.4: <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-4313.20080226.Sw39i/iPhone1,1_1.1.4_4A102_Restore.ipsw" target="_blank">iPhone1,1_1.1.4_4A102_Restore.ipsw</a><br>2.0.0 (2G): <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-4956.20080710.V50OI/iPhone1,1_2.0_5A347_Restore.ipsw" target="_blank">iPhone1,1_2.0_5A347_Restore.ipsw</a><br>2.0.0 (3G): <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-4955.20080710.bgt53/iPhone1,2_2.0_5A347_Restore.ipsw" target="_blank">iPhone1,2_2.0_5A347_Restore.ipsw</a><br>2.0.1 (2G): <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-5135.20080729.Vfgtr/iPhone1,1_2.0.1_5B108_Restore.ipsw" target="_blank">iPhone1,1_2.0.1_5B108_Restore.ipsw</a><br>2.0.1 (3G): <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-5134.20080729.Q2W3E/iPhone1,2_2.0.1_5B108_Restore.ipsw" target="_blank">iPhone1,2_2.0.1_5B108_Restore.ipsw</a><br>2.0.2 (2G): <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-5246.20080818.2V0hO/iPhone1,1_2.0.2_5C1_Restore.ipsw" target="_blank">iPhone1,1_2.0.2_5C1_Restore.ipsw</a><br>2.0.2 (3G): <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-5241.20080818.t5Fv3/iPhone1,2_2.0.2_5C1_Restore.ipsw" target="_blank">iPhone1,2_2.0.2_5C1_Restore.ipsw</a><br>2.1.0 (2G): <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-5202.20080909.gkbEj/iPhone1,1_2.1_5F136_Restore.ipsw" target="_blank">iPhone1,1_2.1_5F136_Restore.ipsw</a><br>2.1.0 (3G): <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-5198.20080909.K3294/iPhone1,2_2.1_5F136_Restore.ipsw" target="_blank">iPhone1,2_2.1_5F136_Restore.ipsw</a><br>2.2.0 (2G): <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-5779.20081120.Pt5yH/iPhone1,1_2.2_5G77_Restore.ipsw" target="_blank">iPhone1,1_2.2_5G77_Restore.ipsw</a><br>2.2.0 (3G): <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-5778.20081120.Aqw4R/iPhone1,2_2.2_5G77_Restore.ipsw" target="_blank">iPhone1,2_2.2_5G77_Restore.ipsw</a><br>2.2.1 (2G): <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-5830.20090127.Mmni6/iPhone1,1_2.2.1_5H11_Restore.ipsw" target="_blank">iPhone1,1_2.2.1_5H1_Restore.ipsw</a><br>2.2.1 (3G): <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-5828.20090127.aQLi8/iPhone1,2_2.2.1_5H11_Restore.ipsw" target="_blank">iPhone1,2_2.2.1_5H11_Restore.ipsw</a><br>3.0.0 (2G): <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-6580.20090617.XsP76/iPhone1,1_3.0_7A341_Restore.ipsw" target="_blank">iPhone1,1_3.0_7A341_Restore.ipsw</a><br>3.0.0 (3G): <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-6578.20090617.VfgtU/iPhone1,2_3.0_7A341_Restore.ipsw" target="_blank">iPhone1,2_3.0_7A341_Restore.ipsw</a><br>3.0.0 (3GS): <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-6582.20090617.LlI87/iPhone2,1_3.0_7A341_Restore.ipsw" target="_blank">iPhone2,1_3.0_7A341_Restore.ipsw</a> <br>3.0.1 (2G): <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-6974.20090731.Cf4Tg/iPhone1,1_3.0.1_7A400_Restore.ipsw" target="_blank">iPhone1,1_3.0.1_7A400_Restore.ipsw</a><br>3.0.1 (3G): <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-6972.20090731.Zx3Rr/iPhone1,2_3.0.1_7A400_Restore.ipsw" target="_blank">iPhone1,2_3.0.1_7A400_Restore.ipsw</a><br>3.0.1 (3GS): <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-6976.20090731.Vgbt5/iPhone2,1_3.0.1_7A400_Restore.ipsw" target="_blank">iPhone2,1_3.0.1_7A400_Restore.ipsw</a><br>3.1.0 (2G): <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-6605.20090909.PQ3ws/iPhone1,1_3.1_7C144_Restore.ipsw" target="_blank">iPhone1,1_3.1_7C144_Restore.ipsw</a><br>3.1.0 (3G): <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-6600.20090909.AwndZ/iPhone1,2_3.1_7C144_Restore.ipsw" target="_blank">iPhone1,2_3.1_7C144_Restore.ipsw</a><br>3.1.0 (3GS): <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-6609.20090909.mwws4/iPhone2,1_3.1_7C144_Restore.ipsw" target="_blank">iPhone2,1_3.1_7C144_Restore.ipsw</a><br>3.1.2 (2G): <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-7268.20091008.32pNe/iPhone1,1_3.1.2_7D11_Restore.ipsw" target="_blank">iPhone1,1_3.1.2_7D11_Restore.ipsw</a><br>3.1.2 (3G): <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-7265.20091008.Xsd32/iPhone1,2_3.1.2_7D11_Restore.ipsw" target="_blank">iPhone1,2_3.1.2_7D11_Restore.ipsw </a><br>3.1.2 (3GS): <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-7270.20091008.phn32/iPhone2,1_3.1.2_7D11_Restore.ipsw" target="_blank">iPhone2,1_3.1.2_7D11_Restore.ipsw</a><br>3.1.3 (2G): <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-7481.20100202.4orot/iPhone1,1_3.1.3_7E18_Restore.ipsw" target="_blank">iPhone1,1_3.1.3_7E18_Restore.ipsw</a><br>3.1.3 (3G): <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-7468.20100202.pbnrt/iPhone1,2_3.1.3_7E18_Restore.ipsw" target="_blank">iPhone1,2_3.1.3_7E18_Restore.ipsw</a><br>3.1.3 (3GS): <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-7472.20100202.8tugj/iPhone2,1_3.1.3_7E18_Restore.ipsw" target="_blank">iPhone2,1_3.1.3_7E18_Restore.ipsw</a><br>4.0.0 (3G): <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone4/061-7436.20100621.58Yt4/iPhone1,2_4.0_8A293_Restore.ipsw" target="_blank">iPhone1,2_4.0_8A293_Restore.ipsw</a><br>4.0.0 (3GS): <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone4/061-7437.20100621.5urG8/iPhone2,1_4.0_8A293_Restore.ipsw" target="_blank">iPhone2,1_4.0_8A293_Restore.ipsw</a><br>4.0.0 (4): <a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone4/061-7380.20100621,Vfgb5/iPhone3,1_4.0_8A293_Restore.ipsw" target="_blank">iPhone3,1_4.0_8A293_Restore.ipsw</a><br>4.0.1 (3G): <a href="http://appldnld.apple.com/iPhone4/061-8616.20100715.phnt4/iPhone1,2_4.0.1_8A306_Restore.ipsw" target="_blank">iPhone1,2_4.0.1_8A306_Restore.ipsw</a><br>4.0.1 (3GS): <a href="http://appldnld.apple.com/iPhone4/061-8618.20100715.Zapn4/iPhone2,1_4.0.1_8A306_Restore.ipsw" target="_blank">iPhone2,1_4.0.1_8A306_Restore.ipsw</a><br>4.0.1 (4): <a href="http://appldnld.apple.com/iPhone4/061-8619.20100715.4Pnsx/iPhone3,1_4.0.1_8A306_Restore.ipsw" target="_blank">iPhone3,1_4.0.1_8A306_Restore.ipsw</a><br>4.0.2 (3G): <a href="http://appldnld.apple.com/iPhone4/061-8802.20100811.XcfpR/iPhone1,2_4.0.2_8A400_Restore.ipsw" target="_blank">iPhone1,2_4.0.2_8A400_Restore.ipsw</a><br>4.0.2 (3GS): <a href="http://appldnld.apple.com/iPhone4/061-8805.20100811.Dcr4e/iPhone2,1_4.0.2_8A400_Restore.ipsw" target="_blank">iPhone2,1_4.0.2_8A400_Restore.ipsw</a><br>4.0.2 (4): <a href="http://appldnld.apple.com/iPhone4/061-8807.20100811.3Edre/iPhone3,1_4.0.2_8A400_Restore.ipsw" target="_blank">iPhone3,1_4.0.2_8A400_Restore.ipsw</a><br>4.1.0 (3G): <a href="http://appldnld.apple.com/iPhone4/061-7932.20100908.3fgt5/iPhone1,2_4.1_8B117_Restore.ipsw" target="_blank">iPhone1,2_4.1_8B117_Restore.ipsw</a><br>4.1.0 (3GS): <a href="http://appldnld.apple.com/iPhone4/061-7938.20100908.F3rCk/iPhone2,1_4.1_8B117_Restore.ipsw" target="_blank">iPhone2,1_4.1_8B117_Restore.ipsw</a><br>4.1.0 (4): <a href="http://appldnld.apple.com/iPhone4/061-7939.20100908.Lcyg3/iPhone3,1_4.1_8B117_Restore.ipsw" target="_blank">iPhone3,1_4.1_8B117_Restore.ipsw</a><br><br><br>NOTE*:  I will update this as new firmware versions come out of course :)</p></span>]]></content:encoded></item><item><title>Acer Aspire One D255 Netbook</title><dc:creator>TuInfor@Ymail.Com</dc:creator><category>Technology New</category><dc:date>2010-07-06T22:49:39-04:00</dc:date><link>http://tkntech.com/repair/files/e8e64d7988575bbfbeb53e0c5207aba1-11.php#unique-entry-id-11</link><guid isPermaLink="true">http://tkntech.com/repair/files/e8e64d7988575bbfbeb53e0c5207aba1-11.php#unique-entry-id-11</guid><content:encoded><![CDATA[<span style="font:13px LucidaSans; ">Latest netbook from Acer is the Aspire One D255, and is shares many similarities with the &nbsp;Aspire One D260. The </span><span style="font:13px LucidaSans; color:#0048B5;">Acer Aspire </span><span style="font:13px LucidaSans; ">One D225 will feature a dual Core Intel Atom N550 processor, which has dual 1.5GHz cores with 512KB of L2 cache.<br />Other specifications include a 10.1 inch LED backlit display with a resolution of 1024 x 699, plus Intel GMA 31509 integrated graphics and 1GB of DDR2 RAM.<br /></span><img class="imageStyle" alt="" width="480" height="391" src="http://tkntech.com/repair/files/page4_blog_entry11-acer-aspire-one-d255-netbook_1.jpg" /><span style="font:13px LucidaSans; "><br /></span><span style="font:13px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; ">
</span><span style="font:13px LucidaSans; "><br /></span><img class="imageStyle" alt="" width="480" height="295" src="http://tkntech.com/repair/files/page4_blog_entry11-acer-aspire-one-d255-netbook_2.jpg" /><span style="font:13px LucidaSans; "><br /></span><span style="font:13px LucidaSans; ">The Acer Aspire One D255 will come with a choice of hard drive sizes up to 250GB, plus integrated 802.11 b/g/n WiFi, and Bluetooth.<br />There is also a six cell battery, although there are no details on what sort of usage time this will provide, and also no details on pricing or release date as yet.</span>]]></content:encoded></item><item><title>Apple iTunes in the cloud definitely happening soon&#x2c; wireless syncing&#x21;</title><dc:creator>TuInfor@Ymail.Com</dc:creator><category>Daily New</category><dc:date>2010-07-01T16:59:46-04:00</dc:date><link>http://tkntech.com/repair/files/367e4d57f98817344c224c0cd4fb3854-10.php#unique-entry-id-10</link><guid isPermaLink="true">http://tkntech.com/repair/files/367e4d57f98817344c224c0cd4fb3854-10.php#unique-entry-id-10</guid><content:encoded><![CDATA[<img class="imageStyle" alt="" width="480" height="479" src="http://tkntech.com/repair/files/page4_blog_entry10-itunes-logo.jpg" /><span style="font:13px Arial, Verdana, Helvetica, sans-serif; "><br /></span><span style="font:13px Arial, Verdana, Helvetica, sans-serif; ">One of our reliable Apple sources has just filled us in on some of the company&rsquo;s iTunes plans, and they&rsquo;re exciting. We have been told iTunes will be getting a huge cloud capability that many people have been asking for (and logically thought would happen sooner or later). These new capabilities are broken down into three groups:<br /></span><ul class="(null)"><li><span style="font:13px Arial, Verdana, Helvetica, sans-serif; ">Streaming music and movies from Apple&rsquo;s servers to your computers, devices, etc.</span></li><li><span style="font:13px Arial, Verdana, Helvetica, sans-serif; ">Streaming music and movies from your home computers to your other computers, remote devices, etc.</span></li><li><span style="font:13px Arial, Verdana, Helvetica, sans-serif; ">Wireless iTunes syncing with devices</span></li></ul><span style="font:13px Arial, Verdana, Helvetica, sans-serif; ">For the first point, we have been told that this will work pretty much like you&rsquo;d expect it to&hellip; pretty much any Apple device with wireless capability will have te ability to stream purchased content directly from Apple&rsquo;s servers, thus&nbsp;eliminating&nbsp;the need for a lot of local storage. With the second point, Apple will reportedly let you be the content distributor to your own computers and devices, as any purchased content that&rsquo;s locally on your computer will be able to be streamed using your internet connection out to your devices. Lastly, yes, wireless syncing of iTunes for devices.<br />For wireless syncing, we are told it will work pretty seamlessly. Any apps you buy for instance on your iPhone will immediately sync to your computer, changes to your calendar, or notes, or contacts will also automatically update on your computer as well. What good would all these new features be without some new devices? Apple&rsquo;s traditional fall event (or maybe even before it) should bring at least &ldquo;two new devices with camera/camcorder capabilities.&rdquo; Well, there you have it!</span>]]></content:encoded></item><item><title>&#x22;Verizon&#x22; IPhone in January 2011</title><dc:creator>TuInfor@Ymail.Com</dc:creator><category>Daily New</category><dc:date>2010-07-01T16:52:45-04:00</dc:date><link>http://tkntech.com/repair/files/fc441e537e0870f7e06169c87fbafc5a-9.php#unique-entry-id-9</link><guid isPermaLink="true">http://tkntech.com/repair/files/fc441e537e0870f7e06169c87fbafc5a-9.php#unique-entry-id-9</guid><content:encoded><![CDATA[<span style="font:12px Verdana, serif; ">Verizon Wireless, the largest U.S. mobile-phone company, will start selling Apple Inc.&rsquo;s iPhone next year, ending AT&T Inc.&rsquo;s exclusive hold on the smartphone in the U.S., two people familiar with the plans said.<br /></span><span style="font:11px Geneva, serif; color:#535353;">Verizon Wireless, the largest U.S. mobile-phone company, will start selling Apple Inc.&rsquo;s iPhone next year, ending AT&T Inc.&rsquo;s exclusive hold on the smartphone in the U.S., two people familiar with the plans said. The device will be available to customers in January, according to the people, who declined to be named because the information isn&rsquo;t public.

Natalie Kerris, an Apple spokeswoman, and Jeffrey Nelson, a Verizon Wireless spokesman, declined to comment. 




</span><img class="imageStyle" alt="" width="480" height="192" src="http://tkntech.com/repair/files/page4_blog_entry9-35882-500.png" /><span style="font:11px Geneva, serif; "><br /></span><span style="font:24px Arial, Verdana, Helvetica, sans-serif; color:#18344E;">Verizon iPhone Could Add 12 Million More iPhone User<br /></span><span style="font:13px LucidaSans; ">We have been hearing rumors for quite some time that </span><span style="font:13px LucidaSans; color:#2C68A3;"><a href="http://www.apple.com/">Apple</a></span><span style="font:13px LucidaSans; "> [AAPL]would be bringing the </span><span style="font:13px LucidaSans; color:#2C68A3;"><a href="http://www.geeky-gadgets.com/">iPhone</a></span><span style="font:13px LucidaSans; "> to the Verizon </span><span style="font:13px LucidaSans; color:#0048B5;">Wireless network</span><span style="font:13px LucidaSans; ">, and have even heard rumors this week that it may be coming in January, although I think we can take that rumor with a pinch of salt.<br />According to analyst Yair Reiner from </span><span style="font:13px LucidaSans; color:#2C68A3;"><a href="https://www.oppenheimerfunds.com/investors/">Oppenheimer</a></span><span style="font:13px LucidaSans; ">, a Verizon iPhone could have a serious impact on both Apple and Google, as he estimates that around 12 million Verizon users would switch to an iPhone.<br /></span><img class="imageStyle" alt="" width="480" height="429" src="http://tkntech.com/repair/files/page4_blog_entry9-verizon-iphone.jpg" /><span style="font:13px LucidaSans; "><br /></span><span style="font:13px LucidaSans; ">This would have a huge effect on Apple&rsquo;s revenue and could boost it by as much as $7 billion, but also it could have an impact on Google </span><span style="font:13px LucidaSans; color:#0048B5;">Android</span><span style="font:13px LucidaSans; "> devices which customers have been buying on Verizon rather than switching to AT&T for the iPhone.<br />This could tie in with the fact that AT&T allowed customers to upgrade to the iPhone 4, thus locking them in to an AT&T contract, and they then wouldn&rsquo;t easily be able to move to Verizon.<br />If Apple are smart then they will definitely launch the iPhone on the Verizon network, and they should also launch it on other networks in the US like the have done in the UK.<br />No doubt we will be hearing more and more Verizon iPhone rumors over the next couple of months, until we get something official from Apple and Verizon.</span>]]></content:encoded></item><item><title>Office for mac has determined that your product key is not valid</title><dc:creator>TuInfor@Ymail.Com</dc:creator><category>Mac Tutorial</category><dc:date>2010-06-05T14:28:51-04:00</dc:date><link>http://tkntech.com/repair/files/8836fa5226ebcd7d7bb5bfce81562046-8.php#unique-entry-id-8</link><guid isPermaLink="true">http://tkntech.com/repair/files/8836fa5226ebcd7d7bb5bfce81562046-8.php#unique-entry-id-8</guid><content:encoded><![CDATA[<span style="font:14px Trebuchet, Verdana, serif; font-weight:bold; color:#111921;font-weight:bold; ">When launching Excel, Entourage, PowerPoint, Word, you have a message :<br />"Office for mac has determined that your product key is not valid"</span><span style="font:14px Trebuchet, Verdana, serif; color:#111921;"><br />this was probably right after you added the latest update ...<br />This tutorial will help you Removing Office 2008 License Files:<br /></span><p style="text-align:center;"><img class="imageStyle" alt="" width="384" height="290" src="http://tkntech.com/repair/files/page4_blog_entry8-screen-shot-2010-06-05-at-2.30.46-pm.png" /><span style="font:14px Trebuchet, Verdana, serif; color:#111921;"><br /></span></p><p style="text-align:left;"><span style="font:14px Trebuchet, Verdana, serif; color:#111921;">If your copy of Office 2008 was installed with an invalid product key, or if you mistakenly used the same product key to install Office 2008 on more than one computer, you must remove the invalid product key and enter a valid product key to use Office 2008.<br /></span><span style="font:14px Trebuchet, Verdana, serif; font-weight:bold; color:#7F007F;font-weight:bold; ">1. In the Finder, select /Applications/Microsoft Office 2008/Office/OfficePID.plist, and then on the File menu, click Move to Trash.<br />2. Select /Users/username/Library/Preferences/Microsoft/Office 2008/Microsoft Office 2008 settings.plist, and then on the File menu, click Move to Trash.</span><span style="font:14px Trebuchet, Verdana, serif; color:#111921;"><br /><br />-</span><span style="font:14px Trebuchet, Verdana, serif; font-weight:bold; color:#111921;font-weight:bold; ">YOU WILL BE PROMPTED</span><span style="font:14px Trebuchet, Verdana, serif; color:#111921;"> to RE-Enter your license, as used before the Uptade</span></p>]]></content:encoded></item><item><title>Replace the Deault Login Background Image on Mac OS X Leopard</title><dc:creator>TuInfor@Ymail.Com</dc:creator><category>Mac Tutorial</category><dc:date>2010-06-04T18:18:56-04:00</dc:date><link>http://tkntech.com/repair/files/3eb63defb96cfba4a99e8e9197b69dc4-7.php#unique-entry-id-7</link><guid isPermaLink="true">http://tkntech.com/repair/files/3eb63defb96cfba4a99e8e9197b69dc4-7.php#unique-entry-id-7</guid><content:encoded><![CDATA[<span style="font:12px Verdana, serif; ">The default nebula login background picture is great, but you're not stuck with it or any one picture as your login background. You can replace the default background with any jpg image file on your Mac. Learn how to replace the default login background image on Mac OS X Leopard<br /></span><img class="imageStyle" alt="" width="480" height="296" src="http://tkntech.com/repair/files/page4_blog_entry7-1.jpg" /><span style="font:12px Verdana, serif; "><br /></span><span style="font:13px Arial, Verdana, Helvetica, sans-serif; font-weight:bold; color:#262626;font-weight:bold; ">Step1: </span><span style="font:13px Arial, Verdana, Helvetica, sans-serif; color:#262626;">In an open Finder window, navigate to the "/System/Library/CoreServices/" folder on your Mac. Locate the file "DefaultDesktop.jpg."<br /><br /></span><span style="font:13px Arial, Verdana, Helvetica, sans-serif; font-weight:bold; color:#262626;font-weight:bold; ">Step2:</span><span style="font:13px Arial, Verdana, Helvetica, sans-serif; color:#262626;"> Locate the new jpg image file you wish to use as your new login picture and rename the file "DefaultDesktop.jpg" (without the quotes).<br /></span><img class="imageStyle" alt="" width="480" height="297" src="http://tkntech.com/repair/files/page4_blog_entry7-2.png" /><span style="font:13px Arial, Verdana, Helvetica, sans-serif; color:#262626;"><br /></span><span style="font:13px Arial, Verdana, Helvetica, sans-serif; font-weight:bold; color:#262626;font-weight:bold; ">Step3:</span><span style="font:13px Arial, Verdana, Helvetica, sans-serif; color:#262626;"> Drag and Drop your newly renamed "DefaultDesktop.jpg" to the "/System/Library/CoreServices/" <br /><br /></span><span style="font:13px Arial, Verdana, Helvetica, sans-serif; font-weight:bold; color:#262626;font-weight:bold; ">Step4:</span><span style="font:13px Arial, Verdana, Helvetica, sans-serif; color:#262626;"> Next, you will see a warning dialogue box asking if you want to overwrite the old "DefaultDesktop.jpg," click "Replace." You will need to enter your administrator user name and password in the next dialogue box to copy the new image file to the "/System/Library/CoreServices/" directory. Enter your name/password and click "OK" to copy over the existing file. To view the new Default Login Background, restart or log-out and login again to see the changes.</span>]]></content:encoded></item><item><title>Double Click To Minimize On Mac</title><dc:creator>TuInfor@Ymail.Com</dc:creator><category>Mac Tutorial</category><dc:date>2010-06-04T18:09:41-04:00</dc:date><link>http://tkntech.com/repair/files/62abdb1ebf98d29b9adc661d43860574-6.php#unique-entry-id-6</link><guid isPermaLink="true">http://tkntech.com/repair/files/62abdb1ebf98d29b9adc661d43860574-6.php#unique-entry-id-6</guid><content:encoded><![CDATA[<span style="font:12px Verdana, serif; color:#272727;">Go to System Preferences -> Appearance -> Check box &ldquo;Double-click a window&rsquo;s title bar to minimize<br /></span><img class="imageStyle" alt="" width="480" height="389" src="http://tkntech.com/repair/files/page4_blog_entry6-screen-shot-2010-06-04-at-6.07.10-pm.jpg" /><span style="font:12px Verdana, serif; "><br /><br />Or you can your short-cut keyboard &ldquo;Command+M&rdquo;<br /></span>]]></content:encoded></item><item><title>How to Change Login Screen Apple Logo on Mac OS X Leopard / Snow Leopard</title><dc:creator>TuInfor@Ymail.Com</dc:creator><category>Mac Tutorial</category><dc:date>2010-06-01T11:18:28-04:00</dc:date><link>http://tkntech.com/repair/files/7b470e2ee2bdd066de94a1f694badaf3-5.php#unique-entry-id-5</link><guid isPermaLink="true">http://tkntech.com/repair/files/7b470e2ee2bdd066de94a1f694badaf3-5.php#unique-entry-id-5</guid><content:encoded><![CDATA[<span style="font:12px Verdana, serif; color:#272727;">This guide will help you on how to change the login screen (the user switcher mode) apple logo to a custom image. Make sure the custom image is of size 90x90 and is in .tif format. For the best possible results, make the background of the image invisible.<br /><br />1. First of all, on desktop press 'Cmd'+'Shift'+'G' and a 'Go to Folder' window will show up. Type the following path into that window and hit enter.<br /></span><span style="font:10px Courier, mono; color:#444444;">/System/Library/CoreServices/SecurityAgentPlugins/loginwindow.bundle/Contents/Resources/<br /></span><img class="imageStyle" alt="" width="480" height="201" src="http://tkntech.com/repair/files/page4_blog_entry5-picture-21.png" /><span style="font:12px Verdana, serif; color:#272727;"><br /></span><table border="0.000000" cellpadding="6.000000" cellspacing="0.250000"><tr height="0"><td valign="middle" width="511" bgcolor="#FFFFFF"><span style="font:12px Verdana, serif; color:#272727;"><br /></span></td></tr></table><img class="imageStyle" alt="" width="480" height="201" src="http://tkntech.com/repair/files/page4_blog_entry5-picture-20.png" /><span style="font:12px Verdana, serif; color:#272727;"><br /></span><table border="0.000000" cellpadding="6.000000" cellspacing="0.250000"><tr height="0"><span style="font:12px Verdana, serif; color:#272727;"><br />2. A new finder window shows up. Holding the 'option' key on keyboard , drag the file 'applelogo.tif' to the desktop to create a backup.<br /><br /></span></td></tr></table><img class="imageStyle" alt="" width="480" height="148" src="http://tkntech.com/repair/files/page4_blog_entry5-picture-21-1.png" /><span style="font:12px Verdana, serif; color:#272727;"><br /></span><table border="0.000000" cellpadding="6.000000" cellspacing="0.250000"><tr height="0"><span style="font:12px Verdana, serif; color:#272727;"><br /></span></td></tr></table><img class="imageStyle" alt="" width="96" height="86" src="http://tkntech.com/repair/files/page4_blog_entry5-picture-22.png" /><span style="font:12px Verdana, serif; color:#272727;"><br /></span><table border="0.000000" cellpadding="6.000000" cellspacing="0.250000"><tr height="0"><span style="font:12px Verdana, serif; color:#272727;"><br />3. Rename your custom image to 'applelogo.tif' and drag it to the finder window. It will now ask you to to authenticate, click 'Authenticate'. Now, it will ask you if you want to replace the current 'applelogo.tif', make sure you have followed step 2 correctly and click 'Replace'. <br /><br /></span></td></tr></table><img class="imageStyle" alt="" width="90" height="90" src="http://tkntech.com/repair/files/page4_blog_entry5-applelogo.png" /><span style="font:12px Verdana, serif; color:#272727;"><br /></span><span style="font:12px Verdana, serif; color:#272727;"><br /></span><img class="imageStyle" alt="" width="480" height="195" src="http://tkntech.com/repair/files/page4_blog_entry5-picture-24.png" /><span style="font:12px Verdana, serif; color:#272727;"><br /></span><span style="font:12px Verdana, serif; color:#272727;"><br /></span><span style="font:13px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#262626;"><br /></span><img class="imageStyle" alt="" width="400" height="120" src="http://tkntech.com/repair/files/page4_blog_entry5-screen-shot-2010-06-01-at-11.23.18-am.png" /><span style="font:12px Verdana, serif; color:#272727;"><br /></span><span style="font:12px Verdana, serif; color:#272727;"><br />4. It will finally ask for your password, type it in and hit return.<br /><br /></span><span style="font:13px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#262626;"><br /></span><img class="imageStyle" alt="" width="437" height="233" src="http://tkntech.com/repair/files/page4_blog_entry5-screen-shot-2010-06-01-at-11.23.33-am.png" /><span style="font:12px Verdana, serif; color:#262626;"><br /></span><span style="font:12px Verdana, serif; color:#272727;"><br /></span><img class="imageStyle" alt="" width="473" height="84" src="http://tkntech.com/repair/files/page4_blog_entry5-screen-shot-2010-06-01-at-11.59.39-am.png" /><span style="font:12px Verdana, serif; color:#272727;"><br /></span><span style="font:12px Verdana, serif; color:#272727;"><br />Whenever you open your mac, the login screen will show the custom image instead of the plain old Apple logo.</span>]]></content:encoded></item><item><title>Stop Auto Backup When Sync The Iphone In iTunes</title><dc:creator>TuInfor@Ymail.Com</dc:creator><category>Iphone Tutorial</category><dc:date>2010-05-12T00:05:43-04:00</dc:date><link>http://tkntech.com/repair/files/e0aaba2c1b21ef960e1adee2f5b85cb6-4.php#unique-entry-id-4</link><guid isPermaLink="true">http://tkntech.com/repair/files/e0aaba2c1b21ef960e1adee2f5b85cb6-4.php#unique-entry-id-4</guid><content:encoded><![CDATA[<p style="text-align:center;"><img class="imageStyle" alt="" width="44" height="115" src="http://tkntech.com/repair/files/page4_blog_entry4-iphone.jpg" /><span style="font:14px Tahoma; "><br /></span></p><p style="text-align:left;"><span style="font:14px Tahoma; "><br /></span><span style="font:12px Tahoma; ">When you get more stuff on your iphone: like "music, video, photo, note, app, & games..." and anytime you syncing the iphone to add more stuff, the Itunes will take a lots of time to backup your iphone. So this tutorial will help you stop that problem. <br /><br />1. Quit iTunes.<br />2. Open Finder => Applications => Utilities => open Terminal.app<br />3. Type (or copy & paste) following command:<br /></span><span style="font:12px Tahoma; color:#FA0000;">defaults write com.apple.iTunes DeviceBackupsDisabled -bool true</span><span style="font:12px Tahoma; "><br />4. Hit enter\Return<br />5. Open & run iTunes<br />6. Plug-in & connect iphone to computer for syncing. The backup process should be bypassed and skipped now. Now you'r good to syncing.<br /><br />To re-enable or turn on the backup of iphone again.<br />1. Quit iTunes.<br />2. Open Finder => Applications => Utilities => open Terminal.app<br />3. Type (or copy & paste) following command:<br /></span><span style="font:12px Tahoma; color:#FA0000;">defaults write com.apple.iTunes DeviceBackupsDisabled -bool false</span><span style="font:12px Tahoma; "><br />4. Hit enter\Return<br />5. Open & run iTunes<br />6. Enjoy.</span><span style="font:14px Tahoma; "><br /></span></p>]]></content:encoded></item><item><title>How to Make Dashboard Widgets Available on a Desktop on Mac OS X Leopard</title><dc:creator>TuInfor@Ymail.Com</dc:creator><category>Mac Tutorial</category><dc:date>2010-05-12T00:05:23-04:00</dc:date><link>http://tkntech.com/repair/files/d5f356d0f226be77bcb8a11edf029ed0-3.php#unique-entry-id-3</link><guid isPermaLink="true">http://tkntech.com/repair/files/d5f356d0f226be77bcb8a11edf029ed0-3.php#unique-entry-id-3</guid><content:encoded><![CDATA[<span style="font:13px Arial, Verdana, Helvetica, sans-serif; color:#262626;">1. Navigate in an open Finder window to &ldquo;Applications/Utilities&rdquo; and double-click the &ldquo;Terminal&rdquo; application to launch it.<br />2. In a new &ldquo;Terminal&rdquo; window, type in the following command </span><span style="font:13px Arial, Verdana, Helvetica, sans-serif; color:#FF0000;">defaults write com.apple.dashboard devmode YES && killall Dock</span><span style="font:13px Arial, Verdana, Helvetica, sans-serif; color:#262626;"> , then hit Enter. This command will make the Widgets available to be used on your desktop and restart the Dock<br />3. Hit the hotkey to enable your Dashboard Widgets ("F12" or "F4" on newer Macs). Click and select the Widget you wish to move to the desktop while holding the "F12" or "F4" key (depending on your mac model) and drag the Widget to the position you want the Widget to appear on your desktop. Release the mouse.<br /></span><p style="text-align:center;"><span style="font:13px Arial, Verdana, Helvetica, sans-serif; color:#262626;">Here is an example<br /></span><img class="imageStyle" alt="" width="480" height="215" src="http://tkntech.com/repair/files/page4_blog_entry3-screen-shot-2010-05-08-at-12.11.26-am.png" /><span style="font:13px Arial, Verdana, Helvetica, sans-serif; color:#262626;"><br /></span></p><p style="text-align:left;"><span style="font:13px Arial, Verdana, Helvetica, sans-serif; color:#262626;">4. To remove the Widget from the desktop and return it to the Dashboard, perform the actions in Step 4 in reverse order. Click the Widget and enter "F12" or "F4," then drag to position the Widget in the Dashboard. Release the mouse.</span></p>]]></content:encoded></item><item><title>How to take a screenshot of your iPad</title><dc:creator>TuInfor@Ymail.Com</dc:creator><category>Ipad Tutorial</category><dc:date>2010-05-12T00:04:20-04:00</dc:date><link>http://tkntech.com/repair/files/ea4b8694c60296de91e70cd8a648fb08-2.php#unique-entry-id-2</link><guid isPermaLink="true">http://tkntech.com/repair/files/ea4b8694c60296de91e70cd8a648fb08-2.php#unique-entry-id-2</guid><content:encoded><![CDATA[<ul class="(null)"><li><span style="font-size:16px; color:#40434A;">Click the Power button on the top right corner of your iPad, and while holding it down, click the &ldquo;iPad Button&rdquo;.</span></li></ul><ul class="(null)"><li><img class="imageStyle" alt="" width="364" height="468" src="http://tkntech.com/repair/files/page4_blog_entry2-img00a.png" /><span style="font-size:16px; color:#8C0000;"><a href="http://www.simplehelp.net/images/ipad_screenshots/img00.png"><br /></a></span></li></ul><ul class="(null)"><li><span style="font-size:16px; color:#40434A;">You&rsquo;ll see the screen &lsquo;flash&rsquo; white and hear a camera &lsquo;clicking&rsquo; sound. Now open the </span><span style="font-size:16px; color:#40434A;font-weight:bold; ">Photos</span><span style="font-size:16px; color:#40434A;"> app on your iPad.</span></li></ul><ul class="(null)"><li><img class="imageStyle" alt="" width="381" height="239" src="http://tkntech.com/repair/files/page4_blog_entry2-img01.png" /></li></ul><ul class="(null)"><li><span style="font-size:16px; color:#40434A;">You&rsquo;ll the screenshot you just took as a thumbnail. Tap that photo to view the screenshot.</span></li></ul><ul class="(null)"><li><img class="imageStyle" alt="" width="450" height="301" src="http://tkntech.com/repair/files/page4_blog_entry2-img02a.png" /></li><li><span style="font-size:16px; ">That&rsquo;s it :) </span></li></ul>]]></content:encoded></item><item><title>How To Change Wallpaper</title><dc:creator>TuInfor@Ymail.Com</dc:creator><category>Mac Tutorial</category><dc:date>2010-05-12T00:01:24-04:00</dc:date><link>http://tkntech.com/repair/files/68f8cdb2087f8899b742267a055a9092-1.php#unique-entry-id-1</link><guid isPermaLink="true">http://tkntech.com/repair/files/68f8cdb2087f8899b742267a055a9092-1.php#unique-entry-id-1</guid><content:encoded><![CDATA[<ul class="(null)"><li><span style="font:22px Arial, Verdana, Helvetica, sans-serif; color:#FFFFFF;">1</span><span style="font:22px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#FFFFFF;"><br /></span><span style="font:15px Arial, Verdana, Helvetica, sans-serif; font-weight:bold; color:#323232;font-weight:bold; ">Find an image, you can pull one of a search engine, or an email, or a photo from your camera</span><span style="font:15px Arial, Verdana, Helvetica, sans-serif; color:#323232;">.</span></li><li><span style="font:22px Arial, Verdana, Helvetica, sans-serif; color:#FFFFFF;">2</span><span style="font:22px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#FFFFFF;"><br /></span><span style="font:15px Arial, Verdana, Helvetica, sans-serif; font-weight:bold; color:#323232;font-weight:bold; ">Save the image to your hard disk</span><span style="font:15px Arial, Verdana, Helvetica, sans-serif; color:#323232;">. You can do this by dragging it to your desktop in many cases.</span></li><li><span style="font:22px Arial, Verdana, Helvetica, sans-serif; color:#FFFFFF;">3</span><span style="font:22px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#FFFFFF;"><br /></span><span style="font:15px Arial, Verdana, Helvetica, sans-serif; font-weight:bold; color:#323232;font-weight:bold; ">Open preferences on your mac and go to "Desktop & Screen Saver"</span><span style="font:15px Arial, Verdana, Helvetica, sans-serif; color:#323232;">.</span></li><li><span style="font:22px Arial, Verdana, Helvetica, sans-serif; color:#FFFFFF;">4</span><span style="font:22px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#FFFFFF;"><br /></span><img class="imageStyle" alt="" width="480" height="412" src="http://tkntech.com/repair/files/page4_blog_entry1-640px-desktop-0026-screen-saver.jpg" /><span style="font:15px &#39;Lucida Grande&#39;, LucidaGrande, Verdana, sans-serif; color:#323232;"><br /></span><span style="font:15px Arial, Verdana, Helvetica, sans-serif; font-weight:bold; color:#323232;font-weight:bold; ">Press the + button in the lower left</span><span style="font:15px Arial, Verdana, Helvetica, sans-serif; color:#323232;">. Select the image on your hard drive.</span></li></ul>]]></content:encoded></item></channel>
</rss>
