gtl-parsley-ruby 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (299) hide show
  1. data/CHANGELOG +3 -0
  2. data/README +32 -0
  3. data/Rakefile +57 -0
  4. data/VERSION +1 -0
  5. data/ext/cparsley.c +152 -0
  6. data/ext/extconf.rb +82 -0
  7. data/ext/parsley/.gitignore +32 -0
  8. data/ext/parsley/AUTHORS +1 -0
  9. data/ext/parsley/ChangeLog +0 -0
  10. data/ext/parsley/HACKING +4 -0
  11. data/ext/parsley/INSTALL +73 -0
  12. data/ext/parsley/INTRO +84 -0
  13. data/ext/parsley/Makefile.am +80 -0
  14. data/ext/parsley/Makefile.in +1009 -0
  15. data/ext/parsley/NEWS +0 -0
  16. data/ext/parsley/PAPER +36 -0
  17. data/ext/parsley/Portfile +18 -0
  18. data/ext/parsley/Portfile.in +17 -0
  19. data/ext/parsley/README.C-LANG +92 -0
  20. data/ext/parsley/README.markdown +1 -0
  21. data/ext/parsley/TODO +39 -0
  22. data/ext/parsley/VERSION +1 -0
  23. data/ext/parsley/aclocal.m4 +8918 -0
  24. data/ext/parsley/bootstrap.sh +6 -0
  25. data/ext/parsley/config.guess +1561 -0
  26. data/ext/parsley/config.sub +1686 -0
  27. data/ext/parsley/configure +13437 -0
  28. data/ext/parsley/configure.ac +46 -0
  29. data/ext/parsley/depcomp +630 -0
  30. data/ext/parsley/functions.c +368 -0
  31. data/ext/parsley/functions.h +19 -0
  32. data/ext/parsley/generate_bisect.sh +12 -0
  33. data/ext/parsley/hooks/prepare-commit-msg +16 -0
  34. data/ext/parsley/install-sh +520 -0
  35. data/ext/parsley/json-c-0.9/AUTHORS +2 -0
  36. data/ext/parsley/json-c-0.9/COPYING +19 -0
  37. data/ext/parsley/json-c-0.9/ChangeLog +103 -0
  38. data/ext/parsley/json-c-0.9/INSTALL +302 -0
  39. data/ext/parsley/json-c-0.9/Makefile.am +43 -0
  40. data/ext/parsley/json-c-0.9/Makefile.in +800 -0
  41. data/ext/parsley/json-c-0.9/NEWS +1 -0
  42. data/ext/parsley/json-c-0.9/README +20 -0
  43. data/ext/parsley/json-c-0.9/README-WIN32.html +57 -0
  44. data/ext/parsley/json-c-0.9/README.html +32 -0
  45. data/ext/parsley/json-c-0.9/aclocal.m4 +8909 -0
  46. data/ext/parsley/json-c-0.9/arraylist.c +94 -0
  47. data/ext/parsley/json-c-0.9/arraylist.h +53 -0
  48. data/ext/parsley/json-c-0.9/bits.h +27 -0
  49. data/ext/parsley/json-c-0.9/config.guess +1561 -0
  50. data/ext/parsley/json-c-0.9/config.h +125 -0
  51. data/ext/parsley/json-c-0.9/config.h.in +124 -0
  52. data/ext/parsley/json-c-0.9/config.h.win32 +94 -0
  53. data/ext/parsley/json-c-0.9/config.sub +1686 -0
  54. data/ext/parsley/json-c-0.9/configure +13084 -0
  55. data/ext/parsley/json-c-0.9/configure.in +33 -0
  56. data/ext/parsley/json-c-0.9/debug.c +98 -0
  57. data/ext/parsley/json-c-0.9/debug.h +50 -0
  58. data/ext/parsley/json-c-0.9/depcomp +630 -0
  59. data/ext/parsley/json-c-0.9/doc/html/annotated.html +40 -0
  60. data/ext/parsley/json-c-0.9/doc/html/arraylist_8h.html +240 -0
  61. data/ext/parsley/json-c-0.9/doc/html/bits_8h.html +150 -0
  62. data/ext/parsley/json-c-0.9/doc/html/classes.html +36 -0
  63. data/ext/parsley/json-c-0.9/doc/html/config_8h.html +612 -0
  64. data/ext/parsley/json-c-0.9/doc/html/debug_8h.html +392 -0
  65. data/ext/parsley/json-c-0.9/doc/html/doxygen.css +441 -0
  66. data/ext/parsley/json-c-0.9/doc/html/doxygen.png +0 -0
  67. data/ext/parsley/json-c-0.9/doc/html/files.html +42 -0
  68. data/ext/parsley/json-c-0.9/doc/html/functions.html +206 -0
  69. data/ext/parsley/json-c-0.9/doc/html/functions_vars.html +206 -0
  70. data/ext/parsley/json-c-0.9/doc/html/globals.html +459 -0
  71. data/ext/parsley/json-c-0.9/doc/html/globals_defs.html +202 -0
  72. data/ext/parsley/json-c-0.9/doc/html/globals_enum.html +50 -0
  73. data/ext/parsley/json-c-0.9/doc/html/globals_eval.html +135 -0
  74. data/ext/parsley/json-c-0.9/doc/html/globals_func.html +194 -0
  75. data/ext/parsley/json-c-0.9/doc/html/globals_type.html +70 -0
  76. data/ext/parsley/json-c-0.9/doc/html/globals_vars.html +50 -0
  77. data/ext/parsley/json-c-0.9/doc/html/index.html +25 -0
  78. data/ext/parsley/json-c-0.9/doc/html/json_8h.html +32 -0
  79. data/ext/parsley/json-c-0.9/doc/html/json__object_8h.html +1150 -0
  80. data/ext/parsley/json-c-0.9/doc/html/json__object__private_8h.html +75 -0
  81. data/ext/parsley/json-c-0.9/doc/html/json__tokener_8h.html +366 -0
  82. data/ext/parsley/json-c-0.9/doc/html/json__util_8h.html +106 -0
  83. data/ext/parsley/json-c-0.9/doc/html/linkhash_8h.html +740 -0
  84. data/ext/parsley/json-c-0.9/doc/html/printbuf_8h.html +214 -0
  85. data/ext/parsley/json-c-0.9/doc/html/structarray__list.html +104 -0
  86. data/ext/parsley/json-c-0.9/doc/html/structjson__object.html +141 -0
  87. data/ext/parsley/json-c-0.9/doc/html/structjson__object__iter.html +87 -0
  88. data/ext/parsley/json-c-0.9/doc/html/structjson__tokener.html +206 -0
  89. data/ext/parsley/json-c-0.9/doc/html/structjson__tokener__srec.html +104 -0
  90. data/ext/parsley/json-c-0.9/doc/html/structlh__entry.html +105 -0
  91. data/ext/parsley/json-c-0.9/doc/html/structlh__table.html +275 -0
  92. data/ext/parsley/json-c-0.9/doc/html/structprintbuf.html +87 -0
  93. data/ext/parsley/json-c-0.9/doc/html/tab_b.gif +0 -0
  94. data/ext/parsley/json-c-0.9/doc/html/tab_l.gif +0 -0
  95. data/ext/parsley/json-c-0.9/doc/html/tab_r.gif +0 -0
  96. data/ext/parsley/json-c-0.9/doc/html/tabs.css +105 -0
  97. data/ext/parsley/json-c-0.9/doc/html/unionjson__object_1_1data.html +140 -0
  98. data/ext/parsley/json-c-0.9/install-sh +520 -0
  99. data/ext/parsley/json-c-0.9/json.h +31 -0
  100. data/ext/parsley/json-c-0.9/json.pc +11 -0
  101. data/ext/parsley/json-c-0.9/json.pc.in +11 -0
  102. data/ext/parsley/json-c-0.9/json_object.c +512 -0
  103. data/ext/parsley/json-c-0.9/json_object.h +319 -0
  104. data/ext/parsley/json-c-0.9/json_object_private.h +52 -0
  105. data/ext/parsley/json-c-0.9/json_tokener.c +628 -0
  106. data/ext/parsley/json-c-0.9/json_tokener.h +98 -0
  107. data/ext/parsley/json-c-0.9/json_util.c +122 -0
  108. data/ext/parsley/json-c-0.9/json_util.h +31 -0
  109. data/ext/parsley/json-c-0.9/libjson.la +41 -0
  110. data/ext/parsley/json-c-0.9/libtool +8890 -0
  111. data/ext/parsley/json-c-0.9/linkhash.c +216 -0
  112. data/ext/parsley/json-c-0.9/linkhash.h +272 -0
  113. data/ext/parsley/json-c-0.9/ltmain.sh +8406 -0
  114. data/ext/parsley/json-c-0.9/missing +376 -0
  115. data/ext/parsley/json-c-0.9/printbuf.c +149 -0
  116. data/ext/parsley/json-c-0.9/printbuf.h +64 -0
  117. data/ext/parsley/json-c-0.9/stamp-h1 +1 -0
  118. data/ext/parsley/json-c-0.9/test1 +130 -0
  119. data/ext/parsley/json-c-0.9/test1.c +164 -0
  120. data/ext/parsley/json-c-0.9/test2 +130 -0
  121. data/ext/parsley/json-c-0.9/test2.c +20 -0
  122. data/ext/parsley/json-c-0.9/test3 +130 -0
  123. data/ext/parsley/json-c-0.9/test3.c +23 -0
  124. data/ext/parsley/libtool +8890 -0
  125. data/ext/parsley/ltmain.sh +8406 -0
  126. data/ext/parsley/missing +376 -0
  127. data/ext/parsley/parsed_xpath.c +168 -0
  128. data/ext/parsley/parsed_xpath.h +34 -0
  129. data/ext/parsley/parser.y +631 -0
  130. data/ext/parsley/parsley.c +793 -0
  131. data/ext/parsley/parsley.h +87 -0
  132. data/ext/parsley/parsley_main.c +185 -0
  133. data/ext/parsley/parsleyc_main.c +108 -0
  134. data/ext/parsley/regexp.c +359 -0
  135. data/ext/parsley/regexp.h +36 -0
  136. data/ext/parsley/scanner.l +221 -0
  137. data/ext/parsley/test/ambiguous.html +207 -0
  138. data/ext/parsley/test/ambiguous.json +1 -0
  139. data/ext/parsley/test/ambiguous.let +6 -0
  140. data/ext/parsley/test/array-regression.html +5 -0
  141. data/ext/parsley/test/array-regression.json +1 -0
  142. data/ext/parsley/test/array-regression.let +10 -0
  143. data/ext/parsley/test/backslash.html +5 -0
  144. data/ext/parsley/test/backslash.json +1 -0
  145. data/ext/parsley/test/backslash.let +3 -0
  146. data/ext/parsley/test/bang.html +17 -0
  147. data/ext/parsley/test/bang.json +1 -0
  148. data/ext/parsley/test/bang.let +6 -0
  149. data/ext/parsley/test/collate_regression.html +324 -0
  150. data/ext/parsley/test/collate_regression.json +1 -0
  151. data/ext/parsley/test/collate_regression.let +9 -0
  152. data/ext/parsley/test/contains.html +3 -0
  153. data/ext/parsley/test/contains.json +1 -0
  154. data/ext/parsley/test/contains.let +3 -0
  155. data/ext/parsley/test/content.html +13 -0
  156. data/ext/parsley/test/content.json +1 -0
  157. data/ext/parsley/test/content.let +7 -0
  158. data/ext/parsley/test/cool.html +575 -0
  159. data/ext/parsley/test/cool.json +1 -0
  160. data/ext/parsley/test/cool.let +9 -0
  161. data/ext/parsley/test/craigs-simple.html +207 -0
  162. data/ext/parsley/test/craigs-simple.json +1 -0
  163. data/ext/parsley/test/craigs-simple.let +6 -0
  164. data/ext/parsley/test/craigs.html +207 -0
  165. data/ext/parsley/test/craigs.json +1 -0
  166. data/ext/parsley/test/craigs.let +9 -0
  167. data/ext/parsley/test/crash.html +157 -0
  168. data/ext/parsley/test/crash.json +1 -0
  169. data/ext/parsley/test/crash.let +1 -0
  170. data/ext/parsley/test/css_attr.html +3 -0
  171. data/ext/parsley/test/css_attr.json +1 -0
  172. data/ext/parsley/test/css_attr.let +3 -0
  173. data/ext/parsley/test/default-namespace.json +1 -0
  174. data/ext/parsley/test/default-namespace.let +3 -0
  175. data/ext/parsley/test/default-namespace.xml +1493 -0
  176. data/ext/parsley/test/div.html +8 -0
  177. data/ext/parsley/test/div.json +1 -0
  178. data/ext/parsley/test/div.let +10 -0
  179. data/ext/parsley/test/empty.html +3 -0
  180. data/ext/parsley/test/empty.json +1 -0
  181. data/ext/parsley/test/empty.let +1 -0
  182. data/ext/parsley/test/emptyish.html +207 -0
  183. data/ext/parsley/test/emptyish.let +3 -0
  184. data/ext/parsley/test/fictional-opt.html +43 -0
  185. data/ext/parsley/test/fictional-opt.json +1 -0
  186. data/ext/parsley/test/fictional-opt.let +14 -0
  187. data/ext/parsley/test/fictional.html +43 -0
  188. data/ext/parsley/test/fictional.json +1 -0
  189. data/ext/parsley/test/fictional.let +14 -0
  190. data/ext/parsley/test/function-magic.html +9 -0
  191. data/ext/parsley/test/function-magic.json +1 -0
  192. data/ext/parsley/test/function-magic.let +8 -0
  193. data/ext/parsley/test/hn.html +32 -0
  194. data/ext/parsley/test/hn.json +1 -0
  195. data/ext/parsley/test/hn.let +8 -0
  196. data/ext/parsley/test/malformed-array.html +2329 -0
  197. data/ext/parsley/test/malformed-array.json +1 -0
  198. data/ext/parsley/test/malformed-array.let +22 -0
  199. data/ext/parsley/test/malformed-expr.html +2329 -0
  200. data/ext/parsley/test/malformed-expr.json +1 -0
  201. data/ext/parsley/test/malformed-expr.let +16 -0
  202. data/ext/parsley/test/malformed-function.html +845 -0
  203. data/ext/parsley/test/malformed-function.json +197 -0
  204. data/ext/parsley/test/malformed-function.let +8 -0
  205. data/ext/parsley/test/malformed-json.html +2329 -0
  206. data/ext/parsley/test/malformed-json.json +1 -0
  207. data/ext/parsley/test/malformed-json.let +6 -0
  208. data/ext/parsley/test/malformed-xpath.html +8 -0
  209. data/ext/parsley/test/malformed-xpath.json +1 -0
  210. data/ext/parsley/test/malformed-xpath.let +7 -0
  211. data/ext/parsley/test/match.json +1 -0
  212. data/ext/parsley/test/match.let +9 -0
  213. data/ext/parsley/test/match.xml +11 -0
  214. data/ext/parsley/test/math_ambiguity.html +9 -0
  215. data/ext/parsley/test/math_ambiguity.json +1 -0
  216. data/ext/parsley/test/math_ambiguity.let +5 -0
  217. data/ext/parsley/test/nth-regression.html +13 -0
  218. data/ext/parsley/test/nth-regression.json +1 -0
  219. data/ext/parsley/test/nth-regression.let +3 -0
  220. data/ext/parsley/test/optional.html +2328 -0
  221. data/ext/parsley/test/optional.json +1 -0
  222. data/ext/parsley/test/optional.let +8 -0
  223. data/ext/parsley/test/outer-xml.html +6 -0
  224. data/ext/parsley/test/outer-xml.json +1 -0
  225. data/ext/parsley/test/outer-xml.let +5 -0
  226. data/ext/parsley/test/position.html +8 -0
  227. data/ext/parsley/test/position.json +1 -0
  228. data/ext/parsley/test/position.let +6 -0
  229. data/ext/parsley/test/question_regressions.html +443 -0
  230. data/ext/parsley/test/question_regressions.json +1 -0
  231. data/ext/parsley/test/question_regressions.let +6 -0
  232. data/ext/parsley/test/quote.json +1 -0
  233. data/ext/parsley/test/quote.let +8 -0
  234. data/ext/parsley/test/quote.xml +11 -0
  235. data/ext/parsley/test/reddit.html +1 -0
  236. data/ext/parsley/test/reddit.json +1 -0
  237. data/ext/parsley/test/reddit.let +12 -0
  238. data/ext/parsley/test/remote-fail.json +1 -0
  239. data/ext/parsley/test/remote.html +3 -0
  240. data/ext/parsley/test/remote.json +1 -0
  241. data/ext/parsley/test/remote.let +4 -0
  242. data/ext/parsley/test/replace.json +1 -0
  243. data/ext/parsley/test/replace.let +9 -0
  244. data/ext/parsley/test/replace.xml +11 -0
  245. data/ext/parsley/test/scope.html +10 -0
  246. data/ext/parsley/test/scope.json +1 -0
  247. data/ext/parsley/test/scope.let +6 -0
  248. data/ext/parsley/test/segfault.html +5 -0
  249. data/ext/parsley/test/segfault.json +1 -0
  250. data/ext/parsley/test/segfault.let +9 -0
  251. data/ext/parsley/test/sg-wrap.html +5 -0
  252. data/ext/parsley/test/sg-wrap.json +1 -0
  253. data/ext/parsley/test/sg-wrap.let +3 -0
  254. data/ext/parsley/test/sg_off.html +5 -0
  255. data/ext/parsley/test/sg_off.json +1 -0
  256. data/ext/parsley/test/sg_off.let +3 -0
  257. data/ext/parsley/test/test.json +1 -0
  258. data/ext/parsley/test/test.let +6 -0
  259. data/ext/parsley/test/test.xml +11 -0
  260. data/ext/parsley/test/trivial.html +2329 -0
  261. data/ext/parsley/test/trivial.json +1 -0
  262. data/ext/parsley/test/trivial.let +4 -0
  263. data/ext/parsley/test/trivial2.html +2329 -0
  264. data/ext/parsley/test/trivial2.json +1 -0
  265. data/ext/parsley/test/trivial2.let +7 -0
  266. data/ext/parsley/test/unbang.html +17 -0
  267. data/ext/parsley/test/unbang.json +1 -0
  268. data/ext/parsley/test/unbang.let +6 -0
  269. data/ext/parsley/test/unicode.html +3 -0
  270. data/ext/parsley/test/unicode.json +1 -0
  271. data/ext/parsley/test/unicode.let +1 -0
  272. data/ext/parsley/test/whitespace.html +8 -0
  273. data/ext/parsley/test/whitespace.json +1 -0
  274. data/ext/parsley/test/whitespace.let +3 -0
  275. data/ext/parsley/test/whitespace_regression.html +4 -0
  276. data/ext/parsley/test/whitespace_regression.json +1 -0
  277. data/ext/parsley/test/whitespace_regression.let +3 -0
  278. data/ext/parsley/test/yelp-benchmark.rb +53 -0
  279. data/ext/parsley/test/yelp-home.html +1004 -0
  280. data/ext/parsley/test/yelp-home.json +1 -0
  281. data/ext/parsley/test/yelp-home.let +6 -0
  282. data/ext/parsley/test/yelp.html +2329 -0
  283. data/ext/parsley/test/yelp.json +1 -0
  284. data/ext/parsley/test/yelp.let +12 -0
  285. data/ext/parsley/test/youtube.html +1940 -0
  286. data/ext/parsley/test/youtube.let +11 -0
  287. data/ext/parsley/util.c +237 -0
  288. data/ext/parsley/util.h +34 -0
  289. data/ext/parsley/xml2json.c +47 -0
  290. data/ext/parsley/xml2json.h +14 -0
  291. data/ext/parsley/y.tab.h +222 -0
  292. data/ext/parsley/ylwrap +222 -0
  293. data/lib/parsley.rb +84 -0
  294. data/test/test_parsley.rb +120 -0
  295. data/test/yelp-benchmark.rb +53 -0
  296. data/test/yelp-home.html +1004 -0
  297. data/test/yelp-home.let +6 -0
  298. data/test/yelp.html +2329 -0
  299. metadata +366 -0
@@ -0,0 +1,157 @@
1
+ <html>
2
+ <head>
3
+ <title>chicken Recipes - Recipe Puppy - Search for recipes by ingredients and/or keyword</title>
4
+ <link href="/cssjs/style.css" type="text/css" media="screen" rel="stylesheet">
5
+ <link rel="shortcut icon" href="/favicon.ico">
6
+ <link rel="search" type="application/opensearchdescription+xml" title="Recipe Puppy: Search by Ingredients" href="http://www.recipepuppy.com/rpopen.xml">
7
+ <link rel="search" type="application/opensearchdescription+xml" title="Recipe Puppy: Search by Keyword" href="http://www.recipepuppy.com/rpkeyword.xml">
8
+ <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/prototype/1.6.0.2/prototype.js"></script>
9
+ <script type="text/javascript" src="/cssjs/rp.js"></script>
10
+ </head>
11
+ <body>
12
+ <div class="header">
13
+ <div style="float:right;margin:2px 2px 0 0;">
14
+ </div>
15
+ <h1><a href="/"><img src="/img/logonew.png" title="Search Recipes by Ingredients and Keywords" alt="Search Recipes by Ingredients and Keywords" /></a></h1>
16
+ </div>
17
+ <div class="nav"></div>
18
+ <div class="main">
19
+
20
+
21
+
22
+
23
+ <div id="right">
24
+ <div class="right">
25
+ <div class="searchStats">Results <b>1-10</b> of <b>37,007</b> for recipes having keywords <b>'chicken'</b> (0.122 seconds)</div><div style="margin-top:10px;">
26
+ <script type="text/javascript"><!--
27
+ google_ad_client = "pub-6345197035071335";
28
+ /* 728x90, created 3/26/09 rp3 */
29
+ google_ad_slot = "7653896349";
30
+ google_ad_width = 728;
31
+ google_ad_height = 90;
32
+ //-->
33
+ </script>
34
+ <script type="text/javascript"
35
+ src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
36
+ </script>
37
+ </div>
38
+ <div class="result">
39
+
40
+ <h3><a href="http://www.recipezaar.com/Chicken-in-a-Pot-Plus-Stock-or-Dumplings-115070"><b>Chicken</b> in a Pot Plus Stock or Dumplings</a></h3>
41
+ <div>This is quite different from the <b>Chicken</b> in a Pot recipe already posted (#7202), which calls for tomato and very little liquid. I like this alternative because it provides you with a whole, cooked <b>chicken</b> and stock for use in soup or whatever you wish....</div>
42
+ <div class="ings"><ul><li><a href="?q=chicken&i[]=allspice">+allspice</a></li><li><a href="?q=chicken&i[]=bay leaf">+bay leaf</a></li><li><a href="?q=chicken&i[]=carrot">+carrot</a></li><li><a href="?q=chicken&i[]=celery">+celery</a></li><li><a href="?q=chicken&i[]=thyme">+thyme</a></li><li><a href="?q=chicken&i[]=onions">+onions</a></li><li><a href="?q=chicken&i[]=parsley">+parsley</a></li><li><a href="?q=chicken&i[]=black pepper">+black pepper</a></li><li><a href="?q=chicken&i[]=salt">+salt</a></li><li><a href="?q=chicken&i[]=water">+water</a></li></ul></div><div style="clear:left;"></div>
43
+ <div class="url">www.recipezaar.com - <a href="/?similiar=296605">Similiar recipes</a></div>
44
+ </div>
45
+ <div class="result">
46
+ <img src="http://d3e40ov3nvm0n9.cloudfront.net/267093.jpg" class="thumb" />
47
+ <h3><a href="http://www.grouprecipes.com/11241/home-fried-chicken.html">Home Fried <b>Chicken</b> Recipe</a></h3>
48
+ <div>My folks referred to deep-fried <b>chicken</b> as "restaurant" <b>chicken</b>. My Appalachian grandparents called it "city" <b>chicken</b>. KFC is "restaurant" <b>chicken</b>. Any fried <b>chicken</b> you order in a restaurant is most likely going to be "restaurant" <b>chicken</b>. People called...</div>
49
+ <div class="ings"><ul><li><a href="?q=chicken&i[]=milk">+milk</a></li><li><a href="?q=chicken&i[]=bacon grease">+bacon grease</a></li><li><a href="?q=chicken&i[]=flour">+flour</a></li><li><a href="?q=chicken&i[]=potato">+potato</a></li><li><a href="?q=chicken&i[]=chicken">+chicken</a></li></ul></div><div style="clear:left;"></div>
50
+ <div class="url">www.grouprecipes.com - <a href="/?similiar=267093">Similiar recipes</a></div>
51
+ </div>
52
+ <div class="result">
53
+
54
+ <h3><a href="http://allrecipes.com/Recipe/Tipsy-Chicken/Detail.aspx">Tipsy <b>Chicken</b></a></h3> &#9733;&#9733;&#9733;&#9733;&#9733;(7)
55
+ <div>"This recipe is a completely redesigned recipe from Beer Can <b>Chicken</b>, sometimes called Drunken <b>Chicken</b>. Beer Can <b>Chicken</b> is used with whole <b>chicken</b> and the beer adds a wonderful flavour, but not a beer flavour. It's hard to describe, but beer seems to...</div>
56
+ <div class="ings"><ul><li><a href="?q=chicken&i[]=beer">+beer</a></li><li><a href="?q=chicken&i[]=cayenne">+cayenne</a></li><li><a href="?q=chicken&i[]=chili powder">+chili powder</a></li><li><a href="?q=chicken&i[]=cumin">+cumin</a></li><li><a href="?q=chicken&i[]=curry powder">+curry powder</a></li><li><a href="?q=chicken&i[]=garlic powder">+garlic powder</a></li><li><a href="?q=chicken&i[]=chips">+chips</a></li><li><a href="?q=chicken&i[]=onion powder">+onion powder</a></li><li><a href="?q=chicken&i[]=paprika">+paprika</a></li><li><a href="?q=chicken&i[]=black pepper">+black pepper</a></li><li><a href="?q=chicken&i[]=salt">+salt</a></li><li><a href="?q=chicken&i[]=water">+water</a></li></ul></div><div style="clear:left;"></div>
57
+ <div class="url">allrecipes.com - <a href="/?similiar=21745">Similiar recipes</a></div>
58
+ </div>
59
+ <div class="result">
60
+ <img src="http://d3e40ov3nvm0n9.cloudfront.net/45904.jpg" class="thumb" />
61
+ <h3><a href="http://www.recipezaar.com/2-in-1-Herbed-Chicken-Leftover-Chicken-Salad-108955">2 in 1 - Herbed <b>Chicken</b> & Leftover <b>Chicken</b> Salad</a></h3> &#9733;&#9733;&#9733;&#9733;&#9733;(13)
62
+ <div>This may be a first for RecipeZaar - two recipes in one! I had leftovers from the Herbed <b>Chicken</b> with no takers (if you know what I mean). This is delicious hot, but leftovers lose its appeal. Hating to see food go to waste, I created an out-of-this world...</div>
63
+ <div class="ings"><ul><li><a href="?q=chicken&i[]=chicken">+chicken</a></li><li><a href="?q=chicken&i[]=garlic">+garlic</a></li><li><a href="?q=chicken&i[]=margarine">+margarine</a></li><li><a href="?q=chicken&i[]=marjoram">+marjoram</a></li><li><a href="?q=chicken&i[]=onions">+onions</a></li><li><a href="?q=chicken&i[]=black pepper">+black pepper</a></li><li><a href="?q=chicken&i[]=rosemary">+rosemary</a></li><li><a href="?q=chicken&i[]=sage">+sage</a></li><li><a href="?q=chicken&i[]=salt">+salt</a></li><li><a href="?q=chicken&i[]=thyme">+thyme</a></li></ul></div><div style="clear:left;"></div>
64
+ <div class="url">www.recipezaar.com - <a href="/?similiar=45904">Similiar recipes</a></div>
65
+ </div>
66
+ <div class="result">
67
+
68
+ <h3><a href="http://www.recipezaar.com/Beer-Can-Chicken-312508">Beer Can <b>Chicken</b></a></h3>
69
+ <div>I got this recipe from my mom. She got it from a grilling cookbook. When my mom made this <b>chicken</b> she used another <b>chicken</b> seasoning. My family really liked this <b>chicken</b>. This <b>chicken</b> is so moist and doesn't have a beer taste. The skin gets nice and crisp....</div>
70
+ <div class="ings"><ul><li><a href="?q=chicken&i[]=beer">+beer</a></li><li><a href="?q=chicken&i[]=brown sugar">+brown sugar</a></li><li><a href="?q=chicken&i[]=salt">+salt</a></li></ul></div><div style="clear:left;"></div>
71
+ <div class="url">www.recipezaar.com - <a href="/?similiar=161212">Similiar recipes</a></div>
72
+ </div>
73
+ <div class="result">
74
+ <img src="http://d3e40ov3nvm0n9.cloudfront.net/223405.jpg" class="thumb" />
75
+ <h3><a href="http://www.grouprecipes.com/67612/asian-chicken-noodle-soup.html">Asian <b>Chicken</b> Noodle Soup Recipe</a></h3>
76
+ <div>In multicultural Canada, <b>chicken</b> soup is no longer just '50s style. During cold and flu season, keep a pot of this healing soup on the stove, as the steam, spice and lime truly help.Broth2 boneless <b>chicken</b> breasts2 tbsp (25 mL) peanut or canola oil, divided2-inch...</div>
77
+ <div class="ings"><ul><li><a href="?q=chicken&i[]=spinach">+spinach</a></li><li><a href="?q=chicken&i[]=broth">+broth</a></li><li><a href="?q=chicken&i[]=carrot">+carrot</a></li><li><a href="?q=chicken&i[]=chicken">+chicken</a></li><li><a href="?q=chicken&i[]=chicken broth">+chicken broth</a></li><li><a href="?q=chicken&i[]=mint">+mint</a></li><li><a href="?q=chicken&i[]=garlic">+garlic</a></li><li><a href="?q=chicken&i[]=ginger">+ginger</a></li><li><a href="?q=chicken&i[]=radish">+radish</a></li><li><a href="?q=chicken&i[]=lime">+lime</a></li><li><a href="?q=chicken&i[]=noodles">+noodles</a></li><li><a href="?q=chicken&i[]=onions">+onions</a></li><li><a href="?q=chicken&i[]=black pepper">+black pepper</a></li><li><a href="?q=chicken&i[]=peas">+peas</a></li><li><a href="?q=chicken&i[]=soup">+soup</a></li><li><a href="?q=chicken&i[]=lemon grass">+lemon grass</a></li><li><a href="?q=chicken&i[]=fish sauce">+fish sauce</a></li><li><a href="?q=chicken&i[]=vegetable oil">+vegetable oil</a></li><li><a href="?q=chicken&i[]=green onion">+green onion</a></li><li><a href="?q=chicken&i[]=red pepper flakes">+red pepper flakes</a></li><li><a href="?q=chicken&i[]=dark sesame oil">+dark sesame oil</a></li></ul></div><div style="clear:left;"></div>
78
+ <div class="url">www.grouprecipes.com - <a href="/?similiar=223405">Similiar recipes</a></div>
79
+ </div>
80
+ <div class="result">
81
+
82
+ <h3><a href="http://www.recipezaar.com/Chez-Panisse-Brine-for-Pork-Chicken-and-Turkey-131506">Chez Panisse Brine for Pork, <b>Chicken</b> and Turkey</a></h3> &#9733;&#9733;&#9733;&#9733;&#9733;(3)
83
+ <div>This is a recipe I got from my brother. I haven't tried it yet, but he absolutely raved about it. Preparation time does not include brining time.Author's notes: Leave it to Alice Waters and her crew at Chez Panisse to come up with a recipe that's so simple...</div>
84
+ <div class="ings"><ul><li><a href="?q=chicken&i[]=allspice">+allspice</a></li><li><a href="?q=chicken&i[]=bay leaves">+bay leaves</a></li><li><a href="?q=chicken&i[]=water">+water</a></li><li><a href="?q=chicken&i[]=thyme">+thyme</a></li><li><a href="?q=chicken&i[]=garlic">+garlic</a></li><li><a href="?q=chicken&i[]=juniper berries">+juniper berries</a></li><li><a href="?q=chicken&i[]=kosher salt">+kosher salt</a></li><li><a href="?q=chicken&i[]=sugar">+sugar</a></li></ul></div><div style="clear:left;"></div>
85
+ <div class="url">www.recipezaar.com - <a href="/?similiar=292547">Similiar recipes</a></div>
86
+ </div>
87
+ <div class="result">
88
+
89
+ <h3><a href="http://www.recipezaar.com/Chicken-Breasts-Stuffed-With-Olives-and-Goat-Cheese-113177"><b>Chicken</b> Breasts Stuffed With Olives and Goat Cheese</a></h3> &#9733;&#9733;&#9733;&#9733;&#9733;(4)
90
+ <div>Stuffing <b>chicken</b> breasts with a tangy cheese mixture is a great way to add flavor. And it couldn't be easier: simply mix together a few ingredients, slit the <b>chicken</b> breasts, push the filling in with your fingers, and saute. To meet the challenge of keeping...</div>
91
+ <div class="ings"><ul><li><a href="?q=chicken&i[]=chicken">+chicken</a></li><li><a href="?q=chicken&i[]=red pepper flakes">+red pepper flakes</a></li><li><a href="?q=chicken&i[]=oregano">+oregano</a></li><li><a href="?q=chicken&i[]=white wine">+white wine</a></li><li><a href="?q=chicken&i[]=parsley">+parsley</a></li><li><a href="?q=chicken&i[]=goat cheese">+goat cheese</a></li><li><a href="?q=chicken&i[]=garlic">+garlic</a></li><li><a href="?q=chicken&i[]=kalamata olive">+kalamata olive</a></li><li><a href="?q=chicken&i[]=milk">+milk</a></li><li><a href="?q=chicken&i[]=olive oil">+olive oil</a></li><li><a href="?q=chicken&i[]=salt">+salt</a></li></ul></div><div style="clear:left;"></div>
92
+ <div class="url">www.recipezaar.com - <a href="/?similiar=294722">Similiar recipes</a></div>
93
+ </div>
94
+ <div class="result">
95
+
96
+ <h3><a href="http://www.recipezaar.com/Ask-for-More-Chicken-332993">Ask for More <b>Chicken</b></a></h3>
97
+ <div>This recipe I got from an South Africa friend it is and Afrikaans recipe that is cooked in the oven I have adapated it for the crockpot.This recipe is excellent, use <b>chicken</b> breasts, thighs or drumsticks or all threeThe <b>chicken</b> is cooked after 2 hours...</div>
98
+ <div class="ings"><ul><li><a href="?q=chicken&i[]=onion soup mix">+onion soup mix</a></li><li><a href="?q=chicken&i[]=carrot">+carrot</a></li><li><a href="?q=chicken&i[]=celery">+celery</a></li><li><a href="?q=chicken&i[]=chicken">+chicken</a></li><li><a href="?q=chicken&i[]=chutney">+chutney</a></li><li><a href="?q=chicken&i[]=water">+water</a></li><li><a href="?q=chicken&i[]=vegetable oil">+vegetable oil</a></li><li><a href="?q=chicken&i[]=mayonnaise">+mayonnaise</a></li><li><a href="?q=chicken&i[]=onions">+onions</a></li><li><a href="?q=chicken&i[]=potato">+potato</a></li></ul></div><div style="clear:left;"></div>
99
+ <div class="url">www.recipezaar.com - <a href="/?similiar=85332">Similiar recipes</a></div>
100
+ </div>
101
+ <div class="result">
102
+
103
+ <h3><a href="http://www.epicurious.com/recipes/food/views/Chicken-Stock-105268"><b>Chicken</b> Stock</a></h3>
104
+ <div><b>Chicken</b> stock is one of the great all-purpose kitchen preparations, and you&#8217;ll be surprised at how useful it is in chowder making. It is unsurpassed as a vehicle for soups and stews, providing nutrients, a luxuriant texture, and a delicious flavor....</div>
105
+ <div class="ings"><ul><li><a href="?q=chicken&i[]=black pepper">+black pepper</a></li><li><a href="?q=chicken&i[]=carrot">+carrot</a></li><li><a href="?q=chicken&i[]=celery">+celery</a></li><li><a href="?q=chicken&i[]=chicken">+chicken</a></li><li><a href="?q=chicken&i[]=cloves">+cloves</a></li><li><a href="?q=chicken&i[]=bay leaves">+bay leaves</a></li><li><a href="?q=chicken&i[]=garlic">+garlic</a></li><li><a href="?q=chicken&i[]=sea salt">+sea salt</a></li><li><a href="?q=chicken&i[]=onions">+onions</a></li><li><a href="?q=chicken&i[]=parsley">+parsley</a></li><li><a href="?q=chicken&i[]=thyme">+thyme</a></li><li><a href="?q=chicken&i[]=water">+water</a></li></ul></div><div style="clear:left;"></div>
106
+ <div class="url">www.epicurious.com - <a href="/?similiar=134944">Similiar recipes</a></div>
107
+ </div><div class="pages">Page <a href="?q=chicken" class="current">1</a><a href="?q=chicken&p=2" >2</a><a href="?q=chicken&p=3" >3</a><a href="?q=chicken&p=4" >4</a><a href="?q=chicken&p=5" >5</a><a href="?q=chicken&p=6" >6</a><a href="?q=chicken&p=7" >7</a><a href="?q=chicken&p=8" >8</a><a href="?q=chicken&p=9" >9</a><a href="?q=chicken&p=10" >10</a><a href="?q=chicken&p=11" >11</a></div>
108
+ </div>
109
+ </div>
110
+ <div class="left">
111
+ <form name="f" action="/" method="get">
112
+ <div class="box">
113
+ <b class="first">Search by Ingredient(s):</b>
114
+ <input type="text" name="i[]" id="addIng" /><input type="submit" value="Add" />
115
+ <div class="help">add one or more ingredients (separated by commas)</div>
116
+ </div>
117
+
118
+
119
+ <div class="box">
120
+ <div id="recommendedIngredients">
121
+ <b>Suggested Ingredients:</b><a href="?q=chicken&i[]=salt">+salt</a><a href="?q=chicken&i[]=chicken">+chicken</a><a href="?q=chicken&i[]=onions">+onions</a><a href="?q=chicken&i[]=garlic">+garlic</a><a href="?q=chicken&i[]=water">+water</a><a href="?q=chicken&i[]=black pepper">+black pepper</a><a href="?q=chicken&i[]=carrot">+carrot</a><a href="?q=chicken&i[]=thyme">+thyme</a><a href="?q=chicken&i[]=parsley">+parsley</a><a href="?q=chicken&i[]=celery">+celery</a><a href="?q=chicken&i[]=milk">+milk</a><a href="?q=chicken&i[]=red pepper flakes">+red pepper flakes</a><a href="?q=chicken&i[]=allspice">+allspice</a><a href="?q=chicken&i[]=bay leaves">+bay leaves</a><a href="?q=chicken&i[]=potato">+potato</a><a href="?q=chicken&i[]=vegetable oil">+vegetable oil</a><a href="?q=chicken&i[]=beer">+beer</a><a href="?q=chicken&i[]=peas">+peas</a><a href="?q=chicken&i[]=sea salt">+sea salt</a><a href="?q=chicken&i[]=sage">+sage</a>
122
+ <div style="clear:both"></div>
123
+ </div>
124
+ </div>
125
+
126
+ <div class="box">
127
+ <div class="keyword">
128
+ <b>Search by keyword:</b>
129
+ <input type="text" name="q" value="chicken" /><input type="submit" value="Search" />
130
+ </div>
131
+
132
+ </div>
133
+ </form>
134
+
135
+ <div style="margin:15px 15px 0;">
136
+ <script language="javascript" src="http://tipjoy.com/custombutton?targetUser=recipepuppy&amount=2&targetUrl=http://www.recipepuppy.com/&customMessage=Like%20Recipe%20Puppy%3F%20Leave%20a%20tip%3A&width=232&" ></script>
137
+ </div>
138
+ </div>
139
+ </div>
140
+ <div style="clear:both"></div>
141
+ <div class="foot">&copy;2009 RecipePuppy.com - <a href="http://twitter.com/recipepuppy/">@recipepuppy</a> - <a href="http://www.facebook.com/pages/Recipe-Puppy-Search-for-recipes-by-ingredients/54865354493#/pages/Recipe-Puppy-Search-for-recipes-by-ingredients/54865354493">Facebook</a></div>
142
+
143
+ <script src="http://static.getclicky.com/73611.js" type="text/javascript"></script>
144
+ <noscript><p><img alt="Clicky" width="1" height="1" src="http://static.getclicky.com/73611-db7.gif" /></p></noscript>
145
+
146
+ <script type="text/javascript">
147
+ var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
148
+ document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
149
+ </script>
150
+ <script type="text/javascript">
151
+ try {
152
+ var pageTracker = _gat._getTracker("UA-367787-22");
153
+ pageTracker._trackPageview();
154
+ } catch(err) {}</script>
155
+
156
+ </body>
157
+ </html>
@@ -0,0 +1 @@
1
+ Parsing failed: /result was empty
@@ -0,0 +1 @@
1
+ {"result":[{"title":"h3 a","url":"h3 @href"}]}
@@ -0,0 +1,3 @@
1
+ <html>
2
+ <body foo="bar"></body>
3
+ </html>
@@ -0,0 +1 @@
1
+ { "foo": "bar" }
@@ -0,0 +1,3 @@
1
+ {
2
+ "foo": "body @foo"
3
+ }
@@ -0,0 +1 @@
1
+ { "path": " GuitarToolkit " }
@@ -0,0 +1,3 @@
1
+ {
2
+ "path": "//iTunes"
3
+ }
@@ -0,0 +1,1493 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <Document xmlns="http://www.apple.com/itms/" artistId="284962371" browsePath="/36/6011" genreId="6011">
3
+ <iTunes> GuitarToolkit </iTunes>
4
+ <Protocol>
5
+ <plist version="1.0">
6
+ <dict>
7
+ <key>ping</key>
8
+ <string>http://metrics.apple.com/b/ss/applesuperglobal/1/G.6--NS?pageName=Software%20Page-US-GuitarToolkit-284962368&amp;pccr=true&amp;h5=appleitmsna%2Cappleitmsus&amp;ch=Software&amp;g=http%3A%2F%2Fax.itunes.apple.com%2FWebObjects%2FMZStore.woa%2Fwa%2FviewSoftware%3Fid%3D284962368%26mt%3D8</string>
9
+ <key>set-prefs</key>
10
+ <dict>
11
+ <key>preferred-audio-format</key>
12
+ <string>256</string>
13
+ </dict>
14
+ </dict>
15
+ </plist>
16
+ </Protocol>
17
+ <Path>
18
+ <PathElement displayName="App Store" inhibitDragging="false">http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewGenre?id=36&amp;mt=8</PathElement>
19
+ <PathElement displayName="Music" inhibitDragging="false">http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewGenre?id=6011&amp;mt=8</PathElement>
20
+ <PathElement displayName="GuitarToolkit" inhibitDragging="false">http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=284962368&amp;mt=8</PathElement>
21
+ </Path>
22
+ <View rightInset="0" topInset="0" bottomInset="0" leftInset="0" stretchiness="1" backColor="ffffff">
23
+ <ScrollView rightInset="0" topInset="0" bottomInset="0" leftInset="0" stretchiness="1" horzScroll="as needed" vertScroll="as needed">
24
+ <VBoxView>
25
+ <Include target="main" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/com.apple.jingle.appserver.MZDirectAction/fontStyles"/>
26
+ <Test comparison="ge" value="7.4" property="iTunes version">
27
+ <Include value="starbucks" property="partner" comparison="eq" hookup-expire-time="true" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/nowPlayingPlacard">
28
+
29
+
30
+ </Include>
31
+ </Test>
32
+ <Test rightInset="0" comparison="lt" value="7.7" property="iTunes version" leftInset="0">
33
+ <VBoxView backColor="ccd6e1">
34
+ <HBoxView height="66" leftInset="20" rightInset="25" stretchiness="1">
35
+ <VBoxView alt="">
36
+ <View alt="" stretchiness="1"/>
37
+ <PictureView leftInset="0" width="40" topInset="5" height="40" url="/images/logo_iTunes_95.png"/>
38
+ <View alt="" stretchiness="1"/>
39
+ </VBoxView>
40
+ <VBoxView alt="" stretchiness="1">
41
+ <View alt="" stretchiness="1"/>
42
+ <TextView topInset="0" leftInset="10" rightInset="25" styleSet="normal14" bottomInset="0" textJust="left">
43
+ <Color color="000000">
44
+
45
+ To download iPhone and iPod touch applications, upgrade to the latest version of iTunes.
46
+ </Color>
47
+ </TextView>
48
+ <View alt="" stretchiness="1"/>
49
+ </VBoxView>
50
+ <View width="25"/>
51
+ <HBoxView rightInset="0">
52
+ <VBoxView alt="">
53
+ <View alt="" stretchiness="1"/>
54
+ <OpenURL target="main" url="http://www.apple.com/itunes/download/">
55
+ <TextView topInset="1" truncation="right" leftInset="0" styleSet="normal14" textJust="left" maxLines="1">
56
+ <Color color="000000">Download</Color>
57
+ </TextView>
58
+ </OpenURL>
59
+ <View alt="" stretchiness="1"/>
60
+ </VBoxView>
61
+ <VBoxView alt="">
62
+ <View alt="" stretchiness="1"/>
63
+ <OpenURL target="main" alt="" url="http://www.apple.com/itunes/download/">
64
+ <PictureButtonView leftInset="2" width="12" topInset="2" picts="plain,pressed,rollover" transparentClicks="1" alt="" url="/images/arrowoutline/arrow_000000_r.png" height="12"/>
65
+ </OpenURL>
66
+ <View alt="" stretchiness="1"/>
67
+ </VBoxView>
68
+ </HBoxView>
69
+ </HBoxView>
70
+ <View rightInset="0" leftInset="0" height="1" backColor="90a1aa"/>
71
+ <View height="0"/>
72
+ </VBoxView>
73
+ </Test>
74
+ <View stretchiness="1">
75
+ <PictureView topInset="0" horizontalBehavior="stretch" height="550" url="/images/gradient/lightblue_short.jpg"/>
76
+ <MatrixView rightInset="0" bottomInset="0" leftInset="0" topInset="0" minWidth="850" rowFormat="100%,*">
77
+ <FontStyle name="descriptionTextColor" color="223a5e"/>
78
+ <FontStyle name="textColor" color="000000"/>
79
+ <FontStyle name="lockupTextColor" color="000000"/>
80
+ <MatrixView rightInset="25" topInset="0" columnFormat="65%,25,35%" bottomInset="10" leftInset="25">
81
+ <VBoxView rightInset="0" topInset="10" leftInset="0">
82
+ <GotoURL target="main" inhibitDragging="false" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewArtist?id=284962371" draggingName="Agile Partners">
83
+ <TextView topInset="0" truncation="right" leftInset="0" rightInset="0" headingLevel="1" styleSet="basic20" textJust="left" maxLines="1">
84
+ <SetFontStyle normalStyle="textColor">
85
+ <b>Agile Partners</b>
86
+ </SetFontStyle>
87
+ </TextView>
88
+ </GotoURL>
89
+ <VBoxView rightInset="0" topInset="15" bottomInset="10" leftInset="0">
90
+ <MatrixView columnFormat="100,10,100%" rowFormat="*">
91
+ <GotoURL target="main" inhibitDragging="false" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=284962368&amp;mt=8" draggingName="GuitarToolkit">
92
+ <PictureView leftInset="0" proportional="1" width="100" topInset="0" verticalAlignment="top" height="100" rightInset="0" alt="GuitarToolkit artwork" reflection="1" mask="/images/masks/coverart/cover_mask_rounded_100x100.png" url="http://a1.phobos.apple.com/us/r30/Purple/fe/c1/bc/mzl.mkqvgpjx.100x100-75.jpg" addShadowSizes="true"/>
93
+ </GotoURL>
94
+ <View/>
95
+ <VBoxView rightInset="0" topInset="0" leftInset="0" stretchiness="1">
96
+ <HBoxView rightInset="0" topInset="0" bottomInset="0" leftInset="0">
97
+ <VBoxView alt="" stretchiness="1">
98
+ <View alt="" stretchiness="1"/>
99
+ <TextView topInset="0" truncation="right" leftInset="0" rightInset="0" styleSet="basic14Bold" textJust="left" maxLines="3">
100
+ <SetFontStyle normalStyle="lockupTextColor">
101
+ <GotoURL target="main" inhibitDragging="false" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=284962368&amp;mt=8" draggingName="GuitarToolkit">
102
+ <B>GuitarToolkit</B>
103
+ </GotoURL>
104
+ </SetFontStyle>
105
+ </TextView>
106
+ <View alt="" stretchiness="1"/>
107
+ </VBoxView>
108
+ </HBoxView>
109
+ <View minHeight="5" stretchiness="1"/>
110
+ <HBoxView rightInset="0" topInset="0" leftInset="0" stretchiness="1">
111
+ <TextView topInset="0" truncation="right" leftInset="0" squishiness="1" styleSet="basic11" textJust="left" maxLines="1">
112
+ <SetFontStyle normalStyle="lockupTextColor">
113
+
114
+
115
+ Category: Music
116
+
117
+ </SetFontStyle>
118
+ </TextView>
119
+ </HBoxView>
120
+ <TextView topInset="0" truncation="right" leftInset="0" rightInset="0" styleSet="basic11" textJust="left" maxLines="1">
121
+ <SetFontStyle normalStyle="lockupTextColor">
122
+
123
+
124
+ Released
125
+
126
+ Jul 07, 2008
127
+
128
+ </SetFontStyle>
129
+ </TextView>
130
+ <TextView topInset="0" truncation="right" leftInset="0" rightInset="0" styleSet="basic11" textJust="left" maxLines="1">
131
+ <SetFontStyle normalStyle="lockupTextColor">
132
+ Seller: Agile Partners Technologies, LLC
133
+ </SetFontStyle>
134
+ </TextView>
135
+ <TextView topInset="0" truncation="right" leftInset="0" rightInset="0" styleSet="basic11" textJust="left" maxLines="1">
136
+ <SetFontStyle normalStyle="lockupTextColor">© 2008 Agile Partners Technologies, LLC</SetFontStyle>
137
+ </TextView>
138
+ <TextView topInset="0" truncation="right" leftInset="0" rightInset="0" styleSet="basic11" textJust="left" maxLines="1">
139
+ <SetFontStyle normalStyle="lockupTextColor">
140
+ Version: 1.2.2
141
+ </SetFontStyle>
142
+ </TextView>
143
+ <TextView topInset="0" truncation="right" leftInset="0" rightInset="0" styleSet="basic11" textJust="left" maxLines="1">
144
+ <SetFontStyle normalStyle="lockupTextColor">
145
+ 5.9 MB
146
+ </SetFontStyle>
147
+ </TextView>
148
+ <VBoxView topInset="6">
149
+ <HBoxView topInset="3">
150
+ <VBoxView alt="">
151
+ <View alt="" stretchiness="1"/>
152
+ <TextView topInset="0" truncation="right" leftInset="0" styleSet="basic11" textJust="left" maxLines="1">
153
+ <SetFontStyle normalStyle="lockupTextColor">
154
+ <b>$9.99</b>
155
+ </SetFontStyle>
156
+ </TextView>
157
+ <View alt="" stretchiness="1"/>
158
+ </VBoxView>
159
+ <VBoxView alt="">
160
+ <View alt="" stretchiness="1"/>
161
+ <Test comparison="ge" value="0" property="restrict games">
162
+ <Buy buy-only="0" freeDownload="0" preOrder="0" buyParams="productType=C&amp;salableAdamId=284962368&amp;pricingParameters=STDQ&amp;price=9990&amp;ct-id=14" itemName="GuitarToolkit">
163
+ <PictureButtonView leftInset="5" width="115" topInset="1" picts="plain,pressed,rollover" alt="Buy App, GuitarToolkit: $9.99" url="/images/btn_buyapp_16.png" height="16"/>
164
+ </Buy>
165
+ </Test>
166
+ <Test comparison="lt" value="0" property="restrict games">
167
+ <PictureView leftInset="5" width="115" topInset="1" height="16" alt="disabled Buy App, GuitarToolkit: $9.99" url="/images/btn_buyapp_16_0.png"/>
168
+ </Test>
169
+ <View alt="" stretchiness="1"/>
170
+ </VBoxView>
171
+ </HBoxView>
172
+ </VBoxView>
173
+ </VBoxView>
174
+ </MatrixView>
175
+ </VBoxView>
176
+ <View height="30"/>
177
+ <View rightInset="0" viewName="ScreenshotFrame" leftInset="0">
178
+ <View>
179
+ <Test comparison="greater or equal" value="7.0.0" property="iTunes version">
180
+ <View rightInset="0" topInset="0" alt="" bottomInset="0" leftInset="0">
181
+ <PictureButtonView leftInset="0" topInset="0" cap="4" rightInset="0" color="rgba(0,0,0,0.05)" mask="/images/masks/rounded_box.png" bottomInset="0">
182
+
183
+ </PictureButtonView>
184
+ </View>
185
+ </Test>
186
+ <Test comparison="less" value="7.0.0" property="iTunes version">
187
+ <VBoxView rightInset="1" topInset="0" bottomInset="0" leftInset="1">
188
+ <HBoxView leftInset="0" rightInset="0" height="1">
189
+ <View width="3"/>
190
+ <View stretchiness="1" backColor="c2cbd6"/>
191
+ <View width="3"/>
192
+ </HBoxView>
193
+ <HBoxView leftInset="0" rightInset="0" height="1">
194
+ <View width="2"/>
195
+ <View width="1" backColor="c2cbd6"/>
196
+ <View stretchiness="1" backColor="c2cbd6"/>
197
+ <View width="1" backColor="c2cbd6"/>
198
+ <View width="2"/>
199
+ </HBoxView>
200
+ <HBoxView leftInset="0" rightInset="0" height="1">
201
+ <View width="1"/>
202
+ <View width="1" backColor="c2cbd6"/>
203
+ <View stretchiness="1" backColor="c2cbd6"/>
204
+ <View width="1" backColor="c2cbd6"/>
205
+ <View width="1"/>
206
+ </HBoxView>
207
+ <HBoxView leftInset="0" rightInset="0" stretchiness="1">
208
+ <View width="1" backColor="c2cbd6"/>
209
+ <View stretchiness="1" backColor="c2cbd6"/>
210
+ <View width="1" backColor="c2cbd6"/>
211
+ </HBoxView>
212
+ <HBoxView leftInset="0" rightInset="0" height="1">
213
+ <View width="1"/>
214
+ <View width="1" backColor="c2cbd6"/>
215
+ <View stretchiness="1" backColor="c2cbd6"/>
216
+ <View width="1" backColor="c2cbd6"/>
217
+ <View width="1"/>
218
+ </HBoxView>
219
+ <HBoxView leftInset="0" rightInset="0" height="1">
220
+ <View width="2"/>
221
+ <View width="1" backColor="c2cbd6"/>
222
+ <View stretchiness="1" backColor="c2cbd6"/>
223
+ <View width="1" backColor="c2cbd6"/>
224
+ <View width="2"/>
225
+ </HBoxView>
226
+ <HBoxView leftInset="0" rightInset="0" height="1">
227
+ <View width="3"/>
228
+ <View stretchiness="1" backColor="c2cbd6"/>
229
+ <View width="3"/>
230
+ </HBoxView>
231
+ </VBoxView>
232
+ </Test>
233
+ <View>
234
+ <VBoxView>
235
+ <VBoxView alt="" height="20">
236
+ <View alt="" stretchiness="1"/>
237
+ <HBoxView alt="">
238
+ <View alt="" stretchiness="1"/>
239
+ <HBoxView>
240
+ <Test comparison="greater or equal" value="7.0.0" property="iTunes version">
241
+ <View rightInset="1" width="7" alt="" leftInset="1" height="7">
242
+ <PictureButtonView leftInset="0" topInset="0" transparentClicks="1" rightInset="0" color="rgb(65,69,74)" alt="selected page 1 of 5" mask="/images/swoosh/swoosh_indicator_1_mask.png" bottomInset="0">
243
+
244
+ </PictureButtonView>
245
+ </View>
246
+ <PictureView leftInset="1" width="7" transparentClicks="1" height="7" rightInset="1" alt="" url="/images/swoosh/swoosh_indicator_41454a_1.png"/>
247
+ </Test>
248
+ <LoadFrameURL transitionMovement="cos" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/screenshotWidget?id=284962368&amp;direction=right&amp;dimpleStartIndex=1" transitionDuration="500" frameViewName="ScreenshotFrame" transitionModifier="right" transitionType="dissolve" transitionEndViewName="ScreenshotTransitionFrame" transitionStartViewName="ScreenshotTransitionFrame">
249
+ <Test comparison="greater or equal" value="7.0.0" property="iTunes version">
250
+ <View rightInset="1" width="7" alt="" leftInset="1" height="7">
251
+ <PictureButtonView leftInset="0" topInset="0" transparentClicks="1" rightInset="0" color="rgb(65,69,74)" alt="page 2 of 5" mask="/images/swoosh/swoosh_indicator_0_mask.png" bottomInset="0">
252
+
253
+ </PictureButtonView>
254
+ </View>
255
+ <PictureView leftInset="1" width="7" transparentClicks="1" height="7" rightInset="1" alt="" url="/images/swoosh/swoosh_indicator_41454a_0.png"/>
256
+ </Test>
257
+ </LoadFrameURL>
258
+ <LoadFrameURL transitionMovement="cos" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/screenshotWidget?id=284962368&amp;direction=right&amp;dimpleStartIndex=2" transitionDuration="500" frameViewName="ScreenshotFrame" transitionModifier="right" transitionType="dissolve" transitionEndViewName="ScreenshotTransitionFrame" transitionStartViewName="ScreenshotTransitionFrame">
259
+ <Test comparison="greater or equal" value="7.0.0" property="iTunes version">
260
+ <View rightInset="1" width="7" alt="" leftInset="1" height="7">
261
+ <PictureButtonView leftInset="0" topInset="0" transparentClicks="1" rightInset="0" color="rgb(65,69,74)" alt="page 3 of 5" mask="/images/swoosh/swoosh_indicator_0_mask.png" bottomInset="0">
262
+
263
+ </PictureButtonView>
264
+ </View>
265
+ <PictureView leftInset="1" width="7" transparentClicks="1" height="7" rightInset="1" alt="" url="/images/swoosh/swoosh_indicator_41454a_0.png"/>
266
+ </Test>
267
+ </LoadFrameURL>
268
+ <LoadFrameURL transitionMovement="cos" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/screenshotWidget?id=284962368&amp;direction=right&amp;dimpleStartIndex=3" transitionDuration="500" frameViewName="ScreenshotFrame" transitionModifier="right" transitionType="dissolve" transitionEndViewName="ScreenshotTransitionFrame" transitionStartViewName="ScreenshotTransitionFrame">
269
+ <Test comparison="greater or equal" value="7.0.0" property="iTunes version">
270
+ <View rightInset="1" width="7" alt="" leftInset="1" height="7">
271
+ <PictureButtonView leftInset="0" topInset="0" transparentClicks="1" rightInset="0" color="rgb(65,69,74)" alt="page 4 of 5" mask="/images/swoosh/swoosh_indicator_0_mask.png" bottomInset="0">
272
+
273
+ </PictureButtonView>
274
+ </View>
275
+ <PictureView leftInset="1" width="7" transparentClicks="1" height="7" rightInset="1" alt="" url="/images/swoosh/swoosh_indicator_41454a_0.png"/>
276
+ </Test>
277
+ </LoadFrameURL>
278
+ <LoadFrameURL transitionMovement="cos" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/screenshotWidget?id=284962368&amp;direction=right&amp;dimpleStartIndex=4" transitionDuration="500" frameViewName="ScreenshotFrame" transitionModifier="right" transitionType="dissolve" transitionEndViewName="ScreenshotTransitionFrame" transitionStartViewName="ScreenshotTransitionFrame">
279
+ <Test comparison="greater or equal" value="7.0.0" property="iTunes version">
280
+ <View rightInset="1" width="7" alt="" leftInset="1" height="7">
281
+ <PictureButtonView leftInset="0" topInset="0" transparentClicks="1" rightInset="0" color="rgb(65,69,74)" alt="page 5 of 5" mask="/images/swoosh/swoosh_indicator_0_mask.png" bottomInset="0">
282
+
283
+ </PictureButtonView>
284
+ </View>
285
+ <PictureView leftInset="1" width="7" transparentClicks="1" height="7" rightInset="1" alt="" url="/images/swoosh/swoosh_indicator_41454a_0.png"/>
286
+ </Test>
287
+ </LoadFrameURL>
288
+ </HBoxView>
289
+ <View alt="" stretchiness="1"/>
290
+ </HBoxView>
291
+ <View alt="" stretchiness="1"/>
292
+ </VBoxView>
293
+ <View rightInset="20" viewName="ScreenshotTransitionFrame" leftInset="20" height="460">
294
+ <VBoxView alt="" height="460">
295
+ <View alt="" stretchiness="1"/>
296
+ <HBoxView alt="">
297
+ <View alt="" stretchiness="1"/>
298
+ <LoadFrameURL transitionMovement="cos" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/screenshotWidget?index=1&amp;id=284962368" transitionDuration="500" frameViewName="ScreenshotFrame" transitionModifier="right" transitionType="dissolve" transitionEndViewName="ScreenshotTransitionFrame" transitionStartViewName="ScreenshotTransitionFrame">
299
+ <PictureView width="320" borderColor="a9a9a9" height="460" alt="Application Screenshot" url="http://a1.phobos.apple.com/us/r30/Purple/42/e8/ee/mzl.nlhpkvmc.480x480-75.jpg" borderWidth="1"/>
300
+ </LoadFrameURL>
301
+ <View alt="" stretchiness="1"/>
302
+ </HBoxView>
303
+ <View alt="" stretchiness="1"/>
304
+ </VBoxView>
305
+ </View>
306
+ <VBoxView alt="" height="40">
307
+ <View alt="" stretchiness="1"/>
308
+ <HBoxView alt="">
309
+ <View alt="" stretchiness="1"/>
310
+ <LoadFrameURL transitionMovement="cos" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/screenshotWidget?index=4&amp;id=284962368" transitionDuration="500" frameViewName="ScreenshotFrame" transitionModifier="left" transitionType="dissolve" transitionEndViewName="ScreenshotTransitionFrame" transitionStartViewName="ScreenshotTransitionFrame">
311
+ <Test comparison="greater or equal" value="7.0.0" property="iTunes version">
312
+ <View width="35" alt="" height="27">
313
+ <PictureButtonView leftInset="0" topInset="0" picts="plain,pressed" transparentClicks="1" rightInset="0" color="rgb(51,51,51)" alt="previous page" mask="/images/swoosh_screenshots/arrow_left_mask.png" bottomInset="0">
314
+
315
+ </PictureButtonView>
316
+ </View>
317
+ <PictureButtonView width="35" picts="plain,pressed" transparentClicks="1" alt="" url="/images/swoosh_screenshots/arrow_left_default.png" height="27"/>
318
+ </Test>
319
+ </LoadFrameURL>
320
+ <LoadFrameURL transitionMovement="cos" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/screenshotWidget?index=1&amp;id=284962368" transitionDuration="500" frameViewName="ScreenshotFrame" transitionModifier="right" transitionType="dissolve" transitionEndViewName="ScreenshotTransitionFrame" transitionStartViewName="ScreenshotTransitionFrame">
321
+ <Test comparison="greater or equal" value="7.0.0" property="iTunes version">
322
+ <View width="34" alt="" height="27">
323
+ <PictureButtonView leftInset="0" topInset="0" picts="plain,pressed" transparentClicks="1" rightInset="0" color="rgb(51,51,51)" alt="next page" mask="/images/swoosh_screenshots/arrow_right_mask.png" bottomInset="0">
324
+
325
+ </PictureButtonView>
326
+ </View>
327
+ <PictureButtonView width="34" picts="plain,pressed" transparentClicks="1" alt="" url="/images/swoosh_screenshots/arrow_right_default.png" height="27"/>
328
+ </Test>
329
+ </LoadFrameURL>
330
+ <View alt="" stretchiness="1"/>
331
+ </HBoxView>
332
+ <View alt="" stretchiness="1"/>
333
+ </VBoxView>
334
+ </VBoxView>
335
+ </View>
336
+ </View>
337
+ </View>
338
+ <View height="30"/>
339
+ <VBoxView>
340
+ <View rightInset="0" viewName="RatingsFrame" bottomInset="30" leftInset="0">
341
+ <View>
342
+ <Test comparison="greater or equal" value="7.0.0" property="iTunes version">
343
+ <View rightInset="0" topInset="0" alt="" bottomInset="0" leftInset="0">
344
+ <PictureButtonView leftInset="0" topInset="0" cap="4" rightInset="0" color="rgba(0,0,0,0.05)" mask="/images/masks/rounded_box.png" bottomInset="0">
345
+
346
+ </PictureButtonView>
347
+ </View>
348
+ </Test>
349
+ <Test comparison="less" value="7.0.0" property="iTunes version">
350
+ <VBoxView rightInset="1" topInset="0" bottomInset="0" leftInset="1">
351
+ <HBoxView leftInset="0" rightInset="0" height="1">
352
+ <View width="3"/>
353
+ <View stretchiness="1" backColor="c2cbd6"/>
354
+ <View width="3"/>
355
+ </HBoxView>
356
+ <HBoxView leftInset="0" rightInset="0" height="1">
357
+ <View width="2"/>
358
+ <View width="1" backColor="c2cbd6"/>
359
+ <View stretchiness="1" backColor="c2cbd6"/>
360
+ <View width="1" backColor="c2cbd6"/>
361
+ <View width="2"/>
362
+ </HBoxView>
363
+ <HBoxView leftInset="0" rightInset="0" height="1">
364
+ <View width="1"/>
365
+ <View width="1" backColor="c2cbd6"/>
366
+ <View stretchiness="1" backColor="c2cbd6"/>
367
+ <View width="1" backColor="c2cbd6"/>
368
+ <View width="1"/>
369
+ </HBoxView>
370
+ <HBoxView leftInset="0" rightInset="0" stretchiness="1">
371
+ <View width="1" backColor="c2cbd6"/>
372
+ <View stretchiness="1" backColor="c2cbd6"/>
373
+ <View width="1" backColor="c2cbd6"/>
374
+ </HBoxView>
375
+ <HBoxView leftInset="0" rightInset="0" height="1">
376
+ <View width="1"/>
377
+ <View width="1" backColor="c2cbd6"/>
378
+ <View stretchiness="1" backColor="c2cbd6"/>
379
+ <View width="1" backColor="c2cbd6"/>
380
+ <View width="1"/>
381
+ </HBoxView>
382
+ <HBoxView leftInset="0" rightInset="0" height="1">
383
+ <View width="2"/>
384
+ <View width="1" backColor="c2cbd6"/>
385
+ <View stretchiness="1" backColor="c2cbd6"/>
386
+ <View width="1" backColor="c2cbd6"/>
387
+ <View width="2"/>
388
+ </HBoxView>
389
+ <HBoxView leftInset="0" rightInset="0" height="1">
390
+ <View width="3"/>
391
+ <View stretchiness="1" backColor="c2cbd6"/>
392
+ <View width="3"/>
393
+ </HBoxView>
394
+ </VBoxView>
395
+ </Test>
396
+ <View>
397
+ <VBoxView topInset="10" rightInset="10" bottomInset="10" leftInset="10">
398
+ <VBoxView alt="">
399
+ <View alt="" stretchiness="1"/>
400
+ <TextView topInset="0" truncation="right" leftInset="0" headingLevel="2" styleSet="basic16" textJust="left" maxLines="1">
401
+ <SetFontStyle normalStyle="descriptionTextColor">
402
+ <b>CUSTOMER RATINGS</b>
403
+ </SetFontStyle>
404
+ </TextView>
405
+ <View alt="" stretchiness="1"/>
406
+ </VBoxView>
407
+ <View height="5"/>
408
+ <Test id="1234" property="toggle">
409
+ <VBoxView topInset="8">
410
+ <HBoxView>
411
+ <Test comparison="ge" value="8.0.1" property="iTunes version">
412
+ <VBoxView topInset="1" alt="" bottomInset="0">
413
+ <View alt="" stretchiness="1"/>
414
+ <Toggle toggle-id="1234">
415
+ <View rightInset="3" width="9" alt="" height="9">
416
+ <PictureButtonView leftInset="0" topInset="0" transparentClicks="1" rightInset="0" color="rgb(34,58,94)" alt="collapsed" mask="/images/masks/disclosure_mask_closed.png" bottomInset="0">
417
+
418
+ </PictureButtonView>
419
+ </View>
420
+ </Toggle>
421
+ <View alt="" stretchiness="1"/>
422
+ </VBoxView>
423
+ <View width="0"/>
424
+ </Test>
425
+ <VBoxView alt="">
426
+ <View alt="" stretchiness="1"/>
427
+ <TextView topInset="0" truncation="right" leftInset="0" styleSet="basic13" textJust="left" maxLines="1">
428
+ <SetFontStyle normalStyle="textColor">Average rating for the current version: </SetFontStyle>
429
+ </TextView>
430
+ <View alt="" stretchiness="1"/>
431
+ </VBoxView>
432
+ <VBoxView alt="">
433
+ <View alt="" stretchiness="1"/>
434
+ <HBoxView rightInset="6" alt="4 and a half stars" leftInset="6">
435
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_000000.png"/>
436
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_000000.png"/>
437
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_000000.png"/>
438
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_000000.png"/>
439
+ <TextView topInset="0" truncation="right" leftInset="0" styleSet="basic11" alt="" textJust="left" maxLines="1">
440
+ <b>
441
+ <Color color="000000">½</Color>
442
+ </b>
443
+ </TextView>
444
+ </HBoxView>
445
+ <View alt="" stretchiness="1"/>
446
+ </VBoxView>
447
+ <VBoxView alt="">
448
+ <View alt="" stretchiness="1"/>
449
+ <TextView topInset="0" truncation="right" leftInset="0" styleSet="basic11" textJust="left" maxLines="1">
450
+ <SetFontStyle normalStyle="descriptionTextColor">330 ratings</SetFontStyle>
451
+ </TextView>
452
+ <View alt="" stretchiness="1"/>
453
+ </VBoxView>
454
+ <View stretchiness="1"/>
455
+ </HBoxView>
456
+ <View height="10"/>
457
+ <View height="1" backColor="bac0c7"/>
458
+ </VBoxView>
459
+ <VBoxView topInset="8">
460
+ <HBoxView>
461
+ <VBoxView topInset="1" alt="" bottomInset="0">
462
+ <View alt="" stretchiness="1"/>
463
+ <Toggle toggle-id="1234">
464
+ <View rightInset="3" width="9" alt="" height="9">
465
+ <PictureButtonView leftInset="0" topInset="0" transparentClicks="1" rightInset="0" color="rgb(34,58,94)" alt="expanded" mask="/images/masks/disclosure_mask_open.png" bottomInset="0">
466
+
467
+ </PictureButtonView>
468
+ </View>
469
+ </Toggle>
470
+ <View alt="" stretchiness="1"/>
471
+ </VBoxView>
472
+ <VBoxView alt="">
473
+ <View alt="" stretchiness="1"/>
474
+ <TextView topInset="0" truncation="right" leftInset="0" styleSet="basic13" textJust="left" maxLines="1">
475
+ <SetFontStyle normalStyle="textColor">Average rating for the current version: </SetFontStyle>
476
+ </TextView>
477
+ <View alt="" stretchiness="1"/>
478
+ </VBoxView>
479
+ <VBoxView alt="">
480
+ <View alt="" stretchiness="1"/>
481
+ <HBoxView rightInset="6" alt="4 and a half stars" leftInset="6">
482
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_000000.png"/>
483
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_000000.png"/>
484
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_000000.png"/>
485
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_000000.png"/>
486
+ <TextView topInset="0" truncation="right" leftInset="0" styleSet="basic11" alt="" textJust="left" maxLines="1">
487
+ <b>
488
+ <Color color="000000">½</Color>
489
+ </b>
490
+ </TextView>
491
+ </HBoxView>
492
+ <View alt="" stretchiness="1"/>
493
+ </VBoxView>
494
+ <VBoxView alt="">
495
+ <View alt="" stretchiness="1"/>
496
+ <TextView topInset="0" truncation="right" leftInset="0" styleSet="basic11" textJust="left" maxLines="1">
497
+ <SetFontStyle normalStyle="descriptionTextColor">330 ratings</SetFontStyle>
498
+ </TextView>
499
+ <View alt="" stretchiness="1"/>
500
+ </VBoxView>
501
+ <View stretchiness="1"/>
502
+ </HBoxView>
503
+ <MatrixView columnFormat="*,*,*" topInset="6" leftInset="10" rightInset="0" stretchiness="1">
504
+ <VBoxView>
505
+ <HBoxView rightInset="5" alt="5 stars">
506
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_333366.png"/>
507
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_333366.png"/>
508
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_333366.png"/>
509
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_333366.png"/>
510
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_333366.png"/>
511
+ </HBoxView>
512
+ <HBoxView rightInset="5" alt="4 stars">
513
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_333366.png"/>
514
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_333366.png"/>
515
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_333366.png"/>
516
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_333366.png"/>
517
+ </HBoxView>
518
+ <HBoxView rightInset="5" alt="3 stars">
519
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_333366.png"/>
520
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_333366.png"/>
521
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_333366.png"/>
522
+ </HBoxView>
523
+ <HBoxView rightInset="5" alt="2 stars">
524
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_333366.png"/>
525
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_333366.png"/>
526
+ </HBoxView>
527
+ <HBoxView rightInset="5" alt="1 star">
528
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_333366.png"/>
529
+ </HBoxView>
530
+ </VBoxView>
531
+ <MatrixView width="100" topInset="0" rowFormat="*12,*,12,*,12,*,12,*,12,*">
532
+ <View height="1" backColor="bac0c7"/>
533
+ <View width="100" backColor="223a5e"/>
534
+ <View height="1" backColor="bac0c7"/>
535
+ <View width="22" backColor="223a5e"/>
536
+ <View height="1" backColor="bac0c7"/>
537
+ <View width="9" backColor="223a5e"/>
538
+ <View height="1" backColor="bac0c7"/>
539
+ <View width="3" backColor="223a5e"/>
540
+ <View height="1" backColor="bac0c7"/>
541
+ <View width="7" backColor="223a5e"/>
542
+ <View height="1" backColor="bac0c7"/>
543
+ </MatrixView>
544
+ <VBoxView>
545
+ <TextView topInset="2" leftInset="5" styleSet="basic10">
546
+ <SetFontStyle normalStyle="descriptionTextColor">231</SetFontStyle>
547
+ </TextView>
548
+ <TextView topInset="2" leftInset="5" styleSet="basic10">
549
+ <SetFontStyle normalStyle="descriptionTextColor">52</SetFontStyle>
550
+ </TextView>
551
+ <TextView topInset="2" leftInset="5" styleSet="basic10">
552
+ <SetFontStyle normalStyle="descriptionTextColor">21</SetFontStyle>
553
+ </TextView>
554
+ <TextView topInset="2" leftInset="5" styleSet="basic10">
555
+ <SetFontStyle normalStyle="descriptionTextColor">9</SetFontStyle>
556
+ </TextView>
557
+ <TextView topInset="2" leftInset="5" styleSet="basic10">
558
+ <SetFontStyle normalStyle="descriptionTextColor">17</SetFontStyle>
559
+ </TextView>
560
+ </VBoxView>
561
+ </MatrixView>
562
+ <View height="10"/>
563
+ <View height="1" backColor="bac0c7"/>
564
+ </VBoxView>
565
+ </Test>
566
+ <Test id="5678" property="toggle">
567
+ <VBoxView topInset="8">
568
+ <HBoxView>
569
+ <VBoxView topInset="1" alt="" bottomInset="0">
570
+ <View alt="" stretchiness="1"/>
571
+ <Toggle toggle-id="5678">
572
+ <View rightInset="3" width="9" alt="" height="9">
573
+ <PictureButtonView leftInset="0" topInset="0" transparentClicks="1" rightInset="0" color="rgb(34,58,94)" alt="expanded" mask="/images/masks/disclosure_mask_open.png" bottomInset="0">
574
+
575
+ </PictureButtonView>
576
+ </View>
577
+ </Toggle>
578
+ <View alt="" stretchiness="1"/>
579
+ </VBoxView>
580
+ <VBoxView alt="">
581
+ <View alt="" stretchiness="1"/>
582
+ <TextView topInset="0" truncation="right" leftInset="0" styleSet="basic13" textJust="left" maxLines="1">
583
+ <SetFontStyle normalStyle="textColor">Average rating for all versions: </SetFontStyle>
584
+ </TextView>
585
+ <View alt="" stretchiness="1"/>
586
+ </VBoxView>
587
+ <VBoxView alt="">
588
+ <View alt="" stretchiness="1"/>
589
+ <HBoxView rightInset="6" alt="4 and a half stars" leftInset="6">
590
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_000000.png"/>
591
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_000000.png"/>
592
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_000000.png"/>
593
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_000000.png"/>
594
+ <TextView topInset="0" truncation="right" leftInset="0" styleSet="basic11" alt="" textJust="left" maxLines="1">
595
+ <b>
596
+ <Color color="000000">½</Color>
597
+ </b>
598
+ </TextView>
599
+ </HBoxView>
600
+ <View alt="" stretchiness="1"/>
601
+ </VBoxView>
602
+ <VBoxView alt="">
603
+ <View alt="" stretchiness="1"/>
604
+ <TextView topInset="0" truncation="right" leftInset="0" styleSet="basic11" textJust="left" maxLines="1">
605
+ <SetFontStyle normalStyle="descriptionTextColor">582 ratings</SetFontStyle>
606
+ </TextView>
607
+ <View alt="" stretchiness="1"/>
608
+ </VBoxView>
609
+ <View stretchiness="1"/>
610
+ </HBoxView>
611
+ <MatrixView columnFormat="*,*,*" topInset="6" leftInset="10" rightInset="0" stretchiness="1">
612
+ <VBoxView>
613
+ <HBoxView rightInset="5" alt="5 stars">
614
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_333366.png"/>
615
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_333366.png"/>
616
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_333366.png"/>
617
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_333366.png"/>
618
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_333366.png"/>
619
+ </HBoxView>
620
+ <HBoxView rightInset="5" alt="4 stars">
621
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_333366.png"/>
622
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_333366.png"/>
623
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_333366.png"/>
624
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_333366.png"/>
625
+ </HBoxView>
626
+ <HBoxView rightInset="5" alt="3 stars">
627
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_333366.png"/>
628
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_333366.png"/>
629
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_333366.png"/>
630
+ </HBoxView>
631
+ <HBoxView rightInset="5" alt="2 stars">
632
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_333366.png"/>
633
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_333366.png"/>
634
+ </HBoxView>
635
+ <HBoxView rightInset="5" alt="1 star">
636
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_333366.png"/>
637
+ </HBoxView>
638
+ </VBoxView>
639
+ <MatrixView width="100" topInset="0" rowFormat="*12,*,12,*,12,*,12,*,12,*">
640
+ <View height="1" backColor="bac0c7"/>
641
+ <View width="100" backColor="223a5e"/>
642
+ <View height="1" backColor="bac0c7"/>
643
+ <View width="23" backColor="223a5e"/>
644
+ <View height="1" backColor="bac0c7"/>
645
+ <View width="9" backColor="223a5e"/>
646
+ <View height="1" backColor="bac0c7"/>
647
+ <View width="5" backColor="223a5e"/>
648
+ <View height="1" backColor="bac0c7"/>
649
+ <View width="5" backColor="223a5e"/>
650
+ <View height="1" backColor="bac0c7"/>
651
+ </MatrixView>
652
+ <VBoxView>
653
+ <TextView topInset="2" leftInset="5" styleSet="basic10">
654
+ <SetFontStyle normalStyle="descriptionTextColor">402</SetFontStyle>
655
+ </TextView>
656
+ <TextView topInset="2" leftInset="5" styleSet="basic10">
657
+ <SetFontStyle normalStyle="descriptionTextColor">95</SetFontStyle>
658
+ </TextView>
659
+ <TextView topInset="2" leftInset="5" styleSet="basic10">
660
+ <SetFontStyle normalStyle="descriptionTextColor">38</SetFontStyle>
661
+ </TextView>
662
+ <TextView topInset="2" leftInset="5" styleSet="basic10">
663
+ <SetFontStyle normalStyle="descriptionTextColor">24</SetFontStyle>
664
+ </TextView>
665
+ <TextView topInset="2" leftInset="5" styleSet="basic10">
666
+ <SetFontStyle normalStyle="descriptionTextColor">23</SetFontStyle>
667
+ </TextView>
668
+ </VBoxView>
669
+ </MatrixView>
670
+ <View height="10"/>
671
+ <View height="1" backColor="bac0c7"/>
672
+ </VBoxView>
673
+ <VBoxView topInset="8">
674
+ <HBoxView>
675
+ <Test comparison="ge" value="8.0.1" property="iTunes version">
676
+ <VBoxView topInset="1" alt="" bottomInset="0">
677
+ <View alt="" stretchiness="1"/>
678
+ <Toggle toggle-id="5678">
679
+ <View rightInset="3" width="9" alt="" height="9">
680
+ <PictureButtonView leftInset="0" topInset="0" transparentClicks="1" rightInset="0" color="rgb(34,58,94)" alt="collapsed" mask="/images/masks/disclosure_mask_closed.png" bottomInset="0">
681
+
682
+ </PictureButtonView>
683
+ </View>
684
+ </Toggle>
685
+ <View alt="" stretchiness="1"/>
686
+ </VBoxView>
687
+ <View width="0"/>
688
+ </Test>
689
+ <VBoxView alt="">
690
+ <View alt="" stretchiness="1"/>
691
+ <TextView topInset="0" truncation="right" leftInset="0" styleSet="basic13" textJust="left" maxLines="1">
692
+ <SetFontStyle normalStyle="textColor">Average rating for all versions: </SetFontStyle>
693
+ </TextView>
694
+ <View alt="" stretchiness="1"/>
695
+ </VBoxView>
696
+ <VBoxView alt="">
697
+ <View alt="" stretchiness="1"/>
698
+ <HBoxView rightInset="6" alt="4 and a half stars" leftInset="6">
699
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_000000.png"/>
700
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_000000.png"/>
701
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_000000.png"/>
702
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_000000.png"/>
703
+ <TextView topInset="0" truncation="right" leftInset="0" styleSet="basic11" alt="" textJust="left" maxLines="1">
704
+ <b>
705
+ <Color color="000000">½</Color>
706
+ </b>
707
+ </TextView>
708
+ </HBoxView>
709
+ <View alt="" stretchiness="1"/>
710
+ </VBoxView>
711
+ <VBoxView alt="">
712
+ <View alt="" stretchiness="1"/>
713
+ <TextView topInset="0" truncation="right" leftInset="0" styleSet="basic11" textJust="left" maxLines="1">
714
+ <SetFontStyle normalStyle="descriptionTextColor">582 ratings</SetFontStyle>
715
+ </TextView>
716
+ <View alt="" stretchiness="1"/>
717
+ </VBoxView>
718
+ <View stretchiness="1"/>
719
+ </HBoxView>
720
+ <View height="10"/>
721
+ <View height="1" backColor="bac0c7"/>
722
+ </VBoxView>
723
+ </Test>
724
+ <!-- for frame replace
725
+ -->
726
+ <HBoxView topInset="10" viewName="inlineRatingView" leftInset="0">
727
+ <TextView topInset="2" truncation="right" leftInset="0" styleSet="basic11" textJust="left" maxLines="1">
728
+ <SetFontStyle normalStyle="textColor">
729
+ <b>
730
+
731
+ Rate this software:
732
+ </b>
733
+ </SetFontStyle>
734
+ </TextView>
735
+ <PopupButtonView leftInset="3" topInset="0" height="18" action="Rating" normalStyle="lucida11" value="1" initialValue="1">
736
+ <GotoURL target="main" url="https://buy.itunes.apple.com/WebObjects/MZFinance.woa/wa/rateContentInline?type=Purple+Software&amp;id=284962368&amp;rating=0">
737
+ <MenuItem>Select</MenuItem>
738
+ </GotoURL>
739
+ <GotoURL target="main" url="https://buy.itunes.apple.com/WebObjects/MZFinance.woa/wa/rateContentInline?type=Purple+Software&amp;id=284962368&amp;rating=5">
740
+ <MenuItem>Five Stars - Highest</MenuItem>
741
+ </GotoURL>
742
+ <GotoURL target="main" url="https://buy.itunes.apple.com/WebObjects/MZFinance.woa/wa/rateContentInline?type=Purple+Software&amp;id=284962368&amp;rating=4">
743
+ <MenuItem>Four Stars</MenuItem>
744
+ </GotoURL>
745
+ <GotoURL target="main" url="https://buy.itunes.apple.com/WebObjects/MZFinance.woa/wa/rateContentInline?type=Purple+Software&amp;id=284962368&amp;rating=3">
746
+ <MenuItem>Three Stars</MenuItem>
747
+ </GotoURL>
748
+ <GotoURL target="main" url="https://buy.itunes.apple.com/WebObjects/MZFinance.woa/wa/rateContentInline?type=Purple+Software&amp;id=284962368&amp;rating=2">
749
+ <MenuItem>Two Stars</MenuItem>
750
+ </GotoURL>
751
+ <GotoURL target="main" url="https://buy.itunes.apple.com/WebObjects/MZFinance.woa/wa/rateContentInline?type=Purple+Software&amp;id=284962368&amp;rating=1">
752
+ <MenuItem>One Star - Lowest</MenuItem>
753
+ </GotoURL>
754
+ </PopupButtonView>
755
+ </HBoxView>
756
+ </VBoxView>
757
+ </View>
758
+ </View>
759
+ </View>
760
+ <VBoxView leftInset="0" rightInset="0" stretchiness="1">
761
+ <HBoxView>
762
+ <TextView topInset="0" truncation="right" leftInset="0" headingLevel="2" styleSet="basic16" textJust="left" maxLines="1">
763
+ <SetFontStyle normalStyle="descriptionTextColor">
764
+ <b>CUSTOMER REVIEWS</b>
765
+ </SetFontStyle>
766
+ </TextView>
767
+ <View stretchiness="1" width="10"/>
768
+ <VBoxView>
769
+ <View height="0" stretchiness="1"/>
770
+ <HBoxView rightInset="0">
771
+ <VBoxView alt="">
772
+ <View alt="" stretchiness="1"/>
773
+ <GotoURL target="main" inhibitDragging="false" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?pageNumber=0&amp;type=Purple+Software&amp;id=284962368&amp;sortOrdering=1&amp;onlyLatestVersion=true">
774
+ <TextView topInset="1" truncation="right" leftInset="0" styleSet="basic11" textJust="left" maxLines="1">
775
+ <SetFontStyle normalStyle="textColor">
776
+ <b>131 Reviews For The Current Version</b>
777
+ </SetFontStyle>
778
+ </TextView>
779
+ </GotoURL>
780
+ <View alt="" stretchiness="1"/>
781
+ </VBoxView>
782
+ <VBoxView alt="">
783
+ <View alt="" stretchiness="1"/>
784
+ <GotoURL target="main" inhibitDragging="false" alt="" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?pageNumber=0&amp;type=Purple+Software&amp;id=284962368&amp;sortOrdering=1&amp;onlyLatestVersion=true">
785
+ <PictureButtonView leftInset="2" width="12" topInset="2" picts="plain,pressed,rollover" transparentClicks="1" alt="" url="/images/arrowoutline/arrow_000000_r.png" height="12"/>
786
+ </GotoURL>
787
+ <View alt="" stretchiness="1"/>
788
+ </VBoxView>
789
+ </HBoxView>
790
+ <View height="3"/>
791
+ <HBoxView rightInset="0">
792
+ <VBoxView alt="">
793
+ <View alt="" stretchiness="1"/>
794
+ <GotoURL target="main" inhibitDragging="false" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?pageNumber=0&amp;type=Purple+Software&amp;id=284962368&amp;sortOrdering=1">
795
+ <TextView topInset="1" truncation="right" leftInset="0" styleSet="basic11" textJust="left" maxLines="1">
796
+ <SetFontStyle normalStyle="textColor">
797
+ <b>349 Reviews for All Versions</b>
798
+ </SetFontStyle>
799
+ </TextView>
800
+ </GotoURL>
801
+ <View alt="" stretchiness="1"/>
802
+ </VBoxView>
803
+ <VBoxView alt="">
804
+ <View alt="" stretchiness="1"/>
805
+ <GotoURL target="main" inhibitDragging="false" alt="" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?pageNumber=0&amp;type=Purple+Software&amp;id=284962368&amp;sortOrdering=1">
806
+ <PictureButtonView leftInset="2" width="12" topInset="2" picts="plain,pressed,rollover" transparentClicks="1" alt="" url="/images/arrowoutline/arrow_000000_r.png" height="12"/>
807
+ </GotoURL>
808
+ <View alt="" stretchiness="1"/>
809
+ </VBoxView>
810
+ </HBoxView>
811
+ <HBoxView rightInset="0" topInset="3">
812
+ <VBoxView alt="">
813
+ <View alt="" stretchiness="1"/>
814
+ <GotoURL target="main" inhibitDragging="false" url="https://buy.itunes.apple.com/WebObjects/MZFinance.woa/wa/addUserReview?type=Purple+Software&amp;id=284962368">
815
+ <TextView topInset="1" truncation="right" leftInset="0" styleSet="basic11" textJust="left" maxLines="1">
816
+ <SetFontStyle normalStyle="textColor">
817
+ <b>Write a Review</b>
818
+ </SetFontStyle>
819
+ </TextView>
820
+ </GotoURL>
821
+ <View alt="" stretchiness="1"/>
822
+ </VBoxView>
823
+ <VBoxView alt="">
824
+ <View alt="" stretchiness="1"/>
825
+ <GotoURL target="main" inhibitDragging="false" alt="" url="https://buy.itunes.apple.com/WebObjects/MZFinance.woa/wa/addUserReview?type=Purple+Software&amp;id=284962368">
826
+ <PictureButtonView leftInset="2" width="12" topInset="2" picts="plain,pressed,rollover" transparentClicks="1" alt="" url="/images/arrowoutline/arrow_000000_r.png" height="12"/>
827
+ </GotoURL>
828
+ <View alt="" stretchiness="1"/>
829
+ </VBoxView>
830
+ </HBoxView>
831
+ </VBoxView>
832
+ </HBoxView>
833
+ <View/>
834
+ <View height="15"/>
835
+ <HBoxView>
836
+ <VBoxView stretchiness="1" leftInset="0" rightInset="0">
837
+ <HBoxView rightInset="0" topInset="0" bottomInset="0" leftInset="0">
838
+ <TextView topInset="0" truncation="right" leftInset="0" squishiness="1" headingLevel="3" styleSet="basic12" textJust="left" maxLines="1">
839
+ <SetFontStyle normalStyle="textColor">
840
+ <GotoURL target="main" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?pageNumber=0&amp;type=Purple+Software&amp;id=284962368&amp;userReviewId=36398590">
841
+ <b>Good, but for the money go elsewhere</b>
842
+ </GotoURL>
843
+ </SetFontStyle>
844
+ </TextView>
845
+ <View width="5"/>
846
+ <HBoxView alt="2 stars">
847
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_000000.png"/>
848
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_000000.png"/>
849
+ </HBoxView>
850
+ <View width="5"/>
851
+ </HBoxView>
852
+ <View height="2"/>
853
+ <HBoxView rightInset="0" bottomInset="0" leftInset="0" topInset="0" shouldBeVisible="false">
854
+ <TextView topInset="0" truncation="right" leftInset="0" squishiness="1" styleSet="basic12" textJust="left" maxLines="1">
855
+ <SetFontStyle normalStyle="textColor">
856
+ by
857
+ <GotoURL target="main" inhibitDragging="false" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewUsersUserReviews?personaId=6498877"><b>
858
+ davidk_in_co
859
+ </b></GotoURL>
860
+
861
+ -
862
+ Version 1.2.2
863
+
864
+ -
865
+ Mar 13, 2009
866
+ </SetFontStyle>
867
+ </TextView>
868
+ </HBoxView>
869
+ <View height="5"/>
870
+ <TextView normalStyle="basic11" leftInset="0" stretchiness="1" rightInset="0" styleSet="normal11" textJust="left">
871
+ <SetFontStyle normalStyle="textColor">The tuner works, in a completely quiet room. The metronome is a great little add on, that you can get for free from other apps. The chords/fretboard sounds decent, which is also free or $1 elsewhere. All in all, I'd pay at most $2, $10 give me a bre...    <GotoURL target="main" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?pageNumber=0&amp;type=Purple+Software&amp;id=284962368&amp;userReviewId=36398590"><b>More</b></GotoURL></SetFontStyle>
872
+ </TextView>
873
+ </VBoxView>
874
+ </HBoxView>
875
+ <View height="15"/>
876
+ <HBoxView>
877
+ <VBoxView stretchiness="1" leftInset="0" rightInset="0">
878
+ <HBoxView rightInset="0" topInset="0" bottomInset="0" leftInset="0">
879
+ <TextView topInset="0" truncation="right" leftInset="0" squishiness="1" headingLevel="3" styleSet="basic12" textJust="left" maxLines="1">
880
+ <SetFontStyle normalStyle="textColor">
881
+ <GotoURL target="main" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?pageNumber=0&amp;type=Purple+Software&amp;id=284962368&amp;userReviewId=32911022">
882
+ <b>I'm in Tune</b>
883
+ </GotoURL>
884
+ </SetFontStyle>
885
+ </TextView>
886
+ <View width="5"/>
887
+ <HBoxView alt="5 stars">
888
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_000000.png"/>
889
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_000000.png"/>
890
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_000000.png"/>
891
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_000000.png"/>
892
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_000000.png"/>
893
+ </HBoxView>
894
+ <View width="5"/>
895
+ </HBoxView>
896
+ <View height="2"/>
897
+ <HBoxView rightInset="0" bottomInset="0" leftInset="0" topInset="0" shouldBeVisible="false">
898
+ <TextView topInset="0" truncation="right" leftInset="0" squishiness="1" styleSet="basic12" textJust="left" maxLines="1">
899
+ <SetFontStyle normalStyle="textColor">
900
+ by
901
+ <GotoURL target="main" inhibitDragging="false" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewUsersUserReviews?personaId=642246"><b>
902
+ scatlizard
903
+ </b></GotoURL>
904
+
905
+ -
906
+ Version 1.2.2
907
+
908
+ -
909
+ Mar 3, 2009
910
+ </SetFontStyle>
911
+ </TextView>
912
+ </HBoxView>
913
+ <View height="5"/>
914
+ <TextView normalStyle="basic11" leftInset="0" stretchiness="1" rightInset="0" styleSet="normal11" textJust="left">
915
+ <SetFontStyle normalStyle="textColor">This handy application is well worth $10. The tuner works well, the chord library is very educational, the metronome is always a big help for the rhythmically challenged (ahhh most everyone should use a metronome) the guitar tone is cool too. The ...    <GotoURL target="main" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?pageNumber=0&amp;type=Purple+Software&amp;id=284962368&amp;userReviewId=32911022"><b>More</b></GotoURL></SetFontStyle>
916
+ </TextView>
917
+ </VBoxView>
918
+ </HBoxView>
919
+ <View height="15"/>
920
+ <HBoxView>
921
+ <VBoxView stretchiness="1" leftInset="0" rightInset="0">
922
+ <HBoxView rightInset="0" topInset="0" bottomInset="0" leftInset="0">
923
+ <TextView topInset="0" truncation="right" leftInset="0" squishiness="1" headingLevel="3" styleSet="basic12" textJust="left" maxLines="1">
924
+ <SetFontStyle normalStyle="textColor">
925
+ <GotoURL target="main" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?pageNumber=0&amp;type=Purple+Software&amp;id=284962368&amp;userReviewId=32639175">
926
+ <b>Better than the cheaper apps</b>
927
+ </GotoURL>
928
+ </SetFontStyle>
929
+ </TextView>
930
+ <View width="5"/>
931
+ <HBoxView alt="5 stars">
932
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_000000.png"/>
933
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_000000.png"/>
934
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_000000.png"/>
935
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_000000.png"/>
936
+ <PictureView leftInset="0" width="13" topInset="0" transparentClicks="true" height="13" alt="" url="/images/colored_assets/stars/rating_star_000000.png"/>
937
+ </HBoxView>
938
+ <View width="5"/>
939
+ </HBoxView>
940
+ <View height="2"/>
941
+ <HBoxView rightInset="0" bottomInset="0" leftInset="0" topInset="0" shouldBeVisible="false">
942
+ <TextView topInset="0" truncation="right" leftInset="0" squishiness="1" styleSet="basic12" textJust="left" maxLines="1">
943
+ <SetFontStyle normalStyle="textColor">
944
+ by
945
+ <GotoURL target="main" inhibitDragging="false" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewUsersUserReviews?personaId=6044380"><b>
946
+ A1a1a1a1
947
+ </b></GotoURL>
948
+
949
+ -
950
+ Version 1.2.2
951
+
952
+ -
953
+ Mar 2, 2009
954
+ </SetFontStyle>
955
+ </TextView>
956
+ </HBoxView>
957
+ <View height="5"/>
958
+ <TextView normalStyle="basic11" leftInset="0" stretchiness="1" rightInset="0" styleSet="normal11" textJust="left">
959
+ <SetFontStyle normalStyle="textColor">I spent a lot more trying to find the $1 and $2 apps. Several tuners and chord databases later, I sucked it up, spent $10 and got everything I needed in a single app that worked. I mainly use the chord database and tuner. Everyone needs to recogn...    <GotoURL target="main" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?pageNumber=0&amp;type=Purple+Software&amp;id=284962368&amp;userReviewId=32639175"><b>More</b></GotoURL></SetFontStyle>
960
+ </TextView>
961
+ </VBoxView>
962
+ </HBoxView>
963
+ <View height="16"/>
964
+ <HBoxView rightInset="0">
965
+ <VBoxView alt="">
966
+ <View alt="" stretchiness="1"/>
967
+ <GotoURL target="main" inhibitDragging="false" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?pageNumber=0&amp;type=Purple+Software&amp;id=284962368&amp;sortOrdering=1&amp;onlyLatestVersion=true">
968
+ <TextView topInset="1" truncation="right" leftInset="0" styleSet="basic11" textJust="left" maxLines="1">
969
+ <SetFontStyle normalStyle="textColor">
970
+ <b>131 Reviews For The Current Version</b>
971
+ </SetFontStyle>
972
+ </TextView>
973
+ </GotoURL>
974
+ <View alt="" stretchiness="1"/>
975
+ </VBoxView>
976
+ <VBoxView alt="">
977
+ <View alt="" stretchiness="1"/>
978
+ <GotoURL target="main" inhibitDragging="false" alt="" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?pageNumber=0&amp;type=Purple+Software&amp;id=284962368&amp;sortOrdering=1&amp;onlyLatestVersion=true">
979
+ <PictureButtonView leftInset="2" width="12" topInset="2" picts="plain,pressed,rollover" transparentClicks="1" alt="" url="/images/arrowoutline/arrow_000000_r.png" height="12"/>
980
+ </GotoURL>
981
+ <View alt="" stretchiness="1"/>
982
+ </VBoxView>
983
+ </HBoxView>
984
+ <View height="3"/>
985
+ <HBoxView rightInset="0">
986
+ <VBoxView alt="">
987
+ <View alt="" stretchiness="1"/>
988
+ <GotoURL target="main" inhibitDragging="false" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?pageNumber=0&amp;type=Purple+Software&amp;id=284962368&amp;sortOrdering=1">
989
+ <TextView topInset="1" truncation="right" leftInset="0" styleSet="basic11" textJust="left" maxLines="1">
990
+ <SetFontStyle normalStyle="textColor">
991
+ <b>349 Reviews for All Versions</b>
992
+ </SetFontStyle>
993
+ </TextView>
994
+ </GotoURL>
995
+ <View alt="" stretchiness="1"/>
996
+ </VBoxView>
997
+ <VBoxView alt="">
998
+ <View alt="" stretchiness="1"/>
999
+ <GotoURL target="main" inhibitDragging="false" alt="" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?pageNumber=0&amp;type=Purple+Software&amp;id=284962368&amp;sortOrdering=1">
1000
+ <PictureButtonView leftInset="2" width="12" topInset="2" picts="plain,pressed,rollover" transparentClicks="1" alt="" url="/images/arrowoutline/arrow_000000_r.png" height="12"/>
1001
+ </GotoURL>
1002
+ <View alt="" stretchiness="1"/>
1003
+ </VBoxView>
1004
+ </HBoxView>
1005
+ </VBoxView>
1006
+ </VBoxView>
1007
+ </VBoxView>
1008
+ <View/>
1009
+ <VBoxView rightInset="0" topInset="0" minWidth="260" leftInset="0" stretchiness="1">
1010
+ <View height="20"/>
1011
+ <VBoxView rightInset="0" topInset="0" leftInset="6">
1012
+ <TextView topInset="0" leftInset="0" rightInset="0" headingLevel="2" styleSet="basic16" bottomInset="10">
1013
+ <SetFontStyle normalStyle="descriptionTextColor">
1014
+ <b>APPLICATION DESCRIPTION</b>
1015
+ </SetFontStyle>
1016
+ </TextView>
1017
+ <TextView topInset="0" leftInset="0" rightInset="0" styleSet="normal11">
1018
+ <SetFontStyle normalStyle="descriptionTextColor">Essential guitar utilities, including an amazingly flexible tuner and a library of over 1500 chord variations, all on your iPhone.<br/>
1019
+ <br/>
1020
+ NOTE: the original iPod touch does not have microphone capabilities, therefore there is no tuner support. GuitarToolkit Lite is intended for these users. The tuner works great on 2nd generation iPod touch using headphones with an integrated microphone.<br/>
1021
+ <br/>
1022
+ FEATURES<br/>
1023
+ - Chromatic tuner using the iPhone microphone (or 2nd gen iPod touch with microphone headset)<br/>
1024
+ - Tune to any musical note or choose from 40+ tunings (Standard, Open G, Drop D, etc.)<br/>
1025
+ - Scales references in standard or alternate tuning (touch the fretboard to hear each note)<br/>
1026
+ - Chord library with over 260 chord maps and 1500 variations for quick and easy reference<br/>
1027
+ - Adjustable metronome with visible flash option and multiple sound effects and tempo tap pad<br/>
1028
+ - Support for 12-string guitar, 4-string bass and 5-string bass<br/>
1029
+ - Left handed support for chords and scales</SetFontStyle>
1030
+ </TextView>
1031
+ <View height="0"/>
1032
+ <View height="15"/>
1033
+ </VBoxView>
1034
+ <VBoxView leftInset="5" rightInset="0">
1035
+ <TextView topInset="0" leftInset="0" rightInset="0" headingLevel="3" styleSet="normal11">
1036
+ <SetFontStyle normalStyle="descriptionTextColor">
1037
+ <b>
1038
+ WHAT'S NEW IN THIS VERSION:
1039
+ </b>
1040
+ </SetFontStyle>
1041
+ </TextView>
1042
+ <TextView topInset="0" leftInset="0" rightInset="0" styleSet="normal11" bottomInset="15">
1043
+ <SetFontStyle normalStyle="descriptionTextColor">- 484 new chords for a total of 1,573<br/>
1044
+ - Four all-new chord forms: 7♯9, aug-maj7, mmaj7, and 7sus4<br/>
1045
+ - Several new alternate tunings, including Drop C♯, Open D♭ and Open E♭<br/>
1046
+ - Improved external mic detection on iPod touch 2G with iPhone OS 2.2</SetFontStyle>
1047
+ </TextView>
1048
+ <TextView topInset="0" leftInset="0" rightInset="0" headingLevel="3" styleSet="normal11">
1049
+ <SetFontStyle normalStyle="descriptionTextColor">
1050
+ <b>
1051
+ LANGUAGES:
1052
+ </b>
1053
+ </SetFontStyle>
1054
+ </TextView>
1055
+ <TextView topInset="0" leftInset="0" rightInset="0" styleSet="normal11" bottomInset="15">
1056
+ <SetFontStyle normalStyle="descriptionTextColor">
1057
+ English
1058
+ </SetFontStyle>
1059
+ </TextView>
1060
+ <TextView topInset="0" leftInset="0" rightInset="0" headingLevel="3" styleSet="normal11">
1061
+ <SetFontStyle normalStyle="descriptionTextColor">
1062
+ <b>
1063
+ REQUIREMENTS:
1064
+ </b>
1065
+ </SetFontStyle>
1066
+ </TextView>
1067
+ <TextView topInset="0" leftInset="0" rightInset="0" styleSet="normal11" bottomInset="15">
1068
+ <SetFontStyle normalStyle="descriptionTextColor">
1069
+ Compatible with iPhone and iPod touch
1070
+ <BR/>Requires iPhone 2.0 Software Update
1071
+ </SetFontStyle>
1072
+ </TextView>
1073
+ <View height="10"/>
1074
+ <VBoxView bottomInset="0" leftInset="0" topInset="0">
1075
+ <FontStyle name="exclusivelinksTitleFontStyle" color="000000"/>
1076
+ <FontStyle name="exclusivelinksTextFontStyle" color="000000"/>
1077
+ <VBoxView rightInset="0" topInset="5" bottomInset="0" leftInset="0">
1078
+ <HBoxView rightInset="0" topInset="0" bottomInset="0" leftInset="0">
1079
+ <OpenURL target="main" inhibitDragging="false" url="http://guitartoolkit.com" draggingName="Agile Partners Web Site">
1080
+ <TextView topInset="0" truncation="right" leftInset="0" stretchiness="1" headingLevel="2" styleSet="basic11" alt="Agile Partners Web Site" textJust="left" maxLines="1">
1081
+ <SetFontStyle normalStyle="exclusivelinksTitleFontStyle">
1082
+ <b>Agile Partners Web Site</b>
1083
+ </SetFontStyle>
1084
+ </TextView>
1085
+ </OpenURL>
1086
+ <View width="5"/>
1087
+ <VBoxView topInset="1" alt="">
1088
+ <View alt="" stretchiness="1"/>
1089
+ <OpenURL target="main" inhibitDragging="false" url="http://guitartoolkit.com" draggingName="Agile Partners Web Site">
1090
+ <PictureButtonView width="12" topInset="0" picts="plain,pressed,rollover" transparentClicks="1" rightInset="0" alt="" url="/images/arrowoutline/arrow_000000_r.png" height="12"/>
1091
+ </OpenURL>
1092
+ <View alt="" stretchiness="1"/>
1093
+ </VBoxView>
1094
+ </HBoxView>
1095
+ </VBoxView>
1096
+ <View height="0"/>
1097
+ <VBoxView rightInset="0" topInset="5" bottomInset="0" leftInset="0">
1098
+ <HBoxView rightInset="0" topInset="0" bottomInset="0" leftInset="0">
1099
+ <OpenURL target="main" inhibitDragging="false" url="http://guitartoolkit.com/support" draggingName="GuitarToolkit Support">
1100
+ <TextView topInset="0" truncation="right" leftInset="0" stretchiness="1" headingLevel="2" styleSet="basic11" alt="GuitarToolkit Support" textJust="left" maxLines="1">
1101
+ <SetFontStyle normalStyle="exclusivelinksTitleFontStyle">
1102
+ <b>GuitarToolkit Support</b>
1103
+ </SetFontStyle>
1104
+ </TextView>
1105
+ </OpenURL>
1106
+ <View width="5"/>
1107
+ <VBoxView topInset="1" alt="">
1108
+ <View alt="" stretchiness="1"/>
1109
+ <OpenURL target="main" inhibitDragging="false" url="http://guitartoolkit.com/support" draggingName="GuitarToolkit Support">
1110
+ <PictureButtonView width="12" topInset="0" picts="plain,pressed,rollover" transparentClicks="1" rightInset="0" alt="" url="/images/arrowoutline/arrow_000000_r.png" height="12"/>
1111
+ </OpenURL>
1112
+ <View alt="" stretchiness="1"/>
1113
+ </VBoxView>
1114
+ </HBoxView>
1115
+ </VBoxView>
1116
+ </VBoxView>
1117
+ </VBoxView>
1118
+ <View height="30"/>
1119
+ <View>
1120
+ <FontStyle name="outlineheadersTitleFontStyle" color="22395e"/>
1121
+ <FontStyle name="outlineheadersTextFontStyle" color="22395e"/>
1122
+ <View rightInset="0" topInset="0" bottomInset="0" leftInset="0">
1123
+ <Test comparison="greater or equal" value="7.0.0" property="iTunes version">
1124
+ <View rightInset="0" topInset="0" alt="" bottomInset="0" leftInset="0">
1125
+ <PictureButtonView leftInset="0" topInset="0" cap="4" rightInset="0" color="rgba(0,0,0,0.05)" mask="/images/masks/rounded_box.png" bottomInset="0">
1126
+
1127
+ </PictureButtonView>
1128
+ </View>
1129
+ </Test>
1130
+ <Test comparison="less" value="7.0.0" property="iTunes version">
1131
+ <VBoxView rightInset="1" topInset="0" bottomInset="0" leftInset="1">
1132
+ <HBoxView leftInset="0" rightInset="0" height="1">
1133
+ <View width="3"/>
1134
+ <PictureView leftInset="0" topInset="0" horizontalBehavior="tile" stretchiness="1" rightInset="0" verticalBehavior="tile" url="/images/bgcolor/bgcolor_000000_5.png" bottomInset="0"/>
1135
+ <View width="3"/>
1136
+ </HBoxView>
1137
+ <HBoxView leftInset="0" rightInset="0" height="1">
1138
+ <View width="2"/>
1139
+ <PictureView leftInset="0" width="1" topInset="0" horizontalBehavior="tile" rightInset="0" verticalBehavior="tile" url="/images/bgcolor/bgcolor_000000_5.png" bottomInset="0"/>
1140
+ <PictureView leftInset="0" topInset="0" horizontalBehavior="tile" stretchiness="1" rightInset="0" verticalBehavior="tile" url="/images/bgcolor/bgcolor_000000_5.png" bottomInset="0"/>
1141
+ <PictureView leftInset="0" width="1" topInset="0" horizontalBehavior="tile" rightInset="0" verticalBehavior="tile" url="/images/bgcolor/bgcolor_000000_5.png" bottomInset="0"/>
1142
+ <View width="2"/>
1143
+ </HBoxView>
1144
+ <HBoxView leftInset="0" rightInset="0" height="1">
1145
+ <View width="1"/>
1146
+ <PictureView leftInset="0" width="1" topInset="0" horizontalBehavior="tile" rightInset="0" verticalBehavior="tile" url="/images/bgcolor/bgcolor_000000_5.png" bottomInset="0"/>
1147
+ <PictureView leftInset="0" topInset="0" horizontalBehavior="tile" stretchiness="1" rightInset="0" verticalBehavior="tile" url="/images/bgcolor/bgcolor_000000_5.png" bottomInset="0"/>
1148
+ <PictureView leftInset="0" width="1" topInset="0" horizontalBehavior="tile" rightInset="0" verticalBehavior="tile" url="/images/bgcolor/bgcolor_000000_5.png" bottomInset="0"/>
1149
+ <View width="1"/>
1150
+ </HBoxView>
1151
+ <HBoxView leftInset="0" rightInset="0" stretchiness="1">
1152
+ <PictureView leftInset="0" width="1" topInset="0" horizontalBehavior="tile" rightInset="0" verticalBehavior="tile" url="/images/bgcolor/bgcolor_000000_5.png" bottomInset="0"/>
1153
+ <PictureView leftInset="0" topInset="0" horizontalBehavior="tile" stretchiness="1" rightInset="0" verticalBehavior="tile" url="/images/bgcolor/bgcolor_000000_5.png" bottomInset="0"/>
1154
+ <PictureView leftInset="0" width="1" topInset="0" horizontalBehavior="tile" rightInset="0" verticalBehavior="tile" url="/images/bgcolor/bgcolor_000000_5.png" bottomInset="0"/>
1155
+ </HBoxView>
1156
+ <HBoxView leftInset="0" rightInset="0" height="1">
1157
+ <View width="1"/>
1158
+ <PictureView leftInset="0" width="1" topInset="0" horizontalBehavior="tile" rightInset="0" verticalBehavior="tile" url="/images/bgcolor/bgcolor_000000_5.png" bottomInset="0"/>
1159
+ <PictureView leftInset="0" topInset="0" horizontalBehavior="tile" stretchiness="1" rightInset="0" verticalBehavior="tile" url="/images/bgcolor/bgcolor_000000_5.png" bottomInset="0"/>
1160
+ <PictureView leftInset="0" width="1" topInset="0" horizontalBehavior="tile" rightInset="0" verticalBehavior="tile" url="/images/bgcolor/bgcolor_000000_5.png" bottomInset="0"/>
1161
+ <View width="1"/>
1162
+ </HBoxView>
1163
+ <HBoxView leftInset="0" rightInset="0" height="1">
1164
+ <View width="2"/>
1165
+ <PictureView leftInset="0" width="1" topInset="0" horizontalBehavior="tile" rightInset="0" verticalBehavior="tile" url="/images/bgcolor/bgcolor_000000_5.png" bottomInset="0"/>
1166
+ <PictureView leftInset="0" topInset="0" horizontalBehavior="tile" stretchiness="1" rightInset="0" verticalBehavior="tile" url="/images/bgcolor/bgcolor_000000_5.png" bottomInset="0"/>
1167
+ <PictureView leftInset="0" width="1" topInset="0" horizontalBehavior="tile" rightInset="0" verticalBehavior="tile" url="/images/bgcolor/bgcolor_000000_5.png" bottomInset="0"/>
1168
+ <View width="2"/>
1169
+ </HBoxView>
1170
+ <HBoxView leftInset="0" rightInset="0" height="1">
1171
+ <View width="3"/>
1172
+ <PictureView leftInset="0" topInset="0" horizontalBehavior="tile" stretchiness="1" rightInset="0" verticalBehavior="tile" url="/images/bgcolor/bgcolor_000000_5.png" bottomInset="0"/>
1173
+ <View width="3"/>
1174
+ </HBoxView>
1175
+ </VBoxView>
1176
+ </Test>
1177
+ <View rightInset="6" topInset="6" bottomInset="5" leftInset="6">
1178
+
1179
+ </View>
1180
+ </View>
1181
+ <VBoxView rightInset="6" bottomInset="5" leftInset="6" topInset="6">
1182
+ <VBoxView bottomInset="0">
1183
+ <View>
1184
+ <Test comparison="less" value="7.0.0" property="iTunes version">
1185
+ <View borderColor="afb7c3" borderWidth="1"/>
1186
+ </Test>
1187
+ <Test comparison="greater or equal" value="7.0.0" property="iTunes version">
1188
+ <View alt="">
1189
+ <PictureButtonView leftInset="0" topInset="0" cap="4" rightInset="0" color="rgb(175,183,195)" mask="/images/masks/outline_box.png" bottomInset="0">
1190
+
1191
+ </PictureButtonView>
1192
+ </View>
1193
+ </Test>
1194
+ <View rightInset="0" topInset="0" bottomInset="0" leftInset="0">
1195
+ <HBoxView rightInset="4" topInset="3" bottomInset="4" leftInset="6">
1196
+ <GotoURL target="main" inhibitDragging="false" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewArtist?id=284962371" draggingName="Agile Partners">
1197
+ <TextView topInset="0" truncation="right" leftInset="0" stretchiness="1" rightInset="0" headingLevel="2" styleSet="basic11" alt="ALL APPLICATIONS BY AGILE PARTNERS" textJust="left" maxLines="1">
1198
+ <SetFontStyle normalStyle="outlineheadersTitleFontStyle">
1199
+ <b>ALL APPLICATIONS BY AGILE PARTNERS</b>
1200
+ </SetFontStyle>
1201
+ </TextView>
1202
+ </GotoURL>
1203
+ <View width="5"/>
1204
+ <VBoxView topInset="1" alt="">
1205
+ <View alt="" stretchiness="1"/>
1206
+ <GotoURL target="main" inhibitDragging="false" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewArtist?id=284962371" draggingName="Agile Partners">
1207
+ <PictureButtonView width="12" topInset="0" picts="plain,pressed,rollover" transparentClicks="1" rightInset="0" alt="" url="/images/arrowoutline/arrow_333366_r.png" height="12"/>
1208
+ </GotoURL>
1209
+ <View alt="" stretchiness="1"/>
1210
+ </VBoxView>
1211
+ </HBoxView>
1212
+ </View>
1213
+ </View>
1214
+ </VBoxView>
1215
+ <View height="4"/>
1216
+ <VBoxView bottomInset="0">
1217
+ <View>
1218
+ <Test comparison="less" value="7.0.0" property="iTunes version">
1219
+ <View borderColor="afb7c3" borderWidth="1"/>
1220
+ </Test>
1221
+ <Test comparison="greater or equal" value="7.0.0" property="iTunes version">
1222
+ <View alt="">
1223
+ <PictureButtonView leftInset="0" topInset="0" cap="4" rightInset="0" color="rgb(175,183,195)" mask="/images/masks/outline_box.png" bottomInset="0">
1224
+
1225
+ </PictureButtonView>
1226
+ </View>
1227
+ </Test>
1228
+ <View rightInset="0" topInset="0" bottomInset="0" leftInset="0">
1229
+ <HBoxView rightInset="4" topInset="3" bottomInset="4" leftInset="6">
1230
+ <GotoURL target="main" inhibitDragging="false" url="https://buy.itunes.apple.com/WebObjects/MZFinance.woa/wa/tellAFriend?type=14&amp;id=284962368" draggingName="TELL A FRIEND">
1231
+ <TextView topInset="0" truncation="right" leftInset="0" stretchiness="1" rightInset="0" headingLevel="2" styleSet="basic11" alt="TELL A FRIEND" textJust="left" maxLines="1">
1232
+ <SetFontStyle normalStyle="outlineheadersTitleFontStyle">
1233
+ <b>TELL A FRIEND</b>
1234
+ </SetFontStyle>
1235
+ </TextView>
1236
+ </GotoURL>
1237
+ <View width="5"/>
1238
+ <VBoxView topInset="1" alt="">
1239
+ <View alt="" stretchiness="1"/>
1240
+ <GotoURL target="main" inhibitDragging="false" url="https://buy.itunes.apple.com/WebObjects/MZFinance.woa/wa/tellAFriend?type=14&amp;id=284962368" draggingName="TELL A FRIEND">
1241
+ <PictureButtonView width="12" topInset="0" picts="plain,pressed,rollover" transparentClicks="1" rightInset="0" alt="" url="/images/arrowoutline/arrow_333366_r.png" height="12"/>
1242
+ </GotoURL>
1243
+ <View alt="" stretchiness="1"/>
1244
+ </VBoxView>
1245
+ </HBoxView>
1246
+ </View>
1247
+ </View>
1248
+ </VBoxView>
1249
+ <View height="4"/>
1250
+ <VBoxView bottomInset="0">
1251
+ <View>
1252
+ <Test comparison="less" value="7.0.0" property="iTunes version">
1253
+ <View borderColor="afb7c3" borderWidth="1"/>
1254
+ </Test>
1255
+ <Test comparison="greater or equal" value="7.0.0" property="iTunes version">
1256
+ <View alt="">
1257
+ <PictureButtonView leftInset="0" topInset="0" cap="4" rightInset="0" color="rgb(175,183,195)" mask="/images/masks/outline_box.png" bottomInset="0">
1258
+
1259
+ </PictureButtonView>
1260
+ </View>
1261
+ </Test>
1262
+ <View rightInset="0" topInset="0" bottomInset="0" leftInset="0">
1263
+ <HBoxView rightInset="4" topInset="3" bottomInset="4" leftInset="6">
1264
+ <GotoURL target="main" inhibitDragging="false" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/ApplicationsFAQPage" draggingName="APP STORE FAQS">
1265
+ <TextView topInset="0" truncation="right" leftInset="0" stretchiness="1" rightInset="0" headingLevel="2" styleSet="basic11" alt="APP STORE FAQS" textJust="left" maxLines="1">
1266
+ <SetFontStyle normalStyle="outlineheadersTitleFontStyle">
1267
+ <b>APP STORE FAQS</b>
1268
+ </SetFontStyle>
1269
+ </TextView>
1270
+ </GotoURL>
1271
+ <View width="5"/>
1272
+ <VBoxView topInset="1" alt="">
1273
+ <View alt="" stretchiness="1"/>
1274
+ <GotoURL target="main" inhibitDragging="false" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/ApplicationsFAQPage" draggingName="APP STORE FAQS">
1275
+ <PictureButtonView width="12" topInset="0" picts="plain,pressed,rollover" transparentClicks="1" rightInset="0" alt="" url="/images/arrowoutline/arrow_333366_r.png" height="12"/>
1276
+ </GotoURL>
1277
+ <View alt="" stretchiness="1"/>
1278
+ </VBoxView>
1279
+ </HBoxView>
1280
+ </View>
1281
+ </View>
1282
+ </VBoxView>
1283
+ </VBoxView>
1284
+ </View>
1285
+ <View height="18"/>
1286
+ <View>
1287
+ <FontStyle name="outlineTitleFontStyle" color="22395e"/>
1288
+ <FontStyle name="outlineTextFontStyle" color="22395e"/>
1289
+ <View rightInset="0" topInset="0" bottomInset="0" leftInset="0">
1290
+ <Test comparison="greater or equal" value="7.0.0" property="iTunes version">
1291
+ <View rightInset="0" topInset="0" alt="" bottomInset="0" leftInset="0">
1292
+ <PictureButtonView leftInset="0" topInset="0" cap="4" rightInset="0" color="rgba(0,0,0,0.05)" mask="/images/masks/rounded_box.png" bottomInset="0">
1293
+
1294
+ </PictureButtonView>
1295
+ </View>
1296
+ </Test>
1297
+ <Test comparison="less" value="7.0.0" property="iTunes version">
1298
+ <VBoxView rightInset="1" topInset="0" bottomInset="0" leftInset="1">
1299
+ <HBoxView leftInset="0" rightInset="0" height="1">
1300
+ <View width="3"/>
1301
+ <PictureView leftInset="0" topInset="0" horizontalBehavior="tile" stretchiness="1" rightInset="0" verticalBehavior="tile" url="/images/bgcolor/bgcolor_000000_5.png" bottomInset="0"/>
1302
+ <View width="3"/>
1303
+ </HBoxView>
1304
+ <HBoxView leftInset="0" rightInset="0" height="1">
1305
+ <View width="2"/>
1306
+ <PictureView leftInset="0" width="1" topInset="0" horizontalBehavior="tile" rightInset="0" verticalBehavior="tile" url="/images/bgcolor/bgcolor_000000_5.png" bottomInset="0"/>
1307
+ <PictureView leftInset="0" topInset="0" horizontalBehavior="tile" stretchiness="1" rightInset="0" verticalBehavior="tile" url="/images/bgcolor/bgcolor_000000_5.png" bottomInset="0"/>
1308
+ <PictureView leftInset="0" width="1" topInset="0" horizontalBehavior="tile" rightInset="0" verticalBehavior="tile" url="/images/bgcolor/bgcolor_000000_5.png" bottomInset="0"/>
1309
+ <View width="2"/>
1310
+ </HBoxView>
1311
+ <HBoxView leftInset="0" rightInset="0" height="1">
1312
+ <View width="1"/>
1313
+ <PictureView leftInset="0" width="1" topInset="0" horizontalBehavior="tile" rightInset="0" verticalBehavior="tile" url="/images/bgcolor/bgcolor_000000_5.png" bottomInset="0"/>
1314
+ <PictureView leftInset="0" topInset="0" horizontalBehavior="tile" stretchiness="1" rightInset="0" verticalBehavior="tile" url="/images/bgcolor/bgcolor_000000_5.png" bottomInset="0"/>
1315
+ <PictureView leftInset="0" width="1" topInset="0" horizontalBehavior="tile" rightInset="0" verticalBehavior="tile" url="/images/bgcolor/bgcolor_000000_5.png" bottomInset="0"/>
1316
+ <View width="1"/>
1317
+ </HBoxView>
1318
+ <HBoxView leftInset="0" rightInset="0" stretchiness="1">
1319
+ <PictureView leftInset="0" width="1" topInset="0" horizontalBehavior="tile" rightInset="0" verticalBehavior="tile" url="/images/bgcolor/bgcolor_000000_5.png" bottomInset="0"/>
1320
+ <PictureView leftInset="0" topInset="0" horizontalBehavior="tile" stretchiness="1" rightInset="0" verticalBehavior="tile" url="/images/bgcolor/bgcolor_000000_5.png" bottomInset="0"/>
1321
+ <PictureView leftInset="0" width="1" topInset="0" horizontalBehavior="tile" rightInset="0" verticalBehavior="tile" url="/images/bgcolor/bgcolor_000000_5.png" bottomInset="0"/>
1322
+ </HBoxView>
1323
+ <HBoxView leftInset="0" rightInset="0" height="1">
1324
+ <View width="1"/>
1325
+ <PictureView leftInset="0" width="1" topInset="0" horizontalBehavior="tile" rightInset="0" verticalBehavior="tile" url="/images/bgcolor/bgcolor_000000_5.png" bottomInset="0"/>
1326
+ <PictureView leftInset="0" topInset="0" horizontalBehavior="tile" stretchiness="1" rightInset="0" verticalBehavior="tile" url="/images/bgcolor/bgcolor_000000_5.png" bottomInset="0"/>
1327
+ <PictureView leftInset="0" width="1" topInset="0" horizontalBehavior="tile" rightInset="0" verticalBehavior="tile" url="/images/bgcolor/bgcolor_000000_5.png" bottomInset="0"/>
1328
+ <View width="1"/>
1329
+ </HBoxView>
1330
+ <HBoxView leftInset="0" rightInset="0" height="1">
1331
+ <View width="2"/>
1332
+ <PictureView leftInset="0" width="1" topInset="0" horizontalBehavior="tile" rightInset="0" verticalBehavior="tile" url="/images/bgcolor/bgcolor_000000_5.png" bottomInset="0"/>
1333
+ <PictureView leftInset="0" topInset="0" horizontalBehavior="tile" stretchiness="1" rightInset="0" verticalBehavior="tile" url="/images/bgcolor/bgcolor_000000_5.png" bottomInset="0"/>
1334
+ <PictureView leftInset="0" width="1" topInset="0" horizontalBehavior="tile" rightInset="0" verticalBehavior="tile" url="/images/bgcolor/bgcolor_000000_5.png" bottomInset="0"/>
1335
+ <View width="2"/>
1336
+ </HBoxView>
1337
+ <HBoxView leftInset="0" rightInset="0" height="1">
1338
+ <View width="3"/>
1339
+ <PictureView leftInset="0" topInset="0" horizontalBehavior="tile" stretchiness="1" rightInset="0" verticalBehavior="tile" url="/images/bgcolor/bgcolor_000000_5.png" bottomInset="0"/>
1340
+ <View width="3"/>
1341
+ </HBoxView>
1342
+ </VBoxView>
1343
+ </Test>
1344
+ <View rightInset="6" topInset="6" bottomInset="12" leftInset="6">
1345
+
1346
+ </View>
1347
+ </View>
1348
+ <VBoxView rightInset="6" bottomInset="12" leftInset="6" topInset="6">
1349
+ <VBoxView bottomInset="0">
1350
+ <View>
1351
+ <Test comparison="less" value="7.0.0" property="iTunes version">
1352
+ <View borderColor="afb7c3" borderWidth="1"/>
1353
+ </Test>
1354
+ <Test comparison="greater or equal" value="7.0.0" property="iTunes version">
1355
+ <View alt="">
1356
+ <PictureButtonView leftInset="0" topInset="0" cap="4" rightInset="0" color="rgb(175,183,195)" mask="/images/masks/outline_box.png" bottomInset="0">
1357
+
1358
+ </PictureButtonView>
1359
+ </View>
1360
+ </Test>
1361
+ <View rightInset="0" topInset="0" bottomInset="0" leftInset="0">
1362
+ <HBoxView rightInset="4" topInset="3" bottomInset="4" leftInset="6">
1363
+ <GotoURL target="main" inhibitDragging="false" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewRecommendations?type=Purple+Software&amp;id=284962368" draggingName="CUSTOMERS ALSO BOUGHT">
1364
+ <TextView topInset="0" truncation="right" leftInset="0" stretchiness="1" rightInset="0" headingLevel="2" styleSet="basic11" alt="CUSTOMERS ALSO BOUGHT" textJust="left" maxLines="1">
1365
+ <SetFontStyle normalStyle="outlineTitleFontStyle">
1366
+ <b>CUSTOMERS ALSO BOUGHT</b>
1367
+ </SetFontStyle>
1368
+ </TextView>
1369
+ </GotoURL>
1370
+ <View width="5"/>
1371
+ <VBoxView alt="">
1372
+ <View alt="" stretchiness="1"/>
1373
+ <GotoURL target="main" inhibitDragging="false" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewRecommendations?type=Purple+Software&amp;id=284962368" draggingName="CUSTOMERS ALSO BOUGHT">
1374
+ <TextView topInset="0" truncation="left" stretchiness="1" rightInset="5" styleSet="basic11" alt="See All, CUSTOMERS ALSO BOUGHT" textJust="right" maxLines="1">
1375
+ <SetFontStyle normalStyle="outlineTitleFontStyle">
1376
+ <b>See All</b>
1377
+ </SetFontStyle>
1378
+ </TextView>
1379
+ </GotoURL>
1380
+ <View alt="" stretchiness="1"/>
1381
+ </VBoxView>
1382
+ <VBoxView topInset="1" alt="">
1383
+ <View alt="" stretchiness="1"/>
1384
+ <GotoURL target="main" inhibitDragging="false" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewRecommendations?type=Purple+Software&amp;id=284962368" draggingName="CUSTOMERS ALSO BOUGHT">
1385
+ <PictureButtonView width="12" topInset="0" picts="plain,pressed,rollover" transparentClicks="1" rightInset="0" alt="" url="/images/arrowoutline/arrow_333366_r.png" height="12"/>
1386
+ </GotoURL>
1387
+ <View alt="" stretchiness="1"/>
1388
+ </VBoxView>
1389
+ </HBoxView>
1390
+ </View>
1391
+ </View>
1392
+ <View bottomInset="0" topInset="0" stretchiness="1">
1393
+ <VBoxView>
1394
+ <VBoxView rightInset="0" topInset="6" bottomInset="1" leftInset="0"><HBoxView rightInset="0" topInset="0" leftInset="0"><GotoURL target="main" inhibitDragging="false" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=289943355&amp;mt=8" draggingName="Air Sharing"><VBoxView rightInset="0" topInset="0" alt="Air Sharing. Music" leftInset="0" stretchiness="1"><TextView topInset="0" truncation="right" leftInset="9" squishiness="1" rightInset="8" styleSet="basic11" alt="" maxLines="1"><SetFontStyle normalStyle="outlineTextFontStyle"><b>Air Sharing</b></SetFontStyle></TextView><TextView topInset="1" truncation="right" leftInset="24" squishiness="1" rightInset="8" styleSet="basic11" alt="" maxLines="1"><SetFontStyle normalStyle="outlineTextFontStyle">Music</SetFontStyle></TextView></VBoxView></GotoURL></HBoxView><HBoxView rightInset="0" topInset="0" leftInset="0"><GotoURL target="main" inhibitDragging="false" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=287965124&amp;mt=8" draggingName="PocketGuitar"><VBoxView rightInset="0" topInset="6" alt="PocketGuitar. Music" leftInset="0" stretchiness="1"><TextView topInset="0" truncation="right" leftInset="9" squishiness="1" rightInset="8" styleSet="basic11" alt="" maxLines="1"><SetFontStyle normalStyle="outlineTextFontStyle"><b>PocketGuitar</b></SetFontStyle></TextView><TextView topInset="1" truncation="right" leftInset="24" squishiness="1" rightInset="8" styleSet="basic11" alt="" maxLines="1"><SetFontStyle normalStyle="outlineTextFontStyle">Music</SetFontStyle></TextView></VBoxView></GotoURL></HBoxView><HBoxView rightInset="0" topInset="0" leftInset="0"><GotoURL target="main" inhibitDragging="false" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=293053479&amp;mt=8" draggingName="Ocarina"><VBoxView rightInset="0" topInset="6" alt="Ocarina. Music" leftInset="0" stretchiness="1"><TextView topInset="0" truncation="right" leftInset="9" squishiness="1" rightInset="8" styleSet="basic11" alt="" maxLines="1"><SetFontStyle normalStyle="outlineTextFontStyle"><b>Ocarina</b></SetFontStyle></TextView><TextView topInset="1" truncation="right" leftInset="24" squishiness="1" rightInset="8" styleSet="basic11" alt="" maxLines="1"><SetFontStyle normalStyle="outlineTextFontStyle">Music</SetFontStyle></TextView></VBoxView></GotoURL></HBoxView>
1395
+
1396
+
1397
+
1398
+
1399
+
1400
+
1401
+
1402
+
1403
+
1404
+
1405
+
1406
+
1407
+
1408
+
1409
+
1410
+
1411
+
1412
+
1413
+
1414
+
1415
+
1416
+
1417
+
1418
+
1419
+ <HBoxView rightInset="0" topInset="0" leftInset="0"><GotoURL target="main" inhibitDragging="false" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=281736535&amp;mt=8" draggingName="Enigmo"><VBoxView rightInset="0" topInset="6" alt="Enigmo. Music" leftInset="0" stretchiness="1"><TextView topInset="0" truncation="right" leftInset="9" squishiness="1" rightInset="8" styleSet="basic11" alt="" maxLines="1"><SetFontStyle normalStyle="outlineTextFontStyle"><b>Enigmo</b></SetFontStyle></TextView><TextView topInset="1" truncation="right" leftInset="24" squishiness="1" rightInset="8" styleSet="basic11" alt="" maxLines="1"><SetFontStyle normalStyle="outlineTextFontStyle">Music</SetFontStyle></TextView></VBoxView></GotoURL></HBoxView><HBoxView rightInset="0" topInset="0" leftInset="0"><GotoURL target="main" inhibitDragging="false" url="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=281966695&amp;mt=8" draggingName="Super Monkey Ball"><VBoxView rightInset="0" topInset="6" alt="Super Monkey Ball. Music" leftInset="0" stretchiness="1"><TextView topInset="0" truncation="right" leftInset="9" squishiness="1" rightInset="8" styleSet="basic11" alt="" maxLines="1"><SetFontStyle normalStyle="outlineTextFontStyle"><b>Super Monkey Ball</b></SetFontStyle></TextView><TextView topInset="1" truncation="right" leftInset="24" squishiness="1" rightInset="8" styleSet="basic11" alt="" maxLines="1"><SetFontStyle normalStyle="outlineTextFontStyle">Music</SetFontStyle></TextView></VBoxView></GotoURL></HBoxView></VBoxView>
1420
+ </VBoxView>
1421
+ </View>
1422
+ </VBoxView>
1423
+ </VBoxView>
1424
+ </View>
1425
+ </VBoxView>
1426
+ </MatrixView>
1427
+ <VBoxView>
1428
+ <View height="30"/>
1429
+ <HBoxView rightInset="0" alt="" bottomInset="0" leftInset="0">
1430
+ <View alt="" stretchiness="1"/>
1431
+ <TextView topInset="2" leftInset="0" styleSet="basic9" textJust="center">
1432
+ <SetFontStyle normalStyle="textColor">
1433
+ Copyright
1434
+ </SetFontStyle>
1435
+ </TextView>
1436
+ <View width="2"/>
1437
+ <TextView topInset="0" normalStyle="lucida12" leftInset="0" textJust="center">
1438
+ <SetFontStyle normalStyle="textColor">©</SetFontStyle>
1439
+ </TextView>
1440
+ <View width="2"/>
1441
+ <TextView topInset="2" leftInset="0" styleSet="basic9" textJust="center">
1442
+ <SetFontStyle normalStyle="textColor">
1443
+ 2009 Apple Inc.
1444
+ </SetFontStyle>
1445
+ </TextView>
1446
+ <View width="2"/>
1447
+ <TextView topInset="2" leftInset="0" styleSet="basic9" textJust="center">
1448
+ <SetFontStyle normalStyle="textColor">
1449
+ <OpenURL target="main" url="http://www.apple.com/legal/">
1450
+ All rights reserved.
1451
+ </OpenURL>
1452
+ </SetFontStyle>
1453
+ </TextView>
1454
+ <TextView width="6" topInset="2" styleSet="basic9" alt="" textJust="center">
1455
+ <SetFontStyle normalStyle="textColor"> | </SetFontStyle>
1456
+ </TextView>
1457
+ <TextView topInset="2" leftInset="0" styleSet="basic9" textJust="center">
1458
+ <SetFontStyle normalStyle="textColor">
1459
+ <OpenURL target="main" url="http://www.apple.com/legal/privacy/">
1460
+ Privacy Policy
1461
+ </OpenURL>
1462
+ </SetFontStyle>
1463
+ </TextView>
1464
+ <TextView width="6" topInset="2" styleSet="basic9" alt="" textJust="center">
1465
+ <SetFontStyle normalStyle="textColor"> | </SetFontStyle>
1466
+ </TextView>
1467
+ <TextView topInset="2" leftInset="0" styleSet="basic9" textJust="center">
1468
+ <SetFontStyle normalStyle="textColor">
1469
+ <OpenURL target="main" url="http://www.apple.com/legal/itunes/us/service.html">
1470
+ Terms of Service
1471
+ </OpenURL>
1472
+ </SetFontStyle>
1473
+ </TextView>
1474
+ <TextView width="6" topInset="2" styleSet="basic9" alt="" textJust="center">
1475
+ <SetFontStyle normalStyle="textColor"> | </SetFontStyle>
1476
+ </TextView>
1477
+ <TextView topInset="2" leftInset="0" styleSet="basic9" textJust="center">
1478
+ <SetFontStyle normalStyle="textColor">
1479
+ <OpenURL target="main" url="http://www.apple.com/legal/itunes/us/sales.html">
1480
+ Terms of Sale
1481
+ </OpenURL>
1482
+ </SetFontStyle>
1483
+ </TextView>
1484
+ <View alt="" stretchiness="1"/>
1485
+ </HBoxView>
1486
+ <View height="10"/>
1487
+ </VBoxView>
1488
+ </MatrixView>
1489
+ </View>
1490
+ </VBoxView>
1491
+ </ScrollView>
1492
+ </View>
1493
+ </Document>