onebox 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (127) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/.rspec +1 -0
  4. data/.rubocop.yml +476 -0
  5. data/.ruby-gemset +1 -0
  6. data/.ruby-version +1 -0
  7. data/.travis.yml +3 -0
  8. data/Gemfile +4 -0
  9. data/LICENSE.txt +22 -0
  10. data/README.md +92 -0
  11. data/Rakefile +22 -0
  12. data/lib/onebox.rb +33 -0
  13. data/lib/onebox/engine.rb +93 -0
  14. data/lib/onebox/engine/amazon_onebox.rb +25 -0
  15. data/lib/onebox/engine/bliptv_onebox.rb +26 -0
  16. data/lib/onebox/engine/clikthrough_onebox.rb +23 -0
  17. data/lib/onebox/engine/college_humor_onebox.rb +26 -0
  18. data/lib/onebox/engine/dailymotion_onebox.rb +26 -0
  19. data/lib/onebox/engine/dotsub_onebox.rb +25 -0
  20. data/lib/onebox/engine/example_onebox.rb +25 -0
  21. data/lib/onebox/engine/flickr_onebox.rb +25 -0
  22. data/lib/onebox/engine/funny_or_die_onebox.rb +26 -0
  23. data/lib/onebox/engine/html.rb +11 -0
  24. data/lib/onebox/engine/hulu_onebox.rb +26 -0
  25. data/lib/onebox/engine/nfb_onebox.rb +25 -0
  26. data/lib/onebox/engine/open_graph.rb +11 -0
  27. data/lib/onebox/engine/qik_onebox.rb +23 -0
  28. data/lib/onebox/engine/revision3_onebox.rb +26 -0
  29. data/lib/onebox/engine/slideshare_onebox.rb +25 -0
  30. data/lib/onebox/engine/sound_cloud_onebox.rb +25 -0
  31. data/lib/onebox/engine/stack_exchange_onebox.rb +23 -0
  32. data/lib/onebox/engine/ted_onebox.rb +25 -0
  33. data/lib/onebox/engine/viddler_onebox.rb +26 -0
  34. data/lib/onebox/engine/vimeo_onebox.rb +26 -0
  35. data/lib/onebox/engine/wikipedia_onebox.rb +24 -0
  36. data/lib/onebox/engine/yfrog_onebox.rb +25 -0
  37. data/lib/onebox/matcher.rb +13 -0
  38. data/lib/onebox/preview.rb +31 -0
  39. data/lib/onebox/version.rb +3 -0
  40. data/onebox.gemspec +36 -0
  41. data/spec/fixtures/amazon.response +3098 -0
  42. data/spec/fixtures/android.response +138 -0
  43. data/spec/fixtures/apple.response +391 -0
  44. data/spec/fixtures/bliptv.response +724 -0
  45. data/spec/fixtures/clickthrough.response +1472 -0
  46. data/spec/fixtures/clikthrough.response +1472 -0
  47. data/spec/fixtures/collegehumor.response +1272 -0
  48. data/spec/fixtures/dailymotion.response +575 -0
  49. data/spec/fixtures/dotsub.response +1257 -0
  50. data/spec/fixtures/example.response +50 -0
  51. data/spec/fixtures/flickr.response +1292 -0
  52. data/spec/fixtures/funnyordie.response +2010 -0
  53. data/spec/fixtures/gist.response +282 -0
  54. data/spec/fixtures/github_blob.response +706 -0
  55. data/spec/fixtures/github_commit.response +881 -0
  56. data/spec/fixtures/github_pullrequest.response +1619 -0
  57. data/spec/fixtures/hulu.response +339 -0
  58. data/spec/fixtures/image.response +0 -0
  59. data/spec/fixtures/imgur.response +892 -0
  60. data/spec/fixtures/kinomap.response +299 -0
  61. data/spec/fixtures/nfb.response +810 -0
  62. data/spec/fixtures/opengraph.response +27 -0
  63. data/spec/fixtures/qik.response +371 -0
  64. data/spec/fixtures/revision3.response +985 -0
  65. data/spec/fixtures/rottentomatoes_fresh.response +3275 -0
  66. data/spec/fixtures/rottentomatoes_incomplete.response +2313 -0
  67. data/spec/fixtures/rottentomatoes_rotten.response +3549 -0
  68. data/spec/fixtures/slideshare.response +1745 -0
  69. data/spec/fixtures/soundcloud.response +1409 -0
  70. data/spec/fixtures/stackexchange.response +1889 -0
  71. data/spec/fixtures/ted.response +1341 -0
  72. data/spec/fixtures/twitter.response +1712 -0
  73. data/spec/fixtures/viddler.response +442 -0
  74. data/spec/fixtures/video.response +0 -0
  75. data/spec/fixtures/vimeo.response +571 -0
  76. data/spec/fixtures/wikipedia.response +1236 -0
  77. data/spec/fixtures/wikipedia_redirected.response +899 -0
  78. data/spec/fixtures/yfrog.response +464 -0
  79. data/spec/lib/onebox/engine/amazon_spec.rb +34 -0
  80. data/spec/lib/onebox/engine/bliptv_spec.rb +34 -0
  81. data/spec/lib/onebox/engine/clikthrough_spec.rb +26 -0
  82. data/spec/lib/onebox/engine/college_humor_spec.rb +34 -0
  83. data/spec/lib/onebox/engine/dailymotion_spec.rb +36 -0
  84. data/spec/lib/onebox/engine/dotsub_spec.rb +36 -0
  85. data/spec/lib/onebox/engine/example_spec.rb +18 -0
  86. data/spec/lib/onebox/engine/flickr_spec.rb +30 -0
  87. data/spec/lib/onebox/engine/funny_or_die_spec.rb +34 -0
  88. data/spec/lib/onebox/engine/hulu_spec.rb +34 -0
  89. data/spec/lib/onebox/engine/nfb_spec.rb +35 -0
  90. data/spec/lib/onebox/engine/qik_spec.rb +35 -0
  91. data/spec/lib/onebox/engine/revision3_spec.rb +36 -0
  92. data/spec/lib/onebox/engine/slideshare_spec.rb +30 -0
  93. data/spec/lib/onebox/engine/sound_cloud_spec.rb +36 -0
  94. data/spec/lib/onebox/engine/stack_exchange_spec.rb +27 -0
  95. data/spec/lib/onebox/engine/ted_spec.rb +30 -0
  96. data/spec/lib/onebox/engine/viddler_spec.rb +36 -0
  97. data/spec/lib/onebox/engine/vimeo_spec.rb +34 -0
  98. data/spec/lib/onebox/engine/wikipedia_spec.rb +30 -0
  99. data/spec/lib/onebox/engine/yfrog_spec.rb +30 -0
  100. data/spec/lib/onebox/engine_spec.rb +78 -0
  101. data/spec/lib/onebox/matcher_spec.rb +20 -0
  102. data/spec/lib/onebox/preview_spec.rb +21 -0
  103. data/spec/lib/onebox_spec.rb +49 -0
  104. data/spec/spec_helper.rb +26 -0
  105. data/spec/support/html_spec_helper.rb +17 -0
  106. data/templates/amazon.handlebars +9 -0
  107. data/templates/bliptv.handlebars +10 -0
  108. data/templates/clickthrough.handlebars +8 -0
  109. data/templates/clikthrough.handlebars +8 -0
  110. data/templates/collegehumor.handlebars +9 -0
  111. data/templates/dailymotion.handlebars +9 -0
  112. data/templates/dotsub.handlebars +9 -0
  113. data/templates/flickr.handlebars +8 -0
  114. data/templates/funnyordie.handlebars +9 -0
  115. data/templates/hulu.handlebars +9 -0
  116. data/templates/nfb.handlebars +8 -0
  117. data/templates/qik.handlebars +7 -0
  118. data/templates/revision3.handlebars +9 -0
  119. data/templates/slideshare.handlebars +8 -0
  120. data/templates/soundcloud.handlebars +9 -0
  121. data/templates/stackexchange.handlebars +7 -0
  122. data/templates/ted.handlebars +8 -0
  123. data/templates/viddler.handlebars +9 -0
  124. data/templates/vimeo.handlebars +9 -0
  125. data/templates/wikipedia.handlebars +8 -0
  126. data/templates/yfrog.handlebars +8 -0
  127. metadata +447 -0
@@ -0,0 +1,50 @@
1
+ <!doctype html>
2
+ <html>
3
+ <head>
4
+ <title>Example Domain</title>
5
+
6
+ <meta charset="utf-8" />
7
+ <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
8
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
9
+ <style type="text/css">
10
+ body {
11
+ background-color: #f0f0f2;
12
+ margin: 0;
13
+ padding: 0;
14
+ font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
15
+
16
+ }
17
+ div {
18
+ width: 600px;
19
+ margin: 5em auto;
20
+ padding: 50px;
21
+ background-color: #fff;
22
+ border-radius: 1em;
23
+ }
24
+ a:link, a:visited {
25
+ color: #38488f;
26
+ text-decoration: none;
27
+ }
28
+ @media (max-width: 700px) {
29
+ body {
30
+ background-color: #fff;
31
+ }
32
+ div {
33
+ width: auto;
34
+ margin: 0 auto;
35
+ border-radius: 0;
36
+ padding: 1em;
37
+ }
38
+ }
39
+ </style>
40
+ </head>
41
+
42
+ <body>
43
+ <div>
44
+ <h1>Example Domain 1</h1>
45
+ <p>This domain is established to be used for illustrative examples in documents. You may use this
46
+ domain in examples without prior coordination or asking for permission.</p>
47
+ <p><a href="http://www.iana.org/domains/example">More information...</a></p>
48
+ </div>
49
+ </body>
50
+ </html>
@@ -0,0 +1,1292 @@
1
+ <!DOCTYPE html>
2
+ <html xmlns:dc="http://purl.org/dc/terms/" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:cc="http://creativecommons.org/ns#" lang="en-us">
3
+ <head>
4
+ <!--
5
+ _
6
+ . - ` : ` '.' `` . - '` ` .
7
+ ' ,gi$@$q pggq pggq . ' pggq
8
+ + j@@@P*\7 @@@@ @@@@ _ : @@@@ ! ._ , . _ - .
9
+ . . @@@K @@@@ ; -` `_,_ ` . @@@@ ;/ ` _,,_ `
10
+ ; pgg@@@@gggq @@@@ @@@@ .' ,iS@@@@@Si @@@@ .6@@@P' !!!! j!!!!7 ;
11
+ @@@@@@@@@@@ @@@@ @@@@ ` j@@@P*"*+Y7 @@@@ .6@@@P !!!!47*"*+;
12
+ `_ @@@@ @@@@ @@@@ .@@@7 . ` @@@@.6@@@P ` !!!!; . '
13
+ . @@@@ ' @@@@ @@@@ :@@@! !: @@@@7@@@K `; !!!! ' ` '
14
+ @@@@ . @@@@ @@@@ `%@@@. . @@@@`7@@@b . !!!! :
15
+ ! @@@@ @@@@ @@@@ \@@@$+,,+4b @@@@ `7@@@b !!!!
16
+ @@@@ : @@@@ @@@@ `7%S@@hX!P' @@@@ `7@@@b !!!! .
17
+ : """" """" """" :. `^"^` """" `""""" ''''
18
+ ` - . . _._ ` _._ _ . -
19
+ , ` ,glllllllllg, `-: ' .~ . . . ~. `
20
+ ,jlllllllllllllllp, .!' .+. . . . . . .+. `.
21
+ ` jllllllllllllllllllll ` +. . . . . . . . .+ .
22
+ . jllllllllllllllllllllll . . . . . . . . . . .
23
+ .l@@@@@@@lllllllllllllll. j. . . . . . . :::::::l `
24
+ ; ;@@@@@@@@@@@@@@@@@@@lllll :. . :::::::::::::::::: ;
25
+ :l@@@@@@@@@@@@@@@@@@@@@l; ::::::::::::::::::::::;
26
+ ` Y@@@@@@@@@@@@@@@@@@@@@P ::::::::::::::::::::: '
27
+ - Y@@@@@@@@@@@@@@@@@@@P . ::::::::::::::::::: .
28
+ `*@@@@@@@@@@@@@@@*` ` ` `:::::::::::::::`
29
+ `. `*%@@@@@@@%*` . ` `+:::::::::+` '
30
+ . ``` _ ' - . ``` -
31
+ ` ' ` ' `
32
+ You're reading. We're hiring.
33
+ http://flickr.com/jobs/
34
+ -->
35
+ <title>Los Angeles View 2011 | Flickr - Photo Sharing!</title>
36
+ <script data-script-purpose="page_timing">
37
+ var farm_timing = {}; farm_timing.page_start = new Date().getTime();
38
+ </script>
39
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
40
+ <meta name="keywords" content="california, city, urban, panorama, skyline, museum, america, landscape, la, losangeles, los, downtown, view, angeles, space, sony, science, panoramic, observatory, astronomy, museo, feliz, griffithobservatory, griffith, museums, amerika, stitched, sweep, kalifornien, californie, cityofangels, estadosunidos, amérique, 美国, étatsunis, rebelwithoutacause, 洛杉磯, vereinigtestaaten, 加州, カリフォルニア, ロサンゼルス, 洛杉矶, アメリカ合衆国, 加利福尼亞, hx9v"> <meta name="description" content="The view from the Griffith Observatory, Los Angeles; July 2011 Panorama Stitched / Sweep Panorama For closer look at Downtown LA: www.flickr.com/photos/justaslice/6014529411">
41
+ <meta http-equiv="imagetoolbar" content="no">
42
+ <link href="/apple-touch-icon.png" rel="apple-touch-icon-precomposed">
43
+ <meta http-equiv="X-UA-Compatible" content="chrome=1"> <meta name="title" content="Los Angeles View 2011">
44
+ <meta name="medium" content="image">
45
+ <link rel="image_src" href="http://farm7.staticflickr.com/6198/6038315155_2875860c4b_m.jpg" id="image-src">
46
+ <link id="canonicalurl" rel="canonical" href="http://www.flickr.com/photos/justaslice/6038315155/">
47
+ <link rel="alternate" type="application/json+oembed"
48
+ href="http://www.flickr.com/services/oembed?url=http%3A%2F%2Fwww.flickr.com%2Fphotos%2Fjustaslice%2F6038315155%2F&format=json"
49
+ title="Los Angeles View 2011"/>
50
+ <link rel="alternate" type="text/xml+oembed"
51
+ href="http://www.flickr.com/services/oembed?url=http%3A%2F%2Fwww.flickr.com%2Fphotos%2Fjustaslice%2F6038315155%2F&format=xml"
52
+ title="Los Angeles View 2011"/>
53
+ <meta property="fb:app_id" content="137206539707334" />
54
+ <meta property="og:title" content="Los Angeles View 2011" />
55
+ <meta property="og:type" content="flickr_photos:photo" />
56
+ <meta property="og:url" content="http://www.flickr.com/photos/justaslice/6038315155/" />
57
+ <meta property="og:site_name" content="Flickr" />
58
+ <meta property="twitter:card" content="photo" />
59
+ <meta property="twitter:site" content="@flickr" />
60
+ <meta property="twitter:app:name:iphone" content="Flickr" />
61
+ <meta property="twitter:app:id:iphone" content="328407587" />
62
+ <meta property="og:description" content="The view from the Griffith Observatory, Los Angeles; July 2011 Panorama Stitched / Sweep Panorama For closer look at Downtown LA: www.flickr.com/photos/justaslice/6014529411" />
63
+ <meta property="og:image" content="http://farm7.staticflickr.com/6198/6038315155_2875860c4b_z.jpg" />
64
+ <meta property="og:image:width" content="640" />
65
+ <meta property="og:image:height" content="360" />
66
+ <meta property="flickr_photos:by" content="http://www.flickr.com/people/justaslice/" />
67
+ <meta property="flickr_photos:camera" content="http://www.flickr.com/cameras/sony/dsc-hx9v/" />
68
+ <meta property="flickr_photos:galleries" content="http://www.flickr.com/photos/66746624@N03/galleries/72157628714217993" />
69
+ <meta property="flickr_photos:location:latitude" content="34.118344" />
70
+ <meta property="flickr_photos:location:longitude" content="-118.300012" />
71
+ <meta property="twitter:description" content="The view from the Griffith Observatory, Los Angeles; July 2011 Panorama Stitched / Sweep Panorama For closer look at Downtown LA: www.flickr.com/photos/justaslice/6014529411" />
72
+ <meta property="twitter:app:url:iphone" content="flickr://flickr.com/photos/justaslice/6038315155/" />
73
+ <meta name="viewport" content="width=1036">
74
+ <meta name="application-name" content="Los Angeles View 2011 | Flickr - Photo Sharing!"/>
75
+ <meta name="msapplication-TileColor" content="#ffffff"/>
76
+ <meta name="msapplication-TileImage" content="http://l.yimg.com/g/images/favicon-msapplication-tileimage.png"/>
77
+ <script>
78
+ F = window.F || {};
79
+ (function(F){var TIMEOUT=10000;var pollers={},pollerCount=0,cachedEls={},testDiv=document.createElement('div'),support={nativeTrim:typeof String.prototype.trim==='function',classList:'classList'in testDiv};F.util={clone:function(o){if(o===null||typeof o!=='object'){return o;} var c=new o.constructor();for(var k in o){c[k]=F.util.clone(o[k]);} return c;},trim:function(str){if(support.nativeTrim){return str.trim();} else{return str.replace(/^\s+|\s+$/g,'');}},getElementById:function(id){if(!cachedEls[id]){cachedEls[id]=document.getElementById(id);} return cachedEls[id];},hasClass:function(el,className){if(!el){return false;} if(support.classList){return el.classList.contains(className);} else{var re=new RegExp('(?:^|\\s+)'+className+'(?:\\s+|$)');return re.test(el.className);}},addClass:function(el,className){if(!el){return;} if(support.classList){el.classList.add(className);} else if(!F.util.hasClass(el,className)){el.className=F.util.trim([el.className,className].join(' '));}},removeClass:function(el,className){if(support.classList){el.classList.remove(className);} else if(className&&F.util.hasClass(el,className)){el.className=F.util.trim(el.className.replace(new RegExp('(?:^|\\s+)'+className+'(?:\\s+|$)'),' '));if(F.util.hasClass(el,className)){F.util.removeClass(el,className);}}},whenElementExists:function(id,callback,interval){var iterations=0,pollerId=id+pollerCount++;interval=interval||10;var checkElementAndCallback=function(){var el=(id==='body')?document.body:F.util.getElementById(id);if(el){clearInterval(pollers[pollerId]);callback(el);return true;} else if(++iterations*interval>=TIMEOUT){clearInterval(pollers[pollerId]);return false;}};if(!checkElementAndCallback()){pollers[pollerId]=setInterval(checkElementAndCallback,interval);}},addListener:function(el,type,fn,capture){if(el.addEventListener){el.addEventListener(type,fn,capture);} else if(el.attachEvent){el.attachEvent('on'+type,fn);}},setCookie:function(name,value,days,path){var date,expires='',path=path||'/';if(days){date=new Date();date.setTime(date.getTime()+(days*24*60*60*1000));expires='; expires='+date.toGMTString();} document.cookie=name+'='+value+expires+'; path='+path;},getCookie:function(name){var i,cookies=' '+document.cookie+';';name=' '+name+'=';if((i=cookies.indexOf(name))>=0){i+=name.length;cookies=cookies.substring(i,cookies.indexOf(';',i));return cookies;}},removeCookie:function(name){return F.util.setCookie(name,'',0);}};testDiv=null;}(F));
80
+ (function(wipe_msg, root_url, bust_image_search, is_debug) {
81
+ var w=window,d=document,top_loc=top.location,self_loc=self.location,referrer=d.referrer,flickr_regex=/^[A-Za-z]+:\/{2,3}(?:[0-9\-A-Za-z]+\.)*flickr\.(?:(?:com)|(?:net))(?::\d+)?(?:\/[^?#]*)?(?:\?[^#]*)?(?:#.*)?$/i,self_is_offline=(self_loc.protocol&&self_loc.protocol.indexOf('http')<0),self_is_flickr=flickr_regex.test(self_loc),self_url=self_is_flickr?self_loc.href:root_url+'/',photo_page_re_result=self_is_flickr&&/\/photos\/[^\/]+\/(\d+)/i.exec(self_loc.pathname),photo_id=photo_page_re_result&&parseInt(photo_page_re_result[1],10),frame_whitelist_regex=/^[A-Za-z]+:\/{2,3}(?:[0-9\-A-Za-z]+\.)*(?:(?:flickr\.(?:(?:com)|(?:net)))|(?:yahoo\.(?:(?:com)|(?:net)|(?:(?:com?\.)?[A-Za-z]{2})))|(?:creativecommons\.org)|(?:eyewonderlabs\.com)|(?:stumbleupon\.com)|(?:screenqueri\.es)|(?:su\.pr)|(?:bing\.com)|(?:google\.(?:(?:com)|(?:(?:com?\.)?[A-Za-z]{2}))))(?::\d+)?(?:\/[^?#]*)?(?:\?[^#]*)?(?:#.*)?$/i,self_whitelist_regex=/^[A-Za-z]+:\/{2,3}(?:[0-9\-A-Za-z]+\.)*(?:(?:flickr\.(?:(?:com)|(?:net)))|(?:yahoo\.(?:(?:com)|(?:net)|(?:(?:com?\.)?[A-Za-z]{2})))|(?:translate\.google\.com)|(?:translate\.googleusercontent\.com)|(?:web\.archive\.org))(?::\d+)?(?:\/[^?#]*)?(?:\?[^#]*)?(?:#.*)?$/i,image_search_regex=/^[A-Za-z]+:\/{2,3}(?:[0-9\-A-Za-z]+\.)*(?:(?:(?:google)|(?:bing))\.(?:(?:com)|(?:(?:com?\.)?[A-Za-z]{2})))(?::\d+)?(?:\/[^?#]*)?(?:\?[^#]*)?(?:#.*)?$/i,referrer_is_flickr=flickr_regex.test(referrer),referrer_is_whitelisted=frame_whitelist_regex.test(referrer),referrer_is_image_search=image_search_regex.test(referrer),faq_url=root_url+'/frame_redir.gne?source='+encodeURIComponent(referrer)+'&dest='+encodeURIComponent(root_url+'/help/blogging/#1392237'),redir_url=root_url+'/frame_redir.gne?source='+encodeURIComponent(referrer)+'&dest='+encodeURIComponent(self_url),should_bust,should_wipe,base;function redirect(){w.onerror=function(){return true;};if(typeof top_loc.replace==='function'){top_loc.replace(redir_url);}else{top_loc.href=redir_url;}} function wipe(){var logo_w,font_size,win_width,html,msg;w.onerror=function(){return true;};logo_w=162;font_size='12px';setInterval(function(){if(d&&d.body){if(d.body.lastChild&&d.body.lastChild.className&&d.body.lastChild.className==='wipe-msg'){}else{msg=wipe_msg.replace('{url}',redir_url).replace('{faq}',faq_url);if(typeof w.innerWidth==='number'){win_width=w.innerWidth;}else if(d.body.clientWidth){win_width=d.body.clientWidth;} if(win_width&&win_width<162){logo_w=win_width;font_size='10px';} html='<div class="wipe-msg" style="font-size:'+font_size+';text-align:left;"><div style="margin-bottom:3px;"><img alt="Flickr" width="'+logo_w+'" src="http://l.yimg.com/g/images/logo_home.png"></div><div style="padding-left:5px;line-height:1.2em;">'+msg+'</div></div>';d.body.style.margin='0';d.body.innerHTML=html;}}},200);} function get_frame_depth(){var win=self,frame_depth=0;while(win!==win.parent){frame_depth+=1;win=win.parent;} return frame_depth;} function debug(){if(is_debug){console.log(arguments);}} if(self_is_flickr&&self_loc===top_loc){}else if(self_is_offline){}else if(!self_is_flickr&&!self_whitelist_regex.test(self_loc)){should_wipe=true;}else if(bust_image_search&&photo_id&&referrer_is_image_search){should_bust=true;}else if(referrer&&!referrer_is_whitelisted&&get_frame_depth()>0){should_wipe=true;}else if(!referrer_is_flickr&&get_frame_depth()>1){should_wipe=true;} if(is_debug){debug({self_is_flickr:self_is_flickr,top_loc:top_loc,self_loc:self_loc,referrer:referrer,self_is_offline:self_is_offline,self_is_flickr:self_is_flickr,self_url:self_url,photo_page_re_result:photo_page_re_result,photo_id:photo_id,referrer_is_flickr:referrer_is_flickr,referrer_is_whitelisted:referrer_is_whitelisted,referrer_is_image_search:referrer_is_image_search,self_is_whitelisted:self_whitelist_regex.test(self_loc),frame_depth:get_frame_depth(),faq_url:faq_url,redir_url:redir_url,should_bust:should_bust,should_wipe:should_wipe,base:base});}else{if(should_bust){setTimeout(function(){w.onbeforeunload=w.onunload=null;redirect();},1000);setTimeout(wipe,2000);redirect();}else if(should_wipe){wipe();}else if(referrer_is_whitelisted&&!referrer_is_flickr){base=document.createElement('base');base.target='_top';document.getElementsByTagName('head')[0].appendChild(base);}}
82
+ }('We\'re sorry, Flickr <a href="{faq}" target="_top">doesn\'t allow embedding within frames</a>.<br><br>If you\'d like to view this content, <a href="{url}" target="_top">please click here</a>.', 'http://www.flickr.com', true, false));
83
+ (function(F){var el,w,d,n,ua,ae,is_away_from_tab,de,disabled=false,assigned_events=false;w=window;d=w.document;n=w.navigator;ua=n&&n.userAgent;var supportsActiveElt=false;if('activeElement'in document){supportsActiveElt=true;} function doF(e,me){if(is_away_from_tab&&e.target===w){is_away_from_tab=false;}else{el=e.target||me;}} function doB(e){if(el!==w&&e.target===w){is_away_from_tab=true;}else{el=undefined;}} function get(){var nt,in_doc;if(supportsActiveElt){el=document.activeElement;}else if(el&&(nt=el.nodeType)){if(d.contains){if((ua&&ua.match(/Opera[\s\/]([^\s]*)/))||nt===1){in_doc=d.contains(el);}else{while(el){if(d===el){in_doc=true;} el=el.parentNode;}}}else if(d.compareDocumentPosition){if(d===el||!!(d.compareDocumentPosition(el)&16)){in_doc=true;}}else{var myEl=el;while(myEl){if(d===myEl){in_doc=true;} myEl=myEl.parentNode;}}} return in_doc?el:undefined;} function isInput(){var n=get(),nn;if(!n){return false;} nn=n.nodeName.toLowerCase();return(nn==='input'||nn==='textarea');} function instrumentInputs(){if(!assigned_events){var i,me,inputs=document.getElementsByTagName('input'),tas=document.getElementsByTagName('textarea'),nInputs=inputs.length,nTextAreas=tas.length;if(nInputs||nTextAreas){for(i=0;i<nTextAreas;i++){me=tas[i];tas[i].attachEvent('onfocusin',function(e){if(!disabled){doF(e,me);}});} for(i=0;i<nInputs;i++){me=inputs[i];inputs[i].attachEvent('onfocusin',function(e){if(!disabled){doF(e,me);}});} assigned_events=true;}}} function destroy(){disabled=true;if(de=w.removeEventListener){de('focus',doF,true);de('blur',doB,true);}else if(de=d.removeEvent){de('blur',doB);}} function dom_onready(onready_handler){if(typeof onready_handler==='undefined'){return false;} if(document.readyState==='complete'){onready_handler();}else{if(document.addEventListener){DOMContentLoaded=function(){document.removeEventListener('DOMContentLoaded',DOMContentLoaded,false);onready_handler();};}else if(document.attachEvent){DOMContentLoaded=function(){if(document.readyState==='complete'){document.detachEvent('onreadystatechange',DOMContentLoaded);onready_handler();}};} if(document.addEventListener){document.addEventListener('DOMContentLoaded',onready_handler,false);}else if(document.attachEvent){document.attachEvent('onreadystatechange',onready_handler);}}} if(ae=w.addEventListener){ae('focus',doF,true);ae('blur',doB,true);}else if(ae=d.attachEvent){dom_onready(instrumentInputs);ae('onfocusout',doB);} F.focus_tracker={get:get,isInput:isInput,destroy:destroy};}(F));
84
+ (function(){var mod='imageChecker',imgs={},i=0;function stamp(node){return node.id||(node.id=mod+'-'+new Date().getTime()+i++);} F[mod]={load:function(node){imgs[stamp(node)]=true;},error:function(node){imgs[stamp(node)]=false;},check:function(node){return imgs[stamp(node)];}};}());
85
+ (function(F){var listeners=[],old_func,enabled=false,graylist=false;var okB=[/AppleWebKit\/([^\s]*)/,/MSIE\s(([^0-7]{1}\.|[0-9]{2})[^;]*)/,/Gecko\/([^\s]*)/,/Opera/];function sniff(){var nav=window.navigator,ua=nav&&nav.userAgent,len=okB.length;if(ua.match(/Mobile/)){return false;} if(ua.match(okB[1])){if(document.documentMode==7){return false;} graylist=true;} if(ua.match(/Version\/[1234][0-9\.\s]+Safari/i)){return false;} for(var i=0;i<len;i++){if(ua.match(okB[i])){return true;}};return false;} enabled=sniff();if(typeof document.onkeydown==='function'){old_func=document.onkeydown;document.onkeydown=combine_funcs(old_func,handle_keydown);} else{document.onkeydown=handle_keydown;} function handle_keydown(e){if(enabled&&!F.focus_tracker.isInput()&&!graylist){var evt=(e)?e:window.event;if(listeners[evt.keyCode]){listeners[evt.keyCode](evt);evt.returnValue=false;return false;}}} function combine_funcs(old_func,new_func){return function(e){old_func(e);new_func(e);};} F.keyListener={on:function(key_code_string,func){if(enabled){var key_codes=key_code_string.split(',');for(var n=0,len=key_codes.length;n<len;n++){if(typeof listeners[key_codes[n]]==='function'){func=combine_funcs(listeners[key_codes[n]],func);} listeners[key_codes[n]]=func;}}},detach_all:function(){enabled=false;},detach:function(key_codes){for(var n=0,len=key_codes.length;n<len;n++){if(typeof listeners[key_codes[n]]==='function'){listeners[key_codes[n]]=false;}}},enabled:enabled};}(F));
86
+ F.keyListener.on('37,39,74,75', function(e) {
87
+ if (F.focus_tracker.isInput() || e.altKey || e.ctrlKey || e.metaKey || e.shiftKey) return;
88
+ if (e.keyCode === 39 || e.keyCode === 74) window.location = '/photos/ninedragons/4829237773/in/photolist-aczWHZ-8mK79e-88Danv-7FboPA-b3bDUc-cVdbVu-7LhXab-8uV7Uf-f89C1W-eKigsX-doZbMd-e8r82J-e4MF3A-e8kyQt-e4Mxry-bNTrhx-fjwAHB-9bTwKf-825f9g-8oHZ6K-bUbaur-7CyyYz-7CCoLY-a7uSuo-7Ze8mX-affZQb-fiZrhM-fjezCL-dERd9E-anqRRi-awxtHG-895nYC-bTw9JP-bR23cZ-8zqnfF-bv6NHe-aUqrxB-8xg3FV-eKVYPT-btWMPc-fkC6aa-fkSfpf-8pSW21-b8ngGe-8Wra34/';
89
+ });
90
+ (function(){var w,d,c,smarty_timestamp,decode,nameEq,i,len,cookies,cookie,dv_cookie,subs,sub,c_time,photo_id,dv_id;w=window;d=document;c=d.cookie;smarty_timestamp='1375411893';photo_id='6038315155';dv_id='aczWHZ';nameEq='dvz=';decode=decodeURIComponent;if(!smarty_timestamp||!dv_id||c.indexOf(nameEq)===-1){return false;} cookies=c.split(';');for(i=0,len=cookies.length;i<len;i+=1){cookie=cookies[i];while(cookie.charAt(0)===' '){cookie=cookie.substring(1,cookie.length);} if(cookie.indexOf(nameEq)===0){dv_cookie=decode(cookie.substring(nameEq.length,cookie.length));break;}} if(dv_cookie){nameEq=decode(dv_id)+'=';if(dv_cookie.indexOf(nameEq)===-1){return false;} subs=dv_cookie.split('&');for(i=0,len=subs.length;i<len;i+=1){sub=subs[i];if(sub.indexOf(nameEq)===0){c_time=decode(sub.substring(nameEq.length,sub.length));break;}} if(c_time&&c_time>=smarty_timestamp){if(photo_id){document.cookie='flignoreview='+photo_id+'; expires='+(new Date((new Date()).getTime()+1000*60*5)).toUTCString()+'; path=/; domain=.flickr.com';} w.setTimeout(function(){d.body.style.visibility='hidden';w.location.reload();},0);}}}()); (function(){var l,hash_pos,photo_page_regex,path_parts,hash_path_parts,old_id,new_id,url_values,hash_values,new_location,i,len,states,state;l=window.location;hash_pos=l.href.indexOf('#');if(hash_pos===-1){return;} photo_page_regex=/^\/photos\/([^\/]+)\/(\d+)(?:\/in\/([^\/]+))?(?:(?:\/page(\d+))|(?:\/(lightbox))|(?:\/(tour)))?/;path_parts=photo_page_regex.exec(l.pathname);if(!path_parts||!path_parts instanceof Array||!path_parts[1]||!path_parts[2]){return;} old_id=path_parts[2];new_location={hash:l.href.substr(hash_pos),host:l.host,pathname:l.pathname,protocol:l.protocol,search:l.search};if(new_location.hash.substr(1,1)==='/'){new_location.pathname=new_location.hash.substr(1);new_location.search='';new_location.hash='';hash_path_parts=photo_page_regex.exec(new_location.pathname);if(!hash_path_parts||!hash_path_parts instanceof Array||!hash_path_parts[1]||!hash_path_parts[2]){return;} new_id=hash_path_parts[2];} new_location.href=new_location.protocol+'//'+new_location.host+new_location.pathname+new_location.search+new_location.hash;if(new_location.pathname!==l.pathname){if(old_id===new_id){document.cookie='flignoreview='+new_id+'; expires='+(new Date((new Date()).getTime()+1000*60*5)).toUTCString()+'; path=/; domain=.flickr.com';}else{} if(typeof l.replace==='function'){l.replace(new_location.href);}else{l.href=new_location.href;}}}());
91
+ (function(F){var registered_ids={},id_to_module_map={},interim_actions={},cleanup_actions={},clicked_ids={},queueing=true;function jsFailBeacon(){var key='flickr.jsfail.fail',title='flickr_js_fail',endpoint='/flanal_event.gne?target='+key+'&title='+title+'&rand='+Math.random();F.jsFail=true;window.setTimeout(function(){if(F.jsFail&&(Math.floor(Math.random()*100)==1)){(new Image()).src=endpoint;}},10000);} F.jsFailBeacon=jsFailBeacon;function register_id(id,callbacks,required_module){id=id.replace('*','.*');registered_ids[id]=true;id_to_module_map[id]=required_module;interim_actions[id]=callbacks.interim;cleanup_actions[id]=callbacks.cleanup;} function rectify_id(actual_id){for(var key_id in registered_ids){if(registered_ids.hasOwnProperty(key_id)&&actual_id.search(key_id)!==-1){return key_id;}} return actual_id;} F.actionQueue={register:function(id,callbacks,required_module){if(id instanceof Array){for(var n=0,len=id.length;n<len;n++){register_id(id[n],callbacks,required_module);}} else{register_id(id,callbacks,required_module);}},queue_click:function(id){var id_key=rectify_id(id);if(queueing&&id&&id_key&&registered_ids[id_key]){clicked_ids[id_key]=true;if(typeof interim_actions[id_key]==='function'){interim_actions[id_key].apply(this,arguments);} return false;} else if(queueing){return false;} return true;},module_loaded:function(module_name,id_to_restrict_to){queueing=false;for(var id in id_to_module_map){if(id_to_module_map.hasOwnProperty(id)&&clicked_ids[id]&&id_to_module_map[id]===module_name){cleanup_actions[id](id_to_restrict_to?id_to_restrict_to:id);}}},get_viewport_dimensions:function(){var doc=window.document,win=doc.defaultView||doc.parentWindow,mode=doc['compatMode'],h=win.innerHeight,w=win.innerWidth,root=doc['documentElement'];if(mode&&navigator.userAgent.search(/Opera[\s\/]([^\s]*)/)===-1){if(mode!='CSS1Compat'){root=doc.body;} h=root.clientHeight;w=root.clientWidth;} return{height:h,width:w};}};}(F)); (function(F){var geoOverlay1,geoOverlay2,last_context_clicked;F.actionQueue.register('button-bar-fave',{interim:function(id){var fave_button=document.getElementById(id);if(fave_button.className.search(/fave/)===-1){fave_button.className='Butt ywa-track fave-button fave';} else{fave_button.className='Butt ywa-track fave-button';}},cleanup:function(id){F.actionQueue['photo-button-bar'].toggle_fave();}},'photo-button-bar');F.actionQueue.register('context-link-*',{interim:function(id){last_context_clicked=id;},cleanup:function(id){if(last_context_clicked===id){F.actionQueue['photo-filmstrips'][last_context_clicked].display();}}},'photo-filmstrips');F.actionQueue.register('add-a-tag',{interim:function(id){},cleanup:function(id){}},'photo-tags');F.actionQueue.register('add-a-person',{interim:function(id){},cleanup:function(id){}},'photo-people');F.actionQueue.register('photoGeolocationEdit-addbutton',{interim:function(id){},cleanup:function(id){}},'mapr');F.actionQueue.register(['edit-privacy','edit-viewgeo','edit-comment-perm','edit-addmeta','edit-nipsa','edit-safety-level','edit-content-type'],{interim:function(id){},cleanup:function(id){}},'photo-sidebar-owner');F.actionQueue.register('photoGeopanel-*',{interim:function(id){photoGeopanel=document.createElement('div');photoGeopanel.className="interim-spinner-transparent";document.body.appendChild(photoGeopanel);},cleanup:function(id){if(typeof F.actionQueue.photoGeopanel.display==='function'){F.actionQueue.photoGeopanel.display();} if(photoGeopanel){photoGeopanel.parentNode.removeChild(photoGeopanel);}}},'photoGeopanel');F.actionQueue.register('photoGeolocation-*',{interim:function(id){geoOverlay1=document.createElement('div');geoOverlay1.className="interim-spinner-transparent";document.body.appendChild(geoOverlay1);},cleanup:function(id){if(F.actionQueue.photoGeolocation&&typeof F.actionQueue.photoGeolocation.display==='function'){F.actionQueue.photoGeolocation.display();} if(geoOverlay1&&geoOverlay1.parentNode){geoOverlay1.parentNode.removeChild(geoOverlay1);}}},'photoGeolocation');F.actionQueue.register('photoGeolocationEdit-*',{interim:function(id){geoOverlay2=document.createElement('div');geoOverlay2.className="interim-spinner-transparent";document.body.appendChild(geoOverlay2);},cleanup:function(id){if(F.actionQueue.photoGeolocationEdit&&typeof F.actionQueue.photoGeolocationEdit.display==='function'){F.actionQueue.photoGeolocationEdit.display();} if(geoOverlay2){geoOverlay2.parentNode.removeChild(geoOverlay2);}}},'photoGeolocationEdit');}(F));
92
+ (function(F, no_fake_menus) {
93
+ F.actionQueue.register('button-bar-options',{interim:function(id){var button=document.getElementById(id);if(button.className.search(/ActiveButt/)===-1){button.className=button.className+' ActiveButt';} button.blur();if(!no_fake_menus&&!document.getElementById('interim-menu-action')){var fake_menu=document.createElement('div');fake_menu.id='interim-menu-action';fake_menu.className=(document.getElementById('button-bar-fave'))?((document.getElementById('button-bar-fave').className.replace(/fave-button/,'').search(/fave/)!==-1)?'interim-menu interim-menu-fave':'interim-menu'):'interim-menu interim-menu-owner';fake_menu.innerHTML='<div class="yui3-popover-arrow yui3-popover-arrow-t interim-menu-arrow">◣</div>'+'<div class="interim-menu-arrow-mask"></div>';document.getElementById('nav').appendChild(fake_menu);} if(document.getElementById('interim-menu-share')){var fake_share_menu=document.getElementById('interim-menu-share');fake_share_menu.parentNode.removeChild(fake_share_menu);if(document.getElementById('button-bar-share')){document.getElementById('button-bar-share').className=document.getElementById('button-bar-share').className.replace(/ActiveButt/,'');}}},cleanup:function(id){var fake_menu=document.getElementById('interim-menu-action');if(fake_menu){fake_menu.parentNode.removeChild(fake_menu);} F.actionQueue['photo-button-bar'].display_action();}},'photo-button-bar');
94
+ }(F, true)); (function(F, no_fake_menus) {
95
+ F.actionQueue.register('share-this-v3-more-button',{interim:function(id){var button=document.getElementById(id);if(button.className.search(/ActiveButt/)===-1){button.className=button.className+' ActiveButt';} button.blur();if(!no_fake_menus&&!document.getElementById('interim-menu-share')){var fake_menu=document.createElement('div');fake_menu.id='interim-menu-share';fake_menu.className=(document.getElementById('button-bar-fave'))?((document.getElementById('button-bar-fave').className.replace(/fave-button/,'').search(/fave/)!==-1)?'interim-menu interim-menu-fave':'interim-menu'):'interim-menu interim-menu-owner';fake_menu.innerHTML='<div class="yui3-popover-arrow yui3-popover-arrow-t interim-menu-arrow">◣</div>'+'<div class="interim-menu-arrow-mask"></div>';document.getElementById('nav').appendChild(fake_menu);} if(document.getElementById('interim-menu-action')){var fake_action_menu=document.getElementById('interim-menu-action');fake_action_menu.parentNode.removeChild(fake_action_menu);if(document.getElementById('button-bar-options')){document.getElementById('button-bar-options').className=document.getElementById('button-bar-options').className.replace(/ActiveButt/,'');}}},cleanup:function(id){var fake_menu=document.getElementById('interim-menu-share');if(fake_menu){fake_menu.parentNode.removeChild(fake_menu);} F.actionQueue['share-this-v3-more-button'].display_share();}},'share-this-v3-more-button');
96
+ }(F, true));
97
+ (function(F){var nav;function hasClass(o,cStr){return(o?new RegExp('(^|\\s)'+cStr+'(\\s|$)').test(o.className):false);};function addClass(o,cStr){if(!o||!cStr||hasClass(o,cStr)){return false;} o.className=(o.className?o.className+' ':'')+cStr;};function removeClass(o,cStr){if(!o||!cStr||!hasClass(o,cStr)){return false;} o.className=o.className.replace(new RegExp('( '+cStr+')|('+cStr+')','g'),'');};function toggleClass(o,sClass){if(hasClass(o,sClass)){removeClass(o,sClass);}else{addClass(o,sClass);}} function getParentByNodeName(oChild,sParentNodeName){if(!oChild||!sParentNodeName){return false;} sParentNodeName=sParentNodeName.toLowerCase();while(oChild.parentNode&&sParentNodeName!==oChild.parentNode.nodeName.toLowerCase()){oChild=oChild.parentNode;} return(oChild.parentNode&&sParentNodeName===oChild.parentNode.nodeName.toLowerCase()?oChild.parentNode:null);};F.actionQueue.register('flickr-nav',{interim:function(id,e){var oClicked=(e?(e.target?e.target:e.srcElement):null),oLI;if(!oClicked){return false;} oLI=getParentByNodeName(oClicked,'li');},cleanup:function(id){}},'flickr-nav');}(F));
98
+ (function(F){var overlay;F.actionQueue.register('lightbox',{interim:function(id){var viewport_dimensions=F.actionQueue.get_viewport_dimensions();overlay=document.createElement('div');overlay.className='interim-overlay';overlay.style.width=viewport_dimensions.width+'px';overlay.style.height=viewport_dimensions.height+'px';overlay.innerHTML='<img src="http://l.yimg.com/g/images/progress/balls-24x12-black.gif" class="interim-spinner">';document.body.appendChild(overlay);},cleanup:function(id){if(F.actionQueue['lightbox']&&typeof F.actionQueue['lightbox'].open==='function'){F.actionQueue['lightbox'].open();} if(overlay){overlay.parentNode.removeChild(overlay);}}},'lightbox');}(F));
99
+ </script>
100
+ <script src="http://l.yimg.com/g/combo/1/3.7.3?j/yui/3.7.3/yui/yui-.E.A.v25Pmk&amp;j/yui/3.7.3/.FN/.FN-.E.A.v25Pmk"></script>
101
+ <link rel="stylesheet" href="http://l.yimg.com/g/combo/1/3.7.3?c/c_.X_nav_2013.BC.v2bGjc&c/c_.J_.D.BC.v2baqP&c/c_.B_2013.BC.v2bGjc&c/c_.B-2013-icons.BC.v2bGjc&c/c_.B-.D-.F.BC.v27yEc&c/c_.IS-.BB-2013.BC.v2ak4D&c/c_.T-bar.BC.v27yEc&c/c_.N.BC.v2am8H&c/c_.KY.BC.v2bb42&c/c_.B-.Ms.BC.v27D4n&c/c_.CX-.CY-2013.BC.v295v2&c/c_box-.DG.BC.v27yEc&c/c_.B-.BE-.D.BC.v27yEc&c/c_.EC-.L-.D-2013.BC.v2a6E4&c/c_.B-.LGs-2013.BC.v2agBD&c/c_.B-.KD-2013.BC.v2a2m4&c/c_.DN-this-2013.BC.v29gjB&c/c_.FW-.HN.BC.v29hvz&c/c_.B-.BBs-v3.BC.v27yEc&c/c_.CN-.DD.BC.v27yEc&c/c_.EG-.D.BC.v27yEc&c/c_.EM_.D.BC.v28KjX&" type="text/css">
102
+ <link rel="stylesheet" type="text/css" href="http://l.yimg.com/zz/combo?kx/yucs/uh3/uh3_top_bar/css/224/no_icons-min.css
103
+ " />
104
+ <link rel="shortcut icon" type="image/ico" href="http://l.yimg.com/g/favicon.ico">
105
+ <link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="Flickr">
106
+ </head>
107
+ <body class="zeus en-us with-eyebrow new-footer new-header super-liquid extras signed-out new-footer-tight-ass header-underlap">
108
+ <script>(function(){var b=document.body,ua=typeof YUI==='function'&&YUI()&&YUI().UA,os=ua&&(ua.os?ua.os.replace(/\s/g,''):'')||(ua.ios?'ios':'')||(ua.android?'android':'');function make_class(browser){return(os&&ua[browser])?'ua-'+os+'-'+browser+' '+'ua-'+os+'-'+browser+'-'+Math.floor(ua[browser]):'';} b.className=[b.className,'js',make_class('webkit')||make_class('ie')||make_class('gecko')].join(' ');}());</script>
109
+ <script>
110
+ /*jslint white: false, undef: false, browser: true, eqeqeq: true, regexp: false, newcap: true, immed: true, onevar: false, plusplus: false */
111
+ /*global F: false, YUI: false, window: false */
112
+ (function(F){var OFFSETS={GLOBAL_NAV:null,UNIVERSAL_HEADER:null};function alignToAnchor(anchor,preventDelay){var delay=(!preventDelay&&document.documentMode)?800:50;var elt=document.getElementById(anchor)||document.getElementsByName(anchor)[0];if(elt){setTimeout(function(){var destination=elt.offsetTop,origPosition=elt.style.position;if(F.util.hasClass(document.body,'header-underlap')){destination-=OFFSETS.GLOBAL_NAV;} if(F.util.hasClass(document.body,'with-eyebrow')){destination-=OFFSETS.UNIVERSAL_HEADER;} if(!origPosition){elt.style.position='relative';destination=Math.max(destination,elt.offsetTop-destination);elt.style.position=origPosition;} window.scrollTo(0,destination);},delay);}} function normalizeAnchor(){var anchor=document.location.hash;if(anchor[0]==='#'){anchor=anchor.replace('#','');} return anchor;} function handleEvent(elt,eventName,handler,useCapture){useCapture=useCapture||false;if(elt.addEventListener){elt.addEventListener(eventName,handler,useCapture);}else if(elt.attachEvent){elt.attachEvent('on'+eventName,handler);}} F.anchorRepositioner={init:function(){F.util.whenElementExists('global-nav',function(nav){OFFSETS.GLOBAL_NAV=nav.offsetHeight;});F.util.whenElementExists('eyebrow',function(eyebrow){OFFSETS.UNIVERSAL_HEADER=eyebrow.offsetHeight;});var pageLoadAnchor=normalizeAnchor();if(pageLoadAnchor){handleEvent(document,'DOMContentLoaded',function(){alignToAnchor(pageLoadAnchor);});} handleEvent(window,'hashchange',function(e){if(e.preventDefault){e.preventDefault();}else{e.returnValue=false;} var anchor=normalizeAnchor();alignToAnchor(anchor);},true);}};}(F)); F.anchorRepositioner.init();
113
+ </script>
114
+ <script>
115
+ /*jslint white: false, undef: false, browser: true, eqeqeq: true, regexp: false, newcap: true, immed: true, onevar: false, plusplus: false */
116
+ /*global F: false, YUI: false, window: false */
117
+ (function(F) {
118
+ var useNewExplore = false ,
119
+ useEyebrow = true,
120
+ HEIGHT_TO_PHOTO_TOP = 71,
121
+ savingThrowAgainstTrailingCommas = true;
122
+ var NEW_PHOTO_HEIGHT;
123
+ var MIN_PAGE_WIDTH=1024,MIN_PAGE_HEIGHT=768,MIN_PHOTO_WIDTH=975,SCROLLBAR_GUTTER=26,PHOTO_INTERIOR_PADDING_TOP=0,PHOTO_INTERIOR_PADDING_SIDES=10,PHOTO_TITLE_HEIGHT=41,PHOTO_ATTRIBUTION_HEIGHT=NEW_PHOTO_HEIGHT||45;var bodyInitialized=false,subnavDefaultWidth=0;function verifyDimension(n){return(typeof n==='number'&&n>0);} function resizeCoverPhoto(subnav){var main=F.util.getElementById('main')||F.util.getElementById('Main');if(F.util.hasClass(document.body,'breakout')){subnav.style.left=0;subnav.style.width='auto';return;} if(!subnavDefaultWidth){subnavDefaultWidth=main.offsetWidth;} var clientWidth=document.body.clientWidth;if(clientWidth<975){return;} var offset=Math.ceil((clientWidth-subnavDefaultWidth)/2);subnav.style.left=(-1*offset)+'px';subnav.style.width=clientWidth+'px';} F.liquid={getDimensions:function(preventHighResolution){var doc=window.document,win=doc.defaultView||doc.parentWindow,mode=doc.compatMode,h=win.innerHeight,w=win.innerWidth,root=doc.documentElement,preventHighResolution=preventHighResolution||false,pixelRatio=preventHighResolution?1:(window.devicePixelRatio||1);if(mode){if(mode!=='CSS1Compat'){root=doc.body;} h=root.clientHeight;w=root.clientWidth;} h*=pixelRatio;w*=pixelRatio;if(verifyDimension(w)&&verifyDimension(h)){return{height:h,width:w,isHighResolution:(pixelRatio>1)};} return false;},getAvailableSpaceForPhoto:function(){var dimensions,pixelRatio=window.devicePixelRatio||1;dimensions=F.liquid.getDimensions()||{width:MIN_PAGE_WIDTH,height:MIN_PAGE_HEIGHT};return{w:Math.max(dimensions.width-(2*pixelRatio*PHOTO_INTERIOR_PADDING_SIDES),pixelRatio*MIN_PHOTO_WIDTH),h:dimensions.height-(pixelRatio*(HEIGHT_TO_PHOTO_TOP+PHOTO_INTERIOR_PADDING_TOP+PHOTO_TITLE_HEIGHT+PHOTO_ATTRIBUTION_HEIGHT))};},getAvailableSpaceForPhotoContainer:function(){var dimensions,pixelRatio=window.devicePixelRatio||1;dimensions=F.liquid.getDimensions()||{width:MIN_PAGE_WIDTH,height:MIN_PAGE_HEIGHT};dimensions.width/=pixelRatio;dimensions.height/=pixelRatio;return{w:dimensions.width,h:dimensions.height-HEIGHT_TO_PHOTO_TOP-PHOTO_ATTRIBUTION_HEIGHT};},resizePage:function(){var pageDimensions=F.liquid.getDimensions(true),pageWidth=pageDimensions.width,pageHeight=pageDimensions.height-HEIGHT_TO_PHOTO_TOP;F.util.setCookie('liqpw',pageWidth,365);F.util.setCookie('liqph',pageHeight,365);if(!bodyInitialized){F.util.whenElementExists('body',function(body){F.util.addClass(body,'liquid');bodyInitialized=true;});} F.util.whenElementExists('subnav-refresh',function(subnav){resizeCoverPhoto(subnav);});return pageWidth;}};}(F)); F.liquid.resizePage();
124
+ /*jslint white: false, undef: false, browser: true, eqeqeq: true, regexp: false, newcap: true, immed: true, onevar: false, plusplus: false */
125
+ /*global F: false, YUI: false, window: false */
126
+ (function(F) {
127
+ var photo = {
128
+ id: 6038315155,
129
+ baseURL: 'http://farm7.staticflickr.com/6198/6038315155_2875860c4b.jpg',
130
+ baseWidth: 640,
131
+ baseHeight: 360,
132
+ ratioWidthBasis: 500,
133
+ isVideo: 0,
134
+ sizeMap: [{"name":"Thumbnail","shortName":"t","maxDimension":100,"minDimension":56,"fileExtension":"_t"},{"name":"Small","shortName":"s","maxDimension":240,"minDimension":135,"fileExtension":"_m"},{"name":"Small 320","shortName":"n","maxDimension":320,"minDimension":180,"fileExtension":"_n"},{"name":"Medium 500","shortName":"m","maxDimension":500,"minDimension":281,"fileExtension":""},{"name":"Medium 640","shortName":"z","maxDimension":640,"minDimension":360,"fileExtension":"_z"},{"name":"Large","shortName":"l","maxDimension":1024,"minDimension":576,"fileExtension":"_b"}]
135
+ },
136
+ enable_photo_page_lowres = 1,
137
+ lowResPhoto,
138
+ spinner,
139
+ spinnerTimer,
140
+ enableFarmTimingSampling = true,
141
+ enablePageTimingSampling = false,
142
+ enableLightHouseTimingSampling = false;
143
+ function getIEVersion(){var rv=-1;if(navigator.appName=='Microsoft Internet Explorer'){var ua=navigator.userAgent,re=new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})");if(re.exec(ua)!=null){rv=parseFloat(RegExp.$1);}} return rv;} if(getIEVersion()<=8){enable_photo_page_lowres=false;} var DOUBLE_WIDE_SIDEBAR_CUTOFF=1350,BUFFER_PERIOD=2000,RETRY_LIMIT=3,RETRY_DELAY=500;var overlaysHaveBeenMoved=false,changingPhoto=false,currentlyUsedSize={name:''},currentlyFetchingSize={name:''},loadedSizes={},bufferImg,bufferShowingTimeout,imageRetryTimeout,errorRetries=0;function getBestSizeForAvailableSpace(targetWidth,targetHeight){var bestSize,n,len=photo.sizeMap.length,viewportRatio,photoRatio,isPhotoLandscape=(photo.baseWidth>=photo.baseHeight),dimensionToCompare=targetWidth,dimensionToCompareLabel=isPhotoLandscape?'maxDimension':'minDimension';if(photo.isVideo){bestSize={maxDimension:targetWidth,minDimension:targetWidth*((photo.baseWidth>photo.baseHeight)?photo.baseHeight/photo.baseWidth:photo.baseWidth/photo.baseHeight)};}else{viewportRatio=targetWidth/targetHeight;photoRatio=photo.baseWidth/photo.baseHeight;if(viewportRatio>photoRatio){dimensionToCompare=targetHeight;dimensionToCompareLabel=isPhotoLandscape?'minDimension':'maxDimension';} for(n=0;n<len;n++){if((photo.sizeMap[n].shortName==='m'||photo.sizeMap[n].shortName==='n'||photo.sizeMap[n].shortName==='s'||photo.sizeMap[n].shortName==='t')&&n<len-1){continue;} if(dimensionToCompare===photo.sizeMap[n][dimensionToCompareLabel]){bestSize=photo.sizeMap[n];break;} else if(dimensionToCompare>photo.sizeMap[n][dimensionToCompareLabel]){bestSize=photo.sizeMap[n];} else if(dimensionToCompare<photo.sizeMap[n][dimensionToCompareLabel]){bestSize=photo.sizeMap[n];break;}}} if(!bestSize){for(n=len-1;n>=0;n--){if(photo.sizeMap[n].shortName==='z'||photo.sizeMap[n].shortName==='m'||photo.sizeMap[n].shortName==='n'||photo.sizeMap[n].shortName==='s'||photo.sizeMap[n].shortName==='t'){bestSize=photo.sizeMap[n];break;}}} return bestSize;} function lighthouseBeacon(){if(window.LH&&window.LH.isInitialized){LH.tag('pageType',{val:'photopage'});if(F.config.flickr.user.user_ok){LH.tag('l');} LH.beacon();}else{setTimeout(function(){lighthouseBeacon();},500);}} function fetchAndSizePhoto(bestSize){if(photo.isVideo){return;} if(!F.photoFetcher.img){if(!F.util.getElementById('liquid-photo')){F.photoFetcher.img=new Image();F.photoFetcher.img.id='liquid-photo';F.photoFetcher.img.alt='photo';F.photoFetcher.img.style.opacity=0;F.photoFetcher.img.setAttribute('aria-describedby','title_div');}else{F.photoFetcher.img=F.util.getElementById('liquid-photo');} bufferImg=new Image();bufferImg.id='liquid-photo-buffer';bufferImg.alt='';bufferImg.style.opacity=0;bufferImg.style.transition='opacity .25s ease-in-out';bufferImg.setAttribute('role','presentation');bufferImg.onload=function(e){if(enablePageTimingSampling&&page_timing&&!page_timing.photo_end){page_timing.photo_end=page_timing.time_to_first_photo=new Date().getTime();} if(enableFarmTimingSampling&&farm_timing&&!farm_timing.photo_end){farm_timing.photo_end=new Date().getTime();} if(enableLightHouseTimingSampling){if(window.LH){LH.mark('mark_time_to_first_photo');lighthouseBeacon();}} if(spinnerTimer){clearTimeout(spinnerTimer);}else if(spinner){spinner.style.display='none';} bufferImg.style.opacity=1;bufferImg.style.visibility='visible';clearTimeout(bufferShowingTimeout);bufferShowingTimeout=setTimeout(function(){F.photoFetcher.img.src=bufferImg.src;F.photoFetcher.img.style.visibility='visible';F.photoFetcher.img.style.opacity=1;bufferImg.style.visibility='hidden';if(lowResPhoto){lowResPhoto.style.visibility='hidden';} if(spinner){spinner.style.display='none';}else if(spinnerTimer){clearTimeout(spinnerTimer);}},BUFFER_PERIOD);currentlyUsedSize=currentlyFetchingSize;errorRetries=0;};bufferImg.onerror=function(e){if(errorRetries++<RETRY_LIMIT){imageRetryTimeout=setTimeout(function(){bufferImg.src=createPhotoURL(currentlyFetchingSize);},RETRY_DELAY*errorRetries);}};} if(bestSize.name!==currentlyUsedSize.name&&bestSize.name!==currentlyFetchingSize.name){if(enablePageTimingSampling&&page_timing&&!page_timing.photo_start){page_timing.photo_start=new Date().getTime();} if(enableFarmTimingSampling&&farm_timing&&!farm_timing.photo_start){farm_timing.photo_start=new Date().getTime();} if(changingPhoto){F.photoFetcher.img.style.visibility=bufferImg.style.visibility='hidden';changingPhoto=false;} bufferImg.src=createPhotoURL(bestSize);if(enableFarmTimingSampling&&farm_timing){farm_timing.src=bufferImg.src;} currentlyFetchingSize=bestSize;}} function createPhotoURL(size){var url;if(size.secret){url=photo.baseURL.replace(/_.*\.jpg$/,'_'+size.secret+size.fileExtension+'.jpg');}else{url=photo.baseURL.replace(/\.jpg$/,size.fileExtension+'.jpg');} if(size.queryString){url+=size.queryString;} return url;} function resizePhotoPage(){var photoNotesInterval,availableSpace,photoWidth=F.liquid.photoWidth,photoHeight=F.liquid.photoHeight,notesRatio=F.liquid.notesRatio,verticalAdjustment=F.liquid.verticalAdjustment,pixelRatio=window.devicePixelRatio||1;photoWidth=Math.round(photoWidth);photoHeight=Math.round(photoHeight);verticalAdjustment=Math.round(verticalAdjustment);F.util.whenElementExists('photo',function(photoDiv){availableSpace=F.liquid.getAvailableSpaceForPhotoContainer();photoDiv.style.height=availableSpace.h+'px';F.util.setCookie('flphtopght',availableSpace.h,365);});F.util.whenElementExists('main-photo-container',function(mainPhotoContainer){mainPhotoContainer.style.width=photoWidth+'px';mainPhotoContainer.style.height=photoHeight+'px';mainPhotoContainer.style.marginTop=verticalAdjustment+'px';mainPhotoContainer.style.marginBottom=verticalAdjustment+'px';});if(!photo.isVideo){if(F.photoNotes){F.photoNotes.setRatio(notesRatio,photoWidth,photoHeight);}else{photoNotesInterval=setInterval(function(){if(F.photoNotes){F.photoNotes.setRatio(notesRatio,photoWidth,photoHeight);clearInterval(photoNotesInterval);}},10);}}else if(photo.isVideo){F.util.whenElementExists('stewart_swf'+photo.id,function(videoElement){videoElement.width=photoWidth;videoElement.height=photoHeight;videoElement.parentNode.style.width=photoWidth+'px';videoElement.parentNode.style.height=photoHeight+'px';videoElement.parentNode.style.zIndex=999;});F.util.whenElementExists('stewart_swf'+photo.id+'_loading_el',function(loadingElement){loadingElement.style.top=Math.floor((photoHeight-22)/2)+'px';loadingElement.style.left=Math.floor((photoWidth-66)/2)+'px';});} F.util.whenElementExists('sidebar',function(sidebar){F.util.whenElementExists('primary-column',function(primary_column){if(F.liquid.getAvailableSpaceForPhotoContainer().w>DOUBLE_WIDE_SIDEBAR_CUTOFF){F.util.addClass(sidebar,'wide-sidebar');F.util.addClass(primary_column,'wide-photo-details');F.util.whenElementExists('photo-sidebar-tags',function(target){document.getElementById('sidebar-contexts').appendChild(target.parentNode.removeChild(target));});}else{F.util.removeClass(sidebar,'wide-sidebar');F.util.removeClass(primary_column,'wide-photo-details');F.util.whenElementExists('photo-sidebar-tags',function(target){var reference=document.getElementById('photo-sidebar-tag-delete-dialog-template');document.getElementById('sidecar').insertBefore(target.parentNode.removeChild(target),reference);});}});});} F.photoFetcher={fetch:function(){var dimensions,availableSpace,bestSize,isPhotoLandscape=(photo.baseWidth>=photo.baseHeight),renderedPhotoWidth,renderedPhotoHeight,renderedPhotoVerticalAdjustment,widthKey=isPhotoLandscape?'maxDimension':'minDimension',heightKey=isPhotoLandscape?'minDimension':'maxDimension',pixelRatio=window.devicePixelRatio||1;availableSpace=F.liquid.getAvailableSpaceForPhoto();bestSize=getBestSizeForAvailableSpace(availableSpace.w,availableSpace.h);renderedPhotoHeight=Math.min(availableSpace.h/pixelRatio,bestSize[heightKey]);renderedPhotoWidth=Math.min(availableSpace.w/pixelRatio,bestSize[widthKey]/bestSize[heightKey]*renderedPhotoHeight);renderedPhotoHeight=Math.min(renderedPhotoHeight,bestSize[heightKey]/bestSize[widthKey]*renderedPhotoWidth);renderedPhotoVerticalAdjustment=(availableSpace.h/pixelRatio/2)-(renderedPhotoHeight/2);F.liquid.photoWidth=renderedPhotoWidth;F.liquid.photoHeight=renderedPhotoHeight;F.liquid.verticalAdjustment=renderedPhotoVerticalAdjustment;F.liquid.notesRatio=F.liquid.photoWidth/photo.ratioWidthBasis;F.liquid.bestSize=bestSize;fetchAndSizePhoto(bestSize);resizePhotoPage();},loadPhoto:function(){var container=F.util.getElementById('main-photo-container');if(!photo.isVideo&&enable_photo_page_lowres){var container=F.util.getElementById('main-photo-container');if(!spinnerTimer){spinnerTimer=setTimeout(function(){if(lowResPhoto&&lowResPhoto.style.visibility!=='hidden'){spinner=document.createElement('div');spinner.id='lowres-spinner';container.appendChild(spinner);spinnerTimer=undefined;}},700);} lowResPhoto=new Image();lowResPhoto.id='lowres-photo';lowResPhoto.src=photo.baseURL.replace(/\.jpg$/,'_t.jpg');lowResPhoto.style.transition='opacity .25s ease-in-out';if(F.liquid.photoWidth&&F.liquid.photoHeight){lowResPhoto.height=F.liquid.photoHeight;lowResPhoto.width=F.liquid.photoWidth;} lowResPhoto.onload=function(){container.insertBefore(lowResPhoto,F.photoFetcher.img);};} container.appendChild(F.photoFetcher.img);container.appendChild(bufferImg);},loadVideoContainer:function(content){var videoContainer=document.createElement('div');videoContainer.id='stewart_swf'+photo.id+'_div';videoContainer.className='video-wrapper';videoContainer.style.width=F.liquid.photoWidth+'px';videoContainer.style.height=F.liquid.photoHeight+'px';videoContainer.innerHTML=content;F.util.getElementById('main-photo-container').appendChild(videoContainer);},reInit:function(obj){for(var key in obj){if(obj.hasOwnProperty(key)){photo[key]=obj[key];}} overlaysHaveBeenMoved=true;changingPhoto=true;currentlyUsedSize={name:''};currentlyFetchingSize={name:''};loadedSizes={};if(bufferShowingTimeout){clearTimeout(bufferShowingTimeout);bufferShowingTimeout=undefined;} if(imageRetryTimeout){clearTimeout(imageRetryTimeout);imageRetryTimeout=undefined;} errorRetries=0;}};F.photoFetcher.fetch();
144
+ }(F));
145
+ </script>
146
+ <noscript><div id="beacon"><img src="http://geo.yahoo.com/f?s=792600415&t=c931b6dd9e6ebd835e94ba84eea9a8c3&fl_ev=0&lang=en&intl=us" width="0" height="0" alt="" /></div></noscript>
147
+ <a name="top"></a>
148
+ <div id="eyebrow"><div id="eyebrow-wrap"><style>#yucs-top-inner {
149
+ margin-left: 0;
150
+ }
151
+ #yucs-top-home .yucs-top-ico {
152
+ background-position: 0 -4230px;
153
+ width: 22px;
154
+ margin-right: 0;
155
+ }
156
+ #yucs-top-bar #yucs-top-home a {
157
+ font-size: 0;
158
+ margin-top: 2px;
159
+ color: #E9E9F2 !important;
160
+ }
161
+ #yucs-top-bar a {
162
+ -webkit-font-smoothing: antialiased;
163
+ }</style><div id="yucs" class="yucs-mc " data-lang="en-us" data-property="flickr" data-flight="1375411804" data-linktarget="_top" data-uhvc="/"> <div id="yucs-top-bar" class='yucs-ps'> <div id='yucs-top-inner'> <ul id='yucs-top-list'> <li id='yucs-top-home'><a href="http://www.yahoo.com/"><span class="sp yucs-top-ico"></span>Home</a></li> <li id='yucs-top-mail'><a href="http://mail.yahoo.com/">Mail</a></li> <li id='yucs-top-news'><a href="http://news.yahoo.com/">News</a></li> <li id='yucs-top-sports'><a href="http://sports.yahoo.com/">Sports</a></li> <li id='yucs-top-finance'><a href="http://finance.yahoo.com/">Finance</a></li> <li id='yucs-top-weather'><a href="http://weather.yahoo.com/"">Weather</a></li> <li id='yucs-top-games'><a href="http://games.yahoo.com/">Games</a></li> <li id='yucs-top-groups'><a href="http://groups.yahoo.com/">Groups</a></li> <li id='yucs-top-answers'><a href="http://answers.yahoo.com/">Answers</a></li> <li id='yucs-top-flickr'><a href="http://www.flickr.com/">Flickr</a></li> <li id='yucs-more' class='yucs-menu yucs-more-activate' data-ylt="/"><a href="javascript:void(0);" id='yucs-more-link' class='yucs-leavable'>More<span class="sp yucs-top-ico"></span></a> <div id='yucs-top-menu'> <div class='yui3-menu-content'> <ul class='yucs-hide yucs-leavable'> <li id='yucs-top-omg'><a href="http://omg.yahoo.com/">omg!</a></li> <li id='yucs-top-shine'><a href="http://shine.yahoo.com/">Shine</a></li> <li id='yucs-top-movies'><a href="http://movies.yahoo.com/">Movies</a></li> <li id='yucs-top-music'><a href="http://music.yahoo.com/">Music</a></li> <li id='yucs-top-tv'><a href="http://tv.yahoo.com/">TV</a></li> <li id='yucs-top-health'><a href="http://health.yahoo.com/">Health</a></li> <li id='yucs-top-shopping'><a href="http://shopping.yahoo.com/">Shopping</a></li> <li id='yucs-top-travel'><a href="http://travel.yahoo.com/">Travel</a></li> <li id='yucs-top-autos'><a href="http://autos.yahoo.com/">Autos</a></li> <li id='yucs-top-homes'><a href="http://homes.yahoo.com/own-rent/">Homes</a></li> </ul> </div> </div> </li> </ul> </div></div></div>
164
+ </div></div>
165
+ <div id="global-nav" class="no-js gn-signed-out" >
166
+ <div id="gn-wrap" class="gn-wrap">
167
+ <div class="logo" style="width: 70px;">
168
+ <a href="/" data-track="Logo-main" title="Flickr logo. If you click it, you'll go home"> <span class="refresh-logo-2013"> Flickr logo. If you click it, you'll go home </span>
169
+ </a> </div>
170
+ <div class="nav small-logo">
171
+ <ul class="top-nav">
172
+ <li class="toplink">
173
+ <a data-track="Signup-main" href="/signup" class="gn-link gn-signup signin-popup sign-up-pixel-trigger"><span>Sign Up</span></a>
174
+ </li>
175
+ <li class="gn-menu-parent toplink" data-context="explore">
176
+ <a data-track="Explore-main" class="gn-link explore" href="/explore"><span>Explore</span></a>
177
+ <div class="panel" id="explore-panel">
178
+ <div class="arrow"></div>
179
+ <div class="bd">
180
+ <ul>
181
+ <li class="gn-subnav-item"><a data-track="Explore-recent_photos" href="/explore">Recent Photos</a></li>
182
+ <li class="gn-subnav-item"><a data-track="Explore-the_commons" href="/commons">The Commons</a></li>
183
+ <li class="gn-subnav-item"><a data-track="Explore-getty_collection" href="/gettyimages">Getty Collection</a></li>
184
+ <li class="gn-subnav-item"><a data-track="Explore-galleries" href="/galleries">Galleries</a></li>
185
+ <li class="gn-subnav-item"><a data-track="Explore-world_map" href="/map">World Map</a></li>
186
+ <li class="gn-subnav-item"><a data-track="Explore-app_garden" href="/services">App Garden</a></li>
187
+ <li class="gn-subnav-item"><a data-track="Explore-camera_finder" href="/cameras">Camera Finder</a></li>
188
+ <li class="gn-subnav-item"><a data-track="Explore-flickr_blog" href="http://blog.flickr.net">Flickr Blog</a></li>
189
+ </ul>
190
+ </div>
191
+ </div>
192
+ </li>
193
+ <li class="toplink gn-upload">
194
+ <a data-track="Upload-main" class="gn-link" href="/upload">
195
+ <span>Upload</span>
196
+ </a>
197
+ </li>
198
+ </ul>
199
+ </div>
200
+ <div class="tools">
201
+ <form action="/search/" method="get" role="search" class="nav-selecta bo-selecta-3">
202
+ <input type="text" name="q" value="" id="gn-search-field" class="gn-search" autocomplete="off" aria-label="Search">
203
+ <input type="submit" data-track="Search-search_icon" class="search-icon icon rapidnofollow" tabindex="-1" value="Search">
204
+ </form>
205
+ <ul class="top-nav">
206
+ <li class="toplink gn-signin">
207
+ <a data-track="Account-sign_in" href="/signin/" class="gn-link signin-popup secondary"><span>Sign In</span></a>
208
+ </li>
209
+ </ul>
210
+ </div>
211
+ </div>
212
+ </div>
213
+ <div id="main" class="clearfix allow-liquid-width" role="main">
214
+ <script>if (F && F.actionQueue) { F.jsFailBeacon(); }</script>
215
+ <img src="http://geo.yahoo.com/p?s=792600184&t=1254886817&position=top" class="ad_beacon">
216
+ <noscript>
217
+ <div class="info">
218
+ <span class="msg-icon"></span>
219
+ <p>
220
+ To take full advantage of Flickr, you should use a JavaScript-enabled browser and <a href="http://www.macromedia.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash">install the latest version of the Adobe Flash Player</a>.
221
+ </p>
222
+ </div>
223
+ </noscript>
224
+ <div id="photo" >
225
+ <div id="photo-container">
226
+ <div class="photo-div" id="main-photo-container" >
227
+ <div id="photo-drag-proxy" class="zoom-trigger"><ul id="notes" class="boxes"><li class="box note note-byowner" data-note-user_id="5430278" data-note-id="72157627430919916" style="left:91px; top:116px;width:71px; height:27px;"><span class="box-stroke box-stroke-outer"></span><span class="box-stroke box-stroke-inner"></span><span class="box-stroke box-stroke-main"></span><span class="note-content"><span class="note-text"><span class="note-wrap">Downtown Los Angeles</span></span></span></li><li class="box note note-byowner" data-note-user_id="5430278" data-note-id="72157627430924358" style="left:258px; top:123px;width:90px; height:21px;"><span class="box-stroke box-stroke-outer"></span><span class="box-stroke box-stroke-inner"></span><span class="box-stroke box-stroke-main"></span><span class="note-content"><span class="note-text"><span class="note-wrap">Wilshire Corridor</span></span></span></li><li class="box note note-byowner" data-note-user_id="5430278" data-note-id="72157627948529996" style="left:0px; top:180px;width:281px; height:95px;"><span class="box-stroke box-stroke-outer"></span><span class="box-stroke box-stroke-inner"></span><span class="box-stroke box-stroke-main"></span><span class="note-content"><span class="note-text"><span class="note-wrap">Los Feliz Hills</span></span></span></li></ul> </div>
228
+ <script data-script-purpose="page_timing">farm_timing.photo_start = new Date().getTime();</script><noscript><img src="http://farm7.staticflickr.com/6198/6038315155_2875860c4b_z.jpg" alt="photo" aria-describedby="title_div" width="640" height="360"></noscript><script data-script-purpose="liquid">F.photoFetcher.loadPhoto();</script></div><div id="photo-actions"><h1 id="title_div" property="dc:title" class="photo-title">Los Angeles View 2011</h1><div id="action-buttons-right" > <ul id="button-bar" class=""><li class="divider"><span> <span>&nbsp;</span></span></li><li class=" first-if-cannot-fave refresh-action-menu"><a href="#" class="rapidnofollow ywa-track" id="button-bar-options" data-ywa-name="Actions" data-track="action-menu-click" onclick="return F.actionQueue.queue_click(this.id);" tabindex="5"><span class="stat-icon more-icon"></span>&nbsp;</a></li></ul> <ul id="stats_ul"><li id="fave-count" class="stat-item"><a title="Save this to your favorites" href="#" class="ywa-track fave-button visible-if-can-fave" id="button-bar-fave" data-ywa-name="Favorites star" onclick="return F.actionQueue.queue_click(this.id);" tabindex="4"><span class="ie-hack">&nbsp;</span><span class="stat-icon star "></span>26</a></li><li class="divider"><span><span>&nbsp;</span></span></li><li id="comment-count" class="stat-item"><a href="#comments" id="button-bar-comment" class="rapidnofollow commenting_disabled" tabindex="4"><span class="stat-icon comment-icon"></span>1</a></li><li class="divider"><span><span>&nbsp;</span></span></li><li class="share-this-v3 share-this-more last"><a href="#" tabindex="4" id="share-this-v3-more-button" data-track="share-menu-click" class="rapidnofollow share-dropdown-arrow" title="More ways to share" onclick="return F.actionQueue && F.actionQueue.queue_click(this.id);"><span class="stat-icon share-icon"></span>&nbsp;</a></li></ul></div></div>
229
+ <a id="nav-bar-prev" data-track="prev_button" class="DisabledButt rapidnofollow" href="#" tabindex="3">
230
+ <span class="text">
231
+ Prev
232
+ </span>
233
+ </a>
234
+ <a id="nav-bar-lightbox" data-track="lightbox" class="Butt visible rapidnofollow" href="/photos/justaslice/6038315155/sizes/l/in/photolist-aczWHZ-8mK79e-88Danv-7FboPA-b3bDUc-cVdbVu-7LhXab-8uV7Uf-f89C1W-eKigsX-doZbMd-e8r82J-e4MF3A-e8kyQt-e4Mxry-bNTrhx-fjwAHB-9bTwKf-825f9g-8oHZ6K-bUbaur-7CyyYz-7CCoLY-a7uSuo-7Ze8mX-affZQb-fiZrhM-fjezCL-dERd9E-anqRRi-awxtHG-895nYC-bTw9JP-bR23cZ-8zqnfF-bv6NHe-aUqrxB-8xg3FV-eKVYPT-btWMPc-fkC6aa-fkSfpf-8pSW21-b8ngGe-8Wra34/" title="View in light box" onclick="return F.actionQueue.queue_click(this.id);" tabindex="4">
235
+ <span></span>
236
+ </a>
237
+ <a id="nav-bar-next" data-track="next_button" class="Butt visible rapidnofollow" href="/photos/ninedragons/4829237773/in/photolist-aczWHZ-8mK79e-88Danv-7FboPA-b3bDUc-cVdbVu-7LhXab-8uV7Uf-f89C1W-eKigsX-doZbMd-e8r82J-e4MF3A-e8kyQt-e4Mxry-bNTrhx-fjwAHB-9bTwKf-825f9g-8oHZ6K-bUbaur-7CyyYz-7CCoLY-a7uSuo-7Ze8mX-affZQb-fiZrhM-fjezCL-dERd9E-anqRRi-awxtHG-895nYC-bTw9JP-bR23cZ-8zqnfF-bv6NHe-aUqrxB-8xg3FV-eKVYPT-btWMPc-fkC6aa-fkSfpf-8pSW21-b8ngGe-8Wra34/" tabindex="3">
238
+ <span class="text">
239
+ Next
240
+ </span>
241
+ </a>
242
+ </div>
243
+ </div>
244
+ <div id="photo-details" class="clearfix">
245
+ <div id="primary-column-wrapper">
246
+ <div id="primary-column">
247
+ <div id="meta">
248
+ <div id="description_div" class="photo-desc">
249
+ <p>The view from the Griffith Observatory, Los Angeles; July 2011 <br>Panorama Stitched / Sweep Panorama</p><p>For closer look at Downtown LA: <br><a href="http://www.flickr.com/photos/justaslice/6014529411">www.flickr.com/photos/justaslice/6014529411</a></p>
250
+ </div>
251
+ </div>
252
+ <div id="invites-and-comments">
253
+ <div id="invites" class="collapsed">
254
+ </div>
255
+ <div class="fave-block">
256
+ <div class="fave-content">
257
+ <p>
258
+ <a href="/photos/48469133@N03/favorites/with/6038315155/">A.Traveler</a>, <a href="/photos/67887649@N07/favorites/with/6038315155/">JasonEdwardPollock</a>, and <a href="/photos/justaslice/6038315155/favorites/">24 other people</a> added this photo to their favorites.
259
+ </p>
260
+ </div>
261
+ </div>
262
+ <div id="comments">
263
+ <div id='comments-list' data-initially-showing-count='20' data-view-more-previous-count="0" data-view-more-next-count="-19" data-comments-total-count="1" data-offset="0" data-view-more-count="20">
264
+ <ol id="photo-activity" class="mixed rolledup">
265
+ <li id="comment72157627922946909" class="comment-block photo-owner-comment" data-comment-nsid="95282411@N00" data-comment-id="5430278-6038315155-72157627922946909">
266
+ <div class="comment-icon">
267
+ <a href="/photos/justaslice/" class="comment-buddy-icon-link"><img src="http://l.yimg.com/g/images/spaceout.gif" data-defer-src="http://farm1.staticflickr.com/101/buddyicons/95282411@N00.jpg?1208363292#95282411@N00" alt="" width="48" height="48" class="comment-buddy-icon defer personmenu-trigger"></a>
268
+ </div>
269
+ <div class="comment-content">
270
+ <p class="comment-head">
271
+ <span class="comment-owner">
272
+ <span class="comment-author-container"><a href="/photos/justaslice/" class="comment-author ywa-track" data-ywa-name="Commenter names">█ Slices of Light █▀ ▀ ▀</a> </span>
273
+ </span>
274
+ <small class="comment-meta">
275
+ <span class="comment-date"><a href="/photos/justaslice/6038315155/comment72157627922946909/" title="November 3, 2011">21 months ago</a></span><span class="comment-controls"></span>
276
+ </small>
277
+ </p>
278
+ <div class="comment-body">
279
+ <p>I have replaced the original image with this one - it's the same image, but with a slightly tighter crop.</p>
280
+ </div>
281
+ </div>
282
+ </li>
283
+ </ol>
284
+ </div>
285
+ <div class="comment-disabled">The photo owner has disabled commenting.</div>
286
+ </div>
287
+ <script type="text/javascript" src="http://ads.yimg.com/qq/dm/ad-ros-0.0.2.js"></script>
288
+ <style>
289
+ #dmRosAdWrapper-South {
290
+ clear: both;
291
+ }
292
+ #dmRosAdWrapper-South iframe {
293
+ width: 100%;
294
+ }
295
+ </style>
296
+ <div id="dmRosAdWrapper-South">
297
+ <noscript>
298
+ <iframe id="dmRosAd-1-South" width="980" height="150" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" src="http://dmros.ysm.yahoo.com/ros/?c=29c919d7&w=980&h=150&ty=noscript&r=&tt=Los+Angeles+View+2011+%7C+Flickr+-+Photo+Sharing%21"></iframe>
299
+ </noscript>
300
+ </div>
301
+ </div>
302
+ </div>
303
+ </div>
304
+ <div id="sidebar" class="">
305
+ <div id="photo-story">
306
+ <div id="photo-story-attribution" class="clearfix">
307
+ <p class="flickr-user" nsid="95282411@N00">
308
+ <span class="name">
309
+ <a href="/photos/justaslice/"> <img src="http://l.yimg.com/g/images/spaceout.gif" data-defer-src="http://farm1.staticflickr.com/101/buddyicons/95282411@N00.jpg?1208363292#95282411@N00" alt="" width="48" height="48"
310
+ align="absmiddle" data-menu-id="photo-owner-icon" class="buddyicon defer personmenu-trigger"><noscript><img src="http://farm1.staticflickr.com/101/buddyicons/95282411@N00.jpg?1208363292#95282411@N00" alt="" width="48" height="48"
311
+ align="absmiddle" class="buddyicon"></noscript>
312
+ </a>
313
+ <a href="/people/justaslice/relationship/" class="contact-changer-trigger add-button Butt">+ Add</a>
314
+ <span class="photo-name-line-1">
315
+ <a href="/photos/justaslice/">
316
+ █ Slices of Light █▀ ▀ ▀
317
+ </a>
318
+ </span>
319
+ <span class="photo-name-line-2 empty"> </span>
320
+ <span class="member-since">
321
+ Member since 2006
322
+ </span>
323
+ </span>
324
+ </p>
325
+ </div>
326
+ <div id="photo-story-story">
327
+ <ul>
328
+ <li><span class="story-icon story-taken"></span>
329
+ Taken on <a href="/photos/justaslice/archives/date-taken/2011/07/27/" title="Uploaded August 14, 2011. Replaced November 3, 2011." class="ywa-track" data-ywa-name="Date, Taken on">July 27, 2011</a>
330
+ </li>
331
+ <!-- <img src="/images/map_crosshair_pink.png" alt="" style="width:16px;margin-left:-2px;padding-right:1px;vertical-align:top;margin-top:1px" /> -->
332
+ <li><span class="story-icon story-location"></span><a href="/photos/justaslice/map/?photo=6038315155" id="photoGeolocation-storylink" onClick="return F.actionQueue.queue_click(this.id);" class="photo-story-geopanel-trigger ywa-track" data-ywa-name="Location, Taken in, Map">
333
+ Hollywood United,&nbsp;Los Angeles,&nbsp;CA,&nbsp;US</a></li>
334
+ <!-- <span style="display:inline-block;background: transparent url(/images/flickr-sprite.png.v4) -294px -15px no-repeat;width: 12px;height: 11px;padding-right:3px;margin-top:1px"></span> -->
335
+ <li><span class="story-icon story-camera"></span><a href="/cameras/sony/dsc-hx9v" class="ywa-track" data-ywa-name="Camera, Taken with">Sony DSC-HX9V</a></li>
336
+ <li >
337
+ <span class="story-icon story-views"></span>
338
+ <span class="full-text">
339
+ 3,557 Views
340
+ </span>
341
+ </li>
342
+ <li class="">
343
+ <span class="story-icon story-galleries "></span>
344
+ <a href="/photos/justaslice/6038315155/galleries/" class="ywa-track stat-item" data-ywa-name="Gallery count" id="gallery-count" data-gallery-count="1">
345
+ <span class="full-text" style="text-transform:capitalize;">1 Gallery</span>
346
+ </a>
347
+ </li>
348
+ </ul>
349
+ </div>
350
+ </div>
351
+ <div id="sidebar-contexts">
352
+ <ul id="secondary-contexts">
353
+ <li id="context-photolist-" data-context-id="photolist-aczWHZ-8mK79e-88Danv-7FboPA-b3bDUc-cVdbVu-7LhXab-8uV7Uf-f89C1W-eKigsX-doZbMd-e8r82J-e4MF3A-e8kyQt-e4Mxry-bNTrhx-fjwAHB-9bTwKf-825f9g-8oHZ6K-bUbaur-7CyyYz-7CCoLY-a7uSuo-7Ze8mX-affZQb-fiZrhM-fjezCL-dERd9E-anqRRi-awxtHG-895nYC-bTw9JP-bR23cZ-8zqnfF-bv6NHe-aUqrxB-8xg3FV-eKVYPT-btWMPc-fkC6aa-fkSfpf-8pSW21-b8ngGe-8Wra34" data-context-type="photolist" class="sidebar-context sidebar-context-open sidebar-context-first sidebar-context-first-only">
354
+ <div id="contextDiv_photolist" class="ugly-temporary-hack" style="display:block;"></div>
355
+ <div class="context-header">
356
+ <span class="context-link context-photolist chunk" id="context-link-photolist-">
357
+ <span class="context-wrapper">
358
+ <span class="context-icon"></span>
359
+ <span class="caret"></span>
360
+ <span class="context-title" title="Photo list">Photo list</span>
361
+ <small class="context-num" id="context-num-photolist-">
362
+ (45)
363
+ </small>
364
+ </span>
365
+ </span>
366
+ </div>
367
+ <div id="context-photos-photolist" class="context-photos">
368
+ <ul id="context-photos-list-photolist-" class="context-photos-list">
369
+ <li style="left:-122px" data-context-position="-2" class="loaded">
370
+ <span class="context-thumb-link context-thumb-placeholder">
371
+ </span>
372
+ </li>
373
+ <li style="left:-61px" data-context-position="-1" class="loaded">
374
+ <span class="context-thumb-link context-thumb-placeholder">
375
+ <span class="bound-msg">
376
+ <span class="first">First photo &rarr;</span>
377
+ </span>
378
+ </span>
379
+ </li>
380
+ <li style="left:0px" data-context-position="0" class="loaded">
381
+ <a class="context-thumb-link" href="/photos/justaslice/6038315155/in/photolist-aczWHZ-8mK79e-88Danv-7FboPA-b3bDUc-cVdbVu-7LhXab-8uV7Uf-f89C1W-eKigsX-doZbMd-e8r82J-e4MF3A-e8kyQt-e4Mxry-bNTrhx-fjwAHB-9bTwKf-825f9g-8oHZ6K-bUbaur-7CyyYz-7CCoLY-a7uSuo-7Ze8mX-affZQb-fiZrhM-fjezCL-dERd9E-anqRRi-awxtHG-895nYC-bTw9JP-bR23cZ-8zqnfF-bv6NHe-aUqrxB-8xg3FV-eKVYPT-btWMPc-fkC6aa-fkSfpf-8pSW21-b8ngGe-8Wra34/">
382
+ <img id="nextprev_thumb_photolist6038315155" class="nextprev_thumb" src="http://farm7.staticflickr.com/6198/6038315155_2875860c4b_s.jpg" width="58" height="58" alt="Los Angeles View 2011">
383
+ </a>
384
+ </li>
385
+ <li style="left:61px" data-context-position="1" class="loaded">
386
+ <a class="context-thumb-link ywa-track" href="/photos/ninedragons/4829237773/in/photolist-aczWHZ-8mK79e-88Danv-7FboPA-b3bDUc-cVdbVu-7LhXab-8uV7Uf-f89C1W-eKigsX-doZbMd-e8r82J-e4MF3A-e8kyQt-e4Mxry-bNTrhx-fjwAHB-9bTwKf-825f9g-8oHZ6K-bUbaur-7CyyYz-7CCoLY-a7uSuo-7Ze8mX-affZQb-fiZrhM-fjezCL-dERd9E-anqRRi-awxtHG-895nYC-bTw9JP-bR23cZ-8zqnfF-bv6NHe-aUqrxB-8xg3FV-eKVYPT-btWMPc-fkC6aa-fkSfpf-8pSW21-b8ngGe-8Wra34/" title="Los Angeles architecture juxtaposition" data-ywa-name="Context Widget (any photo)">
387
+ <img id="nextprev_thumb_photolist4829237773" class="nextprev_thumb" src="http://farm5.staticflickr.com/4097/4829237773_149e40dcba_s.jpg" width="56" height="56" alt="Los Angeles architecture juxtaposition">
388
+ </a>
389
+ </li>
390
+ <li style="left:122px" data-context-position="2" class="loaded">
391
+ <a class="context-thumb-link ywa-track" href="/photos/paragdgala/4680963515/in/photolist-aczWHZ-8mK79e-88Danv-7FboPA-b3bDUc-cVdbVu-7LhXab-8uV7Uf-f89C1W-eKigsX-doZbMd-e8r82J-e4MF3A-e8kyQt-e4Mxry-bNTrhx-fjwAHB-9bTwKf-825f9g-8oHZ6K-bUbaur-7CyyYz-7CCoLY-a7uSuo-7Ze8mX-affZQb-fiZrhM-fjezCL-dERd9E-anqRRi-awxtHG-895nYC-bTw9JP-bR23cZ-8zqnfF-bv6NHe-aUqrxB-8xg3FV-eKVYPT-btWMPc-fkC6aa-fkSfpf-8pSW21-b8ngGe-8Wra34/" title="Downtown Los Angeles from the Hollywood Sign" data-ywa-name="Context Widget (any photo)">
392
+ <img id="nextprev_thumb_photolist4680963515" class="nextprev_thumb" src="http://farm2.staticflickr.com/1280/4680963515_196a1562d1_s.jpg" width="56" height="56" alt="Downtown Los Angeles from the Hollywood Sign">
393
+ </a>
394
+ </li>
395
+ </ul>
396
+ </div>
397
+ </li>
398
+ <h4 class="secondary-contexts-label">This photo also appears in</h4>
399
+ <li id="context-stream-" data-context-id="photostream" data-context-type="stream" class="sidebar-context">
400
+ <div id="contextDiv_stream" class="ugly-temporary-hack" style="display:block;"></div>
401
+ <div class="context-header">
402
+ <a href="/photos/justaslice/with/6038315155/" class="context-link context-stream chunk ywa-track" data-ywa-name="Context Title" id="context-link-stream-" onclick="return F.actionQueue.queue_click(this.id);">
403
+ <span class="context-wrapper">
404
+ <span class="context-icon"></span>
405
+ <span class="caret"></span>
406
+ <span class="context-title" title="█ Slices of Light █▀ ▀ ▀'s photostream">█ Slices of Light █▀ ▀ ▀'s...</span>
407
+ <small class="context-num" id="context-num-stream-">
408
+ </small>
409
+ </span>
410
+ </a>
411
+ </div>
412
+ <div id="context-photos-stream" class="context-photos">
413
+ <ul id="context-photos-list-stream-" class="context-photos-list">
414
+ <li style="left:0px" data-context-position="0" class="loaded">
415
+ <a class="context-thumb-link" href="/photos/justaslice/6038315155/in/photostream/">
416
+ <img id="nextprev_thumb_stream6038315155" class="nextprev_thumb" src="http://farm7.staticflickr.com/6198/6038315155_2875860c4b_s.jpg" width="58" height="58" alt="">
417
+ </a>
418
+ </li>
419
+ </ul>
420
+ </div>
421
+ </li>
422
+ <li id="context-set-72157600294230385" data-context-id="set-72157600294230385" data-context-type="set" data-context-set_id="72157600294230385" class="sidebar-context sidebar-context-first-only">
423
+ <div id="contextDiv_set72157600294230385" class="ugly-temporary-hack" style="display:block;"></div>
424
+ <div class="context-header">
425
+ <a href="/photos/justaslice/sets/72157600294230385/with/6038315155/" class="context-link context-set chunk ywa-track" data-ywa-name="Context Title" id="context-link-set-72157600294230385" onclick="return F.actionQueue.queue_click(this.id);">
426
+ <span class="context-wrapper">
427
+ <span class="context-icon"></span>
428
+ <span class="caret"></span>
429
+ <span class="context-title" title="Panorama Pics">Panorama Pics</span>
430
+ <small class="context-num" id="context-num-set-72157600294230385">
431
+ (Set)
432
+ </small>
433
+ </span>
434
+ </a>
435
+ </div>
436
+ <div id="context-photos-set72157600294230385" class="context-photos">
437
+ <ul id="context-photos-list-set-72157600294230385" class="context-photos-list">
438
+ <li style="left:0px" data-context-position="0" class="loaded">
439
+ <a class="context-thumb-link" href="/photos/justaslice/6038315155/in/set-72157600294230385/">
440
+ <img id="nextprev_thumb_set721576002942303856038315155" class="nextprev_thumb" src="http://farm7.staticflickr.com/6198/6038315155_2875860c4b_s.jpg" width="58" height="58" alt="">
441
+ </a>
442
+ </li>
443
+ </ul>
444
+ </div>
445
+ </li>
446
+ <li id="context-set-72157608425491583" data-context-id="set-72157608425491583" data-context-type="set" data-context-set_id="72157608425491583" class="sidebar-context sidebar-context-first-only">
447
+ <div id="contextDiv_set72157608425491583" class="ugly-temporary-hack" style="display:block;"></div>
448
+ <div class="context-header">
449
+ <a href="/photos/justaslice/sets/72157608425491583/with/6038315155/" class="context-link context-set chunk ywa-track" data-ywa-name="Context Title" id="context-link-set-72157608425491583" onclick="return F.actionQueue.queue_click(this.id);">
450
+ <span class="context-wrapper">
451
+ <span class="context-icon"></span>
452
+ <span class="caret"></span>
453
+ <span class="context-title" title="Interestingness Sliced">Interestingness Sliced</span>
454
+ <small class="context-num" id="context-num-set-72157608425491583">
455
+ (Set)
456
+ </small>
457
+ </span>
458
+ </a>
459
+ </div>
460
+ <div id="context-photos-set72157608425491583" class="context-photos">
461
+ <ul id="context-photos-list-set-72157608425491583" class="context-photos-list">
462
+ <li style="left:0px" data-context-position="0" class="loaded">
463
+ <a class="context-thumb-link" href="/photos/justaslice/6038315155/in/set-72157608425491583/">
464
+ <img id="nextprev_thumb_set721576084254915836038315155" class="nextprev_thumb" src="http://farm7.staticflickr.com/6198/6038315155_2875860c4b_s.jpg" width="58" height="58" alt="">
465
+ </a>
466
+ </li>
467
+ </ul>
468
+ </div>
469
+ </li>
470
+ <li id="context-set-72157606835977297" data-context-id="set-72157606835977297" data-context-type="set" data-context-set_id="72157606835977297" class="sidebar-context sidebar-context-first-only">
471
+ <div id="contextDiv_set72157606835977297" class="ugly-temporary-hack" style="display:block;"></div>
472
+ <div class="context-header">
473
+ <a href="/photos/justaslice/sets/72157606835977297/with/6038315155/" class="context-link context-set chunk ywa-track" data-ywa-name="Context Title" id="context-link-set-72157606835977297" onclick="return F.actionQueue.queue_click(this.id);">
474
+ <span class="context-wrapper">
475
+ <span class="context-icon"></span>
476
+ <span class="caret"></span>
477
+ <span class="context-title" title="Los Angeles">Los Angeles</span>
478
+ <small class="context-num" id="context-num-set-72157606835977297">
479
+ (Set)
480
+ </small>
481
+ </span>
482
+ </a>
483
+ </div>
484
+ <div id="context-photos-set72157606835977297" class="context-photos">
485
+ <ul id="context-photos-list-set-72157606835977297" class="context-photos-list">
486
+ <li style="left:0px" data-context-position="0" class="loaded">
487
+ <a class="context-thumb-link" href="/photos/justaslice/6038315155/in/set-72157606835977297/">
488
+ <img id="nextprev_thumb_set721576068359772976038315155" class="nextprev_thumb" src="http://farm7.staticflickr.com/6198/6038315155_2875860c4b_s.jpg" width="58" height="58" alt="">
489
+ </a>
490
+ </li>
491
+ </ul>
492
+ </div>
493
+ </li>
494
+ <li id="context-set-72157627317397173" data-context-id="set-72157627317397173" data-context-type="set" data-context-set_id="72157627317397173" class="sidebar-context sidebar-context-first-only">
495
+ <div id="contextDiv_set72157627317397173" class="ugly-temporary-hack" style="display:block;"></div>
496
+ <div class="context-header">
497
+ <a href="/photos/justaslice/sets/72157627317397173/with/6038315155/" class="context-link context-set chunk ywa-track" data-ywa-name="Context Title" id="context-link-set-72157627317397173" onclick="return F.actionQueue.queue_click(this.id);">
498
+ <span class="context-wrapper">
499
+ <span class="context-icon"></span>
500
+ <span class="caret"></span>
501
+ <span class="context-title" title="Griffith Observatory">Griffith Observatory</span>
502
+ <small class="context-num" id="context-num-set-72157627317397173">
503
+ (Set)
504
+ </small>
505
+ </span>
506
+ </a>
507
+ </div>
508
+ <div id="context-photos-set72157627317397173" class="context-photos">
509
+ <ul id="context-photos-list-set-72157627317397173" class="context-photos-list">
510
+ <li style="left:0px" data-context-position="0" class="loaded">
511
+ <a class="context-thumb-link" href="/photos/justaslice/6038315155/in/set-72157627317397173/">
512
+ <img id="nextprev_thumb_set721576273173971736038315155" class="nextprev_thumb" src="http://farm7.staticflickr.com/6198/6038315155_2875860c4b_s.jpg" width="58" height="58" alt="">
513
+ </a>
514
+ </li>
515
+ </ul>
516
+ </div>
517
+ </li>
518
+ <li id="context-set-72157623828090856" data-context-id="set-72157623828090856" data-context-type="set" data-context-set_id="72157623828090856" class="sidebar-context sidebar-context-first-only">
519
+ <div id="contextDiv_set72157623828090856" class="ugly-temporary-hack" style="display:block;"></div>
520
+ <div class="context-header">
521
+ <a href="/photos/justaslice/sets/72157623828090856/with/6038315155/" class="context-link context-set chunk ywa-track" data-ywa-name="Context Title" id="context-link-set-72157623828090856" onclick="return F.actionQueue.queue_click(this.id);">
522
+ <span class="context-wrapper">
523
+ <span class="context-icon"></span>
524
+ <span class="caret"></span>
525
+ <span class="context-title" title="Urban Skyline">Urban Skyline</span>
526
+ <small class="context-num" id="context-num-set-72157623828090856">
527
+ (Set)
528
+ </small>
529
+ </span>
530
+ </a>
531
+ </div>
532
+ <div id="context-photos-set72157623828090856" class="context-photos">
533
+ <ul id="context-photos-list-set-72157623828090856" class="context-photos-list">
534
+ <li style="left:0px" data-context-position="0" class="loaded">
535
+ <a class="context-thumb-link" href="/photos/justaslice/6038315155/in/set-72157623828090856/">
536
+ <img id="nextprev_thumb_set721576238280908566038315155" class="nextprev_thumb" src="http://farm7.staticflickr.com/6198/6038315155_2875860c4b_s.jpg" width="58" height="58" alt="">
537
+ </a>
538
+ </li>
539
+ </ul>
540
+ </div>
541
+ </li>
542
+ <li id="context-set-72157627848393119" data-context-id="set-72157627848393119" data-context-type="set" data-context-set_id="72157627848393119" class="sidebar-context sidebar-context-first-only">
543
+ <div id="contextDiv_set72157627848393119" class="ugly-temporary-hack" style="display:block;"></div>
544
+ <div class="context-header">
545
+ <a href="/photos/justaslice/sets/72157627848393119/with/6038315155/" class="context-link context-set chunk ywa-track" data-ywa-name="Context Title" id="context-link-set-72157627848393119" onclick="return F.actionQueue.queue_click(this.id);">
546
+ <span class="context-wrapper">
547
+ <span class="context-icon"></span>
548
+ <span class="caret"></span>
549
+ <span class="context-title" title="Sony HX9V">Sony HX9V</span>
550
+ <small class="context-num" id="context-num-set-72157627848393119">
551
+ (Set)
552
+ </small>
553
+ </span>
554
+ </a>
555
+ </div>
556
+ <div id="context-photos-set72157627848393119" class="context-photos">
557
+ <ul id="context-photos-list-set-72157627848393119" class="context-photos-list">
558
+ <li style="left:0px" data-context-position="0" class="loaded">
559
+ <a class="context-thumb-link" href="/photos/justaslice/6038315155/in/set-72157627848393119/">
560
+ <img id="nextprev_thumb_set721576278483931196038315155" class="nextprev_thumb" src="http://farm7.staticflickr.com/6198/6038315155_2875860c4b_s.jpg" width="58" height="58" alt="">
561
+ </a>
562
+ </li>
563
+ </ul>
564
+ </div>
565
+ </li>
566
+ <li id="context-pool-1679027__at__N22" data-context-id="pool-1679027@N22" data-context-type="pool" data-context-group_id="1679027@N22" class="sidebar-context sidebar-context-first-only sidebar-context-pool">
567
+ <div id="contextDiv_pool1679027__at__N22" class="ugly-temporary-hack" style="display:block;"></div>
568
+ <div class="context-header">
569
+ <a href="/groups/hx9v/pool/with/6038315155/" class="context-link context-pool chunk ywa-track" data-ywa-name="Context Title" id="context-link-pool-1679027__at__N22" onclick="return F.actionQueue.queue_click(this.id);">
570
+ <span class="context-wrapper">
571
+ <span class="context-icon"></span>
572
+ <span class="caret"></span>
573
+ <span class="context-title" title="Sony Cyber-shot DSC-HX9V">Sony Cyber-shot DSC-HX9V</span>
574
+ <small class="context-num" id="context-num-pool-1679027__at__N22">
575
+ (Group)
576
+ </small>
577
+ </span>
578
+ </a>
579
+ </div>
580
+ <div id="context-photos-pool1679027__at__N22" class="context-photos">
581
+ <ul id="context-photos-list-pool-1679027__at__N22" class="context-photos-list">
582
+ <li style="left:0px" data-context-position="0" class="loaded">
583
+ <a class="context-thumb-link" href="/photos/justaslice/6038315155/in/pool-1679027@N22/">
584
+ <img id="nextprev_thumb_pool1679027__at__N226038315155" class="nextprev_thumb" src="http://farm7.staticflickr.com/6198/6038315155_2875860c4b_s.jpg" width="58" height="58" alt="">
585
+ </a>
586
+ </li>
587
+ </ul>
588
+ </div>
589
+ </li>
590
+ <li id="context-pool-79139841__at__N00" data-context-id="pool-79139841@N00" data-context-type="pool" data-context-group_id="79139841@N00" class="sidebar-context sidebar-context-first-only sidebar-context-pool">
591
+ <div id="contextDiv_pool79139841__at__N00" class="ugly-temporary-hack" style="display:block;"></div>
592
+ <div class="context-header">
593
+ <a href="/groups/79139841@N00/pool/with/6038315155/" class="context-link context-pool chunk ywa-track" data-ywa-name="Context Title" id="context-link-pool-79139841__at__N00" onclick="return F.actionQueue.queue_click(this.id);">
594
+ <span class="context-wrapper">
595
+ <span class="context-icon"></span>
596
+ <span class="caret"></span>
597
+ <span class="context-title" title="Autostitch (and other stitching software)">Autostitch (and other...</span>
598
+ <small class="context-num" id="context-num-pool-79139841__at__N00">
599
+ (Group)
600
+ </small>
601
+ </span>
602
+ </a>
603
+ </div>
604
+ <div id="context-photos-pool79139841__at__N00" class="context-photos">
605
+ <ul id="context-photos-list-pool-79139841__at__N00" class="context-photos-list">
606
+ <li style="left:0px" data-context-position="0" class="loaded">
607
+ <a class="context-thumb-link" href="/photos/justaslice/6038315155/in/pool-79139841@N00/">
608
+ <img id="nextprev_thumb_pool79139841__at__N006038315155" class="nextprev_thumb" src="http://farm7.staticflickr.com/6198/6038315155_2875860c4b_s.jpg" width="58" height="58" alt="">
609
+ </a>
610
+ </li>
611
+ </ul>
612
+ </div>
613
+ </li>
614
+ <li id="context-pool-569080__at__N24" data-context-id="pool-569080@N24" data-context-type="pool" data-context-group_id="569080@N24" class="sidebar-context sidebar-context-first-only sidebar-context-pool">
615
+ <div id="contextDiv_pool569080__at__N24" class="ugly-temporary-hack" style="display:block;"></div>
616
+ <div class="context-header">
617
+ <a href="/groups/panoramicimages/pool/with/6038315155/" class="context-link context-pool chunk ywa-track" data-ywa-name="Context Title" id="context-link-pool-569080__at__N24" onclick="return F.actionQueue.queue_click(this.id);">
618
+ <span class="context-wrapper">
619
+ <span class="context-icon"></span>
620
+ <span class="caret"></span>
621
+ <span class="context-title" title="panoramic images or multiplo / immagini panoramiche o multiple">panoramic images or multiplo...</span>
622
+ <small class="context-num" id="context-num-pool-569080__at__N24">
623
+ (Group)
624
+ </small>
625
+ </span>
626
+ </a>
627
+ </div>
628
+ <div id="context-photos-pool569080__at__N24" class="context-photos">
629
+ <ul id="context-photos-list-pool-569080__at__N24" class="context-photos-list">
630
+ <li style="left:0px" data-context-position="0" class="loaded">
631
+ <a class="context-thumb-link" href="/photos/justaslice/6038315155/in/pool-569080@N24/">
632
+ <img id="nextprev_thumb_pool569080__at__N246038315155" class="nextprev_thumb" src="http://farm7.staticflickr.com/6198/6038315155_2875860c4b_s.jpg" width="58" height="58" alt="">
633
+ </a>
634
+ </li>
635
+ </ul>
636
+ </div>
637
+ </li>
638
+ <li id="context-pool-955588__at__N21" data-context-id="pool-955588@N21" data-context-type="pool" data-context-group_id="955588@N21" class="sidebar-context sidebar-context-first-only sidebar-context-pool">
639
+ <div id="contextDiv_pool955588__at__N21" class="ugly-temporary-hack" style="display:block;"></div>
640
+ <div class="context-header">
641
+ <a href="/groups/strictlygeotagged/pool/with/6038315155/" class="context-link context-pool chunk ywa-track" data-ywa-name="Context Title" id="context-link-pool-955588__at__N21" onclick="return F.actionQueue.queue_click(this.id);">
642
+ <span class="context-wrapper">
643
+ <span class="context-icon"></span>
644
+ <span class="caret"></span>
645
+ <span class="context-title" title="Strictly GeoTagged">Strictly GeoTagged</span>
646
+ <small class="context-num" id="context-num-pool-955588__at__N21">
647
+ (Group)
648
+ </small>
649
+ </span>
650
+ </a>
651
+ </div>
652
+ <div id="context-photos-pool955588__at__N21" class="context-photos">
653
+ <ul id="context-photos-list-pool-955588__at__N21" class="context-photos-list">
654
+ <li style="left:0px" data-context-position="0" class="loaded">
655
+ <a class="context-thumb-link" href="/photos/justaslice/6038315155/in/pool-955588@N21/">
656
+ <img id="nextprev_thumb_pool955588__at__N216038315155" class="nextprev_thumb" src="http://farm7.staticflickr.com/6198/6038315155_2875860c4b_s.jpg" width="58" height="58" alt="">
657
+ </a>
658
+ </li>
659
+ </ul>
660
+ </div>
661
+ </li>
662
+ <li id="context-pool-24554441__at__N00" data-context-id="pool-24554441@N00" data-context-type="pool" data-context-group_id="24554441@N00" class="sidebar-context sidebar-context-first-only sidebar-context-pool">
663
+ <div id="contextDiv_pool24554441__at__N00" class="ugly-temporary-hack" style="display:block;"></div>
664
+ <div class="context-header">
665
+ <a href="/groups/widescreen/pool/with/6038315155/" class="context-link context-pool chunk ywa-track" data-ywa-name="Context Title" id="context-link-pool-24554441__at__N00" onclick="return F.actionQueue.queue_click(this.id);">
666
+ <span class="context-wrapper">
667
+ <span class="context-icon"></span>
668
+ <span class="caret"></span>
669
+ <span class="context-title" title="W I D E S C R E E N">W I D E S C R E E N</span>
670
+ <small class="context-num" id="context-num-pool-24554441__at__N00">
671
+ (Group)
672
+ </small>
673
+ </span>
674
+ </a>
675
+ </div>
676
+ <div id="context-photos-pool24554441__at__N00" class="context-photos">
677
+ <ul id="context-photos-list-pool-24554441__at__N00" class="context-photos-list">
678
+ <li style="left:0px" data-context-position="0" class="loaded">
679
+ <a class="context-thumb-link" href="/photos/justaslice/6038315155/in/pool-24554441@N00/">
680
+ <img id="nextprev_thumb_pool24554441__at__N006038315155" class="nextprev_thumb" src="http://farm7.staticflickr.com/6198/6038315155_2875860c4b_s.jpg" width="58" height="58" alt="">
681
+ </a>
682
+ </li>
683
+ </ul>
684
+ </div>
685
+ </li>
686
+ <li id="context-pool-17124512__at__N00" data-context-id="pool-17124512@N00" data-context-type="pool" data-context-group_id="17124512@N00" class="sidebar-context sidebar-context-first-only sidebar-context-pool rolled-up">
687
+ <div id="contextDiv_pool17124512__at__N00" class="ugly-temporary-hack" style="display:block;"></div>
688
+ <div class="context-header">
689
+ <a href="/groups/lacalifornia/pool/with/6038315155/" class="context-link context-pool chunk ywa-track" data-ywa-name="Context Title" id="context-link-pool-17124512__at__N00" onclick="return F.actionQueue.queue_click(this.id);">
690
+ <span class="context-wrapper">
691
+ <span class="context-icon"></span>
692
+ <span class="caret"></span>
693
+ <span class="context-title" title="L.A.">L.A.</span>
694
+ <small class="context-num" id="context-num-pool-17124512__at__N00">
695
+ (Group)
696
+ </small>
697
+ </span>
698
+ </a>
699
+ </div>
700
+ <div id="context-photos-pool17124512__at__N00" class="context-photos">
701
+ <ul id="context-photos-list-pool-17124512__at__N00" class="context-photos-list">
702
+ <li style="left:0px" data-context-position="0" class="loaded">
703
+ <a class="context-thumb-link" href="/photos/justaslice/6038315155/in/pool-17124512@N00/">
704
+ <img id="nextprev_thumb_pool17124512__at__N006038315155" class="nextprev_thumb" src="http://farm7.staticflickr.com/6198/6038315155_2875860c4b_s.jpg" width="58" height="58" alt="">
705
+ </a>
706
+ </li>
707
+ </ul>
708
+ </div>
709
+ </li>
710
+ <li id="context-pool-96352861__at__N00" data-context-id="pool-96352861@N00" data-context-type="pool" data-context-group_id="96352861@N00" class="sidebar-context sidebar-context-first-only sidebar-context-pool rolled-up">
711
+ <div id="contextDiv_pool96352861__at__N00" class="ugly-temporary-hack" style="display:block;"></div>
712
+ <div class="context-header">
713
+ <a href="/groups/losangelesgroup/pool/with/6038315155/" class="context-link context-pool chunk ywa-track" data-ywa-name="Context Title" id="context-link-pool-96352861__at__N00" onclick="return F.actionQueue.queue_click(this.id);">
714
+ <span class="context-wrapper">
715
+ <span class="context-icon"></span>
716
+ <span class="caret"></span>
717
+ <span class="context-title" title="The Los Angeles Group">The Los Angeles Group</span>
718
+ <small class="context-num" id="context-num-pool-96352861__at__N00">
719
+ (Group)
720
+ </small>
721
+ </span>
722
+ </a>
723
+ </div>
724
+ <div id="context-photos-pool96352861__at__N00" class="context-photos">
725
+ <ul id="context-photos-list-pool-96352861__at__N00" class="context-photos-list">
726
+ <li style="left:0px" data-context-position="0" class="loaded">
727
+ <a class="context-thumb-link" href="/photos/justaslice/6038315155/in/pool-96352861@N00/">
728
+ <img id="nextprev_thumb_pool96352861__at__N006038315155" class="nextprev_thumb" src="http://farm7.staticflickr.com/6198/6038315155_2875860c4b_s.jpg" width="58" height="58" alt="">
729
+ </a>
730
+ </li>
731
+ </ul>
732
+ </div>
733
+ </li>
734
+ <li id="context-pool-54077724__at__N00" data-context-id="pool-54077724@N00" data-context-type="pool" data-context-group_id="54077724@N00" class="sidebar-context sidebar-context-first-only sidebar-context-pool rolled-up">
735
+ <div id="contextDiv_pool54077724__at__N00" class="ugly-temporary-hack" style="display:block;"></div>
736
+ <div class="context-header">
737
+ <a href="/groups/beautifulca/pool/with/6038315155/" class="context-link context-pool chunk ywa-track" data-ywa-name="Context Title" id="context-link-pool-54077724__at__N00" onclick="return F.actionQueue.queue_click(this.id);">
738
+ <span class="context-wrapper">
739
+ <span class="context-icon"></span>
740
+ <span class="caret"></span>
741
+ <span class="context-title" title="Beautiful California">Beautiful California</span>
742
+ <small class="context-num" id="context-num-pool-54077724__at__N00">
743
+ (Group)
744
+ </small>
745
+ </span>
746
+ </a>
747
+ </div>
748
+ <div id="context-photos-pool54077724__at__N00" class="context-photos">
749
+ <ul id="context-photos-list-pool-54077724__at__N00" class="context-photos-list">
750
+ <li style="left:0px" data-context-position="0" class="loaded">
751
+ <a class="context-thumb-link" href="/photos/justaslice/6038315155/in/pool-54077724@N00/">
752
+ <img id="nextprev_thumb_pool54077724__at__N006038315155" class="nextprev_thumb" src="http://farm7.staticflickr.com/6198/6038315155_2875860c4b_s.jpg" width="58" height="58" alt="">
753
+ </a>
754
+ </li>
755
+ </ul>
756
+ </div>
757
+ </li>
758
+ <li id="context-pool-36135120__at__N00" data-context-id="pool-36135120@N00" data-context-type="pool" data-context-group_id="36135120@N00" class="sidebar-context sidebar-context-first-only sidebar-context-pool rolled-up">
759
+ <div id="contextDiv_pool36135120__at__N00" class="ugly-temporary-hack" style="display:block;"></div>
760
+ <div class="context-header">
761
+ <a href="/groups/urbanlandscape/pool/with/6038315155/" class="context-link context-pool chunk ywa-track" data-ywa-name="Context Title" id="context-link-pool-36135120__at__N00" onclick="return F.actionQueue.queue_click(this.id);">
762
+ <span class="context-wrapper">
763
+ <span class="context-icon"></span>
764
+ <span class="caret"></span>
765
+ <span class="context-title" title="The Urban Landscape">The Urban Landscape</span>
766
+ <small class="context-num" id="context-num-pool-36135120__at__N00">
767
+ (Group)
768
+ </small>
769
+ </span>
770
+ </a>
771
+ </div>
772
+ <div id="context-photos-pool36135120__at__N00" class="context-photos">
773
+ <ul id="context-photos-list-pool-36135120__at__N00" class="context-photos-list">
774
+ <li style="left:0px" data-context-position="0" class="loaded">
775
+ <a class="context-thumb-link" href="/photos/justaslice/6038315155/in/pool-36135120@N00/">
776
+ <img id="nextprev_thumb_pool36135120__at__N006038315155" class="nextprev_thumb" src="http://farm7.staticflickr.com/6198/6038315155_2875860c4b_s.jpg" width="58" height="58" alt="">
777
+ </a>
778
+ </li>
779
+ </ul>
780
+ </div>
781
+ </li>
782
+ <li id="context-pool-80393685__at__N00" data-context-id="pool-80393685@N00" data-context-type="pool" data-context-group_id="80393685@N00" class="sidebar-context sidebar-context-first-only sidebar-context-pool rolled-up">
783
+ <div id="contextDiv_pool80393685__at__N00" class="ugly-temporary-hack" style="display:block;"></div>
784
+ <div class="context-header">
785
+ <a href="/groups/laphotodguide/pool/with/6038315155/" class="context-link context-pool chunk ywa-track" data-ywa-name="Context Title" id="context-link-pool-80393685__at__N00" onclick="return F.actionQueue.queue_click(this.id);">
786
+ <span class="context-wrapper">
787
+ <span class="context-icon"></span>
788
+ <span class="caret"></span>
789
+ <span class="context-title" title="LA Photographers">LA Photographers</span>
790
+ <small class="context-num" id="context-num-pool-80393685__at__N00">
791
+ (Group)
792
+ </small>
793
+ </span>
794
+ </a>
795
+ </div>
796
+ <div id="context-photos-pool80393685__at__N00" class="context-photos">
797
+ <ul id="context-photos-list-pool-80393685__at__N00" class="context-photos-list">
798
+ <li style="left:0px" data-context-position="0" class="loaded">
799
+ <a class="context-thumb-link" href="/photos/justaslice/6038315155/in/pool-80393685@N00/">
800
+ <img id="nextprev_thumb_pool80393685__at__N006038315155" class="nextprev_thumb" src="http://farm7.staticflickr.com/6198/6038315155_2875860c4b_s.jpg" width="58" height="58" alt="">
801
+ </a>
802
+ </li>
803
+ </ul>
804
+ </div>
805
+ </li>
806
+ <li class="sidebar-context sidebar-context-placeholder" id="group-placeholder"><div class="context-header"><a href="/photos/justaslice/6038315155/groups/" class="context-link" id="group-placeholder-link">...and 5 more groups</a></div></li>
807
+ </ul>
808
+ </div>
809
+ <div id="sidecar">
810
+ <div id="photo-sidebar-tags" class="tag-list">
811
+ <h4>Tags</h4>
812
+ <div id="thetags-wrapper">
813
+ <ul id="thetags" class="sidecar-list"><li id="tagdiv5430278-6038315155-2593" class="first tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/los/" data-tag="los" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">Los</a></span></li><li id="tagdiv5430278-6038315155-4560" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/angeles/" data-tag="angeles" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">Angeles</a></span></li><li id="tagdiv5430278-6038315155-4000" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/view/" data-tag="view" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">view</a></span></li><li id="tagdiv5430278-6038315155-1147" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/skyline/" data-tag="skyline" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">skyline</a></span></li><li id="tagdiv5430278-6038315155-3318" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/downtown/" data-tag="downtown" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">Downtown</a></span></li><li id="tagdiv5430278-6038315155-103" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/city/" data-tag="city" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">city</a></span></li><li id="tagdiv5430278-6038315155-291" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/urban/" data-tag="urban" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">urban</a></span></li><li id="tagdiv5430278-6038315155-1695" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/landscape/" data-tag="landscape" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">landscape</a></span></li><li id="tagdiv5430278-6038315155-30790" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/griffithobservatory/" data-tag="griffithobservatory" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">Griffith Observatory</a></span></li><li id="tagdiv5430278-6038315155-30794" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/griffith/" data-tag="griffith" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">Griffith</a></span></li><li id="tagdiv5430278-6038315155-12659" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/observatory/" data-tag="observatory" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">Observatory</a></span></li><li id="tagdiv5430278-6038315155-50875" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/sweep/" data-tag="sweep" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">sweep</a></span></li><li id="tagdiv5430278-6038315155-306" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/panorama/" data-tag="panorama" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">panorama</a></span></li><li id="tagdiv5430278-6038315155-9696" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/panoramic/" data-tag="panoramic" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">panoramic</a></span></li><li id="tagdiv5430278-6038315155-50193" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/stitched/" data-tag="stitched" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">stitched</a></span></li><li id="tagdiv5430278-6038315155-1154" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/museum/" data-tag="museum" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">museum</a></span></li><li id="tagdiv5430278-6038315155-33646" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/museums/" data-tag="museums" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">museums</a></span></li><li id="tagdiv5430278-6038315155-9447" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/science/" data-tag="science" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">science</a></span></li><li id="tagdiv5430278-6038315155-5717" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/space/" data-tag="space" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">space</a></span></li><li id="tagdiv5430278-6038315155-20667" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/astronomy/" data-tag="astronomy" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">astronomy</a></span></li><li id="tagdiv5430278-6038315155-23605" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/museo/" data-tag="museo" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">museo</a></span></li><li id="tagdiv5430278-6038315155-2424" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/losangeles/" data-tag="losangeles" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">Los Angeles</a></span></li><li id="tagdiv5430278-6038315155-2145" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/la/" data-tag="la" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">LA</a></span></li><li id="tagdiv5430278-6038315155-1328864" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/%E6%B4%9B%E6%9D%89%E7%A3%AF/" data-tag="%E6%B4%9B%E6%9D%89%E7%A3%AF" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">洛杉磯</a></span></li><li id="tagdiv5430278-6038315155-13539448" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/%E6%B4%9B%E6%9D%89%E7%9F%B6/" data-tag="%E6%B4%9B%E6%9D%89%E7%9F%B6" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">洛杉矶</a></span></li><li id="tagdiv5430278-6038315155-141930" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/cityofangels/" data-tag="cityofangels" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">City of Angels</a></span></li><li id="tagdiv5430278-6038315155-18186045" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/%E5%8A%A0%E5%88%A9%E7%A6%8F%E5%B0%BC%E4%BA%9E/" data-tag="%E5%8A%A0%E5%88%A9%E7%A6%8F%E5%B0%BC%E4%BA%9E" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">加利福尼亞</a></span></li><li id="tagdiv5430278-6038315155-132041" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/californie/" data-tag="californie" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">Californie</a></span></li><li id="tagdiv5430278-6038315155-2130385" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/%E3%82%AB%E3%83%AA%E3%83%95%E3%82%A9%E3%83%AB%E3%83%8B%E3%82%A2/" data-tag="%E3%82%AB%E3%83%AA%E3%83%95%E3%82%A9%E3%83%AB%E3%83%8B%E3%82%A2" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">カリフォルニア</a></span></li><li id="tagdiv5430278-6038315155-120109" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/kalifornien/" data-tag="kalifornien" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">Kalifornien</a></span></li><li id="tagdiv5430278-6038315155-692320" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/%C3%A9tatsunis/" data-tag="%C3%A9tatsunis" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">États-Unis</a></span></li><li id="tagdiv5430278-6038315155-2130387" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/%E3%83%AD%E3%82%B5%E3%83%B3%E3%82%BC%E3%83%AB%E3%82%B9/" data-tag="%E3%83%AD%E3%82%B5%E3%83%B3%E3%82%BC%E3%83%AB%E3%82%B9" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">ロサンゼルス</a></span></li><li id="tagdiv5430278-6038315155-2104730" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/%E5%8A%A0%E5%B7%9E/" data-tag="%E5%8A%A0%E5%B7%9E" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">加州</a></span></li><li id="tagdiv5430278-6038315155-50" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/california/" data-tag="california" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">California</a></span></li><li id="tagdiv5430278-6038315155-1299" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/america/" data-tag="america" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">America</a></span></li><li id="tagdiv5430278-6038315155-463328" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/%E7%BE%8E%E5%9B%BD/" data-tag="%E7%BE%8E%E5%9B%BD" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">美国</a></span></li><li id="tagdiv5430278-6038315155-448602" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/am%C3%A9rique/" data-tag="am%C3%A9rique" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">Amérique</a></span></li><li id="tagdiv5430278-6038315155-34697" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/amerika/" data-tag="amerika" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">Amerika</a></span></li><li id="tagdiv5430278-6038315155-152288" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/estadosunidos/" data-tag="estadosunidos" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">Estados Unidos</a></span></li><li id="tagdiv5430278-6038315155-14069809" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/%E3%82%A2%E3%83%A1%E3%83%AA%E3%82%AB%E5%90%88%E8%A1%86%E5%9B%BD/" data-tag="%E3%82%A2%E3%83%A1%E3%83%AA%E3%82%AB%E5%90%88%E8%A1%86%E5%9B%BD" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">アメリカ合衆国</a></span></li><li id="tagdiv5430278-6038315155-1421111" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/vereinigtestaaten/" data-tag="vereinigtestaaten" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">Vereinigte Staaten</a></span></li><li id="tagdiv5430278-6038315155-26303" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/feliz/" data-tag="feliz" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">Feliz</a></span></li><li id="tagdiv5430278-6038315155-736995" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/rebelwithoutacause/" data-tag="rebelwithoutacause" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">rebel without a cause</a></span></li><li id="tagdiv5430278-6038315155-5969" class="tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/sony/" data-tag="sony" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">Sony</a></span></li><li id="tagdiv5430278-6038315155-68238503" class="last tag-element"><span class="tag-wrapper"><a href="/photos/justaslice/tags/hx9v/" data-tag="hx9v" data-photo-owner-screenname="█ Slices of Light █▀ ▀ ▀" class="tag-item ywa-track" data-ywa-name="Tag(s)">HX9V</a></span></li></ul><div class="clearfix"></div>
814
+ </div>
815
+ <div id="tag-global-search-template">
816
+ <!--
817
+ <div class="tag-global-search">
818
+ <div class="bd">
819
+ <div class="global-search-message">
820
+ <div class="added-by"></div>
821
+ <div class="from-this-member">View photos <a href="%s" title="View photos tagged with %s from %s" class="user_tag_search">from this member</a> or <a href="%s" title="View photos tagged with %s from everyone" class="global_tag_search ywa-track" data-ywa-name="Tag(s), Global">from everyone</a></div>
822
+ </div>
823
+ <div class="wedge"></div>
824
+ </div>
825
+ </div>
826
+ -->
827
+ </div>
828
+ <div id="machine_tag_toggle" class="empty">
829
+ <a href="#" id="machine_tag_toggle_show"><span class="caret"></span>&nbsp;Show machine tags (<span id="span_machine_tags_show_count">0</span>)</a>
830
+ <a href="#" id="machine_tag_toggle_hide"><span class="caret caret-down"></span>&nbsp;Hide machine tags (<span id="span_machine_tags_hide_count">0</span>)</a>
831
+ </div>
832
+ <div id="themachinetags-wrapper">
833
+ <ul id="themachinetags" class="icon-left sidecar-list">
834
+ </ul>
835
+ <div class="clear"> </div>
836
+ </div>
837
+ </div>
838
+ <div id="photo-sidebar-tag-delete-dialog-template" style="display:none;">
839
+ <div id="tag-delete-dialog-template" class="wrapper">
840
+ <div class="bd">
841
+ <div class="delete-photo">
842
+ <p class="msg"></p>
843
+ </div>
844
+ <div class="delete_tag_buttons_div">
845
+ <input type="button" value="DELETE" class="DeleteButt">
846
+ <input type="button" value="CANCEL" class="CancelButt">
847
+ </div>
848
+ </div>
849
+ </div>
850
+ </div>
851
+ <div id="photo-sidebar-additional-info">
852
+ <h4>Additional info
853
+ <small>(<a href="#" class="show ywa-track" id="toggle-additional-info-controls" data-ywa-name="Additional Info (show more)" onclick="return F.actionQueue.queue_click(this.id);">show more</a>)</small> </h4>
854
+ <div id="additional-info-expanded" style="display:none;">
855
+ <div id="camera-settings-wrapper">
856
+ <ul id="camera-settings" class="sidecar-list">
857
+ <li>
858
+ <span class="camera-icon"></span><span>Settings: </span><a id="exif-details" href="/photos/justaslice/6038315155/meta/in/photolist-aczWHZ-8mK79e-88Danv-7FboPA-b3bDUc-cVdbVu-7LhXab-8uV7Uf-f89C1W-eKigsX-doZbMd-e8r82J-e4MF3A-e8kyQt-e4Mxry-bNTrhx-fjwAHB-9bTwKf-825f9g-8oHZ6K-bUbaur-7CyyYz-7CCoLY-a7uSuo-7Ze8mX-affZQb-fiZrhM-fjezCL-dERd9E-anqRRi-awxtHG-895nYC-bTw9JP-bR23cZ-8zqnfF-bv6NHe-aUqrxB-8xg3FV-eKVYPT-btWMPc-fkC6aa-fkSfpf-8pSW21-b8ngGe-8Wra34" title="View EXIF information for this photo" data-track="exif-link"><span id="exif-exposure" class="exif-detail">1/640</span><span id="exif-aperture" class="exif-detail">&fnof;/8</span><span id="exif-iso" class="exif-detail">ISO 100</span><span id="exif-focal-length" class="exif-detail">4.3 mm</span></a>
859
+ </li>
860
+ </ul>
861
+ </div>
862
+ <ul class="icon-left machinetags-extras-list sidecar-list">
863
+ </ul>
864
+ <ul class="icon-left machinetags-extras-list sidecar-list">
865
+ </ul>
866
+ <ul class="icon-inline sidecar-list">
867
+ <li class="Stats license">
868
+ <span class="force-left"><span class="ccIcn ccIcnSmall"><a href="http://creativecommons.org/licenses/by-nc-nd/2.0/"><img src="http://l.yimg.com/g/images/spaceout.gif" border="0" alt="Attribution" title="Attribution" class="f-sprite fs-cc_icon_attribution_small"><img src="http://l.yimg.com/g/images/spaceout.gif" border="0" alt="Noncommercial" title="Noncommercial" class="f-sprite fs-cc_icon_noncomm_small"><img src="http://l.yimg.com/g/images/spaceout.gif" border="0" alt="No Derivative Works" title="No Derivative Works" class="f-sprite fs-cc_icon_noderivs_small"></a></span>
869
+ </span>
870
+ <a href="http://creativecommons.org/licenses/by-nc-nd/2.0/deed.en" rel="license cc:license">Some rights reserved</a>
871
+ </li>
872
+ </ul>
873
+ <ul class="icon-left sidecar-list">
874
+ <li>
875
+ <img src="http://l.yimg.com/g/images/spaceout.gif" width="15" height="15" align="left" class="f-sprite fs-icon_public force-left">
876
+ This photo is visible to everyone </li>
877
+ </ul>
878
+ </div>
879
+ <div id="additional-info-collapsed" style="display:block;">
880
+ <ul class="icon-inline sidecar-list">
881
+ <li class="Stats license">
882
+ <span class="force-left"><span class="ccIcn ccIcnSmall"><a href="http://creativecommons.org/licenses/by-nc-nd/2.0/"><img src="http://l.yimg.com/g/images/spaceout.gif" border="0" alt="Attribution" title="Attribution" class="f-sprite fs-cc_icon_attribution_small"><img src="http://l.yimg.com/g/images/spaceout.gif" border="0" alt="Noncommercial" title="Noncommercial" class="f-sprite fs-cc_icon_noncomm_small"><img src="http://l.yimg.com/g/images/spaceout.gif" border="0" alt="No Derivative Works" title="No Derivative Works" class="f-sprite fs-cc_icon_noderivs_small"></a></span>
883
+ </span>
884
+ <a href="http://creativecommons.org/licenses/by-nc-nd/2.0/deed.en" rel="license cc:license">Some rights reserved</a>
885
+ </li>
886
+ </ul>
887
+ </div>
888
+ </div>
889
+ </div>
890
+ </div>
891
+ </div>
892
+ <div id="shortcuts" class="enabled">
893
+ keyboard shortcuts:
894
+ <kbd>←</kbd> previous photo
895
+ <kbd>→</kbd> next photo
896
+ <kbd>L</kbd> view in light box
897
+ <kbd>F</kbd> favorite
898
+ <kbd>&lt;</kbd> scroll film strip left
899
+ <kbd>&gt;</kbd> scroll film strip right
900
+ <span class="keyboard-shortcut-legend-trigger">
901
+ <kbd>?</kbd> show all shortcuts
902
+ </span>
903
+ </div>
904
+ <div class="yui3-popover-content-hider share-this-v3-hider-fix">
905
+ <div id="options-menu">
906
+ <ul>
907
+ </ul>
908
+ <ul>
909
+ <li><a href="/photos/justaslice/6038315155/sizes/in/photolist-aczWHZ-8mK79e-88Danv-7FboPA-b3bDUc-cVdbVu-7LhXab-8uV7Uf-f89C1W-eKigsX-doZbMd-e8r82J-e4MF3A-e8kyQt-e4Mxry-bNTrhx-fjwAHB-9bTwKf-825f9g-8oHZ6K-bUbaur-7CyyYz-7CCoLY-a7uSuo-7Ze8mX-affZQb-fiZrhM-fjezCL-dERd9E-anqRRi-awxtHG-895nYC-bTw9JP-bR23cZ-8zqnfF-bv6NHe-aUqrxB-8xg3FV-eKVYPT-btWMPc-fkC6aa-fkSfpf-8pSW21-b8ngGe-8Wra34/" class="option-all-sizes ywa-track" data-ywa-name="All Sizes" tabindex="10"><span></span>View all sizes</a></li> <li><a href="show/with/6038315155/" class="option-slideshow ywa-track" data-ywa-name="Slideshow" tabindex="10"><span></span>View slideshow</a></li>
910
+ <li><a href="/photos/justaslice/6038315155/meta/in/photolist-aczWHZ-8mK79e-88Danv-7FboPA-b3bDUc-cVdbVu-7LhXab-8uV7Uf-f89C1W-eKigsX-doZbMd-e8r82J-e4MF3A-e8kyQt-e4Mxry-bNTrhx-fjwAHB-9bTwKf-825f9g-8oHZ6K-bUbaur-7CyyYz-7CCoLY-a7uSuo-7Ze8mX-affZQb-fiZrhM-fjezCL-dERd9E-anqRRi-awxtHG-895nYC-bTw9JP-bR23cZ-8zqnfF-bv6NHe-aUqrxB-8xg3FV-eKVYPT-btWMPc-fkC6aa-fkSfpf-8pSW21-b8ngGe-8Wra34" class="option-meta ywa-track" data-ywa-name="Camera, More properties" tabindex="10"><span></span>View Exif info</a></li> </ul>
911
+ </div>
912
+ </div>
913
+ <div class="yui3-popover-content-hider share-this-v3-hider-fix">
914
+ <div id="share-menu-v3" class=" share-menu-bs">
915
+ <ul class="share-panel-list">
916
+ <li id="share-options-services" data-panel-name="services" class="share-options share-options-open share-options-deferred">
917
+ <div class="share-options-header">
918
+ <span class="caret"></span>
919
+ Share this via...
920
+ </div>
921
+ <div class="share-options-inner">
922
+ <ul class="share-services">
923
+ <li class="share-service">
924
+ <a href="#" data-service-type-id="130" data-service-needs-setup="false" data-service-always-use-popup="false" title="Share via email" class="share-dialog-action share-via-service-130">
925
+ <span class="share-icon-large share-via-service-130-large"></span>
926
+ <span class="service-name">
927
+ Email
928
+ </span>
929
+ </a>
930
+ </li>
931
+ <li class="share-service">
932
+ <a href="#" data-service-type-id="128" data-service-needs-setup="false" data-service-always-use-popup="false" title="Share on Facebook" class="share-dialog-action share-via-service-128">
933
+ <span class="share-icon-large share-via-service-128-large"></span>
934
+ <span class="service-name">
935
+ Facebook
936
+ </span>
937
+ </a>
938
+ </li>
939
+ <li class="share-service">
940
+ <a href="#" data-service-type-id="9" data-service-needs-setup="false" data-service-always-use-popup="false" title="Share on Twitter" class="share-dialog-action share-via-service-9">
941
+ <span class="share-icon-large share-via-service-9-large"></span>
942
+ <span class="service-name">
943
+ Twitter
944
+ </span>
945
+ </a>
946
+ </li>
947
+ <li class="share-service">
948
+ <a href="#" data-service-type-id="12" data-service-needs-setup="false" data-service-always-use-popup="false" title="Share on Tumblr" class="share-dialog-action share-via-service-12">
949
+ <span class="share-icon-large share-via-service-12-large"></span>
950
+ <span class="service-name">
951
+ Tumblr
952
+ </span>
953
+ </a>
954
+ </li>
955
+ </ul>
956
+ </div>
957
+ </li>
958
+ <li id="share-options-grablink" data-panel-name="link" class="share-options">
959
+ <div class="share-options-header">
960
+ <span class="caret"></span> Grab the link
961
+ </div>
962
+ <div class="share-options-inner">
963
+ <form id="grab-link">
964
+ <p>
965
+ Here's a link to this photo. Just copy and paste!
966
+ </p>
967
+ <p><input type="text" value="http://www.flickr.com/photos/justaslice/6038315155/" id="share-options-grablink-input"></p>
968
+ <p id="short-url">
969
+ <input id="gp-short-url" name="gp-short-url" type="checkbox" data-url-short="http://flic.kr/p/aczWHZ" data-url-long="http://www.flickr.com/photos/justaslice/6038315155/">
970
+ <label for="gp-short-url">&nbsp;show short URL</label>
971
+ </p>
972
+ </form> </div>
973
+ </li>
974
+ <li id="share-options-embed" data-panel-name="embed" class="share-options">
975
+ <div class="share-options-header"><span class="caret"></span> Grab the HTML/BBCode</div>
976
+ <div class="share-options-inner">
977
+ <p class="sharing_faded_text">Copy and paste the code below:</p>
978
+ <p class="sharing_embed_cont">
979
+ <textarea name="SharingEmbedMarkup" id="share-options-embed-textarea" rows="4" wrap="virtual" class="embed-markup">&lt;a href=&quot;http://www.flickr.com/photos/justaslice/6038315155/&quot; title=&quot;Los Angeles View 2011 by █ Slices of Light █▀ ▀ ▀, on Flickr&quot;&gt;&lt;img src=&quot;http://farm7.staticflickr.com/6198/6038315155_2875860c4b.jpg&quot; width=&quot;500&quot; height=&quot;281&quot; alt=&quot;Los Angeles View 2011&quot;&gt;&lt;/a&gt;</textarea>
980
+ <textarea name="SharingEmbedMarkupT" id="share-options-embed-textarea-t" rows="4" wrap="virtual" style="display:none" class="embed-markup">&lt;a href=&quot;http://www.flickr.com/photos/justaslice/6038315155/&quot; title=&quot;Los Angeles View 2011 by █ Slices of Light █▀ ▀ ▀, on Flickr&quot;&gt;&lt;img src=&quot;http://farm7.staticflickr.com/6198/6038315155_2875860c4b_t.jpg&quot; width=&quot;100&quot; height=&quot;56&quot; alt=&quot;Los Angeles View 2011&quot;&gt;&lt;/a&gt;</textarea>
981
+ <textarea name="SharingEmbedMarkupTBBCode" id="share-options-embed-textarea-t-bbcode" rows="4" wrap="virtual" style="display:none" class="embed-markup">[url=http://www.flickr.com/photos/justaslice/6038315155/][img]http://farm7.staticflickr.com/6198/6038315155_2875860c4b_t.jpg[/img][/url]
982
+ [url=http://www.flickr.com/photos/justaslice/6038315155/]Los Angeles View 2011[/url] by [url=http://www.flickr.com/people/justaslice/]█ Slices of Light █▀ ▀ ▀[/url], on Flickr</textarea>
983
+ <textarea name="SharingEmbedMarkupSQ" id="share-options-embed-textarea-sq" rows="4" wrap="virtual" style="display:none" class="embed-markup">&lt;a href=&quot;http://www.flickr.com/photos/justaslice/6038315155/&quot; title=&quot;Los Angeles View 2011 by █ Slices of Light █▀ ▀ ▀, on Flickr&quot;&gt;&lt;img src=&quot;http://farm7.staticflickr.com/6198/6038315155_2875860c4b_s.jpg&quot; width=&quot;75&quot; height=&quot;75&quot; alt=&quot;Los Angeles View 2011&quot;&gt;&lt;/a&gt;</textarea>
984
+ <textarea name="SharingEmbedMarkupSQBBCode" id="share-options-embed-textarea-sq-bbcode" rows="4" wrap="virtual" style="display:none" class="embed-markup">[url=http://www.flickr.com/photos/justaslice/6038315155/][img]http://farm7.staticflickr.com/6198/6038315155_2875860c4b_s.jpg[/img][/url]
985
+ [url=http://www.flickr.com/photos/justaslice/6038315155/]Los Angeles View 2011[/url] by [url=http://www.flickr.com/people/justaslice/]█ Slices of Light █▀ ▀ ▀[/url], on Flickr</textarea>
986
+ <textarea name="SharingEmbedMarkupQ" id="share-options-embed-textarea-q" rows="4" wrap="virtual" style="display:none" class="embed-markup">&lt;a href=&quot;http://www.flickr.com/photos/justaslice/6038315155/&quot; title=&quot;Los Angeles View 2011 by █ Slices of Light █▀ ▀ ▀, on Flickr&quot;&gt;&lt;img src=&quot;http://farm7.staticflickr.com/6198/6038315155_2875860c4b_q.jpg&quot; width=&quot;150&quot; height=&quot;150&quot; alt=&quot;Los Angeles View 2011&quot;&gt;&lt;/a&gt;</textarea>
987
+ <textarea name="SharingEmbedMarkupQBBCode" id="share-options-embed-textarea-q-bbcode" rows="4" wrap="virtual" style="display:none" class="embed-markup">[url=http://www.flickr.com/photos/justaslice/6038315155/][img]http://farm7.staticflickr.com/6198/6038315155_2875860c4b_q.jpg[/img][/url]
988
+ [url=http://www.flickr.com/photos/justaslice/6038315155/]Los Angeles View 2011[/url] by [url=http://www.flickr.com/people/justaslice/]█ Slices of Light █▀ ▀ ▀[/url], on Flickr</textarea>
989
+ <textarea name="SharingEmbedMarkupS" id="share-options-embed-textarea-s" rows="4" wrap="virtual" style="display:none" class="embed-markup">&lt;a href=&quot;http://www.flickr.com/photos/justaslice/6038315155/&quot; title=&quot;Los Angeles View 2011 by █ Slices of Light █▀ ▀ ▀, on Flickr&quot;&gt;&lt;img src=&quot;http://farm7.staticflickr.com/6198/6038315155_2875860c4b_m.jpg&quot; width=&quot;240&quot; height=&quot;135&quot; alt=&quot;Los Angeles View 2011&quot;&gt;&lt;/a&gt;</textarea>
990
+ <textarea name="SharingEmbedMarkupSBBCode" id="share-options-embed-textarea-s-bbcode" rows="4" wrap="virtual" style="display:none" class="embed-markup">[url=http://www.flickr.com/photos/justaslice/6038315155/][img]http://farm7.staticflickr.com/6198/6038315155_2875860c4b_m.jpg[/img][/url]
991
+ [url=http://www.flickr.com/photos/justaslice/6038315155/]Los Angeles View 2011[/url] by [url=http://www.flickr.com/people/justaslice/]█ Slices of Light █▀ ▀ ▀[/url], on Flickr</textarea>
992
+ <textarea name="SharingEmbedMarkupN" id="share-options-embed-textarea-n" rows="4" wrap="virtual" style="display:none" class="embed-markup">&lt;a href=&quot;http://www.flickr.com/photos/justaslice/6038315155/&quot; title=&quot;Los Angeles View 2011 by █ Slices of Light █▀ ▀ ▀, on Flickr&quot;&gt;&lt;img src=&quot;http://farm7.staticflickr.com/6198/6038315155_2875860c4b_n.jpg&quot; width=&quot;320&quot; height=&quot;180&quot; alt=&quot;Los Angeles View 2011&quot;&gt;&lt;/a&gt;</textarea>
993
+ <textarea name="SharingEmbedMarkupNBBCode" id="share-options-embed-textarea-n-bbcode" rows="4" wrap="virtual" style="display:none" class="embed-markup">[url=http://www.flickr.com/photos/justaslice/6038315155/][img]http://farm7.staticflickr.com/6198/6038315155_2875860c4b_n.jpg[/img][/url]
994
+ [url=http://www.flickr.com/photos/justaslice/6038315155/]Los Angeles View 2011[/url] by [url=http://www.flickr.com/people/justaslice/]█ Slices of Light █▀ ▀ ▀[/url], on Flickr</textarea>
995
+ <textarea name="SharingEmbedMarkupM" id="share-options-embed-textarea-m" rows="4" wrap="virtual" style="display:none" class="embed-markup">&lt;a href=&quot;http://www.flickr.com/photos/justaslice/6038315155/&quot; title=&quot;Los Angeles View 2011 by █ Slices of Light █▀ ▀ ▀, on Flickr&quot;&gt;&lt;img src=&quot;http://farm7.staticflickr.com/6198/6038315155_2875860c4b.jpg&quot; width=&quot;500&quot; height=&quot;281&quot; alt=&quot;Los Angeles View 2011&quot;&gt;&lt;/a&gt;</textarea>
996
+ <textarea name="SharingEmbedMarkupMBBCode" id="share-options-embed-textarea-m-bbcode" rows="4" wrap="virtual" style="display:none" class="embed-markup">[url=http://www.flickr.com/photos/justaslice/6038315155/][img]http://farm7.staticflickr.com/6198/6038315155_2875860c4b.jpg[/img][/url]
997
+ [url=http://www.flickr.com/photos/justaslice/6038315155/]Los Angeles View 2011[/url] by [url=http://www.flickr.com/people/justaslice/]█ Slices of Light █▀ ▀ ▀[/url], on Flickr</textarea>
998
+ <textarea name="SharingEmbedMarkupZ" id="share-options-embed-textarea-z" rows="4" wrap="virtual" style="display:none" class="embed-markup">&lt;a href=&quot;http://www.flickr.com/photos/justaslice/6038315155/&quot; title=&quot;Los Angeles View 2011 by █ Slices of Light █▀ ▀ ▀, on Flickr&quot;&gt;&lt;img src=&quot;http://farm7.staticflickr.com/6198/6038315155_2875860c4b_z.jpg&quot; width=&quot;640&quot; height=&quot;360&quot; alt=&quot;Los Angeles View 2011&quot;&gt;&lt;/a&gt;</textarea>
999
+ <textarea name="SharingEmbedMarkupZBBCode" id="share-options-embed-textarea-z-bbcode" rows="4" wrap="virtual" style="display:none" class="embed-markup">[url=http://www.flickr.com/photos/justaslice/6038315155/][img]http://farm7.staticflickr.com/6198/6038315155_2875860c4b_z.jpg[/img][/url]
1000
+ [url=http://www.flickr.com/photos/justaslice/6038315155/]Los Angeles View 2011[/url] by [url=http://www.flickr.com/people/justaslice/]█ Slices of Light █▀ ▀ ▀[/url], on Flickr</textarea>
1001
+ <textarea name="SharingEmbedMarkupC" id="share-options-embed-textarea-c" rows="4" wrap="virtual" style="display:none" class="embed-markup"></textarea>
1002
+ <textarea name="SharingEmbedMarkupCBBCode" id="share-options-embed-textarea-c-bbcode" rows="4" wrap="virtual" style="display:none" class="embed-markup">
1003
+ [url=http://www.flickr.com/photos/justaslice/6038315155/]Los Angeles View 2011[/url] by [url=http://www.flickr.com/people/justaslice/]█ Slices of Light █▀ ▀ ▀[/url], on Flickr</textarea>
1004
+ <textarea name="SharingEmbedMarkupL" id="share-options-embed-textarea-l" rows="4" wrap="virtual" style="display:none" class="embed-markup">&lt;a href=&quot;http://www.flickr.com/photos/justaslice/6038315155/&quot; title=&quot;Los Angeles View 2011 by █ Slices of Light █▀ ▀ ▀, on Flickr&quot;&gt;&lt;img src=&quot;http://farm7.staticflickr.com/6198/6038315155_2875860c4b_b.jpg&quot; width=&quot;1024&quot; height=&quot;576&quot; alt=&quot;Los Angeles View 2011&quot;&gt;&lt;/a&gt;</textarea>
1005
+ <textarea name="SharingEmbedMarkupLBBCode" id="share-options-embed-textarea-l-bbcode" rows="4" wrap="virtual" style="display:none" class="embed-markup">[url=http://www.flickr.com/photos/justaslice/6038315155/][img]http://farm7.staticflickr.com/6198/6038315155_2875860c4b_b.jpg[/img][/url]
1006
+ [url=http://www.flickr.com/photos/justaslice/6038315155/]Los Angeles View 2011[/url] by [url=http://www.flickr.com/people/justaslice/]█ Slices of Light █▀ ▀ ▀[/url], on Flickr</textarea>
1007
+ <textarea name="SharingEmbedMarkupH" id="share-options-embed-textarea-h" rows="4" wrap="virtual" style="display:none" class="embed-markup"></textarea>
1008
+ <textarea name="SharingEmbedMarkupOBBCode" id="share-options-embed-textarea-o-bbcode" rows="4" wrap="virtual" style="display:none" class="embed-markup">[url=http://www.flickr.com/photos/justaslice/6038315155/][img]http://farm7.staticflickr.com/6198/6038315155_0338f3fc39_o.jpg[/img][/url]
1009
+ [url=http://www.flickr.com/photos/justaslice/6038315155/]Los Angeles View 2011[/url] by [url=http://www.flickr.com/people/justaslice/]█ Slices of Light █▀ ▀ ▀[/url], on Flickr</textarea>
1010
+ <textarea name="SharingEmbedMarkupO" id="share-options-embed-textarea-o" rows="4" wrap="virtual" style="display:none" class="embed-markup">&lt;a href=&quot;http://www.flickr.com/photos/justaslice/6038315155/&quot; title=&quot;Los Angeles View 2011 by █ Slices of Light █▀ ▀ ▀, on Flickr&quot;&gt;&lt;img src=&quot;http://farm7.staticflickr.com/6198/6038315155_0338f3fc39_o.jpg&quot; width=&quot;1920&quot; height=&quot;1080&quot; alt=&quot;Los Angeles View 2011&quot;&gt;&lt;/a&gt;</textarea>
1011
+ </p>
1012
+ <form id="sharing-get-html-form" action="#">
1013
+ <select id="sharing_size" name="sharing_size">
1014
+ Size: <option value="Square" > Square 75 (75 x 75)</option>Size: <option value="Large Square" > Square 150 (150 x 150)</option>Size: <option value="Thumbnail" > Thumbnail (100 x 56)</option>Size: <option value="Small" > Small 240 (240 x 135)</option>Size: <option value="Small 320" > Small 320 (320 x 180)</option>Size: <option value="Medium" selected="selected"> Medium 500 (500 x 281)</option>Size: <option value="Medium 640" > Medium 640 (640 x 360)</option>Size: <option value="Large" > Large 1024 (1024 x 576)</option>Size: <option value="Original" > Original (1920 x 1080)</option>
1015
+ </select>
1016
+ <div id="code-types">
1017
+ <input name="code-type" id="code-type-html" type="radio" value="html" checked="checked"> <label for="code-type-html">HTML</label>&nbsp;
1018
+ <input name="code-type" id="code-type-bbcode" type="radio" value="BBCode"> <label for="code-type-bbcode">BBCode</label>
1019
+ </div>
1020
+ <div class="clearfix"></div>
1021
+ </form>
1022
+ <p class="share-menu-v3-license-info">
1023
+ Photo license:
1024
+ <span class="force-left"><span class="ccIcn ccIcnSmall"><a href="http://creativecommons.org/licenses/by-nc-nd/2.0/"><img src="http://l.yimg.com/g/images/spaceout.gif" border="0" alt="Attribution" title="Attribution" class="f-sprite fs-cc_icon_attribution_small"><img src="http://l.yimg.com/g/images/spaceout.gif" border="0" alt="Noncommercial" title="Noncommercial" class="f-sprite fs-cc_icon_noncomm_small"><img src="http://l.yimg.com/g/images/spaceout.gif" border="0" alt="No Derivative Works" title="No Derivative Works" class="f-sprite fs-cc_icon_noderivs_small"></a></span>
1025
+ </span>
1026
+ <a href="http://creativecommons.org/licenses/by-nc-nd/2.0/deed.en" rel="license cc:license">Some rights reserved</a>
1027
+ </p> </div> </li>
1028
+ </ul>
1029
+ <div class="clearfix"></div>
1030
+ </div>
1031
+ </div>
1032
+ </div>
1033
+ <div id="foot" class="new-foot" role="contentinfo">
1034
+ <div id="foot-wrap" class="clearfix">
1035
+ <div id="foot-nav" class="clearfix">
1036
+ <div class="foot-nav-col-new">
1037
+ <dl>
1038
+ <dt>About Flickr</dt>
1039
+ <dd><a href="/about/">Who we are</a></dd>
1040
+ <dd><a href="http://blog.flickr.net/">Flickr blog</a></dd>
1041
+ <dd><a href="/jobs/">Jobs</a></dd>
1042
+ </dl>
1043
+ </div>
1044
+ <div class="foot-nav-col-new">
1045
+ <dl>
1046
+ <dt>Community</dt>
1047
+ <dd><a href="/help/guidelines/">Community Guidelines</a></dd>
1048
+ <dd><a id="ft-report-abuse" href="/abuse/">Report abuse</a></dd>
1049
+ </dl>
1050
+ </div>
1051
+ <div class="foot-nav-col-new">
1052
+ <dl>
1053
+ <dt>Help</dt>
1054
+ <dd><a href="/help/">Need help? Start here!</a></dd>
1055
+ <dd><a href="/help/forum/">Help forum</a></dd>
1056
+ <dd><a href="/help/faq/">FAQs</a></dd>
1057
+ <dd><a href="http://info.yahoo.com/relevantads" target="_blank">About Our Ads</a></dd> </dl>
1058
+ </div>
1059
+ <div class="foot-nav-col-new">
1060
+ <dl>
1061
+ <dt>Apps and the API</dt>
1062
+ <dd><a href="/mobile">Flickr for mobile</a></dd>
1063
+ <dd><a href="/services/">App Garden</a></dd>
1064
+ <dd><a href="/services/api/">API documentation</a></dd>
1065
+ <dd><a href="http://code.flickr.com/">Developer blog</a></dd>
1066
+ <dd><a href="/services/developer/">Developer Guide</a></dd>
1067
+ </dl>
1068
+ </div>
1069
+ <div class="foot-nav-col-new last">
1070
+ <dl> <dd><a class="ft-twitter" title="Twitter" href="http://twitter.com/flickr"><span class="icon"></span><span class="link-text">Follow us</span></a></dd>
1071
+ <dd><a class="ft-facebook" title="Facebook" href="http://facebook.com/flickr"><span class="icon"></span><span class="link-text">Like us</span></a></dd>
1072
+ </dl>
1073
+ </div>
1074
+ </div> <div id="foot-lang">
1075
+ <ul>
1076
+ <li> <a href="/change_language.gne?lang=zh-hk&magic_cookie=c867162357c0deaba4680ecab7bbb375" id="lang_zh-hk">繁體中文</a>
1077
+ </li>
1078
+ <li><a href="/change_language.gne?lang=de-de&magic_cookie=c867162357c0deaba4680ecab7bbb375">Deutsch</a></li>
1079
+ <li><a href="/change_language.gne?lang=en-us&magic_cookie=c867162357c0deaba4680ecab7bbb375" class="selected">English</a></li>
1080
+ <li><a href="/change_language.gne?lang=es-us&magic_cookie=c867162357c0deaba4680ecab7bbb375">Espa&#241;ol</a></li>
1081
+ <li><a href="/change_language.gne?lang=fr-fr&magic_cookie=c867162357c0deaba4680ecab7bbb375">Fran&#231;ais</a></li>
1082
+ <li> <a href="/change_language.gne?lang=ko-kr&magic_cookie=c867162357c0deaba4680ecab7bbb375" id="lang_ko-kr">한글</a>
1083
+ </li>
1084
+ <li><a href="/change_language.gne?lang=it-it&magic_cookie=c867162357c0deaba4680ecab7bbb375">Italiano</a></li>
1085
+ <li><a href="/change_language.gne?lang=pt-br&magic_cookie=c867162357c0deaba4680ecab7bbb375">Portugu&#234;s</a></li>
1086
+ <li><a href="/change_language.gne?lang=vn-vn&magic_cookie=c867162357c0deaba4680ecab7bbb375">Tiếng Việt</a></li> <li class="last"><a href="/change_language.gne?lang=id-id&magic_cookie=c867162357c0deaba4680ecab7bbb375">Bahasa Indonesia</a></li> </ul>
1087
+ </div>
1088
+ <div id="foot-legalsleeze">
1089
+ <div>
1090
+ <a href="/help/terms/">Terms of Use</a> <span style="color: #eee;">|</span>
1091
+ <a href="/help/privacy-policy/">Your privacy</a> <span style="color: #eee;">|</span>
1092
+ <a href="http://safely.yahoo.com">Yahoo! Safely</a> <span style="color: #eee;">|</span> <a href="http://info.yahoo.com/legal/us/yahoo/copyright/en-us/">Copyright/IP Policy</a> </div>
1093
+ <div>
1094
+ Copyright &copy; 2013 Yahoo! Inc. All rights reserved.<br>Map images by Nokia, <a href="/map/attribution/" target="_blank">copyright info</a> </div>
1095
+ </div>
1096
+ </div>
1097
+ </div>
1098
+ <div id="global-dialog-background"></div>
1099
+ <div id="page-gen"><!-- page generated by www248 (in mud) at 19:51:33 08/01/13 in 389ms --></div>
1100
+ <!--beacons: 0 -->
1101
+ <script>
1102
+ (function() {
1103
+ F.intl = 'en-us';
1104
+ var yconf = {"flickr":{"flags":{"enable_grease":true,"enable_advanced_gestures":true,"enable_advanced_gestures_lightbox":true,"enable_desktop_lightbox_retina_images":true,"enable_fave_keyboard_shortcut":true,"enable_sets_keyboard_shortcut":true,"enable_faves_manage":true,"enable_galleries_context":true,"enable_rapid_tracking":true,"enable_groups_keyboard_shortcut":true,"enable_gallery_keyboard_shortcut":true,"enable_addperson_keyboard_shortcut":true,"enable_tags_keyboard_shortcut":true,"enable_comments_keyboard_shortcut":true,"enable_sitekey_fetcher":true,"enable_keyboard_shortcut_legend":true,"enable_keyboard_shortcut_legend_keyboard_layouts":true,"enable_keyboard_shortcuts":true,"enable_faves_page_flanal":true,"enable_viewing_party_ie9_support_messages":true,"enable_facebook_2":true,"enable_touch_lightbox_searchified":true,"enable_tag_selecta_photogne":true,"enable_tag_selecta_uploadr":true,"enable_exif_thumbs":true,"enable_justified_search":true,"enable_retina_justified":true,"aviary_photo_editing":true,"enable_jsfail_detection":true,"enable_farm_timing_sampling":true,"enable_high_res_pref":true,"enable_liquid_everything":true,"enable_justified_explore":true,"enable_account_order_redesign":true,"enable_global_nav":true,"enable_ywa_rapid":true,"enable_photopage_perf":true,"enable_homerun_navtiming_beacon":true,"enable_uh_eyebrow":true,"enable_2013_photo_page":true,"enable_2013_photo_page_extras":true,"enable_ken_burns":true,"enable_ken_burns_face":true,"enable_hermes_sihp_fb_friendfinder":true,"enable_hermes_sihp_deferred_sidebar":true,"enable_hermes_sihp_feed_ads":true,"enable_justified_inline_ads":true,"enable_justified_view_inline_commenting":true,"enable_justified_groups":true,"enable_sihp_viewcount":true,"enable_photostream_viewcount":true,"enable_group_post_beta":true,"enable_ads_on_login_page":0},"formatting":{"thousandsSeparator":",","decimalSeparator":"."},"farm_samples":{"f1":4,"f2":5,"f3":15,"f4":20,"f5":20,"f6":20,"f7":20,"f8":70,"f9":20,"f10":20},"is_zeus":true,"page_type":"photo","page_owner":"95282411@N00","justified_row_height":330,"lang":"en-us","photo_root":"http:\/\/farm.staticflickr.com\/","site_root":"http:\/\/www.flickr.com","images_root":"http:\/\/l.yimg.com\/g\/images","intl_images_root":"http:\/\/l.yimg.com\/g\/images\/en-us","int2lang":{"1":"en-us","2":"fr-fr","3":"es-us","4":"de-de","5":"it-it","6":"pt-br","7":"ko-kr","9":"zh-hk","13":"vn-vn","14":"id-id"},"search":{"search_alias":"justaslice","textsearch_enabled":true,"search_scope":"all","search_profile_nsid":"95282411@N00"},"dejaview":{"id":"aczWHZ"},"photos":[],"contact_limit":3000,"server_timestamp":1375411893,"magic_cookie":"c867162357c0deaba4680ecab7bbb375","filmstrips":{"preload_page_count":2,"photos_per_page":4,"container":"#sidebar"},"notes":{"can_add_note":false,"can_add_person":false,"photo_id":"6038315155","ratio":1.28,"count":3,"max_count":100},"photo":{"id":"6038315155"},"open_context_id":"photolist-aczWHZ-8mK79e-88Danv-7FboPA-b3bDUc-cVdbVu-7LhXab-8uV7Uf-f89C1W-eKigsX-doZbMd-e8r82J-e4MF3A-e8kyQt-e4Mxry-bNTrhx-fjwAHB-9bTwKf-825f9g-8oHZ6K-bUbaur-7CyyYz-7CCoLY-a7uSuo-7Ze8mX-affZQb-fiZrhM-fjezCL-dERd9E-anqRRi-awxtHG-895nYC-bTw9JP-bR23cZ-8zqnfF-bv6NHe-aUqrxB-8xg3FV-eKVYPT-btWMPc-fkC6aa-fkSfpf-8pSW21-b8ngGe-8Wra34","video_player_version":"109786","lightbox":{"enable":true,"enable_faves":true,"enable_comments":true,"enable_favorites_count":true,"node_prune_threshold":50,"node_prune_amount":10,"position_preload_limit":10,"position_preload_threshold":5,"image_preload_limit":2,"hd_default":false,"video_autoplay":true,"enable_mobile_lightbox":true,"enable_mobile_lightbox_pinch_zoom":true,"enable_fullscreen":true,"spaceid":792600515,"biggering_2013":true},"max_photo_ids_per_api_call":20,"flickr_api_uri_direct":"http:\/\/ycpi.api.flickr.com\/services\/rest\/","host_ip":"209.191.105.177","user":{"user_ok":false,"useragent_fully_supported":true,"enable_alternate_map_type":4},"printing":{"use_printcart":true,"snapfish_cart_url":"http:\/\/www.snapfish.com\/flickrentry\/"},"sharing":{"use_share_this_v3":true,"object":{"owner_nsid":"95282411@N00","type":"photo","id":"6038315155"}},"nav_selecta":{"additional_sections":[{"name":"Terms of Use","sectionType":"text","url":"\/help\/terms\/"},{"name":"Your Privacy","sectionType":"text","url":"\/help\/privacy-policy\/"},{"name":"Copyright\/IP Policy","sectionType":"text","url":"http:\/\/info.yahoo.com\/legal\/us\/yahoo\/copyright\/en-us\/"}],"photostream_search_user":{"nsid":"95282411@N00","owner_name_possessive":"\u2588 Slices of Light \u2588\u2580 \u2580 \u2580's"}},"people":{"api_url":"","can_only_add_self":false},"tags":{"api_url":""},"iphone_app_store_url":"https:\/\/itunes.apple.com\/app\/flickr\/id328407587"},"flickrAPI":{"flickr_api_uri":"\/services\/rest\/","api_key":"ca1c97697afe02ec78781de506c3a192","auth_hash":"c867162357c0deaba4680ecab7bbb375","auth_token":"","secret":"a39122d01cc77d00"},"flickrMap":{"generatedInYconf":true,"enable_alternate_tiles_plugin":1},"yui2":"2.5.2","loadOptional":false,"combine":true,"root":"","base":"http:\/\/l.yimg.com\/g\/combo\/1\/3.7.3?","comboBase":"http:\/\/l.yimg.com\/g\/combo\/1\/3.7.3?","workerBase":"\/combo\/1\/3.7.3?","maxURLLength":1999,"dev":false,"debug":false,"modules":{"account-manage":{"path":"j\/.IR-manage.A.v29oKD","requires":["flickr-dialog","io-base","sprintf","yui-base"],"ext":false},"account-order-transjax":{"path":"j\/.IR-.JM-.C-.F.A.v24XRD","requires":["transjax-base","yui-base"],"ext":false},"account-order-ywa-tracking":{"path":"j\/.IR-.JM-ywa-.BW.A.v24uvr","requires":["event","datatype-date-format","yahoo-web-analytics","yui-base"],"ext":false},"account-order-manage-ywa-tracking":{"path":"j\/.IR-.JM-manage-ywa-.BW.A.v24M34","requires":["event","datatype-date-format","yahoo-web-analytics","yui-base"],"ext":false},"account-order-zeus":{"path":"j\/.IR-.JM-.D.A.v257qc","requires":["account-order-transjax","io-base","sprintf","yui-base"],"ext":false},"account-refund":{"path":"j\/.IR-refund.A.v29WBV","requires":["flickr-dialog","io-base","rapid-tracker","sprintf","yui-base"],"ext":false},"account-rules":{"path":"j\/.IR-rules.A.vY7V2","requires":["dd-constrain","dd-drop","dd-proxy","event","flickr-dialog-confirmation","gallery-flickr-api","node","yui-base"],"ext":false},"account-upgrade":{"path":"j\/.IR-upgrade.A.v2agwt","requires":["flickr-dialog","io-base","rapid-tracker","sprintf","yui-base"],"ext":false},"actions-menu-css":{"path":"c\/c_.IS-.BB.BC.v27yEc","type":"css","ext":false},"ad-masker":{"path":"j\/ad-masker.A.v23TBi","requires":["node","page-context","yui-base"],"ext":false},"add-to-dialog-css":{"path":"c\/c_.KQ.W-.D.BC.v27yEc","type":"css","ext":false},"addressbook":{"path":"j\/.HE.A.v22NwF","requires":["better-throttle","event","gallery-flickr-api","io","node","yui-base"],"ext":false},"autocomplete-2-5-1":{"path":"j\/.CM\/.BA_2.5.1-.D.A.vPzux","requires":["yui2-datasource","yui2-dom","yui2-event","yui2-yahoo"],"ext":false},"aviary-editor-frame-css":{"path":"c\/c_aviary-.GZor-.JW.BC.v27yEc","type":"css","ext":false},"aviary-editor-frame-transjax":{"path":"j\/aviary-.GZor-.JW-.C-.F.A.v22w9F","requires":["transjax-base","yui-base"],"ext":false},"aviary-editor-frame":{"path":"j\/aviary-.GZor-.JW.A.v22YPe","requires":["base","aviary-editor-frame-css","aviary-editor-frame-transjax","event","flickr-dialog-frame","flickr-dialog-spinner","yui-base"],"ext":false},"batchr-photo-privacy":{"path":"j\/batchr-.B-privacy.A.v27wnr","requires":["batchr-photo-privacy-transjax","flickr-dialog","gallery-flickr-api","yui-base"],"ext":false},"batchr-photo-privacy-transjax":{"path":"j\/batchr-.B-privacy-.C-.F.A.v27ydk","requires":["transjax-base","yui-base"],"ext":false},"beehive-contact-suggestions":{"path":"j\/.IT-.FF-.IL.A.v22NwF","requires":["anim","beehive-contact-suggestions-transjax","contact-changer","gallery-flickr-api","node","yui-base"],"ext":false},"beehive-contact-suggestions-transjax":{"path":"j\/.IT-.FF-.IL-.C-.F.A.vR9sp","requires":["transjax-base","yui-base"],"ext":false},"better-throttle":{"path":"j\/.EH-.EB.A.vWJ4n","requires":["yui-base","yui-later"],"ext":false},"bitmap-text":{"path":"j\/.Z-.DK-.D.A.vLQEt","requires":["yui-base"],"ext":false},"bitmap-type-silkscreen":{"path":"j\/.Z-.DJ-.BJ.A.vLQEt","requires":["yui-base"],"ext":false},"boomerang":{"path":"j\/.JK.A.v235xZ","requires":["yui-base"],"ext":false},"box-host":{"path":"j\/box-.DG.A.v23NMZ","requires":["event-mousedrag","math","node","yui-base"],"ext":false},"bo-selecta":{"path":"j\/.HO-.D.A.v22NwF","requires":["anim","autocomplete-2-5-1","bo-selecta-css","bo-selecta-transjax","event","event-custom","gallery-flickr-api","io-base","node","string-filters","yui-base"],"ext":false},"bo-selecta-3":{"path":"j\/.HO-3.A.v23pft","requires":["anim","autocomplete","bo-selecta-3-css","bo-selecta-global-search-datasource","bo-selecta-transjax","datasource-function","event","event-custom","gallery-flickr-api","image-fader","io-base","node","string-filters","widget","yui-base"],"optional":["contact-changer"],"ext":false},"bo-selecta-css":{"path":"c\/c_.HO-.D.BC.v27yEc","type":"css","ext":false},"bo-selecta-3-css":{"path":"c\/c_.HO-3.BC.v223Nt","type":"css","ext":false},"bo-selecta-global-search-datasource":{"path":"j\/.HO-.X-.CA-.BYsource.A.v22NwF","requires":["bo-selecta-transjax","datasource-local","gallery-flickr-api","yui-base"],"ext":false},"bo-selecta-transjax":{"path":"j\/.HO-.C-.F.A.vT2e2","requires":["transjax-base","yui-base"],"ext":false},"cache-simple":{"path":"j\/.EJ-.GK.A.vS6oB","requires":["yui-base"],"ext":false},"ccv":{"path":"j\/ccv.A.v2aNJP","requires":["yui-base"],"ext":false},"comscore":{"path":"j\/.JN.A.v22NTn","ext":false},"contact-changer":{"path":"j\/.FF-.FG-.D.A.vXp7T","requires":["contact-changer-css","contact-changer-transjax","event-custom","event-delegate","gallery-flickr-api","global-dialog","io-base","yui-base"],"ext":false},"contact-changer-css":{"path":"c\/c_.FF-.FG-.D.BC.v27yEc","type":"css","ext":false},"contact-changer-transjax":{"path":"j\/.FF-.FG-.C-.F.A.vLpu8","requires":["transjax-base","yui-base"],"ext":false},"context-data":{"path":"j\/.H-.BY.A.v2b4dt","requires":["event-custom","gallery-flickr-api","photo-data","urls","yui-base"],"ext":false},"dataview":{"path":"j\/.BY.JB.A.v23Hgi","requires":["yui-base"],"ext":false},"date-widgets":{"path":"j\/.HB-.EZs.A.v26Kn6","requires":["yui-base"],"optional":["datatype-date","event","gallery-calendar","node"],"ext":false},"defer-images":{"path":"j\/.GI-.GC.A.v2apUF","requires":["node-visibility","retry-image-on-error","yui-base"],"ext":false},"dejaview":{"path":"j\/.BZ-.D.A.vNstR","requires":["cookie","yui-base"],"ext":false},"discussion-comments":{"path":"j\/discussion-.LGs.A.v25Rav","requires":["event","node","yui-base"],"ext":false},"donut-progress-ui":{"path":"j\/donut.ID-ui.A.v23YVV","requires":["yui-base"],"ext":false},"dynamic-messaging":{"path":"j\/dynamic-messaging.A.v26PTa","requires":["io-form","gallery-flickr-api","message-primary-email-transjax","transjax-base","yui-base"],"ext":false},"editr":{"path":"j\/.GZr.A.v27uei","requires":["boomerang","editr-edit-panel","editr-errors","editr-grid","editr-progress","editr-publish-dialog","editr-toolbar","event-base","feature-tour","health-check","gallery-popover","page-context","polyfills-placeholder","yui-base"],"optional":["editr-file-picker","editr-photo-picker","editr-upload-queue","flickr-dialog"],"ext":false},"editr-blocked":{"path":"j\/.GZr-blocked.A.v29sen","requires":["cookie","yui-base"],"ext":false},"editr-data-base":{"path":"j\/.KA.BL.A.v24Yqp","requires":["array-extras","event-custom","yui-base"],"ext":false},"editr-data-groups":{"path":"j\/.KA.DMs.A.v28b9P","requires":["editr-data-photos","editr-data-base","type-cast","yui-base"],"ext":false},"editr-data-people":{"path":"j\/.KA.L.A.vZXG8","requires":["editr-data-base","type-cast","yui-base"],"ext":false},"editr-data-photos":{"path":"j\/.KA.EC.A.v265HH","requires":["editr-data-base","type-cast","yui-base"],"ext":false},"editr-data-sets":{"path":"j\/.KA.KF.A.v267Tz","requires":["editr-data-photos","editr-data-base","escape","type-cast","yui-base"],"ext":false},"editr-edit-panel":{"path":"j\/.GZr-.GZ.IC.A.v26TFR","requires":["better-throttle","editr-data-photos","editr-edit-panel-tooltip","editr-edit-panel-groups","editr-edit-panel-owner-settings","editr-edit-panel-people","editr-edit-panel-sets","editr-edit-panel-tags","editr-edit-panel-title-description","editr-edit-panel-transjax","editr-grid","event-base","substitute","string-filters","yui-base"],"ext":false},"editr-edit-panel-component":{"path":"j\/.JZ.JY.A.v22jGT","requires":["event-base","keyboard-shortcut-manager","yui-base"],"ext":false},"editr-edit-panel-groups":{"path":"j\/.JZ.DMs.A.v26THz","requires":["editr-data-photos","editr-data-groups","editr-edit-panel-tooltip","editr-edit-panel-transjax","event-base","flickr-dialog","keyboard-shortcut-manager","string-filters","yui-base"],"ext":false},"editr-edit-panel-location":{"path":"j\/.JZ.BR.A.v21Czi","requires":["editr-data-photos","editr-edit-panel-component","editr-edit-panel-transjax","yui-base"],"ext":false},"editr-edit-panel-owner-settings":{"path":"j\/.JZ.BK-.FR.A.v26Kn6","requires":["editr-data-photos","editr-edit-panel-component","editr-edit-panel-transjax","yui-base"],"optional":["date-widgets"],"ext":false},"editr-edit-panel-people":{"path":"j\/.JZ.L.A.v22Aj4","requires":["bo-selecta-3","editr-data-people","editr-data-photos","editr-edit-panel-component","editr-edit-panel-transjax","event-base","flickr-dialog","photo-keyboard-shortcuts-transjax","photo-people-transjax","string-filters","yui-base"],"ext":false},"editr-edit-panel-sets":{"path":"j\/.JZ.KF.A.v27NCx","requires":["editr-data-photos","editr-data-sets","editr-edit-panel-tooltip","editr-edit-panel-transjax","event-base","flickr-dialog","keyboard-shortcut-manager","string-filters","yui-base"],"ext":false},"editr-edit-panel-tags":{"path":"j\/.JZ.KD.A.v268bP","requires":["editr-data-photos","editr-edit-panel-transjax","event-base","tag-selecta","yui-base"],"ext":false},"editr-edit-panel-title-description":{"path":"j\/.JZ.KB-.KC.A.v23Cvr","requires":["better-throttle","editr-data-photos","editr-edit-panel-transjax","event-base","focus-tracker","yui-base"],"ext":false},"editr-edit-panel-tooltip":{"path":"j\/.JZ.JT.A.v268dx","requires":["editr-edit-panel-tooltip-css","editr-edit-panel-tooltip-transjax","escape","event-base","gallery-popover","yui-base"],"ext":false},"editr-edit-panel-tooltip-css":{"path":"c\/c_.JZ.JT.BC.v27yEc","type":"css","ext":false},"editr-edit-panel-tooltip-transjax":{"path":"j\/.JZ.JT-.C-.F.A.v24uox","requires":["transjax-base","yui-base"],"ext":false},"editr-edit-panel-transjax":{"path":"j\/.JZ.C-.F.A.v25wWB","requires":["transjax-base","yui-base"],"ext":false},"editr-errors":{"path":"j\/.GZr-.JPs.A.v23ym4","requires":["editr-data-photos","yui-base"],"ext":false},"editr-exif":{"path":"j\/.GZr-.GO.A.v24UaR","requires":["editr-data-photos","exif-thumbnail-extractor","datatype-xml","worker","yui-base"],"ext":false},"editr-file-picker":{"path":"j\/.GZr-.KG.A.v29tQt","requires":["datatype","editr-data-photos","editr-exif","editr-file-picker-transjax","editr-progress","flickr-dialog","gallery-flickr-api","health-check","md5","string-filters","uploader","yui-base"],"ext":false},"editr-file-picker-transjax":{"path":"j\/.GZr-.KG-.C-.F.A.v24uox","requires":["transjax-base","yui-base"],"ext":false},"editr-grid":{"path":"j\/.KJ.A.v28pFi","requires":["editr-data-photos","editr-grid-external-events","editr-grid-form-handler","editr-grid-item","editr-grid-key-monitor","editr-grid-marquee","editr-grid-progress-handler","editr-grid-selection","editr-grid-selection-ui","editr-grid-transjax","editr-grid-user-messaging","event-custom","editr-zoom","editr-errors","flickr-dialog","focus-tracker","gallery-popover","menus","yui-base"],"optional":["editr-upload-queue"],"ext":false},"editr-grid-external-events":{"path":"j\/.KJ-.KK-.Gs.A.v255Sx","requires":["editr-grid","yui-base"],"ext":false},"editr-grid-form-handler":{"path":"j\/.KJ-.KL.A.v24zi2","requires":["editr-grid","yui-base"],"ext":false},"editr-grid-item":{"path":"j\/.KJ-item.A.v24zi2","requires":["editr-grid","yui-base"],"ext":false},"editr-grid-key-monitor":{"path":"j\/.KJ-.KM.A.v24uox","requires":["editr-grid","keyboard-shortcut-manager","yui-base"],"ext":false},"editr-grid-marquee":{"path":"j\/.KJ-marquee.A.v24uox","requires":["editr-grid","yui-base"],"ext":false},"editr-grid-progress-handler":{"path":"j\/.KJ.ID-handler.A.v28pte","requires":["editr-grid","editr-publish-dialog","transjax-base","yui-base"],"ext":false},"editr-grid-selection":{"path":"j\/.KJ-.KN.A.v24zi2","requires":["editr-grid","yui-base"],"ext":false},"editr-grid-selection-ui":{"path":"j\/.KJ-.KN-ui.A.v24zi2","requires":["editr-grid","transjax-base","yui-base"],"ext":false},"editr-grid-transjax":{"path":"j\/.KJ-.C-.F.A.v25krn","requires":["transjax-base","yui-base"],"ext":false},"editr-grid-user-messaging":{"path":"j\/.KJ-.KO.A.v24uox","requires":["editr-grid","editr-errors","yui-base"],"ext":false},"editr-photo-picker":{"path":"j\/.GZr-.B-picker.A.vZW9t","requires":["editr-data-photos","flickr-dialog-spinner","flickr-geo","gallery-flickr-api","yui-base"],"ext":false},"editr-progress":{"path":"j\/.GZr.ID.A.v24b7c","requires":["better-throttle","event-base","event-custom","yui-base"],"ext":false},"editr-publish-dialog":{"path":"j\/.GZr-.KE-.W.A.v28gjP","requires":["editr-progress","editr-publisher","editr-publisher-transjax","editr-upload-queue","event-base","event-custom","flickr-dialog","gallery-flickr-api","health-check","yui-base"],"optional":["flanal"],"ext":false},"editr-publisher":{"path":"j\/.GZr-.KEer.A.v29tQt","requires":["editr-data-people","editr-data-photos","editr-data-sets","editr-errors","editr-publisher-transjax","editr-upload-queue","event-base","event-custom","flickr-dialog","gallery-flickr-api","health-check","yui-base"],"ext":false},"editr-publisher-transjax":{"path":"j\/.GZr-.KEer-.C-.F.A.v24uox","requires":["transjax-base","yui-base"],"ext":false},"editr-secret-about-box":{"path":"j\/.GZr-secret-about-box.A.v25WMn","requires":["event","node","page-context","yui-base"],"ext":false},"editr-toolbar":{"path":"j\/.GZr-.KP.A.v24jZH","requires":["editr-grid","menus","yui-base"],"ext":false},"editr-upload-queue":{"path":"j\/.GZr-.KI-.CT.A.v272vi","requires":["editr-data-photos","editr-errors","editr-file-picker","editr-publisher","event-custom","gallery-flickr-api","health-check","json","yui-base"],"optional":["flanal"],"ext":false},"editr-zoom":{"path":"j\/.GZr-zoom.A.v242QT","requires":["editr-zoom-transjax","editr-data-photos","editr-file-picker","event-base","event-custom","flickr-dialog","node-event-html5","yui-base"],"ext":false},"editr-zoom-transjax":{"path":"j\/.GZr-zoom-.C-.F.A.v24uox","requires":["transjax-base","yui-base"],"ext":false},"exif-extractor":{"path":"j\/.KU.A.v23Hgi","requires":["exif-extractor-tags","xmp-extractor","yui-base"],"ext":false},"exif-extractor-tags":{"path":"j\/.KU-.KD.A.v21yYF","requires":["yui-base"],"ext":false},"exif-thumbnail-extractor":{"path":"j\/.GO-.IM-.IN.A.vWJcZ","requires":["yui-base"],"ext":false},"event-annotations":{"path":"j\/.G-.BD.A.vNHSX","requires":["yui-base"],"ext":false},"event-mousedrag":{"path":"j\/.G-.BO.A.v24EaM","requires":["event-annotations","event-custom-complex","event-synthetic","node","yui-base","yui-throttle"],"ext":false},"face":{"path":"j\/face.A.v296FZ","ext":false},"photo-list-model":{"path":"j\/.B-.CZ-.JA.A.v2amdT","requires":["gallery-flickr-api","model","murmurhash","photos-list","photo-data","context-data","querystring-stringify-simple","io","yui-base"],"ext":false},"photo-list-view":{"path":"j\/.B-.CZ-.JB.A.v2bC9P","requires":["view","handlebars","murmurhash","photos-list","io","flickr-app","lightbox","photos-list-justifier","flickr-dialog-infinite-spinner","better-throttle","rapid-tracker","template-fetcher","yui-base","node-imports","flickr-page-timing","view-count-on-visible"],"ext":false},"explore-hera-view":{"path":"j\/.FP-.LJ.JB.A.v2aUbk","requires":["view","datatype-date","murmurhash","handlebars","photo-list-model","photo-list-view","flickr-app-explore","flickr-dialog-infinite-spinner","template-fetcher","gallery-popover","rapid-tracker","io","yui-base"],"ext":false},"search-hera-view":{"path":"j\/.CA-.LJ.JB.A.v2aUbk","requires":["view","datatype-date","murmurhash","handlebars","photo-list-model","photo-list-view","flickr-app-explore","flickr-dialog-infinite-spinner","template-fetcher","gallery-popover","rapid-tracker","io","yui-base"],"ext":false},"photostream-hera-view":{"path":"j\/.ECtream-.LJ.JB.A.v2bC9P","requires":["view","app","datatype-date","murmurhash","handlebars","photo-list-model","photo-list-view","flickr-dialog-infinite-spinner","template-fetcher","gallery-popover","rapid-tracker","io","yui-base"],"ext":false},"fave-star":{"path":"j\/.CX-.CY.A.v295v2","requires":["anim","node","yui-base"],"ext":false},"farm_timing":{"path":"j\/farm_.FZ.A.v23iXz","requires":["node","yui-base","io","event"],"ext":false},"feature-tour":{"path":"j\/.KT-.DA.A.v25VRV","requires":["anim","cookie","dom","event","feature-tour-css","feature-tour-transjax","yui-base"],"ext":false},"feature-tour-css":{"path":"c\/c_.KT-.DA.BC.v27yEc","type":"css","ext":false},"feature-tour-transjax":{"path":"j\/.KT-.DA-.C-.F.A.v22t7P","requires":["transjax-base","yui-base"],"ext":false},"flanal":{"path":"j\/.IU.A.v26U3x","requires":["yui-base"],"optional":["io"],"ext":false},"flapid":{"path":"j\/.JO.A.vT5pv","requires":["gallery-flickr-api","yui-base"],"ext":false},"flickr":{"path":"j\/.J-.D.A.v29EgD","requires":["flickr-app","flickr-tooltips","personmenu","yui-base"],"optional":["gallery-flickr-api","share-this-v3-menu"],"ext":false},"flickr-app":{"path":"j\/.J-app.A.v24yD6","requires":["app-base","yui-base"],"ext":false},"flickr-app-photo":{"path":"j\/.J-app-.B.A.v24xxi","requires":["context-data","flickr-app","photo-data","urls","yui-base"],"optional":["video"],"ext":false},"flickr-app-photostream":{"path":"j\/.J-app-.ECtream.A.v2b2Bn","requires":["context-data","flickr-app","photo-data","template-fetcher","photo-list-model","photo-list-view","photostream-hera-view","photos-subnav-view","refresh-sihp-comment","urls","io","yui-base"],"optional":["video"],"ext":false},"flickr-app-explore":{"path":"j\/.J-app-.FP.A.v2acKv","requires":["context-data","flickr-app","explore-hera-view","rapid-tracker","template-fetcher","urls","yui-base"],"ext":false},"flickr-app-soup":{"path":"j\/.J-app-soup.A.v29WhX","requires":["flickr-app","soup-hera-view","rapid-tracker","template-fetcher","urls","yui-base"],"ext":false},"group-model":{"path":"j\/.DM-.JA.A.v253Ri","requires":["context-data","model","gallery-flickr-api","urls","yui-base"],"ext":false},"groups-model":{"path":"j\/.DMs-.JA.A.v254wX","requires":["context-data","model","model-list","lazy-model-list","group-model","gallery-flickr-api","urls","yui-base"],"ext":false},"groups-page-model":{"path":"j\/.DMs-.GF-.JA.A.v255QP","requires":["context-data","model","group-model","gallery-flickr-api","urls","yui-base"],"ext":false},"groups-list-view":{"path":"j\/.DMs-.CZ-.JB.A.v2bpGp","requires":["context-data","view","groups-model","handlebars","yui-base"],"ext":false},"groups-recent-view":{"path":"j\/.DMs-recent-.JB.A.v254wX","requires":["context-data","view","groups-model","groups-page-model","handlebars","yui-base"],"ext":false},"group-subnav":{"path":"j\/.DM-subnav.A.v2bbjx","requires":["flickr-dialog","yui-base"],"ext":false},"flickr-app-groups":{"path":"j\/.J-app-.DMs.A.v2bbg6","requires":["context-data","cookie","flickr-app","groups-model","group-model","groups-page-model","groups-list-view","groups-recent-view","group-strip-view","template-fetcher","urls","yui-base"],"ext":false},"flickr-dialog":{"path":"j\/.IZ.A.vXom4","requires":["flickr-dialog-alert","flickr-dialog-confirmation","flickr-dialog-destructive-confirmation","flickr-dialog-frame","flickr-dialog-short-message","flickr-dialog-spinner","yui-base"],"ext":false},"flickr-dialog-alert":{"path":"j\/.IZ-.JX.A.vYz1P","requires":["flickr-dialog-base","substitute","yui-base"],"ext":false},"flickr-dialog-base":{"path":"j\/.IZ-.BL.A.v24baD","requires":["attribute","better-throttle","event","event-custom","focus-tracker","flickr-dialog-css","global-dialog-transjax","keyboard-shortcut-manager","node","page-context","substitute","yui-base"],"ext":false},"flickr-dialog-confirmation":{"path":"j\/.IZ-.JR.A.v26nu8","requires":["flickr-dialog-base","substitute","yui-base"],"ext":false},"flickr-dialog-css":{"path":"c\/c_.IZ.BC.v26nUg","type":"css","ext":false},"flickr-dialog-destructive-confirmation":{"path":"j\/.IZ-.JS-.JR.A.v227ug","requires":["flickr-dialog-base","yui-base"],"ext":false},"flickr-dialog-frame":{"path":"j\/.IZ-.JW.A.vXqPa","requires":["flickr-dialog-base","yui-base"],"ext":false},"flickr-dialog-geo-css":{"path":"c\/c_.IZ-geo.BC.v27yEc","type":"css","ext":false},"flickr-dialog-geo":{"path":"j\/.IZ-geo.A.v24Bhx","requires":["flickr-dialog-base","flickr-dialog-geo-css","flickr-map2","yui-base"],"ext":false},"flickr-dialog-infinite-spinner-css":{"path":"c\/c_.IZ-infinite-.JV.BC.v25k3X","type":"css","ext":false},"flickr-dialog-infinite-spinner":{"path":"j\/.IZ-infinite-.JV.A.v21TaR","requires":["flickr-dialog-base","flickr-dialog-infinite-spinner-css","yui-base","html5-balls"],"ext":false},"flickr-dialog-short-message":{"path":"j\/.IZ-short-.JU.A.vYz1P","requires":["flickr-dialog-base","substitute","yui-base"],"ext":false},"flickr-dialog-spinner":{"path":"j\/.IZ-.JV.A.vXUzv","requires":["flickr-dialog-base","yui-base"],"ext":false},"flickr-gallery-comments":{"path":"j\/.J-.FW-.LGs.A.v23TBi","requires":["anim","anim-scroll","dejaview","event-custom","event-delegate","formatting-tips-css","gallery-flickr-api","global-dialog","history-manager","input-hint","io-form","node","node-visibility","page-context","photo-comments-transjax","swfobject","yui-base"],"ext":false},"flickr-gallery-gallery-owner":{"path":"j\/.J-.FW-.FW-.BK.A.v26K4R","requires":["dd-drop","dd-proxy","event","flickr-gallery-gallery-owner-transjax","flickr-gallery-photo-remover","insitu","node","yui-base"],"ext":false},"flickr-gallery-gallery-owner-actions-menu":{"path":"j\/.J-.FW-.FW-.BK-.IS-.BB.A.vVtRr","requires":["event","gallery-popover","menus","node","yui-base"],"optional":["flickr-gallery-gallery-owner"],"ext":false},"flickr-gallery-gallery-owner-transjax":{"path":"j\/.J-.FW-.FW-.BK-.C-.F.A.vUnPD","requires":["transjax-base","yui-base"],"ext":false},"flickr-gallery-keyboard-shortcuts":{"path":"j\/.J-.FW-.HZs.A.v28aJF","requires":["anim","anim-scroll","better-throttle","event","flickr-gallery-keyboard-shortcuts-transjax","keyboard-shortcut-manager","node","node-visibility","yui-base"],"ext":false},"flickr-gallery-keyboard-shortcuts-transjax":{"path":"j\/.J-.FW-.HZs-.C-.F.A.vUDUp","requires":["transjax-base","yui-base"],"ext":false},"flickr-gallery-photo-owner":{"path":"j\/.J-.FW-.B-.BK.A.vVtRr","requires":["event","flickr-gallery-photo-remover","node","yui-base"],"ext":false},"flickr-gallery-photo-remover":{"path":"j\/.J-.FW-.B-.IP.A.vUus8","requires":["event","flickr-gallery-photo-remover-transjax","gallery-flickr-api","global-dialog","node","yui-base"],"ext":false},"flickr-gallery-photo-remover-transjax":{"path":"j\/.J-.FW-.B-.IP-.C-.F.A.vUioK","requires":["transjax-base","yui-base"],"ext":false},"flickr-geo":{"path":"j\/.J-geo.A.v25nnr","requires":["io","gallery-flickr-api","yui-base"],"ext":false},"flickr-leaflet-utils-css":{"path":"c\/c_.J-leaflet-utils.BC.v242HZ","type":"css","ext":false},"flickr-leaflet-utils":{"path":"j\/.J-leaflet-utils.A.v25YHr","requires":["osm-places","flickr-leaflet-utils-css","yui-base"],"ext":false},"flickr-location-search":{"path":"j\/.J_.BR_.CA.A.vTd1T","requires":["event","node","query-string-args","yui-base"],"ext":false},"flickr-map":{"path":"j\/.J-map.A.v25nnr","requires":["flickr-map-transjax","base","selector-css3","slider","gallery-flickr-api","photo","dragdrop","dd-drag","flickr-map-css","flickr-map-css-intl","excanvas","json","gallery-storage-lite","better-throttle","selector-circle","flickr-geo","yui-base"],"ext":false},"flickr-map2":{"path":"j\/.J-map2.A.v23TBi","requires":["base","cookie","dd-drag","dragdrop","event","flickr-geo","flickr-map-css","flickr-map-transjax","keyboard-shortcut-manager","page-context","selector-css3","slider","yui-base"],"ext":false},"flickr-map-provider-ymap":{"path":"j\/.J-.IK-ymap.A.v231xe","requires":["ymap","yui-base","yui2_5-yahoo","yui2_5-event","yui2_5-dom","yui2_5-animation","yui2_5-dragdrop"],"ext":false},"flickr-map-provider-bing":{"path":"j\/.J-.IK-bing.A.vRygr","requires":["bing_map","yui-base"],"ext":false},"flickr-map-provider-ovi":{"path":"j\/.J-.IK-ovi.A.v264Fn","requires":["yui-base"],"ext":false},"flickr-map-provider-gmap":{"path":"j\/.J-.IK-gmap.A.vZg4e","requires":["yui-base"],"ext":false},"flickr-map-provider-flickr_osm":{"path":"j\/.J-.IK-.J_osm.A.v25Xcv","requires":["yui-base"],"ext":false},"flickr-map-transjax":{"path":"j\/.J-map-.C-.F.A.v2446i","requires":["transjax-base","yui-base"],"ext":false},"flickr-map-css":{"path":"c\/c_.J-map.BC.v27yEc","type":"css","ext":false},"flickr-map-css-intl":{"path":"c\/c_.J-map-.F.BC.v27yEc","type":"css","ext":false},"flickr-nav":{"path":"j\/.J_nav.A.v23TBi","requires":["event","node","page-context","yui-base"],"ext":false},"flickr-overlay-css":{"path":"c\/c_.J-overlay-.BL.BC.v27yEc","type":"css","ext":false},"flickr-overlay-base":{"path":"j\/.J-overlay-.BL.A.v23TBi","requires":["attribute","better-throttle","event","event-custom","focus-tracker","flickr-overlay-css","keyboard-shortcut-manager","node","page-context","substitute","yui-base"],"ext":false},"flickr-page-timing":{"path":"j\/.J_.GF_.FZ.A.v2avN4","requires":["event","node","yui-base"],"ext":false},"flickr-printing":{"path":"j\/.J_.FD.A.v29aPD","requires":["node","event","io","gallery-flickr-api","event-delegate","global-dialog","sprintf","flickr-printing-css","flickr-printing-transjax","flickr-tooltips","yui-base"],"ext":false},"flickr-printing-css":{"path":"c\/c_.J_.FD_.D.BC.v27yEc","type":"css","ext":false},"flickr-printing-transjax":{"path":"j\/.J_.FD-.C-.F.A.v25DU4","requires":["transjax-base","yui-base"],"ext":false},"flickr-tooltips":{"path":"j\/.J-.GA.A.vThq4","requires":["event","event-delegate","yui-base"],"ext":false},"focus-tracker":{"path":"j\/.CV-.CH.A.v22DsP","requires":["event","node","yui-base"],"ext":false},"formatting-tips-css":{"path":"c\/c_.EN_.EQ_.D.BC.v27yEc","type":"css","ext":false},"gallery-boomr":{"path":"j\/.FW-boomr.A.vS9f8","requires":["lang","yui-base"],"ext":false},"gallery-calendar":{"path":"j\/.FW-.IO.A.v24LYB","requires":["gallery-calendar-transjax","gallery-popover","node","yui-base"],"ext":false},"gallery-calendar-transjax":{"path":"j\/.FW-.IO-.C-.F.A.vXh6Z","requires":["transjax-base","yui-base"],"ext":false},"gallery-flickr-api":{"path":"j\/.J_api.A.v23gzD","requires":["dump","event","io-xdr","json-parse","yui-base"],"ext":false},"gallery-history-lite":{"path":"j\/.FW-.CE-.GH.A.vL4ir","requires":["event-custom","event-custom-complex","node","yui-base"],"ext":false},"gallery-popover":{"path":"j\/.FW-.HN.A.v2aULP","requires":["event-custom","node","overlay","yui-base"],"ext":false},"gallery-popover-css":{"path":"c\/c_.FW-.HN.BC.v29hvz","type":"css","ext":false},"gallery-storage-lite":{"path":"j\/.FW-.FX-.GH.A.vTo86","requires":["event-base","event-custom","event-custom-complex","json","yui-base"],"ext":false},"geo-exif-backfill-transjax":{"path":"j\/geo-.GO-.IF-.C-.F.A.vXkci","requires":["transjax-base","yui-base"],"ext":false},"geofences-geopanel-css":{"path":"c\/c_.IA-.IB.BC.v27yEc","type":"css","ext":false},"geofences-geopanel-transjax":{"path":"j\/.IA-.IB-.C-.F.A.vXjvD","requires":["transjax-base","yui-base"],"ext":false},"geofences-geopanel":{"path":"j\/.IA-.IB.A.v2416a","requires":["geofences-geopanel-transjax","geofences-geopanel-css","geopanel","global-dialog","map-pinwin","yui-base"],"ext":false},"geofences":{"path":"j\/.IA.A.vWZSB","requires":["base","yui-base"],"optional":["gallery-flickr-api"],"ext":false},"geofences-apply-panel":{"path":"j\/.IA.IE.IC.A.vXjvD","requires":["anim","event","event-custom","gallery-flickr-api","geofences","geofences-transjax","global-dialog","io","node","node-visibility","yui-base"],"optional":["geofences-geopanel"],"ext":false},"geofences-apply-progress":{"path":"j\/.IA.IE.ID.A.vXa66","requires":["better-throttle","event-custom","gallery-flickr-api","geofences","yui-base"],"ext":false},"geofences-list-view":{"path":"j\/.IA-.CZ-.JB.A.vX1g2","requires":["better-throttle","event","event-custom","geofences-geopanel","geofences","geofences-apply-panel","geofences-apply-progress","global-dialog","io","node","yui-base"],"optional":["anim"],"ext":false},"geofences-prefs-map":{"path":"j\/.IA-prefs-map.A.v27R8n","requires":["node","event","css3pie","flickr-map","geofences","geofences-transjax","geofences-prefs-map-transjax","map-pinwin","yui-base"],"ext":false},"geofences-prefs-map-transjax":{"path":"j\/.IA-prefs-map-.C-.F.A.v21yYF","requires":["transjax-base","yui-base"],"ext":false},"geofences-transjax":{"path":"j\/.IA-.C-.F.A.vX5dk","requires":["transjax-base","yui-base"],"ext":false},"geopanel-css":{"path":"c\/c_.IB.BC.v27yEc","type":"css","ext":false},"geopanel":{"path":"j\/.IB.A.v23TBi","requires":["event","geopanel-css","yui-base"],"optional":["autocomplete-2-5-1","flickr-map","gallery-flickr-api"],"ext":false},"getty":{"path":"j\/.FI_new.A.v2bqNc","requires":["anim","dom","event","gallery-flickr-api","node","yui-base"],"ext":false},"global-dialog":{"path":"j\/.X-.W-.D.A.v28VkZ","requires":["event","event-custom","event-delegate","event-key","focus-tracker","global-dialog-css","global-dialog-transjax","keyboard-shortcut-manager","node","page-context","yui-base"],"ext":false},"global-dialog-css":{"path":"c\/c_.X-.W-.D.BC.vZF8M","type":"css","ext":false},"global-dialog-transjax":{"path":"j\/.X-.W-.C-.F.A.vKPQp","requires":["transjax-base","yui-base"],"ext":false},"global-nav":{"path":"j\/.JC.A.v29VSP","requires":["anim","event","menus","node","page-context","yui-base"],"ext":false},"group-blast-insitu":{"path":"j\/.DM-blast-.DT.A.v2bbjx","requires":["event","insitu","node","string-filters","yui-base"],"ext":false},"guestpass-hide":{"path":"j\/.DZ-.ET.A.vVdVV","requires":["anim","cookie","node","yui-base"],"ext":false},"grease":{"path":"j\/.HQ.A.v2bAiV","requires":["event-focus","gallery-flickr-api","gallery-storage-lite","global-dialog","json","node","occult","photo-data","urls","yui-base"],"ext":false},"grease-css":{"path":"c\/c_.HQ.BC.v27yEc","type":"css","ext":false},"health-check":{"path":"j\/.KH.A.v22qwP","requires":["event-custom","gallery-flickr-api","yui-base"],"ext":false},"history-manager":{"path":"j\/.CE-.K.A.v29ixV","requires":["event","urls","yui-base"],"ext":false},"html5-balls":{"path":"j\/.LI.A.v28Tgi","requires":["event","urls","base","yui-base","html5-balls-css"],"ext":false},"html5-balls-css":{"path":"c\/c_.LI.BC.v27yEc","type":"css","ext":false},"image-fader":{"path":"j\/.CW-.CU.A.vZNyP","requires":["anim","node","yui-base"],"ext":false},"infinite-scrolling-transjax":{"path":"j\/infinite-scrolling-.C-.F.A.v21C6H","requires":["transjax-base","yui-base"],"ext":false},"input-hint":{"path":"j\/.CN-.DD.A.v23LDR","requires":["event-focus","focus-tracker","node","yui-base"],"ext":false},"input-counter":{"path":"j\/.CN-counter.A.vUvzD","requires":["event","node","yui-base"],"ext":false},"india-disclaimer":{"path":"j\/.IH.A.vRTte","requires":["event","global-dialog","io-base","node","yui-base"],"ext":false},"insitu":{"path":"j\/.DT-.D.A.v23qV2","requires":["input-counter","dejaview","event-custom","event-key","gallery-flickr-api","insitu-transjax","json-stringify","node","string-filters","substitute","yui-base"],"optional":["anim","anim-scroll","io","photo-data"],"ext":false},"insitu-transjax":{"path":"j\/.DT-.C-.F.A.vTQBi","requires":["transjax-base","yui-base"],"ext":false},"iphone-link-sms-dialog-transjax":{"path":"j\/iphone-link-sms-.W-.C-.F.A.v26y4V","requires":["rapid-tracker","transjax-base","yui-base"],"ext":false},"iphone-link-sms-dialog-css":{"path":"c\/c_iphone-link-sms-.W.BC.v26ALP","type":"css","ext":false},"iphone-link-sms-dialog":{"path":"j\/iphone-link-sms-.W.A.v29rSF","requires":["flickr-dialog-spinner","iphone-link-sms-dialog-css","iphone-link-sms-dialog-transjax","yui-base"],"ext":false},"jfif-extractor":{"path":"j\/jfif-.IN.A.v23Hgi","requires":["yui-base"],"ext":false},"jobs":{"path":"j\/jobs.A.v23ypv","requires":["event","flanal","flickr-page-timing","io","motion-blur","node","popup-login","rapid-tracker","transition","yui-base"],"ext":false},"justifier":{"path":"j\/.LA.A.v25UfP","requires":["yui-base"],"ext":false},"ken-burns":{"path":"j\/.KY.A.v2bb42","requires":["smart-crop","gallery-flickr-api","yui-base","page-context","ken-burns-transjax","context-data","html5-balls","konami","event-custom","rapid-tracker","oop"],"ext":false},"ken-burns-transjax":{"path":"j\/.KY-.C-.F.A.v29uBi","requires":["transjax-base","yui-base"],"ext":false},"keyboard-shortcut-legend":{"path":"j\/.HZ-.HY.A.v23TBi","requires":["better-throttle","cookie","gallery-flickr-api","keyboard-shortcut-legend-css","keyboard-shortcut-legend-layouts","keyboard-shortcut-legend-transjax","page-context","yui-base"],"ext":false},"keyboard-shortcut-legend-css":{"path":"c\/c_.HZ-.HY.BC.v27FzV","type":"css","ext":false},"keyboard-shortcut-legend-layouts":{"path":"j\/.HZ-.HY-layouts.A.vYgFD","requires":["keyboard-shortcut-legend-transjax","yui-base"],"ext":false},"keyboard-shortcut-legend-transjax":{"path":"j\/.HZ-.HY-.C-.F.A.vYgTH","requires":["transjax-base","yui-base"],"ext":false},"keyboard-shortcut-manager":{"path":"j\/.HZ-.K.A.v25NBe","requires":["event-custom","event-focus","event-key","focus-tracker","keyboard-shortcut-legend","node","page-context","yui-base"],"ext":false},"konami":{"path":"j\/.LC.A.v2a62R","ext":false},"leaflet":{"path":"j\/leaflet.A.v25Y6e","requires":["flickr-leaflet-utils","leaflet-css","leaflet-utils-css","yui-base"],"ext":false},"leaflet-css":{"path":"c\/c_leaflet.BC.v25Wzi","type":"css","ext":false},"leaflet-utils-css":{"path":"c\/c_leaflet-utils.BC.v27yEc","type":"css","ext":false},"lightbox":{"path":"j\/.N.A.v2am8H","requires":["anim","better-throttle","context-data","cookie","node","escape","event-annotations","event-custom","event-delegate","event-gestures","event-key","fave-star","gallery-flickr-api","history","history-manager","json","ken-burns","keyboard-shortcut-manager","lightbox-transjax","node-visibility","page-context","photo-context-menu","photo-transjax","rapid-tracker","string-filters","swfobject","transition","urls","view-count","yui-base","yui-throttle"],"optional":["photos-list-transjax"],"ext":false},"lightbox-transjax":{"path":"j\/.N-.C-.F.A.v29Wb4","requires":["transjax-base","yui-base"],"ext":false},"liquid-photo-resizer":{"path":"j\/.JL-.B.LB.A.v233DD","requires":["event"],"ext":false},"liquid-resizer":{"path":"j\/.JL.LB.A.v22DzH","requires":["event"],"ext":false},"location-picker-css":{"path":"c\/c_.BR-picker.BC.v27yEc","type":"css","ext":false},"location-picker":{"path":"j\/.BR-picker.A.vZRmT","requires":["location-picker-css","keyboard-shortcut-manager","flickr-geo","event","map-pinwin","dragdrop","dd-drag","yui-base"],"ext":false},"location-selecta-css":{"path":"c\/c_.BR-.S.BC.v27yEc","type":"css","ext":false},"location-selecta":{"path":"j\/.BR-.S.A.vZPhc","requires":["location-selecta-css","keyboard-shortcut-manager","flickr-geo","event","yui-base"],"ext":false},"mail-zeus":{"path":"j\/mail-.D.A.vYGeM","requires":["mail-zeus-transjax","flickr-dialog-confirmation","event","node","yui-base"],"ext":false},"mail-zeus-transjax":{"path":"j\/mail-.D-.C-.F.A.vYCRe","requires":["transjax-base","yui-base"],"ext":false},"map-pinwin":{"path":"j\/map-.IV.A.vYzkM","requires":["map-pinwin-css","string-filters","yui-base"],"ext":false},"map-pinwin-css":{"path":"c\/c_map-.IV.BC.v27yEc","type":"css","ext":false},"math":{"path":"j\/.DL.A.vLPjT","requires":["yui-base"],"ext":false},"matrix-math":{"path":"j\/matrix-.DL.A.vVRWt","requires":["yui-base"],"ext":false},"message-primary-email-transjax":{"path":"j\/.JU-primary-.HH-.C-.F.A.v25PLt","requires":["transjax-base","yui-base"],"ext":false},"md5":{"path":"j\/md5-.D.A.vXTyT","ext":false},"menus":{"path":"j\/.BBs.A.v2bqJK","requires":["base","event","event-custom","gallery-popover","keyboard-shortcut-manager","node","page-context","yui-base"],"ext":false},"momentjs":{"path":"j\/momentjs-wrapper.A.v2bz2M","requires":[],"ext":false},"motion-blur":{"path":"j\/motion-blur.A.vUD1F","requires":["node","transition","yui-base"],"ext":false},"mrpinchy":{"path":"j\/mrpinchy.A.vWCYx","requires":["node","event","event-custom","transition","urls","matrix-math","yui-base"],"ext":false},"murmurhash":{"path":"j\/.KZ3_gc.A.v23PFH","ext":false},"nav-selecta":{"path":"j\/.JQ.A.v2aCG4","requires":["bo-selecta-3","keyboard-shortcut-manager","nav-selecta-css","nav-selecta-transjax","nav-selecta-rapid","node","event","widget","string-filters","yui-base"],"ext":false},"nav-selecta-css":{"path":"c\/c_.JQ.BC.v25xKa","type":"css","ext":false},"nav-selecta-transjax":{"path":"j\/.JQ-.C-.F.A.v24v3t","requires":["transjax-base","yui-base"],"ext":false},"nav-selecta-rapid":{"path":"j\/.JQ-.IY.A.v22o1g","requires":["event","rapid-tracker","yui-base"],"ext":false},"node-visibility":{"path":"j\/.CR-.DY.A.v2aY3t","requires":["better-throttle","cache-simple","node","node-pluginhost","yui-base"],"optional":["anim","anim-scroll"],"ext":false},"note-data":{"path":"j\/note-.BY.A.vRjAk","requires":["base","person-data","yui-base"],"ext":false},"notification-base":{"path":"j\/notification-.BL.A.v22wAx","requires":["attribute","notification-center"],"ext":false},"notification-center":{"path":"j\/notification-center.A.v22wQk","requires":["attribute","cookie","event","event-custom","gallery-flickr-api"],"ext":false},"number":{"path":"j\/.Y.A.vSPsg","requires":["number-transjax","yui-base"],"ext":false},"number-transjax":{"path":"j\/.Y-.C-.F.A.vNqGp","requires":["transjax-base","yui-base"],"ext":false},"occult":{"path":"j\/.CF.A.vNC2i","requires":["node","yui-base"],"ext":false},"osm-places":{"path":"j\/osm-places.A.v2anRH","requires":["yui-base"],"ext":false},"page-context":{"path":"j\/.GF-.H.A.v23TD2","requires":["event-custom","yui-base"],"ext":false},"pagination-keyboard-shortcuts":{"path":"j\/.EG-.HZs.A.vXp7T","requires":["keyboard-shortcut-manager","node","pagination-keyboard-shortcuts-transjax","yui-base"],"ext":false},"pagination-keyboard-shortcuts-transjax":{"path":"j\/.EG-.HZs-.C-.F.A.vUYza","requires":["transjax-base","yui-base"],"ext":false},"person-data":{"path":"j\/.FK-.BY.A.vRjAk","requires":["base","yui-base"],"ext":false},"personmenu":{"path":"j\/.CB-.D.A.v2ah4v","requires":["anim","anim-scroll","cache-simple","event-custom","io-base","node","node-visibility","personmenu-css","personmenu-transjax","personmenu-rapid","yui-base"],"optional":["contact-changer"],"ext":false},"personmenu-css":{"path":"c\/c_.CB-.D.BC.v2ah4v","type":"css","ext":false},"personmenu-transjax":{"path":"j\/.CB-.C-.F.A.vNwWt","requires":["transjax-base","yui-base"],"ext":false},"personmenu-rapid":{"path":"j\/.CB-.IY.A.vZzGg","requires":["event","rapid-tracker","yui-base"],"ext":false},"photo":{"path":"j\/.B-.D.A.v2a8Fi","requires":["anim","anim-scroll","better-throttle","context-data","defer-images","event-annotations","event-custom","event-delegate","event-key","event-mousedrag","event-mouseenter","flickr-app-photo","focus-tracker","history-manager","html5-balls","keyboard-shortcut-manager","math","node-visibility","occult","page-context","photo-button-bar","photo-comments","photo-context-menu","photo-data","photo-keyboard-shortcuts","photo-rotate","photo-sidebar","retry-image-on-error","share-this-v3-menu","lightbox","urls","yahoo-ult","yui-base"],"optional":["gallery-flickr-api","io-base","photo-group-invites","photo-insitu","photo-notes","photo-people-list","photo-tags","view-count"],"ext":false},"photo-button-bar":{"path":"j\/.B-.T-bar.A.v29EgD","requires":["add-to-dialog-css","context-data","event","event-custom","event-delegate","event-key","fave-star","flanal","focus-tracker","gallery-flickr-api","gallery-popover","io-base","keyboard-shortcut-manager","menus","node","node-event-simulate","page-context","photo-button-bar-transjax","photo-people-list","querystring-stringify-simple","urls","yui-base"],"optional":["flickr-printing","photo-notes","photo-replace","photo-rotate","picnik"],"ext":false},"photo-button-bar-transjax":{"path":"j\/.B-.T-bar-.C-.F.A.v25wWB","requires":["transjax-base","yui-base"],"ext":false},"photo-comments":{"path":"j\/.B-.LGs.A.v2b6ia","requires":["anim","anim-scroll","defer-images","dejaview","event-custom","event-delegate","flickr-app","flickr-dialog-alert","flickr-dialog-confirmation","flickr-dialog-spinner","formatting-tips-css","gallery-flickr-api","input-hint","io-form","node","node-visibility","page-context","photo-comments-transjax","photo-data","swfobject","urls","yui-base"],"optional":["insitu"],"ext":false},"photo-comments-image-hiding":{"path":"j\/.B-.LGs-.CW-hiding.A.vTJvR","requires":["node","yui-base"],"ext":false},"photo-comments-transjax":{"path":"j\/.B-.LGs-.C-.F.A.v29egD","requires":["transjax-base","yui-base"],"ext":false},"photo-context-menu":{"path":"j\/.B-.H-.BB.A.v23ZBz","requires":["event","node","photo","photo-context-menu-css","photo-context-menu-transjax","photo-data","urls","yui-base"],"ext":false},"photo-context-menu-css":{"path":"c\/c_.B-.H-.BB.BC.v27yEc","type":"css","ext":false},"photo-context-menu-transjax":{"path":"j\/.B-.H-.BB-.C-.F.A.v221oP","requires":["transjax-base","yui-base"],"ext":false},"photo-data":{"path":"j\/.B-.BY.A.v2acKv","requires":["anim","base","cookie","event","gallery-flickr-api","grease","node","photo-transjax","type-cast","urls","yui-base"],"ext":false},"photo-filmstrips":{"path":"j\/.B-.Ms.A.v24ACB","requires":["anim","base","better-throttle","context-data","event","event-custom","event-delegate","event-key","focus-tracker","image-fader","io","keyboard-shortcut-manager","node","number","page-context","photo-button-bar-transjax","photo-data","photo-filmstrips-transjax","retry-image-on-error","string-filters","transition","urls","yui-base"],"ext":false},"photo-filmstrips-transjax":{"path":"j\/.B-.Ms-.C-.F.A.v24xM6","requires":["transjax-base","yui-base"],"ext":false},"photo-geolocation":{"path":"j\/.B-.R.A.v23XpZ","requires":["page-context","photo","photo-geolocation-transjax","yui-base"],"optional":["autocomplete-2-5-1","flickr-map","gallery-flickr-api","photo-geolocation-css"],"ext":false},"photo-geolocation-transjax":{"path":"j\/.B-.R-.C-.F.A.vXt8D","requires":["transjax-base","yui-base"],"ext":false},"photo-geolocation-css":{"path":"c\/c_.B-.R.BC.v24Bhx","type":"css","ext":false},"photo-geopanel":{"path":"j\/.B-.IB.A.v24VQp","requires":["flickr-dialog-geo","flickr-geo","flickr-map-provider-flickr_osm","location-picker","photo-map-display-pinwin","woe-corrector","yui-base","ymap"],"ext":false},"flickr-ymap":{"path":"j\/.J-ymap.A.v26FYx","requires":["base","event"],"ext":false},"flickr-leaflet":{"path":"j\/.J-leaflet.A.v26KXz","requires":["base","event","leaflet"],"ext":false},"geo-editor":{"path":"j\/geo-.GZor.A.v26FYx","requires":["flickr-geo","flickr-dialog","html5-balls","base","event"],"ext":false},"parallax":{"path":"j\/parallax.A.v2aeK2","requires":["base","node-base"],"ext":false},"photo-group-invites":{"path":"j\/.B-.DM-.CO.A.v24a8i","requires":["context-data","gallery-flickr-api","node","photo","photo-group-invites-transjax","yui-base"],"ext":false},"photo-group-invites-transjax":{"path":"j\/.B-.DM-.CO-.C-.F.A.vU8jg","requires":["transjax-base","yui-base"],"ext":false},"photo-insitu":{"path":"j\/.B-.DT.A.v23qN8","requires":["insitu","photo","photo-data","photo-transjax","yui-base"],"ext":false},"photo-keyboard-shortcuts":{"path":"j\/.B-.HZs.A.v24jEK","requires":["cookie","event-focus","event-key","event-simulate","focus-tracker","keyboard-shortcut-manager","node","page-context","photo-keyboard-shortcuts-transjax","yui-base"],"optional":["photo-people-list"],"ext":false},"photo-keyboard-shortcuts-transjax":{"path":"j\/.B-.HZs-.C-.F.A.v21yYF","requires":["transjax-base","yui-base"],"ext":false},"photo-map-display-pinwin-css":{"path":"c\/c_.B-map-.IQ-.IV.BC.v24Bhx","type":"css","ext":false},"photo-map-display-pinwin":{"path":"j\/.B-map-.IQ-.IV.A.v24Bhx","requires":["flickr-geo","map-pinwin","base","photo-map-display-pinwin-css","yui-base"],"ext":false},"photo-notes":{"path":"j\/.B-.BE-.D.A.v29AJt","requires":["better-throttle","bo-selecta-3","bo-selecta-transjax","box-host","event","event-annotations","event-delegate","focus-tracker","gallery-flickr-api","node","node-visibility","photo-notes-transjax","photo-people-controller","photo-people-transjax","string-filters","urls","yui-base"],"optional":["note-data"],"ext":false},"photo-notes-transjax":{"path":"j\/.B-.BE-.C-.F.A.vYpcR","requires":["transjax-base","yui-base"],"ext":false},"photo-owner-dialogs-css":{"path":"c\/c_.B-.BK-.EO-.D.BC.v27yEc","type":"css","ext":false},"photo-people-controller":{"path":"j\/.HX-.BH.A.v22NwF","requires":["event","gallery-flickr-api","dejaview","photo-people-transjax","yui-base"],"ext":false},"photo-people-list":{"path":"j\/.HX-.CZ.A.v29FSK","requires":["anim","bo-selecta-3","event-delegate","node","node-visibility","photo","photo-people-controller","photo-people-transjax","string-filters","urls","yui-base"],"optional":["photo-notes"],"ext":false},"photo-people-transjax":{"path":"j\/.HX-.C-.F.A.vNxQc","requires":["transjax-base","yui-base"],"ext":false},"photo-preloader":{"path":"j\/.B-.FJ.A.v23ZBz","requires":["context-data","event","yui-base"],"ext":false},"photo-replace":{"path":"j\/.B-.GQ.A.v23Sdg","requires":["event","io","node","yui-base"],"optional":["flanal","worker"],"ext":false},"photo-rotate":{"path":"j\/.B-.GE.A.v24xxi","requires":["anim","event","gallery-flickr-api","node","photo","photo-data","photo-rotate-css","photo-rotate-transjax","yui-base"],"ext":false},"photo-rotate-css":{"path":"c\/c_.B-.GE.BC.v27yEc","type":"css","ext":false},"photo-rotate-transjax":{"path":"j\/.B-.GE-.C-.F.A.vPnbK","requires":["transjax-base","yui-base"],"ext":false},"photo-sidebar":{"path":"j\/.HV.A.v2atCc","requires":["anim","bitmap-text","bitmap-type-silkscreen","event-custom","event-delegate","excanvas","flapid","gallery-flickr-api","io-base","node","node-visibility","photo-data","photo-filmstrips","photo-sidebar-transjax","querystring-stringify-simple","stylesheet","datatype","yui-base","photo-sidebar-not-owner"],"optional":["context-data","photo-sidebar-admin","photo-sidebar-owner"],"ext":false},"photo-sidebar-transjax":{"path":"j\/.HV-.C-.F.A.vPKTZ","requires":["transjax-base","yui-base"],"ext":false},"photo-sidebar-not-owner":{"path":"j\/.HV-.HW.A.v24hPR","requires":["flickr-dialog-frame","flickr-dialog-short-message","flickr-dialog-spinner","gallery-flickr-api","photo-owner-dialogs-css","photo-sidebar","photo-sidebar-not-owner-transjax","yui-base"],"ext":false},"photo-sidebar-not-owner-transjax":{"path":"j\/.HV-.HW-.C-.F.A.vNwZV","requires":["photo-sidebar-owner-transjax","transjax-base","yui-base"],"ext":false},"photo-sidebar-owner":{"path":"j\/.HV-.BK.A.v29ebt","requires":["better-throttle","event-custom","flickr-dialog-frame","flickr-dialog-short-message","flickr-dialog-spinner","gallery-flickr-api","page-context","photo-owner-dialogs-css","photo-data","photo-sidebar","photo-sidebar-owner-transjax","yui-base"],"ext":false},"photo-sidebar-owner-transjax":{"path":"j\/.HV-.BK-.C-.F.A.vX3nr","requires":["transjax-base","yui-base"],"ext":false},"photos-subnav-view":{"path":"j\/.EC-subnav-.JB.A.v2bEPZ","requires":["parallax","template-fetcher","view","yui-base"],"ext":false},"photo-tags":{"path":"j\/.B-.KD.A.v29FSK","requires":["event","event-delegate","node","node-visibility","photo","photo-tags-transjax","query-string-args","urls","yui-base"],"ext":false},"photo-tags-transjax":{"path":"j\/.B-.KD-.C-.F.A.v247f4","requires":["transjax-base","yui-base"],"ext":false},"photo-tour":{"path":"j\/.B-.DA.A.v25k5F","requires":["anim","cookie","dom","event","photo","photo-tour-transjax","yui-base"],"ext":false},"photo-tour-transjax":{"path":"j\/.B-.DA-.C-.F.A.vN3j8","requires":["transjax-base","yui-base"],"ext":false},"photo-transjax":{"path":"j\/.B-.C-.F.A.vQ7Te","requires":["transjax-base","yui-base"],"ext":false},"photo-ywa-tracking":{"path":"j\/.B-ywa-.BW.A.vPwkM","requires":["event","yahoo-web-analytics","yui-base"],"ext":false},"photogne-exif-fetcher":{"path":"j\/.Bgne-.GO-fetcher.A.v27wfx","requires":["gallery-flickr-api","yui-base"],"ext":false},"photos-user-favorites":{"path":"j\/.EC-user-.LFs.A.vQd5X","requires":["event","io","node","yui-base"],"ext":false},"photos-display":{"path":"j\/.EC-.IQ.A.v2412H","requires":["photos-display-css","event","io","node","photo-data","selector-css3","photos-display-transjax","yui-base"],"ext":false},"photos-display-transjax":{"path":"j\/.EC-.IQ-.C-.F.A.vUYVR","requires":["transjax-base","yui-base"],"ext":false},"photos-display-css":{"path":"c\/c_.EC-.IQ.BC.v27yEc","type":"css","ext":false},"photos-list":{"path":"j\/.EC-.CZ.A.v2bGjc","requires":["anim","anim-scroll","better-throttle","cookie","defer-images","event","flanal","gallery-flickr-api","gallery-popover","global-dialog","io","keyboard-shortcut-manager","menus","murmurhash","node","node-visibility","pagination-keyboard-shortcuts","photo-data","photos-list-transjax","string-filters","better-throttle","refresh-sihp-comment","refresh-sihp-share","urls","yui-base"],"optional":["lightbox"],"ext":false},"photos-list-justifier":{"path":"j\/.EC-.CZ-.LA.A.v2brAK","requires":["refresh-sihp-comment","refresh-sihp-share","yui-base"],"ext":false},"photos-list-transjax":{"path":"j\/.EC-.CZ-.C-.F.A.v2412H","requires":["transjax-base","yui-base"],"ext":false},"photostream-insitu":{"path":"j\/.ECtream-.DT.A.v27Ezi","requires":["event","insitu","node","yui-base"],"ext":false},"picnik":{"path":"j\/.EY-.D.A.v23TBi","requires":["global-dialog","io-base","json","picnik-css","picnik-transjax","swfobject","yui-base"],"ext":false},"picnik-css":{"path":"c\/c_.EY-.D.BC.v27yEc","type":"css","ext":false},"picnik-transjax":{"path":"j\/.EY-.C-.F.A.vLqt2","requires":["transjax-base","yui-base"],"ext":false},"playr":{"path":"j\/playr.A.v2arP2","requires":["context-data","cookie","escape","event","gallery-flickr-api","history-manager","html5-balls","keyboard-shortcut-manager","lightbox-transjax","node","page-context","photo-transjax","rapid-tracker","urls","view-count","yui-base"],"optional":["lightbox"],"ext":false},"polyfills-placeholder":{"path":"j\/.KR-.KS.A.v23CyT","requires":["node","yui-base"],"ext":false},"popup-login":{"path":"j\/.HP.A.v2bAiV","requires":["event","node","io-base","yui-base"],"ext":false},"post-upload-sharing-ui":{"path":"j\/post-.KI-.EE-ui.A.v23Uev","requires":["event","node","yui-base"],"ext":false},"post-upload-sharing-owner-ui":{"path":"j\/post-.KI-.EE-.BK-ui.A.v24pUc","requires":["event","node","yui-base","share-this-v3-menu","share-this-v3-dialog"],"ext":false},"pro-survey":{"path":"j\/pro-survey.A.v26onR","requires":["event","node","yui-base","attribute","flickr-dialog-confirmation","rapid-tracker"],"ext":false},"pro-upsell-bandwidth-limit-notification":{"path":"j\/pro-upsell-bandwidth-limit-notification.A.v25vne","requires":["flickr-dialog-confirmation","notification-base","pro-upsell-notification-transjax"],"ext":false},"pro-upsell-photo-limit-notification":{"path":"j\/pro-upsell-.B-limit-notification.A.v25vne","requires":["flickr-dialog-confirmation","notification-base","pro-upsell-notification-transjax"],"ext":false},"pro-upsell-notification-transjax":{"path":"j\/pro-upsell-notification-.C-.F.A.v22xhc","requires":["transjax-base","yui-base"],"ext":false},"query-string-args":{"path":"j\/.CP-.U-.DE.A.vKEJP","requires":["yui-base"],"ext":false},"rapid-tracker-2":{"path":"j\/.IY-.CH.A.v2aYnr","requires":["yui-base"],"ext":false},"rapid-tracker-3":{"path":"j\/.IY.3.4.5.A.v2aYnr","requires":["yui-base"],"ext":false},"rapid-tracker":{"path":"j\/.IY-.CH-yui3-wrapper.A.v2aYw4","requires":["yui-base","rapid-tracker-2"],"ext":false},"refresh-sihp":{"path":"j\/refresh-sihp.A.v2bypz","requires":["gallery-flickr-api","swfobject","html5-balls","view-count-on-visible","io-form","refresh-sihp-comment","refresh-sihp-feed-ads","refresh-sihp-favorite","refresh-sihp-keyboard","refresh-sihp-muting","refresh-sihp-share","refresh-sihp-transjax","defer-images","yui-base","event-custom"],"ext":false},"refresh-sihp-comment":{"path":"j\/.LD.LG.A.v2bubK","requires":["flickr-dialog","photo-comments-transjax","refresh-sihp-sidebar","share-this-v3-menu","grease","node-visibility","yui-base"],"ext":false},"refresh-sihp-favorite":{"path":"j\/.LD.LF.A.v2b9Ka","requires":["yui-base"],"ext":false},"refresh-sihp-feed-ads":{"path":"j\/.LDfeed-ads.A.v2bnBH","requires":["yui-base","event-custom","refresh-sihp-sidebar"],"ext":false},"refresh-sihp-friendfinder":{"path":"j\/.LD.LH.A.v2aziv","requires":["gallery-flickr-api","string-filters","yui-base"],"ext":false},"refresh-sihp-keyboard":{"path":"j\/.LD.Q.A.v2adhx","requires":["anim-scroll","better-throttle","dom","keyboard-shortcut-manager","yui-base"],"ext":false},"refresh-sihp-muting":{"path":"j\/.LD.LE.A.v2a9xi","requires":["yui-base"],"ext":false},"refresh-sihp-recofeed":{"path":"j\/.LDrecofeed.A.v29tM2","requires":["gallery-flickr-api","yui-base"],"ext":false},"refresh-sihp-share":{"path":"j\/.LD.DN.A.v2bqRD","requires":["share-this-v3-menu","global-dialog","yui-base"],"ext":false},"refresh-sihp-sidebar":{"path":"j\/.LD.I.A.v2aM5g","requires":["yui-base","refresh-sihp-friendfinder","refresh-sihp-transjax"],"ext":false},"refresh-sihp-transjax":{"path":"j\/.LD.C-.F.A.v2aJft","requires":["transjax-base","yui-base"],"ext":false},"refresh-photo-page-description":{"path":"j\/refresh-.B-.GF-.KC.A.v2a16D","requires":["yui-base"],"ext":false},"retry-image-on-error":{"path":"j\/retry-.CW-on-.JP.A.v22TPz","requires":["event-base","yui-base","yui-later"],"optional":["flanal"],"ext":false},"rev-dan-map":{"path":"j\/rev-dan-map.A.v25Xcv","requires":["event-base","yui-base"],"ext":false},"rushmore-settings":{"path":"j\/.FS-.FR.A.v21HM2","requires":["event","event-delegate","global-dialog","io","node","yui-base"],"ext":false},"search-keyboard-shortcuts":{"path":"j\/.CA-.HZs.A.v28aJF","requires":["anim","event","keyboard-shortcut-manager","node","yui-base"],"ext":false},"flickr-app-search":{"path":"j\/.J-app-.CA.A.v2ak9P","requires":["context-data","flickr-app","search-hera-view","rapid-tracker","template-fetcher","urls","yui-base"],"ext":false},"search-refer":{"path":"j\/.CA-.DX-.D.A.vT4u4","requires":["anim","cookie","node","yahoo-ult","yui-base"],"ext":false},"selector-circle-css":{"path":"c\/c_.GB-circle.BC.v27yEc","type":"css","ext":false},"selector-circle":{"path":"j\/.GB-circle.A.vXbxz","requires":["base","css3pie","event","selector-circle-css","yui-base"],"ext":false},"set-meta-insitu":{"path":"j\/set-meta-.DT.A.vTUog","requires":["event","insitu","node","yui-base"],"ext":false},"share-menu-transjax":{"path":"j\/.DN-.BB-.D-.C-.F.A.vVvzr","requires":["transjax-base","yui-base"],"ext":false},"share-this-v3-account-settings":{"path":"j\/.HG-.IR-.FR.A.v21yYF","requires":["dom","event","global-dialog","io","io-form","querystring-stringify-simple","yui-base"],"ext":false},"share-this-v3-css":{"path":"c\/c_.HG.BC.v29vev","type":"css","ext":false},"share-this-v3-dialog":{"path":"j\/.HG-.W.A.v27Xc6","requires":["dom","event","global-dialog","io-base","node","share-menu-transjax","share-this-v3-dialog-css","share-this-v3-dialog-transjax","share-this-v3-services","yui-base"],"optional":["flanal"],"ext":false},"share-this-v3-dialog-css":{"path":"c\/c_.HG-.W.BC.v26ZMi","type":"css","ext":false},"share-this-v3-dialog-transjax":{"path":"j\/.HG-.W-.C-.F.A.vVVDZ","requires":["transjax-base","yui-base"],"ext":false},"share-this-v3-menu":{"path":"j\/.HG-.BB.A.v2bqJK","requires":["better-throttle","dom","event","event-custom","gallery-flickr-api","gallery-popover","global-dialog","io-base","json-stringify","menus","node","share-menu-transjax","share-this-v3-triggers","yui-base","node-visibility"],"optional":["photo-data"],"ext":false},"share-this-v3-service-blogger":{"path":"j\/.HF.HJ.A.vU5pi","requires":["share-this-v3-services","yui-base"],"ext":false},"share-this-v3-service-email":{"path":"j\/.HF.HH.A.vXp7T","requires":["bo-selecta-3","share-this-v3-services","share-this-v3-service-email-transjax","yui-base"],"ext":false},"share-this-v3-service-email-transjax":{"path":"j\/.HF.HH-.C-.F.A.vTPCp","requires":["transjax-base","yui-base"],"ext":false},"share-this-v3-service-facebook":{"path":"j\/.HF.HL.A.v22bcM","requires":["share-this-v3-services","yui-base"],"ext":false},"share-this-v3-service-livejournal":{"path":"j\/.HF.HT.A.vTV8n","requires":["share-this-v3-services","yui-base"],"ext":false},"share-this-v3-service-tumblr":{"path":"j\/.HF.HU.A.vVs3g","requires":["share-this-v3-services","yui-base"],"ext":false},"share-this-v3-service-twitter":{"path":"j\/.HF.HK.A.v26ZMi","requires":["share-this-v3-services","share-this-v3-service-twitter-transjax","yui-base"],"ext":false},"share-this-v3-service-twitter-transjax":{"path":"j\/.HF.HK-.C-.F.A.vUELp","requires":["transjax-base","yui-base"],"ext":false},"share-this-v3-service-wordpress":{"path":"j\/.HF.HM.A.vVt5B","requires":["share-this-v3-services","yui-base"],"ext":false},"share-this-v3-service-yahoo-pulse":{"path":"j\/.HF.CM-.HI.A.vU1vr","requires":["share-this-v3-services","yui-base"],"ext":false},"share-this-v3-service-pinterest":{"path":"j\/.HFpinterest.A.v22VZr","requires":["share-this-v3-services","yui-base"],"ext":false},"share-this-v3-services":{"path":"j\/.HG-.HR.A.vVs3g","requires":["share-this-v3-service-blogger","share-this-v3-service-email","share-this-v3-service-facebook","share-this-v3-service-livejournal","share-this-v3-service-pinterest","share-this-v3-service-tumblr","share-this-v3-service-twitter","share-this-v3-service-wordpress","share-this-v3-service-yahoo-pulse","yui-base"],"ext":false},"share-this-v3-triggers":{"path":"j\/.HG-.HS.A.v23WPv","requires":["event","flanal","node","share-this-v3-dialog","yui-base"],"ext":false},"sprintf":{"path":"j\/.CC.A.vVNpi","requires":["yui-base"],"ext":false},"smartbanner-css":{"path":"c\/c_smartbanner.BC.v28yCg","type":"css","ext":false},"smartbanner":{"path":"j\/smartbanner.A.v28zdK","requires":["smartbanner-css","node","array-extras"],"ext":false},"smart-crop":{"path":"j\/.KX.A.v2aRDM","requires":["ccv","face"],"ext":false},"string-filters":{"path":"j\/.U-.CG.A.v23pnn","requires":["yui-base"],"ext":false},"soup":{"path":"j\/soup.A.v26wL4","requires":["event","flanal","flickr-page-timing","io","motion-blur","node","popup-login","rapid-tracker","transition","yui-base"],"ext":false},"soup-hera-view":{"path":"j\/soup-.LJ.JB.A.v29xpn","requires":["view","datatype-date","murmurhash","handlebars","photo-list-model","photo-list-view","flickr-dialog-infinite-spinner","template-fetcher","gallery-popover","rapid-tracker","io","yui-base"],"ext":false},"tag-selecta":{"path":"j\/tag-.S.A.v26fer","requires":["anim","autocomplete","tag-selecta-css","tag-selecta-transjax","datasource-function","event","event-custom","gallery-flickr-api","image-fader","io-base","node","string-filters","yui-base"],"ext":false},"tag-selecta-css":{"path":"c\/c_tag-.S.BC.v27yEc","type":"css","ext":false},"tag-selecta-transjax":{"path":"j\/tag-.S-.C-.F.A.v24eyc","requires":["transjax-base","yui-base"],"ext":false},"template-fetcher":{"path":"j\/.KW.A.v2au1B","requires":["handlebars"],"ext":false},"timing-average":{"path":"j\/.FZ-.JJ.A.v22o1g","requires":["cookie","event","yui-base"],"ext":false},"tour-nav":{"path":"j\/.DA-nav.A.v24fS4","requires":["anim","node","node-event-simulate","io","querystring","history","yahoo-ult","yui-base"],"ext":false},"tour-carousel":{"path":"j\/.DA-.ER.A.vN3UB","requires":["anim","node","yui-base"],"ext":false},"touch-lightbox":{"path":"j\/touch-.N.A.v29WhX","requires":["context-data","cookie","escape","event","gallery-flickr-api","history-manager","lightbox-transjax","mrpinchy","node","page-context","photo-transjax","rapid-tracker","transition","urls","view-count","yui-base"],"optional":["lightbox"],"ext":false},"type-cast":{"path":"j\/.DJ-cast.A.vZVnD","requires":["yui-base"],"ext":false},"transjax-base":{"path":"j\/.C-.BL.A.vPPjg","requires":["sprintf","yui-base"],"ext":false},"urls":{"path":"j\/urls.A.v28E9X","requires":["yui-base"],"ext":false},"user-refave":{"path":"j\/user-re.CX.A.vPWbx","requires":["event","gallery-flickr-api","node","yui-base"],"ext":false},"video":{"path":"j\/.DV-.D.A.v2brSg","requires":["cookie","event-custom","gallery-flickr-api","node","query-string-args","string-filters","swfobject","video-transjax","yui-base"],"ext":false},"video-masker":{"path":"j\/.DV-masker-.D.A.v23TBi","requires":["node","page-context","yui-base"],"ext":false},"video-transjax":{"path":"j\/.DV-.D-.C-.F.A.v217nz","requires":["transjax-base","yui-base"],"ext":false},"view-count":{"path":"j\/.JB-count.A.v21B4n","requires":["gallery-flickr-api","json","yui-base"],"ext":false},"view-count-on-visible":{"path":"j\/.JB-count-on-visible.A.v2bt4e","requires":["node-visibility","view-count","yui-base"],"ext":false},"whispers":{"path":"j\/whispers.A.vUbGP","requires":["node","event","gallery-flickr-api","yui-base"],"ext":false},"woe-corrector-css":{"path":"c\/c_woe-corrector.BC.v27yEc","type":"css","ext":false},"woe-corrector":{"path":"j\/woe-corrector.A.vZWAk","requires":["base","woe-corrector-css","keyboard-shortcut-manager","flickr-geo","event","yui-base"],"ext":false},"worker":{"path":"j\/.IW.A.v25T38","requires":["base","event","yui-base"],"ext":false},"xmp-extractor":{"path":"j\/xmp-.IN.A.v23NMZ","requires":["yui-base"],"ext":false},"you-subnav-menu":{"path":"j\/you-subnav-.BB.A.v256UT","requires":["actions-menu-css","event","gallery-popover","gallery-popover-css","menus","node","yui-base"],"ext":false},"ywa-link-tracking":{"path":"j\/ywa-link-.BW.A.v24J2V","requires":["event","yahoo-web-analytics","yui-base"],"ext":false},"zero-clipboard":{"path":"j\/zero-clipboard.A.vV8nv","requires":["yui-base"],"ext":false},"swfobject":{"path":"j\/.BM.A.vSDLc","ext":false},"yahoo-ult":{"path":"j\/.CM-ult.A.vPboT","ext":false},"yahoo-web-analytics":{"path":"j\/ywa.A.vN4Nk","ext":false},"roundtrip":{"path":"j\/roundtrip.A.v28gYK","ext":false},"lighthouse":{"path":"j\/lighthouse.A.v2bH9t","ext":false},"ymap":{"path":"j\/.FV.A.vZWmx","requires":["event-synthetic","yui2_5-animation","yui2_5-yahoo","yui2_5-event","yui2_5-dom","yui2_5-dragdrop"],"ext":false},"bing_map":{"path":"j\/bing_map_6_3.A.vRhU4","ext":false},"yui2_5-yahoo":{"path":"j\/.CM\/.CM_2.5.1.A.vr3bp","ext":false},"yui2_5-event":{"path":"j\/.CM\/.G_2.5.1.A.vr3bp","requires":["yui2_5-yahoo"],"ext":false},"yui2_5-dom":{"path":"j\/.CM\/dom_2.5.1.A.vr3bp","requires":["yui2_5-yahoo"],"ext":false},"yui2_5-dragdrop":{"path":"j\/.CM\/.FT_2.5.1.A.vWHYc","requires":["yui2_5-dom","yui2_5-event","yui2_5-yahoo"],"ext":false},"yui2_5-animation":{"path":"j\/.CM\/.FL_2.5.1.A.vr3bp","requires":["yui2_5-dom","yui2_5-event","yui2_5-yahoo"],"ext":false},"worker-echo":{"path":"j\/.IW-echo.A.vWYgv","requires":["worker-yui-ready","yui-base"],"ext":false},"worker-exif-extractor":{"path":"j\/.IW-.KU.A.v23Hgi","requires":["jfif-extractor","better-throttle","dataview","exif-extractor","exif-extractor-tags","worker-yui-ready","yui-base","xmp-extractor"],"ext":false},"worker-yui-ready":{"path":"j\/.IW-.KV.A.vWPcD","requires":["event","event-custom","yui-base"],"ext":false},"set-inline-comments-transjax":{"path":"j\/set-inline-.LGs-.C-.F.A.v2aFB2","ext":false}}};
1105
+ F.config = F.util.clone(yconf); YUI(yconf).use(function (Y) {
1106
+ Y.use('global-nav', 'defer-images', 'farm_timing', 'rapid-tracker', 'nav-selecta-rapid', 'cookie', function(Y) {
1107
+ Y.globalNav.init();
1108
+ var navDeferring = Y.deferImages('#global-nav img.defer', { threshold: Y.DOM.winHeight() });
1109
+ if (navDeferring) {
1110
+ navDeferring.load();
1111
+ }
1112
+ Y.deferImages('#sidebar-contexts img.defer', { threshold: Y.DOM.winHeight() });
1113
+ Y.farmTiming.init();
1114
+ Y.deferImages('#sidebar img.defer', { threshold: Y.DOM.winHeight() });
1115
+ var breakpoints = [320,360,480,540,600,640,720,768,800,854,960,1024,1050,1080,1152,1200,1280,1344,1360,1366,1400,1440,1536,1600,1680,1920,2048,240,2560],
1116
+ doc_body = Y.one('body'),
1117
+ viewport_w = doc_body.get('winWidth'),
1118
+ viewport_h = doc_body.get('winHeight');
1119
+ function whatformat(width, height) {
1120
+ //
1121
+ // This function chooses a common format from the ratio of hight and width
1122
+ //
1123
+ // The common formats are:
1124
+ // 0 : Narrow
1125
+ // 1 : Square
1126
+ // 2 : Wide
1127
+ // 3 : Double Wide
1128
+ //
1129
+ // This code is shared with YWA so dont change it here without changing
1130
+ // it in YWA chief.
1131
+ //
1132
+ var ratio = parseFloat(width/height, 10);
1133
+ if(ratio < 1) {
1134
+ return 0; //'Narrow'
1135
+ }
1136
+ if(ratio == 1.0) {
1137
+ return 1; //'Square'
1138
+ }
1139
+ if(ratio > 1) {
1140
+ if(ratio < 1.5) {
1141
+ return 3; //'Wide'
1142
+ } else {
1143
+ return 4; //'Double Wide'
1144
+ }
1145
+ }
1146
+ }
1147
+ function findClosestBreakpoint(width) {
1148
+ var compaire = {}, low, hi;
1149
+ for(i=0; breakpoints.length > i; i++) {
1150
+ low = width - (breakpoints[i-1] || 0);
1151
+ hi = breakpoints[i] - width;
1152
+ if(Math.max(width, breakpoints[i]) === breakpoints[i]) {
1153
+ compaire[low] = (breakpoints[i-1] || 0);
1154
+ compaire[hi] = breakpoints[i];
1155
+ return compaire[Math.min(low, hi)];
1156
+ }
1157
+ }
1158
+ }
1159
+ var keys = {
1160
+ A_pn: '/photo.gne'
1161
+ };
1162
+ YAHOO.i13n.YWA_ACTION_MAP = {
1163
+ };
1164
+ YAHOO.i13n.YWA_CF_MAP = {
1165
+ actcard:22
1166
+ };
1167
+ var ywa = {
1168
+ project_id: 10001561398679,
1169
+ host: 'y.analytics.yahoo.com',
1170
+ document_name: '/photo.gne',
1171
+ cf: {
1172
+ 15: '1',
1173
+ 39: 'n',
1174
+ 43: 'n',
1175
+ 1: 'en-us',
1176
+ 3: 'Prod',
1177
+ 4: '',
1178
+ 6: '-1',
1179
+ 7: '0',
1180
+ 9: '0',
1181
+ 10: '-1',
1182
+ 11: '-1',
1183
+ 12: '-1',
1184
+ 13: '2',
1185
+ 16: viewport_w + 'x' + viewport_h,
1186
+ 45: '2',
1187
+ 51: '7',
1188
+ 52: whatformat(viewport_w, viewport_h),
1189
+ 53: findClosestBreakpoint(viewport_w),
1190
+ 54: '2',
1191
+ 55: '0',
1192
+ 56: '0',
1193
+ 57: '0',
1194
+ 58: '0'
1195
+ }
1196
+ };
1197
+ var conf = {
1198
+ use_rapid: !(/https(?::)?/ig.test(document.location.protocol)), keys: keys,
1199
+ lt_attr: 'data-track',
1200
+ client_only: 1,
1201
+ spaceid: '792600415',
1202
+ tracked_mods: [], track_lv: true,
1203
+ compr_on: true,
1204
+ webworker_file: '/javascript/rapidworker-1.0.js',
1205
+ ywa: ywa,
1206
+ use_sampling: false,
1207
+ nofollow_class: ["nav_more","signin-popup","rapidnofollow","contact-changer-trigger","personmenu-relationship-change"]
1208
+ };
1209
+ conf.tracked_mods.push('eyebrow');
1210
+ conf.tracked_mods.push('global-nav');
1211
+ conf.tracked_mods.push('nav-bar');
1212
+ conf.tracked_mods.push('photo-container');
1213
+ conf.tracked_mods.push('comments');
1214
+ conf.tracked_mods.push('camera-settings-wrapper');
1215
+ conf.tracked_mods.push('nav-personmenu');
1216
+ Y.config.flickr.rapidconf = conf;
1217
+ Y.rapidTracker.init(conf);
1218
+ });
1219
+ Y.use('nav-selecta', 'flickr', 'popup-login', 'liquid-resizer', 'photo', 'photo-notes', 'refresh-photo-page-description', 'context-data', 'photo-sidebar-not-owner', 'photo-geolocation', 'photo-tags', 'liquid-photo-resizer', 'grease', 'comscore', function(Y) {
1220
+ if (document.getElementById('gn-search-field')) {
1221
+ var field_node = Y.one('#gn-search-field');
1222
+ var nav_selecta = new Y.NavSelecta(field_node, {linkUsernameToPhotostream: 1,preloadText:field_node.get('value')});
1223
+ }
1224
+ Y.flickr();
1225
+ Y.popup_login.init();
1226
+ Y.liquidResizer.init();
1227
+ Y.photo.init({"id":"6038315155","title":"Los Angeles View 2011","license":"3","safety_level":1,"owner":"95282411@N00","ownername":"\u2588 Slices of Light \u2588\u2580 \u2580 \u2580","pathalias":"justaslice","iconserver":"101","iconfarm":1,"url":"\/photos\/justaslice\/6038315155\/in\/photolist-aczWHZ-8mK79e-88Danv-7FboPA-b3bDUc-cVdbVu-7LhXab-8uV7Uf-f89C1W-eKigsX-doZbMd-e8r82J-e4MF3A-e8kyQt-e4Mxry-bNTrhx-fjwAHB-9bTwKf-825f9g-8oHZ6K-bUbaur-7CyyYz-7CCoLY-a7uSuo-7Ze8mX-affZQb-fiZrhM-fjezCL-dERd9E-anqRRi-awxtHG-895nYC-bTw9JP-bR23cZ-8zqnfF-bv6NHe-aUqrxB-8xg3FV-eKVYPT-btWMPc-fkC6aa-fkSfpf-8pSW21-b8ngGe-8Wra34","media":"photo","date_posted":"1313364578","date_taken":"2011-07-27 16:29:38","fave_count":"26","comment_count":"1","group_count":10,"people_count":0,"needs_interstitial":0,"is_fave":false,"secret":"2875860c4b","sizes":{"sq":{"label":"Square","file":"_2875860c4b_s.jpg","url":"http:\/\/farm7.staticflickr.com\/6198\/6038315155_2875860c4b_s.jpg","width":75,"height":75},"q":{"label":"Large Square","file":"_2875860c4b_q.jpg","url":"http:\/\/farm7.staticflickr.com\/6198\/6038315155_2875860c4b_q.jpg","width":"150","height":"150"},"t":{"label":"Thumbnail","file":"_2875860c4b_t.jpg","url":"http:\/\/farm7.staticflickr.com\/6198\/6038315155_2875860c4b_t.jpg","width":"100","height":"56"},"s":{"label":"Small","file":"_2875860c4b_m.jpg","url":"http:\/\/farm7.staticflickr.com\/6198\/6038315155_2875860c4b_m.jpg","width":"240","height":"135"},"n":{"label":"Small 320","file":"_2875860c4b_n.jpg","url":"http:\/\/farm7.staticflickr.com\/6198\/6038315155_2875860c4b_n.jpg","width":"320","height":180},"m":{"label":"Medium","file":"_2875860c4b.jpg","url":"http:\/\/farm7.staticflickr.com\/6198\/6038315155_2875860c4b.jpg","width":"500","height":"281"},"z":{"label":"Medium 640","file":"_2875860c4b_z.jpg","url":"http:\/\/farm7.staticflickr.com\/6198\/6038315155_2875860c4b_z.jpg","width":"640","height":"360"},"l":{"label":"Large","file":"_2875860c4b_b.jpg","url":"http:\/\/farm7.staticflickr.com\/6198\/6038315155_2875860c4b_b.jpg","width":"1024","height":"576"},"o":{"label":"Original","file":"_0338f3fc39_o.jpg","url":"http:\/\/farm7.staticflickr.com\/6198\/6038315155_0338f3fc39_o.jpg","width":"1920","height":"1080"}},"perm_viewgeo":"0","geo":{"latitude":34.118344,"longitude":-118.300012,"accuracy":"16"},"woe":{"area":"0.7500000000","box":{"necorner":{"latitude":"34.1293983459","longitude":"-118.3018112183"},"swcorner":{"latitude":"34.1215209961","longitude":"-118.3113327026"}},"centroid":{"latitude":"34.1254615784","longitude":"-118.3065719604"},"centroidwithdriveway":{"latitude":"34.1254615784","longitude":"-118.3065719604"},"country":"United States","county":"Los Angeles","defaultLanguage":"1","isPoint":0,"isfuzzystreetmatch":0,"isnull":0,"iso2countrycode":"226","name":"Hollywood United","normalname":"Hollywood United","placetype":"22","placetypename":"Suburb","posttown":"Los Angeles","state":"California","stateshortcode":"CA","streetname":"","town":"Los Angeles","woeid":"23511984","zip":"","known_place_type":1,"alpha2countrycode":"US","taken_in":"Taken in <b>Hollywood United, <span class='locality'>Los Angeles<\/span>, <span class='region'>CA<\/span>, <span class='country-name'> US <\/span><\/b>","pretty_name":"Taken in <b>Hollywood United, Los Angeles, CA, US <\/b>","taken_in_clean":"Taken in Hollywood United, Los Angeles, CA, US ","places_url":"\/United+States\/California\/Los+Angeles\/Hollywood+United","breadcrumb":{"country":{"name":"United States","url":"\/United States\/"},"region":{"name":"California","url":"\/United States\/California\/"},"locality":{"name":"Los Angeles","url":"\/United States\/California\/Los Angeles\/"},"neighbourhood":{"name":"Hollywood United","url":"\/United States\/California\/Los Angeles\/Hollywood United\/"}}},"tags":[{"clean":"los","raw":"Los"},{"clean":"angeles","raw":"Angeles"},{"clean":"view","raw":"view"},{"clean":"skyline","raw":"skyline"},{"clean":"downtown","raw":"Downtown"},{"clean":"city","raw":"city"},{"clean":"urban","raw":"urban"},{"clean":"landscape","raw":"landscape"},{"clean":"griffithobservatory","raw":"Griffith Observatory"},{"clean":"griffith","raw":"Griffith"},{"clean":"observatory","raw":"Observatory"},{"clean":"sweep","raw":"sweep"},{"clean":"panorama","raw":"panorama"},{"clean":"panoramic","raw":"panoramic"},{"clean":"stitched","raw":"stitched"},{"clean":"museum","raw":"museum"},{"clean":"museums","raw":"museums"},{"clean":"science","raw":"science"},{"clean":"space","raw":"space"},{"clean":"astronomy","raw":"astronomy"},{"clean":"museo","raw":"museo"},{"clean":"losangeles","raw":"Los Angeles"},{"clean":"la","raw":"LA"},{"clean":"\u6d1b\u6749\u78ef","raw":"\u6d1b\u6749\u78ef"},{"clean":"\u6d1b\u6749\u77f6","raw":"\u6d1b\u6749\u77f6"},{"clean":"cityofangels","raw":"City of Angels"},{"clean":"\u52a0\u5229\u798f\u5c3c\u4e9e","raw":"\u52a0\u5229\u798f\u5c3c\u4e9e"},{"clean":"californie","raw":"Californie"},{"clean":"\u30ab\u30ea\u30d5\u30a9\u30eb\u30cb\u30a2","raw":"\u30ab\u30ea\u30d5\u30a9\u30eb\u30cb\u30a2"},{"clean":"kalifornien","raw":"Kalifornien"},{"clean":"\u00e9tatsunis","raw":"\u00c9tats-Unis"},{"clean":"\u30ed\u30b5\u30f3\u30bc\u30eb\u30b9","raw":"\u30ed\u30b5\u30f3\u30bc\u30eb\u30b9"},{"clean":"\u52a0\u5dde","raw":"\u52a0\u5dde"},{"clean":"california","raw":"California"},{"clean":"america","raw":"America"},{"clean":"\u7f8e\u56fd","raw":"\u7f8e\u56fd"},{"clean":"am\u00e9rique","raw":"Am\u00e9rique"},{"clean":"amerika","raw":"Amerika"},{"clean":"estadosunidos","raw":"Estados Unidos"},{"clean":"\u30a2\u30e1\u30ea\u30ab\u5408\u8846\u56fd","raw":"\u30a2\u30e1\u30ea\u30ab\u5408\u8846\u56fd"},{"clean":"vereinigtestaaten","raw":"Vereinigte Staaten"},{"clean":"feliz","raw":"Feliz"},{"clean":"rebelwithoutacause","raw":"rebel without a cause"},{"clean":"sony","raw":"Sony"},{"clean":"hx9v","raw":"HX9V"}],"can_comment":0,"can_addmeta":0,"description":"The view from the Griffith Observatory, Los Angeles; July 2011 \nPanorama Stitched \/ Sweep Panorama\n\nFor closer look at Downtown LA: \n<a href=\"http:\/\/www.flickr.com\/photos\/justaslice\/6014529411\">www.flickr.com\/photos\/justaslice\/6014529411<\/a>","is_public":1});
1228
+ ;
1229
+ Y.refreshPhotoPageDescription.init({"container": "#photo-details #meta #short_desc .expand"});
1230
+ var adMinWidth = 580;
1231
+ var adMaxWidth = 800;
1232
+ if (window.dmRosAds !== undefined) {
1233
+ window.dmRosAds.insertMultiAd({
1234
+ dmRosAdConfig: "29c919d7",
1235
+ dmRosAdSlotInfo: [{
1236
+ dmRosAdSlotId: "south",
1237
+ dmRosAdDivId: "dmRosAdWrapper-South",
1238
+ dmRosAdWidth: "" + Math.min(Y.one('#primary-column').get('offsetWidth') || adMinWidth, adMaxWidth), // note: must be a string
1239
+ dmRosAdHeight : "160"
1240
+ }]
1241
+ });
1242
+ }
1243
+ Y.ContextData.add({"id":"photolist-aczWHZ-8mK79e-88Danv-7FboPA-b3bDUc-cVdbVu-7LhXab-8uV7Uf-f89C1W-eKigsX-doZbMd-e8r82J-e4MF3A-e8kyQt-e4Mxry-bNTrhx-fjwAHB-9bTwKf-825f9g-8oHZ6K-bUbaur-7CyyYz-7CCoLY-a7uSuo-7Ze8mX-affZQb-fiZrhM-fjezCL-dERd9E-anqRRi-awxtHG-895nYC-bTw9JP-bR23cZ-8zqnfF-bv6NHe-aUqrxB-8xg3FV-eKVYPT-btWMPc-fkC6aa-fkSfpf-8pSW21-b8ngGe-8Wra34","type":"photolist","title":"Photo List","url":"","total":45,"open_on_page_load":true,"prev_limit":0,"photos":[{"position":"0","photo":{"id":"6038315155"}}]});
1244
+ Y.ContextData.add({"id":"photostream","type":"stream","title":"\u2588 Slices of Light \u2588\u2580 \u2580 \u2580's Photostream","url":"\/photos\/justaslice\/","photos":[{"position":"0","photo":{"id":"6038315155"}}]});
1245
+ Y.ContextData.add({"id":"set-72157600294230385","set_id":"72157600294230385","type":"set","title":"Panorama Pics","url":"\/photos\/justaslice\/sets\/72157600294230385\/","photos":[{"position":"0","photo":{"id":"6038315155"}}]});
1246
+ Y.ContextData.add({"id":"set-72157608425491583","set_id":"72157608425491583","type":"set","title":"Interestingness Sliced","url":"\/photos\/justaslice\/sets\/72157608425491583\/","photos":[{"position":"0","photo":{"id":"6038315155"}}]});
1247
+ Y.ContextData.add({"id":"set-72157606835977297","set_id":"72157606835977297","type":"set","title":"Los Angeles","url":"\/photos\/justaslice\/sets\/72157606835977297\/","photos":[{"position":"0","photo":{"id":"6038315155"}}]});
1248
+ Y.ContextData.add({"id":"set-72157627317397173","set_id":"72157627317397173","type":"set","title":"Griffith Observatory","url":"\/photos\/justaslice\/sets\/72157627317397173\/","photos":[{"position":"0","photo":{"id":"6038315155"}}]});
1249
+ Y.ContextData.add({"id":"set-72157623828090856","set_id":"72157623828090856","type":"set","title":"Urban Skyline","url":"\/photos\/justaslice\/sets\/72157623828090856\/","photos":[{"position":"0","photo":{"id":"6038315155"}}]});
1250
+ Y.ContextData.add({"id":"set-72157627848393119","set_id":"72157627848393119","type":"set","title":"Sony HX9V","url":"\/photos\/justaslice\/sets\/72157627848393119\/","photos":[{"position":"0","photo":{"id":"6038315155"}}]});
1251
+ Y.ContextData.add({"id":"pool-1679027@N22","group_id":"1679027@N22","type":"pool","title":"Sony Cyber-shot DSC-HX9V","url":"\/groups\/hx9v\/pool\/","photos":[{"position":"0","photo":{"id":"6038315155"}}]});
1252
+ Y.ContextData.add({"id":"pool-79139841@N00","group_id":"79139841@N00","type":"pool","title":"Autostitch (and other stitching software)","url":"\/groups\/79139841@N00\/pool\/","photos":[{"position":"0","photo":{"id":"6038315155"}}]});
1253
+ Y.ContextData.add({"id":"pool-569080@N24","group_id":"569080@N24","type":"pool","title":"panoramic images or multiplo \/ immagini panoramiche o multiple","url":"\/groups\/panoramicimages\/pool\/","photos":[{"position":"0","photo":{"id":"6038315155"}}]});
1254
+ Y.ContextData.add({"id":"pool-955588@N21","group_id":"955588@N21","type":"pool","title":"Strictly GeoTagged","url":"\/groups\/strictlygeotagged\/pool\/","photos":[{"position":"0","photo":{"id":"6038315155"}}]});
1255
+ Y.ContextData.add({"id":"pool-24554441@N00","group_id":"24554441@N00","type":"pool","title":"W I D E S C R E E N","url":"\/groups\/widescreen\/pool\/","photos":[{"position":"0","photo":{"id":"6038315155"}}]});
1256
+ Y.ContextData.add({"id":"pool-17124512@N00","group_id":"17124512@N00","type":"pool","title":"L.A.","url":"\/groups\/lacalifornia\/pool\/","photos":[{"position":"0","photo":{"id":"6038315155"}}]});
1257
+ Y.ContextData.add({"id":"pool-96352861@N00","group_id":"96352861@N00","type":"pool","title":"The Los Angeles Group","url":"\/groups\/losangelesgroup\/pool\/","photos":[{"position":"0","photo":{"id":"6038315155"}}]});
1258
+ Y.ContextData.add({"id":"pool-54077724@N00","group_id":"54077724@N00","type":"pool","title":"Beautiful California","url":"\/groups\/beautifulca\/pool\/","photos":[{"position":"0","photo":{"id":"6038315155"}}]});
1259
+ Y.ContextData.add({"id":"pool-36135120@N00","group_id":"36135120@N00","type":"pool","title":"The Urban Landscape","url":"\/groups\/urbanlandscape\/pool\/","photos":[{"position":"0","photo":{"id":"6038315155"}}]});
1260
+ Y.ContextData.add({"id":"pool-80393685@N00","group_id":"80393685@N00","type":"pool","title":"LA Photographers","url":"\/groups\/laphotodguide\/pool\/","photos":[{"position":"0","photo":{"id":"6038315155"}}]});
1261
+ Y.photoGeolocation.init('.photo-story-geopanel-trigger');
1262
+ Y.PhotoTags.init({
1263
+ old_machine_tags: 0,
1264
+ global_tag_limit: '75'
1265
+ });
1266
+ Y.liquidPhotoResizer.init();
1267
+ Y.grease.init(0);
1268
+ if (typeof COMSCORE !== 'undefined') {
1269
+ COMSCORE._flickrconf = { c1: 2, c2: 7241469, c3: "", c4: "www.flickr.com%2Fphotos%2Fe2556b3eacf276a2aaa36bbb5fab6fbf%2F6038315155%2Fin%2Fphotolist-aczWHZ-8mK79e-88Danv-7FboPA-b3bDUc-cVdbVu-7LhXab-8uV7Uf-f89C1W-eKigsX-doZbMd-e8r82J-e4MF3A-e8kyQt-e4Mxry-bNTrhx-fjwAHB-9bTwKf-825f9g-8oHZ6K-bUbaur-7CyyYz-7CCoLY-a7uSuo-7Ze8mX-affZQb-fiZrhM-fjezCL-dERd9E-anqRRi-awxtHG-895nYC-bTw9JP-bR23cZ-8zqnfF-bv6NHe-aUqrxB-8xg3FV-eKVYPT-btWMPc-fkC6aa-fkSfpf-8pSW21-b8ngGe-8Wra34", c5: "792600415", c6: "", c15: "" };
1270
+ COMSCORE.beacon(COMSCORE._flickrconf);
1271
+ }
1272
+ });
1273
+ Y.use('photo-preloader', function(Y) {
1274
+ Y.photoPreloader.init({
1275
+ preload_limits: {
1276
+ low: -1,
1277
+ high: 1 }
1278
+ });
1279
+ });
1280
+ });
1281
+ })();
1282
+ </script>
1283
+ <script async src="http://l.yimg.com/zz/combo?kx/yucs/uh3/uh/js/1/uh-min.js&kx/yucs/uh3/uh/js/607/menu_utils_v3-min.js&kx/yucs/uh3/uh3_top_bar/js/242/top_bar_v3-min.js
1284
+ ">
1285
+ YUI().use('node','node-focusmanager','node','event','base','event-resize','event-hover','node-focusmanager','event-mouseenter','event-delegate'
1286
+ , function (Y) {});
1287
+ </script>
1288
+ <noscript>
1289
+ <img src="http://b.scorecardresearch.com/b?c1=2&c2=7241469&c3=&c4=www.flickr.com%2Fphotos%2Fe2556b3eacf276a2aaa36bbb5fab6fbf%2F6038315155%2Fin%2Fphotolist-aczWHZ-8mK79e-88Danv-7FboPA-b3bDUc-cVdbVu-7LhXab-8uV7Uf-f89C1W-eKigsX-doZbMd-e8r82J-e4MF3A-e8kyQt-e4Mxry-bNTrhx-fjwAHB-9bTwKf-825f9g-8oHZ6K-bUbaur-7CyyYz-7CCoLY-a7uSuo-7Ze8mX-affZQb-fiZrhM-fjezCL-dERd9E-anqRRi-awxtHG-895nYC-bTw9JP-bR23cZ-8zqnfF-bv6NHe-aUqrxB-8xg3FV-eKVYPT-btWMPc-fkC6aa-fkSfpf-8pSW21-b8ngGe-8Wra34&c5=792600415&c6=&c15=&cv=1.3&cj=1" style="display:none" width="0" height="0" alt="" />
1290
+ </noscript>
1291
+ </body>
1292
+ </html>