CINXE.COM

Flickr: Camera Finder: Canon: EOS R5

<!DOCTYPE html> <html lang="en-us" class=" styleguide"> <head> <!-- _ . - ` : ` '.' `` . - '` ` . ' ,gi$@$q pggq pggq . ' pggq + j@@@P*\7 @@@@ @@@@ _ : @@@@ ! ._ , . _ - . . . @@@K @@@@ ; -` `_,_ ` . @@@@ ;/ ` _,,_ ` ; pgg@@@@gggq @@@@ @@@@ .' ,iS@@@@@Si @@@@ .6@@@P' !!!! j!!!!7 ; @@@@@@@@@@@ @@@@ @@@@ ` j@@@P*"*+Y7 @@@@ .6@@@P !!!!47*"*+; `_ @@@@ @@@@ @@@@ .@@@7 . ` @@@@.6@@@P ` !!!!; . ' . @@@@ ' @@@@ @@@@ :@@@! !: @@@@7@@@K `; !!!! ' ` ' @@@@ . @@@@ @@@@ `%@@@. . @@@@`7@@@b . !!!! : ! @@@@ @@@@ @@@@ \@@@$+,,+4b @@@@ `7@@@b !!!! @@@@ : @@@@ @@@@ `7%S@@hX!P' @@@@ `7@@@b !!!! . : """" """" """" :. `^"^` """" `""""" '''' ` - . . _._ ` _._ _ . - , ` ,glllllllllg, `-: ' .~ . . . ~. ` ,jlllllllllllllllp, .!' .+. . . . . . .+. `. ` jllllllllllllllllllll ` +. . . . . . . . .+ . . jllllllllllllllllllllll . . . . . . . . . . . .l@@@@@@@lllllllllllllll. j. . . . . . . :::::::l ` ; ;@@@@@@@@@@@@@@@@@@@lllll :. . :::::::::::::::::: ; :l@@@@@@@@@@@@@@@@@@@@@l; ::::::::::::::::::::::; ` Y@@@@@@@@@@@@@@@@@@@@@P ::::::::::::::::::::: ' - Y@@@@@@@@@@@@@@@@@@@P . ::::::::::::::::::: . `*@@@@@@@@@@@@@@@*` ` ` `:::::::::::::::` `. `*%@@@@@@@%*` . ` `+:::::::::+` ' . ``` _ ' - . ``` - ` ' ` ' ` You're reading. We're hiring. https://www.flickr.com/jobs/ --> <title>Flickr: Camera Finder: Canon: EOS R5</title> <script data-script-purpose="page_timing" nonce="77fa20dee62262cb15e616dbdd66f632"> var farm_timing = {}; farm_timing.page_start = new Date().getTime(); </script> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="x-dns-prefetch-control" content="on"> <link rel="dns-prefetch" href="//combo.staticflickr.com"> <link rel="dns-prefetch" href="//yui-s.yahooapis.com"> <link rel="dns-prefetch" href="//live.staticflickr.com"> <link rel="dns-prefetch" href="//api.flickr.com"> <link rel="dns-prefetch" href="//www.flickrpro.com"> <link rel="dns-prefetch" href="//www.flickrprints.com"> <meta name="description" content="The safest and most inclusive global community of photography enthusiasts. The best place for inspiration, connection, and sharing!"> <meta http-equiv="imagetoolbar" content="no"> <meta http-equiv="X-UA-Compatible" content="chrome=1"> <meta property="fb:app_id" content="462754987849668" /> <meta property="al:ios:app_store_id" content="328407587" /> <meta property="al:ios:app_name" content="Flickr" /> <meta property="twitter:app:name:iphone" content="Flickr" /> <meta property="twitter:app:id:iphone" content="328407587" /> <meta property="og:title" content="Canon EOS R5" /> <meta property="og:type" content="flickr_photos:camera" /> <meta property="og:url" content="https://www.flickr.com/cameras/canon/eos_r5/" /> <meta property="og:site_name" content="Flickr" /> <meta property="twitter:card" content="summary" /> <meta property="twitter:site" content="@flickr" /> <meta property="og:description" content="" /> <meta property="og:image:width" content="188" /> <meta property="og:image:height" content="125" /> <meta name="robots" content="noarchive"> <meta name="viewport" content="width=1036"> <meta name="application-name" content="Flickr: Camera Finder: Canon: EOS R5"/> <script nonce="77fa20dee62262cb15e616dbdd66f632"> F = window.F || {}; (function(F) { /*jslint white: false, undef: false, browser: true, eqeqeq: true, regexp: false, newcap: true, immed: true, onevar: false, plusplus: false */ /*global F: false, YUI: false, window: false */ // ================================================================================ // Constants and variables. // ================================================================================ // -------------------------------------------------------------------------------- // Constants. // -------------------------------------------------------------------------------- var TIMEOUT = 10000, // 10 seconds ACTIVATE_COOKIE_CONSENT_CLIENT_SIDE = true, cookieConsentObjectName = "ccc", cookieLevelBuckets = { // cookie level buckets for cookie consent "required": ["ccc","cookie_accid","cookie_epass","cookie_l10n","cookie_session","dcbn","ffs","ffs","flrb","flrbfd","flrbgdrp","flrbgmrp","flrbgrp","flrbp","flrbrst","flrbs","flrtags","flrbase","liqph","liqpw","localization","RT","rtna","sa","s_sq","vp","xb"], "functional": [], "advertising": [], }; // -------------------------------------------------------------------------------- // Variables. // -------------------------------------------------------------------------------- var pollers = { }, pollerCount = 0, cachedEls = { }, testDiv = document.createElement('div'), support = { nativeTrim: typeof String.prototype.trim === 'function', classList: 'classList' in testDiv }; // ================================================================================ // Attach the public methods to the F object. // ================================================================================ F.util = { // ================================================================================ // Objects. // ================================================================================ 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; }, // ================================================================================ // Strings. // ================================================================================ trim: function (str) { if (support.nativeTrim) { return str.trim(); } else { return str.replace(/^\s+|\s+$/g, ''); } }, // ================================================================================ // DOM. // ================================================================================ // -------------------------------------------------------------------------------- // Cache references to elements, since we may need them repeatedly. // -------------------------------------------------------------------------------- getElementById: function (id) { if (!cachedEls[id]) { cachedEls[id] = document.getElementById(id); } return cachedEls[id]; }, // -------------------------------------------------------------------------------- // Methods for adding, detecting, and removing classes. // -------------------------------------------------------------------------------- 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) ) { // In case of multiple adjacent. F.util.removeClass(el, className); } } }, // -------------------------------------------------------------------------------- // Do something as soon as an element (with an ID) is available on the page. // -------------------------------------------------------------------------------- whenElementExists: function (id, callback, interval) { var iterations = 0, pollerId = id + pollerCount++; interval = interval || 10; // Function used to check and call the callback. 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; } }; // First check to see if it exists. if (!checkElementAndCallback()) { // Otherwise set up a poller. pollers[pollerId] = setInterval(checkElementAndCallback, interval); } }, // ================================================================================ // Events. // ================================================================================ addListener: function (el, type, fn, capture) { if (el.addEventListener) { el.addEventListener(type, fn, capture); } else if (el.attachEvent) { el.attachEvent('on' + type, fn); } }, // ================================================================================ // Cookies. // ================================================================================ 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(); } if (ACTIVATE_COOKIE_CONSENT_CLIENT_SIDE) { var cookieLevel = F.util.getCookieLevel(name), consentContext = F.util.getCookieConsentContext(); if (cookieLevel === null || cookieLevel <= consentContext.info.cookieBlock.level) { document.cookie = name + '=' + value + expires + '; path=' + path + '; domain=.flickr.com'; } } else { document.cookie = name + '=' + value + expires + '; path=' + path + '; domain=.flickr.com'; } }, getCookieLevel: function (cookieName) { if (cookieLevelBuckets.required.indexOf(cookieName) !== -1) { return 0; } else if (cookieLevelBuckets.functional.indexOf(cookieName) !== -1) { return 1; } else if (cookieLevelBuckets.advertising.indexOf(cookieName) !== -1) { return 2; } else { return null; } }, getCookieConsentContext: function () { var cookieContext = decodeURIComponent(F.util.getCookie(cookieConsentObjectName)), path = '/', newCookieContext = { managed: 0, // Verifying whether user has given their consent changed: 0, // Determines whether consent has been changed on the client, because the level will be set, but no removal action taken yet info: { cookieBlock: { level: 0, // 0 = required only, 1 = functional, 2 = advertising blockRan: 0, // Verifying whether the blocking of cookies/trackers occurred }, }, }; if (cookieContext) { try { newCookieContext = JSON.parse(cookieContext); } catch (err) { document.cookie = cookieConsentObjectName + '=' + JSON.stringify(newCookieContext) + '; expires=' + new Date((new Date()).getTime() + 24 * 60 * 60 * 1000 * 30) + '; path=' + path + '; domain=.flickr.com'; } } else { // Assume zero cookie load preferences, create cookie context document.cookie = cookieConsentObjectName + '=' + JSON.stringify(newCookieContext) + '; expires=' + new Date((new Date()).getTime() + 24 * 60 * 60 * 1000 * 30) + '; path=' + path + '; domain=.flickr.com'; } return newCookieContext; }, 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); } }; // ================================================================================ // Cleanup. // ================================================================================ testDiv = null; }(F)); (function(wipe_msg, root_url, bust_image_search, is_debug) { 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)|(?:bingj\.com)|(?:webcache\.googleusercontent\.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';d.head.parentNode.removeChild(d.head);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="https://combo.staticflickr.com/pw/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_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);}} }('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>.', 'https://www.flickr.com', true, false)); (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)); (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)];}};}()); </script> <script src="https://combo.staticflickr.com/pw/combo/1/3.11.0?j/yui/3.11.0/yui/yui-.E.A.v7vakqy.78&amp;j/yui/3.11.0/.FN/.FN-.E.A.v7eRFVJ.78"></script> <link rel="stylesheet" href="https://combo.staticflickr.com/pw/combo/1/3.11.0?c/c_.X_nav_re.GW.BC.v2Z7s4r.78&c/c_.J_.D.BC.v5ckzDc.78&c/c_camerafinder_.D.BC.v3xnqiR.78&c/c_.EC-.IQ-.CAified.BC.v6mpJna.78&c/c_.FW-.HN.BC.v3r65SC.78&c/c_.EC-.CZ.BC.v31D7BJ.78&c/c_.EM_.D.BC.v61abAC.78&c/c_tru.CYc_styling.BC.v6xdxz3.78&c/c_.CK_banner_styling.BC.v5mT77A.78&" type="text/css"> <link rel="shortcut icon" href="https://combo.staticflickr.com/pw/favicon.ico"> <link rel="icon" sizes="16x16 32x32" href="https://combo.staticflickr.com/pw/favicon.ico"> <link rel="icon" href="https://combo.staticflickr.com/pw/images/favicons/favicon-32.png" sizes="32x32"> <link rel="icon" href="https://combo.staticflickr.com/pw/images/favicons/favicon-57.png" sizes="57x57"> <link rel="icon" href="https://combo.staticflickr.com/pw/images/favicons/favicon-76.png" sizes="76x76"> <link rel="icon" href="https://combo.staticflickr.com/pw/images/favicons/favicon-96.png" sizes="96x96"> <link rel="icon" href="https://combo.staticflickr.com/pw/images/favicons/favicon-128.png" sizes="128x128"> <link rel="icon" href="https://combo.staticflickr.com/pw/images/favicons/favicon-196.png" sizes="196x196"> <link rel="icon" href="https://combo.staticflickr.com/pw/images/favicons/favicon-228.png" sizes="228x228"> <link rel="shortcut icon" sizes="196x196" href="https://combo.staticflickr.com/pw/images/favicons/favicon-196.png"> <link rel="apple-touch-icon-precomposed" href="https://combo.staticflickr.com/pw/images/favicons/favicon-120.png" sizes="120x120"> <link rel="apple-touch-icon-precomposed" href="https://combo.staticflickr.com/pw/images/favicons/favicon-152.png" sizes="152x152"> <link rel="apple-touch-icon-precomposed" href="https://combo.staticflickr.com/pw/images/favicons/favicon-180.png" sizes="180x180"> <meta name="msapplication-TileColor" content="#FFFFFF"> <meta name="msapplication-TileImage" content="https://combo.staticflickr.com/pw/images/favicons/favicon-144.png"> <link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="Flickr"> <script type="text/javascript" charset="utf-8" nonce="77fa20dee62262cb15e616dbdd66f632"> (function(){ var toLoad = []; toLoad.push('https://live.staticflickr.com/65535/53063213377_ee99dcfe45_z.jpg');toLoad.push('https://live.staticflickr.com/65535/52739863913_0ff5d6d295.jpg');toLoad.push('https://live.staticflickr.com/65535/52037991003_c3671f4bc6.jpg');toLoad.push('https://live.staticflickr.com/65535/52754208317_55603db89c.jpg');toLoad.push('https://live.staticflickr.com/65535/53084954382_3dd9199542.jpg');toLoad.push('https://live.staticflickr.com/65535/53085574405_d1624816eb.jpg');toLoad.push('https://live.staticflickr.com/65535/53085569200_707bb8a14a.jpg');toLoad.push('https://live.staticflickr.com/65535/53078404708_887ef7ba91.jpg');toLoad.push('https://live.staticflickr.com/65535/53055924947_5ac7e1f411.jpg');toLoad.push('https://live.staticflickr.com/65535/53047440436_5a0a07a52b.jpg');toLoad.push('https://live.staticflickr.com/65535/53040663441_f196d101ca.jpg');toLoad.push('https://live.staticflickr.com/65535/53027566829_56b8f15bf0.jpg');toLoad.push('https://live.staticflickr.com/65535/53023833847_d08eee12a7_z.jpg');toLoad.push('https://live.staticflickr.com/65535/52976676057_2fc2ae28d0.jpg');toLoad.push('https://live.staticflickr.com/65535/52975293291_1d1d6bb82a_z.jpg');toLoad.push('https://live.staticflickr.com/65535/52905418365_70c7d043f6_n.jpg');toLoad.push('https://live.staticflickr.com/65535/52834338306_69f352dd61_n.jpg');toLoad.push('https://live.staticflickr.com/65535/52818165114_da2acaed0a_h.jpg');toLoad.push('https://live.staticflickr.com/65535/52817142154_847e274ee1.jpg');toLoad.push('https://live.staticflickr.com/65535/52725360715_7d5abaf544_z.jpg'); var len = toLoad.length, first = true, img, toDo = len; for (var i = 0; i < len; i++) { img = new Image(); img.src = toLoad[i]; } window.F.toLoad = toLoad; })(); </script> </head> <body class="zeus en-us new-footer new-header super-liquid extras ua-grey signed-out"> <script nonce="77fa20dee62262cb15e616dbdd66f632">(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){if(/Trident\/7/.test(window.navigator.userAgent)){if(browser==='ie'){return'ua-windows-ie ua-windows-ie-11';} else{return'';}} 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> <script nonce="77fa20dee62262cb15e616dbdd66f632"> /*jslint white: false, undef: false, browser: true, eqeqeq: true, regexp: false, newcap: true, immed: true, onevar: false, plusplus: false */ /*global F: false, YUI: false, window: false */ (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(); </script> <script nonce="77fa20dee62262cb15e616dbdd66f632"> /*jslint white: false, undef: false, browser: true, eqeqeq: true, regexp: false, newcap: true, immed: true, onevar: false, plusplus: false */ /*global F: false, YUI: false, window: false */ (function(F) { var useNewExplore = false , useEyebrow = false, HEIGHT_TO_PHOTO_TOP = 49, savingThrowAgainstTrailingCommas = true; var NEW_PHOTO_HEIGHT; 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(); </script> <noscript><div id="beacon"><img src="https://geo.yahoo.com/f?s=792600159&t=9c6347889a661e9594f6a315e7205c93&fl_ev=0&lang=en&intl=sg" width="0" height="0" alt="" /></div></noscript> <a name="top"></a> <div id="global-nav" class="no-js gn-signed-out styleguide-global-nav"> <div id="gn-wrap" class="gn-wrap " > <div class="logo new-logo"> <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> </a> </div> <div class="nav small-logo new-logo"> <ul class="top-nav"> <li class="toplink"> <a data-track="Signup-main" href="/signup" class="gn-link gn-signup sign-up-pixel-trigger"><span>Sign Up</span></a> </li> <li class="gn-menu-parent toplink" data-context="explore"> <a data-track="Explore-main" class="gn-link explore" href="/explore"><span>Explore</span></a> <div class="panel" id="explore-panel"> <div class="arrow"></div> <div class="bd"> <ul> <li class="gn-subnav-item"><a data-track="Explore-recent_photos" href="/explore">Recent Photos</a></li> <li class="gn-subnav-item"><a data-track="Explore-trending_tags_click" href="/tags">Trending</a></li> <li class="gn-subnav-item"><a data-track="Explore-events" href="/events">Events</a></li> <li class="gn-subnav-item"><a data-track="Explore-the_commons" href="/commons">The Commons</a></li> <li class="gn-subnav-item"><a data-track="Explore-galleries" href="/galleries">Flickr Galleries</a></li> <li class="gn-subnav-item"><a data-track="Explore-world_map" href="/map">World Map</a></li> <li class="gn-subnav-item"><a data-track="Explore-camera_finder" href="/cameras">Camera Finder</a></li> <li class="gn-subnav-item"><a data-track="Explore-flickr_blog" href="http://blog.flickr.net">Flickr Blog</a></li> </ul> </div> </div> </li> <li class="gn-menu-parent toplink" data-context="prints"> <a class="gn-link prints" href="/prints"><span>Prints</span></a> <div class="panel" id="prints-panel"> <div class="arrow"></div> <div class="bd"> <ul> <li class="gn-subnav-item"> <a href="/prints/discover"> <span>The Print Shop</span> </a> </li> <li class="gn-subnav-item"><a href="/prints">Prints & Wall Art</a></li> <li class="gn-subnav-item"><a href="/create">Photo Books</a></li> </ul> </div> </div> </li> <li class="gn-menu-parent toplink"> <a data-track="Get-Pro-main" class="gn-link" href="/account/upgrade/pro"><span>Get Pro</span></a> <div class="panel" id="prints-panel"> <div class="arrow"></div> <div class="bd"> <ul> <li class="gn-subnav-item"><a href="/account/upgrade/pro">Pro Plans</a></li> <li class="gn-subnav-item"><a href="/photos/me/stats">Stats Dashboard</a></li> <li class="gn-subnav-item"><a href="/tools">Get Auto-Uploadr</a></li> </ul> </div> </div> </li> </ul> </div> <div class="tools with-upload-icon"> <form action="/search/" method="get" role="search" class="nav-selecta bo-selecta-3"> <input type="text" placeholder="Photos, people, or groups" name="q" value="" id="gn-search-field" class="gn-search" autocomplete="off" aria-label="Search"> <input type="submit" data-track="Search-search_icon" class="search-icon icon rapidnofollow" tabindex="-1" value="Search"> </form> <ul class="top-nav"> <li class="toplink upload-icon-link"> <a data-track="UploadIcon-main" class="gn-link global-nav-upload" href="/upload"> <i class="upload-icon" title="Upload">Upload</i> </a> </li> <li class="toplink gn-signin"> <a data-track="Account-sign_in" href="/signin/" class="gn-link secondary"><span>Sign In</span></a> </li> </ul> </div> </div> </div> <div id="main" class="clearfix" role="main"> <h1> <a href="/cameras/">Camera Finder</a> / <a href="/cameras/canon/">Canon</a> / EOS R5 </h1> <div id="camera-finder-content" class="model-page"> <div class="c1"> <div class="camera-model-wrapper"> <img src="https://live.staticflickr.com/cameras/72157716758832492_model_huge_9a61350718.jpg" alt="" class="camera-model-image" /> </div> </div> <div class="c2"> <h3>About This Camera</h3> <div id="about-camera-content" class="bd"> <div class="padded"> <ul class="rank-info"> <li>Ranked <b>#1</b> of 314 <a href="/cameras/canon/">Canon</a> Cameras</li> <li><b>27985</b> uploads from <b>564</b> users yesterday</li> </ul> </div> </div> <div id="camera-specifications" class="section"> <div class="bd"><h3>Specifications</h3><ul class="full specs"><li><b>Camera Type:</b>Mirrorless Camera</li></ul></div></div> </div> <div class="c3"> <div class="model-users-graph"> <h4>EOS R5 Usage This Year</h4> <div class="graph-wrapper"> <span class="graph-overlay"># of users</span> <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"> <svg width="370" height="124"> <defs> <linearGradient id="MyGradient" gradientTransform="rotate(90)"> <stop offset="90%" stop-color="#ffffff" /> <stop offset="100%" stop-color="#F7F7F8" /> </linearGradient> </defs> <rect x="0" y="0" width="369" height="123" fill="url(#MyGradient)" stroke="none" shape-rendering="crispEdges" /> <path d="M 1 13.666666666667 L 368 13.666666666667" stroke="#F8F8F8" stroke-width="1px" shape-rendering="crispEdges" fill="none" /> <path d="M 1 27.333333333333 L 368 27.333333333333" stroke="#F8F8F8" stroke-width="1px" shape-rendering="crispEdges" fill="none" /> <path d="M 1 41 L 368 41" stroke="#F8F8F8" stroke-width="1px" shape-rendering="crispEdges" fill="none" /> <path d="M 1 54.666666666667 L 368 54.666666666667" stroke="#F8F8F8" stroke-width="1px" shape-rendering="crispEdges" fill="none" /> <path d="M 1 68.333333333333 L 368 68.333333333333" stroke="#F8F8F8" stroke-width="1px" shape-rendering="crispEdges" fill="none" /> <path d="M 1 82 L 368 82" stroke="#F8F8F8" stroke-width="1px" shape-rendering="crispEdges" fill="none" /> <path d="M 1 95.666666666667 L 368 95.666666666667" stroke="#F8F8F8" stroke-width="1px" shape-rendering="crispEdges" fill="none" /> <path d="M 1 109.33333333333 L 368 109.33333333333" stroke="#F8F8F8" stroke-width="1px" shape-rendering="crispEdges" fill="none" /> <path d="M 8.1098901098901 119 L 8.1098901098901 122" stroke="#D9D9D9" stroke-width="1px" shape-rendering="crispEdges" fill="none" /> <path d="M 39.535714285714 119 L 39.535714285714 122" stroke="#D9D9D9" stroke-width="1px" shape-rendering="crispEdges" fill="none" /> <path d="M 70.961538461538 119 L 70.961538461538 122" stroke="#D9D9D9" stroke-width="1px" shape-rendering="crispEdges" fill="none" /> <path d="M 100.35989010989 119 L 100.35989010989 122" stroke="#D9D9D9" stroke-width="1px" shape-rendering="crispEdges" fill="none" /> <path d="M 131.78571428571 119 L 131.78571428571 122" stroke="#D9D9D9" stroke-width="1px" shape-rendering="crispEdges" fill="none" /> <path d="M 162.1978021978 119 L 162.1978021978 122" stroke="#D9D9D9" stroke-width="1px" shape-rendering="crispEdges" fill="none" /> <path d="M 193.62362637363 119 L 193.62362637363 122" stroke="#D9D9D9" stroke-width="1px" shape-rendering="crispEdges" fill="none" /> <path d="M 224.03571428571 119 L 224.03571428571 122" stroke="#D9D9D9" stroke-width="1px" shape-rendering="crispEdges" fill="none" /> <path d="M 255.46153846154 119 L 255.46153846154 122" stroke="#D9D9D9" stroke-width="1px" shape-rendering="crispEdges" fill="none" /> <path d="M 286.88736263736 119 L 286.88736263736 122" stroke="#D9D9D9" stroke-width="1px" shape-rendering="crispEdges" fill="none" /> <path d="M 317.29945054945 119 L 317.29945054945 122" stroke="#D9D9D9" stroke-width="1px" shape-rendering="crispEdges" fill="none" /> <path d="M 348.72527472527 119 L 348.72527472527 122" stroke="#D9D9D9" stroke-width="1px" shape-rendering="crispEdges" fill="none" /> <path d="M 1 52.863025263737 L 13.178571428571 55.203606444477 L 26.357142857143 116.85 L 39.535714285714 80.711264566242 L 52.714285714286 62.367615891075 L 65.892857142857 62.014254510244 L 79.071428571429 62.720314176411 L 92.25 43.682526006932 L 105.42857142857 44.073508403087 L 118.60714285714 49.643158703671 L 131.78571428571 38.550411205574 L 144.96428571429 12.870738002846 L 158.14285714286 17.209845052901 L 171.32142857143 6.15 L 184.5 28.582397143617 L 197.67857142857 20.497162575737 L 210.85714285714 13.39248184813 L 224.03571428571 20.582673937649 L 237.21428571429 29.320295621408 L 250.39285714286 36.714312752388 L 263.57142857143 36.564794099322 L 276.75 55.007018156628 L 289.92857142857 47.941777579232 L 303.10714285714 37.781064875096 L 316.28571428571 20.590017289071 L 329.46428571429 25.085127043613 L 342.64285714286 44.581284439937 L 355.82142857143 28.160102909489 L 369 12.87019383446" stroke="#FF43AB" stroke-width="2px" fill="none" /> <rect x="0" y="0" width="369" height="123" fill="none" stroke="#ECECEC" stroke-width="1px" shape-rendering="crispEdges" /> </svg> </div> </div> <div class="lrec-ad-container"> </div> </div> <div class="clear"></div> <div id="interesting-photos" class="free"> <h3>Interesting EOS R5 photos</h3> </div> <div id="view-holder"> <div id="photo-list-holder" class="static loaded"> <style> .infinite-spinner.nope{display:none;}.infinite-spinner{position:fixed;bottom:10%;top:auto;left:50%;opacity:1;z-index:20;margin:0 0 0 -185px;width:338px;text-align:center;padding:8px 15px;background:#000;background:rgba(0,0,0,0.5);-moz-border-radius:13px;-webkit-border-radius:13px;border-radius:13px;*border:1px solid #999;-moz-box-shadow:0 0 6px rgba(0,0,0,0.5);-webkit-box-shadow:0 0 6px rgba(0,0,0,0.5);box-shadow:0 0 6px rgba(0,0,0,0.5)}.infinite-spinner span{padding-left:15px;color:#fff;font-size:14px;text-shadow:1px 1px 0 #000}.infinite-spinner .hballs{display:inline-block;position:relative;margin-bottom:-1px;height:12px;width:24px}@-webkit-keyframes bounce{0%{left:0;z-index:3}5%{left:0;z-index:3}25%{left:6px;z-index:3}50%{left:13px;z-index:3}75%{left:6px;z-index:2}95%{left:0}100%{left:0;z-index:2}}@-webkit-keyframes bounce-left{0%{left:13px}5%{left:13px}25%{left:6px}50%{left:0}75%{left:6px}95%{left:13px}100%{left:13px}}@-moz-keyframes bounce{0%{left:0;z-index:3}5%{left:0;z-index:3}25%{left:6px;z-index:3}50%{left:13px;z-index:3}75%{left:6px;z-index:2}95%{left:0}100%{left:0;z-index:2}}@-moz-keyframes bounce-left{0%{left:13px}5%{left:13px}25%{left:6px}50%{left:0}75%{left:6px}95%{left:13px}100%{left:13px}}@-ms-keyframes bounce{0%{left:0;z-index:3}5%{left:0;z-index:3}25%{left:6px;z-index:3}50%{left:13px;z-index:3}75%{left:6px;z-index:2}95%{left:0}100%{left:0;z-index:2}}@-ms-keyframes bounce-left{0%{left:13px}5%{left:13px}25%{left:6px}50%{left:0}75%{left:6px}95%{left:13px}100%{left:13px}}@keyframes bounce{0%{left:0;z-index:3}5%{left:0;z-index:3}25%{left:6px;z-index:3}50%{left:13px;z-index:3}75%{left:6px;z-index:2}95%{left:0}100%{left:0;z-index:2}}@keyframes bounce-left{0%{left:13px}5%{left:13px}25%{left:6px}50%{left:0}75%{left:6px}95%{left:13px}100%{left:13px}}.html5-balls{display:block;height:12px;width:24px;position:relative}.html5-balls .blueball,.html5-balls .pinkball{display:block;width:12px;height:12px;position:absolute;top:0;left:0;border-radius:30px;background:#ff0085;-webkit-animation:bounce 1.2s infinite;-webkit-animation-timing-function:linear;-moz-animation:bounce 1.2s infinite;-moz-animation-timing-function:linear;-ms-animation:bounce 1.2s infinite;-ms-animation-timing-function:linear;animation:bounce 1.2s infinite;animation-timing-function:linear;z-index:3}.html5-balls .blueball{left:13px;background:#0063dd;-webkit-animation:bounce-left 1.2s infinite;-webkit-animation-timing-function:linear;-moz-animation:bounce-left 1.2s infinite;-moz-animation-timing-function:linear;-ms-animation:bounce 1.2s infinite;-ms-animation-timing-function:linear;animation:bounce-left 1.2s infinite;animation-timing-function:linear} </style> <div class="infinite-spinner "> <span class="hballs"><div class="html5-balls"><div class="blueball"></div><div class="pinkball"></div></div></span><span class="spinner-msg"></span> </div> <div id="thumb-wrapper"> <div id="thumbnails" class="ju photo-display-container clearfix" > <div id="photo-display-container"> <div class="row row-" ><div class="photo-display-item" id="photo_53063213377" data-photo-id="53063213377" data-comments-total-count="189" data-ctx-pos="0" data-photo-owner="9846013@N04" data-photo-media="photo" > <div class="hover-target"> <div class="thumb "> <span class="photo_container pc_n"> <a data-track="photo-click" href="/photos/justmybestphotos/53063213377/" title="Sierra Tiger Lily.jpg" class="rapidnofollow photo-click"><img id="photo_img_53063213377" src="https://live.staticflickr.com/65535/53063213377_ee99dcfe45_z.jpg"width="529" height="298" alt="Sierra Tiger Lily.jpg" class="pc_img " border="0"><div class="play"></div></a> </span> <div class="meta"> <div class="title"><a data-track="photo-click" href="/photos/justmybestphotos/53063213377/" title="Sierra Tiger Lily.jpg" class="title">Sierra Tiger Lily.jpg</a></div> <div class="attribution-block"> <span class="attribution"> <span> </span> <a data-track="owner" href="/photos/justmybestphotos" title="@ttomab" class="owner">@ttomab</a> </span> </div> <span class="inline-icons"> <a title="" href="#" class="rapidnofollow comments-icon comments-inline-btn"> <img width="12" height="12" alt="" src="https://combo.staticflickr.com/pw/images/spaceball.gif"> <span class="comment-count count">99+</span> </a> </span> </div> </div> </div> </div><div class="photo-display-item" id="photo_52739863913" data-photo-id="52739863913" data-comments-total-count="96" data-ctx-pos="1" data-photo-owner="167792125@N05" data-photo-media="photo" > <div class="hover-target"> <div class="thumb "> <span class="photo_container pc_n"> <a data-track="photo-click" href="/photos/eng-see-the-world/52739863913/" title="Fire On The Mountaintop ⍟ Eͤxͯрⷬloͦrͬeͤdͩ" class="rapidnofollow photo-click"><img id="photo_img_52739863913" src="https://live.staticflickr.com/65535/52739863913_0ff5d6d295.jpg"width="445" height="298" alt="Fire On The Mountaintop ⍟ Eͤxͯрⷬloͦrͬeͤdͩ" class="pc_img " border="0"><div class="play"></div></a> </span> <div class="meta"> <div class="title"><a data-track="photo-click" href="/photos/eng-see-the-world/52739863913/" title="Fire On The Mountaintop ⍟ Eͤxͯрⷬloͦrͬeͤdͩ" class="title">Fire On The Mountaintop ⍟ Eͤxͯрⷬloͦrͬeͤdͩ</a></div> <div class="attribution-block"> <span class="attribution"> <span> </span> <a data-track="owner" href="/photos/eng-see-the-world" title="`*⊹ ᑭɧყƖƖıʂ •٭" class="owner">`*⊹ ᑭɧყƖƖıʂ •٭</a> </span> </div> <span class="inline-icons"> <a title="" href="#" class="rapidnofollow comments-icon comments-inline-btn"> <img width="12" height="12" alt="" src="https://combo.staticflickr.com/pw/images/spaceball.gif"> <span class="comment-count count">96</span> </a> </span> </div> </div> </div> </div></div> <div class="row row-" ><div class="photo-display-item" id="photo_52037991003" data-photo-id="52037991003" data-comments-total-count="56" data-ctx-pos="2" data-photo-owner="76881072@N00" data-photo-media="photo" > <div class="hover-target"> <div class="thumb "> <span class="photo_container pc_n"> <a data-track="photo-click" href="/photos/mimigd/52037991003/" title="Sunset at the North End of Pismo Beach" class="rapidnofollow photo-click"><img id="photo_img_52037991003" src="https://live.staticflickr.com/65535/52037991003_c3671f4bc6.jpg"width="322" height="215" alt="Sunset at the North End of Pismo Beach" class="pc_img " border="0"><div class="play"></div></a> </span> <div class="meta"> <div class="title"><a data-track="photo-click" href="/photos/mimigd/52037991003/" title="Sunset at the North End of Pismo Beach" class="title">Sunset at the North End of Pismo Beach</a></div> <div class="attribution-block"> <span class="attribution"> <span> </span> <a data-track="owner" href="/photos/mimigd" title="Mimi Ditchie" class="owner">Mimi Ditchie</a> </span> </div> <span class="inline-icons"> <a title="" href="#" class="rapidnofollow comments-icon comments-inline-btn"> <img width="12" height="12" alt="" src="https://combo.staticflickr.com/pw/images/spaceball.gif"> <span class="comment-count count">56</span> </a> </span> </div> </div> </div> </div><div class="photo-display-item" id="photo_52754208317" data-photo-id="52754208317" data-comments-total-count="832" data-ctx-pos="3" data-photo-owner="192737731@N02" data-photo-media="photo" > <div class="hover-target"> <div class="thumb "> <span class="photo_container pc_n"> <a data-track="photo-click" href="/photos/192737731@N02/52754208317/" title="about the pass" class="rapidnofollow photo-click"><img id="photo_img_52754208317" src="https://live.staticflickr.com/65535/52754208317_55603db89c.jpg"width="323" height="215" alt="about the pass" class="pc_img " border="0"><div class="play"></div></a> </span> <div class="meta"> <div class="title"><a data-track="photo-click" href="/photos/192737731@N02/52754208317/" title="about the pass" class="title">about the pass</a></div> <div class="attribution-block"> <span class="attribution"> <span> </span> <a data-track="owner" href="/photos/192737731@N02" title="·dron·" class="owner">·dron·</a> </span> </div> <span class="inline-icons"> <a title="" href="#" class="rapidnofollow comments-icon comments-inline-btn"> <img width="12" height="12" alt="" src="https://combo.staticflickr.com/pw/images/spaceball.gif"> <span class="comment-count count">99+</span> </a> </span> </div> </div> </div> </div><div class="photo-display-item" id="photo_53084954382" data-photo-id="53084954382" data-comments-total-count="224" data-ctx-pos="4" data-photo-owner="77878994@N07" data-photo-media="photo" > <div class="hover-target"> <div class="thumb "> <span class="photo_container pc_n"> <a data-track="photo-click" href="/photos/notadj25/53084954382/" title="Sunrise at Mormon Row" class="rapidnofollow photo-click"><img id="photo_img_53084954382" src="https://live.staticflickr.com/65535/53084954382_3dd9199542.jpg"width="328" height="215" alt="Sunrise at Mormon Row" class="pc_img " border="0"><div class="play"></div></a> </span> <div class="meta"> <div class="title"><a data-track="photo-click" href="/photos/notadj25/53084954382/" title="Sunrise at Mormon Row" class="title">Sunrise at Mormon Row</a></div> <div class="attribution-block"> <span class="attribution"> <span> </span> <a data-track="owner" href="/photos/notadj25" title="notaphotographer5" class="owner">notaphotographer5</a> </span> </div> <span class="inline-icons"> <a title="" href="#" class="rapidnofollow comments-icon comments-inline-btn"> <img width="12" height="12" alt="" src="https://combo.staticflickr.com/pw/images/spaceball.gif"> <span class="comment-count count">99+</span> </a> </span> </div> </div> </div> </div></div> <div class="row row-" ><div class="photo-display-item" id="photo_53085574405" data-photo-id="53085574405" data-comments-total-count="12" data-ctx-pos="5" data-photo-owner="66926252@N07" data-photo-media="photo" > <div class="hover-target"> <div class="thumb "> <span class="photo_container pc_n"> <a data-track="photo-click" href="/photos/kirklougheed/53085574405/" title="Redwood Phalanx" class="rapidnofollow photo-click"><img id="photo_img_53085574405" src="https://live.staticflickr.com/65535/53085574405_d1624816eb.jpg"width="324" height="217" alt="Redwood Phalanx" class="pc_img " border="0"><div class="play"></div></a> </span> <div class="meta"> <div class="title"><a data-track="photo-click" href="/photos/kirklougheed/53085574405/" title="Redwood Phalanx" class="title">Redwood Phalanx</a></div> <div class="attribution-block"> <span class="attribution"> <span> </span> <a data-track="owner" href="/photos/kirklougheed" title="Kirk Lougheed" class="owner">Kirk Lougheed</a> </span> </div> <span class="inline-icons"> <a title="" href="#" class="rapidnofollow comments-icon comments-inline-btn"> <img width="12" height="12" alt="" src="https://combo.staticflickr.com/pw/images/spaceball.gif"> <span class="comment-count count">12</span> </a> </span> </div> </div> </div> </div><div class="photo-display-item" id="photo_53085569200" data-photo-id="53085569200" data-comments-total-count="17" data-ctx-pos="6" data-photo-owner="77253989@N00" data-photo-media="photo" > <div class="hover-target"> <div class="thumb "> <span class="photo_container pc_n"> <a data-track="photo-click" href="/photos/10thavenue/53085569200/" title="Ridge Road Infrared" class="rapidnofollow photo-click"><img id="photo_img_53085569200" src="https://live.staticflickr.com/65535/53085569200_707bb8a14a.jpg"width="324" height="217" alt="Ridge Road Infrared" class="pc_img " border="0"><div class="play"></div></a> </span> <div class="meta"> <div class="title"><a data-track="photo-click" href="/photos/10thavenue/53085569200/" title="Ridge Road Infrared" class="title">Ridge Road Infrared</a></div> <div class="attribution-block"> <span class="attribution"> <span> </span> <a data-track="owner" href="/photos/10thavenue" title="Notley Hawkins" class="owner">Notley Hawkins</a> </span> </div> <span class="inline-icons"> <a title="" href="#" class="rapidnofollow comments-icon comments-inline-btn"> <img width="12" height="12" alt="" src="https://combo.staticflickr.com/pw/images/spaceball.gif"> <span class="comment-count count">17</span> </a> </span> </div> </div> </div> </div><div class="photo-display-item" id="photo_53078404708" data-photo-id="53078404708" data-comments-total-count="143" data-ctx-pos="7" data-photo-owner="66010649@N03" data-photo-media="photo" > <div class="hover-target"> <div class="thumb "> <span class="photo_container pc_n"> <a data-track="photo-click" href="/photos/felinafoto/53078404708/" title="Aletschgletscher - Wallis - Schweiz [Explored #19]" class="rapidnofollow photo-click"><img id="photo_img_53078404708" src="https://live.staticflickr.com/65535/53078404708_887ef7ba91.jpg"width="324" height="217" alt="Aletschgletscher - Wallis - Schweiz [Explored #19]" class="pc_img " border="0"><div class="play"></div></a> </span> <div class="meta"> <div class="title"><a data-track="photo-click" href="/photos/felinafoto/53078404708/" title="Aletschgletscher - Wallis - Schweiz [Explored #19]" class="title">Aletschgletscher - Wallis - Schweiz [Explored #19]</a></div> <div class="attribution-block"> <span class="attribution"> <span> </span> <a data-track="owner" href="/photos/felinafoto" title="Felina Photography - www.mountainphotography.eu" class="owner">Felina Photography - www.mountainphotography.eu</a> </span> </div> <span class="inline-icons"> <a title="" href="#" class="rapidnofollow comments-icon comments-inline-btn"> <img width="12" height="12" alt="" src="https://combo.staticflickr.com/pw/images/spaceball.gif"> <span class="comment-count count">99+</span> </a> </span> </div> </div> </div> </div></div> <div class="row row-" ><div class="photo-display-item" id="photo_53055924947" data-photo-id="53055924947" data-comments-total-count="9" data-ctx-pos="8" data-photo-owner="47093873@N08" data-photo-media="photo" > <div class="hover-target"> <div class="thumb "> <span class="photo_container pc_n"> <a data-track="photo-click" href="/photos/47093873@N08/53055924947/" title="Sea paper lantern festival in Odaiba" class="rapidnofollow photo-click"><img id="photo_img_53055924947" src="https://live.staticflickr.com/65535/53055924947_5ac7e1f411.jpg"width="324" height="216" alt="Sea paper lantern festival in Odaiba" class="pc_img " border="0"><div class="play"></div></a> </span> <div class="meta"> <div class="title"><a data-track="photo-click" href="/photos/47093873@N08/53055924947/" title="Sea paper lantern festival in Odaiba" class="title">Sea paper lantern festival in Odaiba</a></div> <div class="attribution-block"> <span class="attribution"> <span> </span> <a data-track="owner" href="/photos/47093873@N08" title="cate♪" class="owner">cate♪</a> </span> </div> <span class="inline-icons"> <a title="" href="#" class="rapidnofollow comments-icon comments-inline-btn"> <img width="12" height="12" alt="" src="https://combo.staticflickr.com/pw/images/spaceball.gif"> <span class="comment-count count">9</span> </a> </span> </div> </div> </div> </div><div class="photo-display-item" id="photo_53047440436" data-photo-id="53047440436" data-comments-total-count="32" data-ctx-pos="9" data-photo-owner="151794345@N05" data-photo-media="photo" > <div class="hover-target"> <div class="thumb "> <span class="photo_container pc_n"> <a data-track="photo-click" href="/photos/151794345@N05/53047440436/" title="Zumaia Sunset!" class="rapidnofollow photo-click"><img id="photo_img_53047440436" src="https://live.staticflickr.com/65535/53047440436_5a0a07a52b.jpg"width="324" height="216" alt="Zumaia Sunset!" class="pc_img " border="0"><div class="play"></div></a> </span> <div class="meta"> <div class="title"><a data-track="photo-click" href="/photos/151794345@N05/53047440436/" title="Zumaia Sunset!" class="title">Zumaia Sunset!</a></div> <div class="attribution-block"> <span class="attribution"> <span> </span> <a data-track="owner" href="/photos/151794345@N05" title="karindebruin" class="owner">karindebruin</a> </span> </div> <span class="inline-icons"> <a title="" href="#" class="rapidnofollow comments-icon comments-inline-btn"> <img width="12" height="12" alt="" src="https://combo.staticflickr.com/pw/images/spaceball.gif"> <span class="comment-count count">32</span> </a> </span> </div> </div> </div> </div><div class="photo-display-item" id="photo_53040663441" data-photo-id="53040663441" data-comments-total-count="14" data-ctx-pos="10" data-photo-owner="39877441@N05" data-photo-media="photo" > <div class="hover-target"> <div class="thumb "> <span class="photo_container pc_n"> <a data-track="photo-click" href="/photos/39877441@N05/53040663441/" title="Lone Tree" class="rapidnofollow photo-click"><img id="photo_img_53040663441" src="https://live.staticflickr.com/65535/53040663441_f196d101ca.jpg"width="324" height="216" alt="Lone Tree" class="pc_img " border="0"><div class="play"></div></a> </span> <div class="meta"> <div class="title"><a data-track="photo-click" href="/photos/39877441@N05/53040663441/" title="Lone Tree" class="title">Lone Tree</a></div> <div class="attribution-block"> <span class="attribution"> <span> </span> <a data-track="owner" href="/photos/39877441@N05" title="mclcbooks" class="owner">mclcbooks</a> </span> </div> <span class="inline-icons"> <a title="" href="#" class="rapidnofollow comments-icon comments-inline-btn"> <img width="12" height="12" alt="" src="https://combo.staticflickr.com/pw/images/spaceball.gif"> <span class="comment-count count">14</span> </a> </span> </div> </div> </div> </div></div> <div class="row row-" ><div class="photo-display-item" id="photo_53027566829" data-photo-id="53027566829" data-comments-total-count="499" data-ctx-pos="11" data-photo-owner="146733199@N04" data-photo-media="photo" > <div class="hover-target"> <div class="thumb "> <span class="photo_container pc_n"> <a data-track="photo-click" href="/photos/146733199@N04/53027566829/" title="Wave curves at Scarista beach (in explore)" class="rapidnofollow photo-click"><img id="photo_img_53027566829" src="https://live.staticflickr.com/65535/53027566829_56b8f15bf0.jpg"width="465" height="290" alt="Wave curves at Scarista beach (in explore)" class="pc_img " border="0"><div class="play"></div></a> </span> <div class="meta"> <div class="title"><a data-track="photo-click" href="/photos/146733199@N04/53027566829/" title="Wave curves at Scarista beach (in explore)" class="title">Wave curves at Scarista beach (in explore)</a></div> <div class="attribution-block"> <span class="attribution"> <span> </span> <a data-track="owner" href="/photos/146733199@N04" title="He Ro" class="owner">He Ro</a> </span> </div> <span class="inline-icons"> <a title="" href="#" class="rapidnofollow comments-icon comments-inline-btn"> <img width="12" height="12" alt="" src="https://combo.staticflickr.com/pw/images/spaceball.gif"> <span class="comment-count count">99+</span> </a> </span> </div> </div> </div> </div><div class="photo-display-item" id="photo_53023833847" data-photo-id="53023833847" data-comments-total-count="26" data-ctx-pos="12" data-photo-owner="103451433@N02" data-photo-media="photo" > <div class="hover-target"> <div class="thumb "> <span class="photo_container pc_n"> <a data-track="photo-click" href="/photos/adelheids-pictures/53023833847/" title="Evening in Calpe, Spain" class="rapidnofollow photo-click"><img id="photo_img_53023833847" src="https://live.staticflickr.com/65535/53023833847_d08eee12a7_z.jpg"width="510" height="290" alt="Evening in Calpe, Spain" class="pc_img " border="0"><div class="play"></div></a> </span> <div class="meta"> <div class="title"><a data-track="photo-click" href="/photos/adelheids-pictures/53023833847/" title="Evening in Calpe, Spain" class="title">Evening in Calpe, Spain</a></div> <div class="attribution-block"> <span class="attribution"> <span> </span> <a data-track="owner" href="/photos/adelheids-pictures" title="- AdelheidS Photography -" class="owner">- AdelheidS Photography -</a> </span> </div> <span class="inline-icons"> <a title="" href="#" class="rapidnofollow comments-icon comments-inline-btn"> <img width="12" height="12" alt="" src="https://combo.staticflickr.com/pw/images/spaceball.gif"> <span class="comment-count count">26</span> </a> </span> </div> </div> </div> </div></div> <div class="row row-" ><div class="photo-display-item" id="photo_52976676057" data-photo-id="52976676057" data-comments-total-count="23" data-ctx-pos="13" data-photo-owner="100256002@N06" data-photo-media="photo" > <div class="hover-target"> <div class="thumb "> <span class="photo_container pc_n"> <a data-track="photo-click" href="/photos/encountered_moments/52976676057/" title="Developing Thunderstorm at Sunset" class="rapidnofollow photo-click"><img id="photo_img_52976676057" src="https://live.staticflickr.com/65535/52976676057_2fc2ae28d0.jpg"width="450" height="295" alt="Developing Thunderstorm at Sunset" class="pc_img " border="0"><div class="play"></div></a> </span> <div class="meta"> <div class="title"><a data-track="photo-click" href="/photos/encountered_moments/52976676057/" title="Developing Thunderstorm at Sunset" class="title">Developing Thunderstorm at Sunset</a></div> <div class="attribution-block"> <span class="attribution"> <span> </span> <a data-track="owner" href="/photos/encountered_moments" title="Encountered Moments Photography" class="owner">Encountered Moments Photography</a> </span> </div> <span class="inline-icons"> <a title="" href="#" class="rapidnofollow comments-icon comments-inline-btn"> <img width="12" height="12" alt="" src="https://combo.staticflickr.com/pw/images/spaceball.gif"> <span class="comment-count count">23</span> </a> </span> </div> </div> </div> </div><div class="photo-display-item" id="photo_52975293291" data-photo-id="52975293291" data-comments-total-count="70" data-ctx-pos="14" data-photo-owner="96671573@N04" data-photo-media="photo" > <div class="hover-target"> <div class="thumb "> <span class="photo_container pc_n"> <a data-track="photo-click" href="/photos/bennett-cachon/52975293291/" title="Tiny grass squid" class="rapidnofollow photo-click"><img id="photo_img_52975293291" src="https://live.staticflickr.com/65535/52975293291_1d1d6bb82a_z.jpg"width="524" height="295" alt="Tiny grass squid" class="pc_img " border="0"><div class="play"></div></a> </span> <div class="meta"> <div class="title"><a data-track="photo-click" href="/photos/bennett-cachon/52975293291/" title="Tiny grass squid" class="title">Tiny grass squid</a></div> <div class="attribution-block"> <span class="attribution"> <span> </span> <a data-track="owner" href="/photos/bennett-cachon" title="Gérard Cachon" class="owner">Gérard Cachon</a> </span> </div> <span class="inline-icons"> <a title="" href="#" class="rapidnofollow comments-icon comments-inline-btn"> <img width="12" height="12" alt="" src="https://combo.staticflickr.com/pw/images/spaceball.gif"> <span class="comment-count count">70</span> </a> </span> </div> </div> </div> </div></div> <div class="row row-" ><div class="photo-display-item" id="photo_52905418365" data-photo-id="52905418365" data-comments-total-count="48" data-ctx-pos="15" data-photo-owner="185252831@N05" data-photo-media="photo" > <div class="hover-target"> <div class="thumb "> <span class="photo_container pc_n"> <a data-track="photo-click" href="/photos/heng-1983/52905418365/" title="Kleinbettingen @ Sundown" class="rapidnofollow photo-click"><img id="photo_img_52905418365" src="https://live.staticflickr.com/65535/52905418365_70c7d043f6_n.jpg"width="153" height="230" alt="Kleinbettingen @ Sundown" class="pc_img " border="0"><div class="play"></div></a> </span> <div class="meta"> <div class="title"><a data-track="photo-click" href="/photos/heng-1983/52905418365/" title="Kleinbettingen @ Sundown" class="title">Kleinbettingen @ Sundown</a></div> <div class="attribution-block"> <span class="attribution"> <span> </span> <a data-track="owner" href="/photos/heng-1983" title="HLI-Photography" class="owner">HLI-Photography</a> </span> </div> <span class="inline-icons"> <a title="" href="#" class="rapidnofollow comments-icon comments-inline-btn"> <img width="12" height="12" alt="" src="https://combo.staticflickr.com/pw/images/spaceball.gif"> <span class="comment-count count">48</span> </a> </span> </div> </div> </div> </div><div class="photo-display-item" id="photo_52834338306" data-photo-id="52834338306" data-comments-total-count="52" data-ctx-pos="16" data-photo-owner="16489371@N00" data-photo-media="photo" > <div class="hover-target"> <div class="thumb "> <span class="photo_container pc_n"> <a data-track="photo-click" href="/photos/c3galaxia/52834338306/" title="Awakening" class="rapidnofollow photo-click"><img id="photo_img_52834338306" src="https://live.staticflickr.com/65535/52834338306_69f352dd61_n.jpg"width="184" height="230" alt="Awakening" class="pc_img " border="0"><div class="play"></div></a> </span> <div class="meta"> <div class="title"><a data-track="photo-click" href="/photos/c3galaxia/52834338306/" title="Awakening" class="title">Awakening</a></div> <div class="attribution-block"> <span class="attribution"> <span> </span> <a data-track="owner" href="/photos/c3galaxia" title="Charles Opper" class="owner">Charles Opper</a> </span> </div> <span class="inline-icons"> <a title="" href="#" class="rapidnofollow comments-icon comments-inline-btn"> <img width="12" height="12" alt="" src="https://combo.staticflickr.com/pw/images/spaceball.gif"> <span class="comment-count count">52</span> </a> </span> </div> </div> </div> </div><div class="photo-display-item" id="photo_52818165114" data-photo-id="52818165114" data-comments-total-count="38" data-ctx-pos="17" data-photo-owner="47200074@N05" data-photo-media="photo" > <div class="hover-target"> <div class="thumb "> <span class="photo_container pc_n"> <a data-track="photo-click" href="/photos/shedraway/52818165114/" title="A sunset over a pond" class="rapidnofollow photo-click"><img id="photo_img_52818165114" src="https://live.staticflickr.com/65535/52818165114_da2acaed0a_h.jpg"width="635" height="230" alt="A sunset over a pond" class="pc_img " border="0"><div class="play"></div></a> </span> <div class="meta"> <div class="title"><a data-track="photo-click" href="/photos/shedraway/52818165114/" title="A sunset over a pond" class="title">A sunset over a pond</a></div> <div class="attribution-block"> <span class="attribution"> <span> </span> <a data-track="owner" href="/photos/shedraway" title="Shedraway Photos" class="owner">Shedraway Photos</a> </span> </div> <span class="inline-icons"> <a title="" href="#" class="rapidnofollow comments-icon comments-inline-btn"> <img width="12" height="12" alt="" src="https://combo.staticflickr.com/pw/images/spaceball.gif"> <span class="comment-count count">38</span> </a> </span> </div> </div> </div> </div></div> <div class="row row-" ><div class="photo-display-item" id="photo_52817142154" data-photo-id="52817142154" data-comments-total-count="46" data-ctx-pos="18" data-photo-owner="133250745@N06" data-photo-media="photo" > <div class="hover-target"> <div class="thumb "> <span class="photo_container pc_n"> <a data-track="photo-click" href="/photos/e_w_photo/52817142154/" title="Rampion Wind Farm at Sunset" class="rapidnofollow photo-click"><img id="photo_img_52817142154" src="https://live.staticflickr.com/65535/52817142154_847e274ee1.jpg"width="412" height="275" alt="Rampion Wind Farm at Sunset" class="pc_img " border="0"><div class="play"></div></a> </span> <div class="meta"> <div class="title"><a data-track="photo-click" href="/photos/e_w_photo/52817142154/" title="Rampion Wind Farm at Sunset" class="title">Rampion Wind Farm at Sunset</a></div> <div class="attribution-block"> <span class="attribution"> <span> </span> <a data-track="owner" href="/photos/e_w_photo" title="E_W_Photo" class="owner">E_W_Photo</a> </span> </div> <span class="inline-icons"> <a title="" href="#" class="rapidnofollow comments-icon comments-inline-btn"> <img width="12" height="12" alt="" src="https://combo.staticflickr.com/pw/images/spaceball.gif"> <span class="comment-count count">46</span> </a> </span> </div> </div> </div> </div><div class="photo-display-item" id="photo_52725360715" data-photo-id="52725360715" data-comments-total-count="227" data-ctx-pos="19" data-photo-owner="67020828@N04" data-photo-media="photo" > <div class="hover-target"> <div class="thumb "> <span class="photo_container pc_n"> <a data-track="photo-click" href="/photos/jc173/52725360715/" title="Solitude – Yellowstone in Winter" class="rapidnofollow photo-click"><img id="photo_img_52725360715" src="https://live.staticflickr.com/65535/52725360715_7d5abaf544_z.jpg"width="563" height="275" alt="Solitude – Yellowstone in Winter" class="pc_img " border="0"><div class="play"></div></a> </span> <div class="meta"> <div class="title"><a data-track="photo-click" href="/photos/jc173/52725360715/" title="Solitude – Yellowstone in Winter" class="title">Solitude – Yellowstone in Winter</a></div> <div class="attribution-block"> <span class="attribution"> <span> </span> <a data-track="owner" href="/photos/jc173" title="John Clay Photography" class="owner">John Clay Photography</a> </span> </div> <span class="inline-icons"> <a title="" href="#" class="rapidnofollow comments-icon comments-inline-btn"> <img width="12" height="12" alt="" src="https://combo.staticflickr.com/pw/images/spaceball.gif"> <span class="comment-count count">99+</span> </a> </span> </div> </div> </div> </div></div> </div> </div> </div> <div class="paginator"> <a data-track="yesterday-link" class="prev Butt" href=""><i>&#8592;</i></a> <strong id="options-when-bottom" data-date="09/20/2012"><span></span></strong> <a data-track="tomorrow-link" class="next Butt" href=""><i>&#8594;</i></a> </div> </div> </div> </div> <form id="photo-search" action="/search/" method="get"> <div> <label for="q_cam">Find photos taken with the EOS R5: </label> <input type="text" name="q" value="action" id="q_cam" placeholder="Search titles, tags and descriptions" /> <input type="submit" value="SEARCH" class="Butt" /> <input type="hidden" name="cm" value="canon/eos_r5" /> <input type="hidden" name="safe_search" value="1" /> </div> </form> <script nonce="77fa20dee62262cb15e616dbdd66f632">var q_cam = document.getElementById("q_cam"); if (q_cam){ q_cam.addEventListener('focus', function (e) { e.target.select(); }, false); } </script> </div> </div> <div class="footer-full-view" id="foot"> <div class="banners-go-here fixed"> <div class="cookie-banner-reg"> <p class="cookie-banner-message"> This site uses cookies to improve your experience and to help show content that is more relevant to your interests. By using this site, you agree to the use of cookies by Flickr and our partners as described in our <a target="_blank" class="cookie-policy-link" href="/help/cookies">cookie policy</a> </p> <a role="button" class="cookie-banner-exit-hold"><span class="cookie-banner-exit-icon">&#215;</span></a> </div> </div> <footer class="foot"> <div class="foot-container centered-content"> <div class="foot-top-row"> <div class="foot-nav pure-menu-horizontal"> <ul class="foot-nav-ul"> <li class="foot-li"><a href="/about">About</a></li> <li class="foot-li"><a href="/jobs">Jobs</a></li> <li class="foot-li"><a target="_blank" href="//blog.flickr.net/en">Blog</a></li> <li class="foot-li"><a target="_blank" href="https://www.flickrads.com/?utm_source=flickr&utm_campaign=footer">Advertise</a></li> <li class="foot-li"><a href="/services/developer">Developers</a></li> <li class="foot-li"><a href="/help/cookies" class="trustarc-cookie-pref-butt">Cookies</a></li> <li class="foot-li"><a href="/help/guidelines">Guidelines</a></li> <li class="foot-li"><a target="_blank" href="//flickrhelp.com/">Help</a></li> <li class="foot-li"><a href="/abuse">Report abuse</a></li> <li class="foot-li"> <div class="ui-dropdown simple-drop drop-up"> <span><a href="#"> English </a></span> <span class="ui-dialog-arrow"></span> <ul> <li> <a data-track="zh-hk" href="/change_language.gne?lang=zh-hk&magic_cookie=24f69fde8226b31aa24bfe175fed88c7" id="lang_zh-hk">繁體中文</a> </li> <li><a data-track="de-de" href="/change_language.gne?lang=de-de&magic_cookie=24f69fde8226b31aa24bfe175fed88c7">Deutsch</a></li> <li><a data-track="en-us" href="/change_language.gne?lang=en-us&magic_cookie=24f69fde8226b31aa24bfe175fed88c7" class="selected">English</a></li> <li><a data-track="es-us" href="/change_language.gne?lang=es-us&magic_cookie=24f69fde8226b31aa24bfe175fed88c7">Espa&#241;ol</a></li> <li><a data-track="fr-fr" href="/change_language.gne?lang=fr-fr&magic_cookie=24f69fde8226b31aa24bfe175fed88c7">Fran&#231;ais</a></li> <li> <a data-track="ko-kr" href="/change_language.gne?lang=ko-kr&magic_cookie=24f69fde8226b31aa24bfe175fed88c7" id="lang_ko-kr">한글</a> </li> <li><a data-track="it-it" href="/change_language.gne?lang=it-it&magic_cookie=24f69fde8226b31aa24bfe175fed88c7">Italiano</a></li> <li><a data-track="pt-br" href="/change_language.gne?lang=pt-br&magic_cookie=24f69fde8226b31aa24bfe175fed88c7">Portugu&#234;s</a></li> <li><a data-track="vn-vn" href="/change_language.gne?lang=vn-vn&magic_cookie=24f69fde8226b31aa24bfe175fed88c7">Tiếng Việt</a></li> <li class="last"><a data-track="id-id" href="/change_language.gne?lang=id-id&magic_cookie=24f69fde8226b31aa24bfe175fed88c7">Bahasa Indonesia</a></li> </ul> <div class="ui-dropdown-shim"></div> </div> </li> </ul> </div> </div> <div class="pure-g foot-info foot-bottom-row"> <div class="pure-u-1-8 foot-yahoo"> <ul class="pure-menu-horizontal"> <li class="foot-li"><a href="/help/privacy/">Privacy</a></li> <li class="foot-li"><a href="/help/terms">Terms</a></li> </ul> </div> <div class="pure-u-5-8 foot-company"> <div class="foot-logos"> <a class="awesome-logo" href="https://www.awesome.co" target="_blank"> <svg width="100" height="28" viewBox="0 0 100 28" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M15.8494 0H9.72933C9.72933 0 -2.32404 22.2346 1.12189 28L7.80728 25.7352C9.02714 24.4275 10.7412 23.5963 12.6496 23.5466C12.6495 23.5491 12.6494 23.5515 12.6493 23.554H12.8312V23.5491H12.9196C12.9196 23.5477 12.9195 23.5462 12.9195 23.5448C14.866 23.5698 16.6448 24.4213 17.8845 25.7697L24.4519 28C27.8979 22.2346 15.8494 0 15.8494 0ZM12.9195 23.5448C12.8152 21.129 13.0438 18.8919 13.2027 17.337C13.2377 16.9948 13.2693 16.6857 13.2932 16.4149C13.3375 15.9423 13.0671 15.7306 12.7869 15.7306C12.5067 15.7306 12.2413 15.9423 12.2806 16.4149C12.3051 16.7137 12.3392 17.0594 12.3773 17.4447C12.5306 18.9949 12.7473 21.1869 12.6496 23.5466C12.7099 23.545 12.7704 23.5442 12.8312 23.5442C12.8606 23.5442 12.8901 23.5444 12.9195 23.5448ZM15.1563 14.4111L14.2666 12.9587C15.2645 8.12872 12.8361 5.71128 12.8361 5.71128H12.8214C12.8214 5.71128 11.9513 6.47935 11.4253 8.1041C10.8305 9.9455 11.0468 11.5604 11.2139 12.6288C11.2287 12.7273 11.2483 12.8356 11.268 12.9439L10.4126 14.4062C10.3094 14.5785 10.2799 14.7804 10.3242 14.9773L10.4421 15.5189C10.8747 15.3318 11.4794 15.1989 12.1676 15.1447L12.3003 15.3958H13.2736L13.4063 15.1447C14.1093 15.194 14.7188 15.3269 15.1612 15.5189L15.2546 14.9576C15.289 14.7705 15.2497 14.5736 15.1514 14.4111H15.1563Z" /> <path d="M49.4928 11.6785H50.6382V15.9423C50.6382 16.4543 50.5841 16.9467 50.471 17.4144C50.358 17.892 50.1613 18.3154 49.8959 18.6847C49.6255 19.0539 49.2667 19.3543 48.8292 19.5758C48.3917 19.7974 47.8559 19.9057 47.2266 19.9057C46.5974 19.9057 46.0616 19.7925 45.6241 19.5758C45.1866 19.3543 44.8278 19.0539 44.5574 18.6847C44.4984 18.601 44.4394 18.5123 44.3854 18.4237C44.3313 18.5123 44.2772 18.601 44.2133 18.6847C43.9429 19.0539 43.5841 19.3543 43.1466 19.5758C42.7091 19.7974 42.1733 19.9057 41.5441 19.9057C40.9148 19.9057 40.379 19.7925 39.9415 19.5758C39.504 19.3543 39.1452 19.0539 38.8748 18.6847C38.6045 18.3203 38.4127 17.892 38.2997 17.4144C38.1866 16.9467 38.1325 16.4543 38.1325 15.9423V11.6785H39.2779V15.7207C39.2779 16.0407 39.3074 16.3903 39.3664 16.7596C39.4205 17.1141 39.5335 17.4538 39.6957 17.7591C39.8531 18.0594 40.0841 18.3056 40.3741 18.5025C40.6641 18.6945 41.0574 18.793 41.5441 18.793C42.0307 18.793 42.424 18.6945 42.714 18.5025C43.004 18.3105 43.2351 18.0594 43.3924 17.7591C43.5546 17.4538 43.6677 17.119 43.7217 16.7596C43.7758 16.4199 43.8004 16.0949 43.8053 15.7896V11.6785H44.9556V15.7896C44.9556 16.0949 44.9851 16.4199 45.0391 16.7596C45.0932 17.1141 45.2063 17.4538 45.3685 17.7591C45.5258 18.0594 45.7568 18.3056 46.0469 18.5025C46.3369 18.6945 46.7302 18.793 47.2168 18.793C47.7035 18.793 48.0967 18.6945 48.3868 18.5025C48.6768 18.3105 48.9078 18.0594 49.0651 17.7591C49.2274 17.4538 49.3404 17.119 49.3945 16.7596C49.4535 16.3952 49.483 16.0457 49.483 15.7207V11.6785H49.4928Z"/> <path d="M59.8108 13.9187C59.9681 14.3618 60.0517 14.8197 60.0517 15.2776V16.0752H53.5482C53.558 16.2672 53.5973 16.4986 53.6661 16.7744C53.7448 17.0895 53.8972 17.4046 54.1135 17.7098C54.3298 18.0102 54.6198 18.2711 54.9836 18.4877C55.3424 18.6995 55.8143 18.8127 56.3845 18.8127C56.881 18.8127 57.3677 18.6896 57.8347 18.4533C58.2968 18.2169 58.6556 17.8871 58.9014 17.4784L58.9604 17.3849L59.8452 18.1332L59.801 18.2022C59.4028 18.8078 58.9014 19.2509 58.3115 19.5118C57.7265 19.7728 57.0727 19.9057 56.3698 19.9057C55.7701 19.9057 55.2146 19.8023 54.723 19.5955C54.2314 19.3887 53.8038 19.0983 53.4498 18.7241C53.0959 18.3499 52.8206 17.9068 52.6338 17.3996C52.447 16.8925 52.3487 16.3263 52.3487 15.7109C52.3487 15.0954 52.447 14.5637 52.6387 14.0664C52.8305 13.5642 53.1107 13.1211 53.4646 12.7519C53.8185 12.3826 54.2413 12.0872 54.7181 11.8755C55.1998 11.6638 55.7357 11.5554 56.3157 11.5554C56.8958 11.5554 57.4611 11.6638 57.9232 11.8755C58.3852 12.0872 58.7785 12.3727 59.0931 12.7223C59.4077 13.0719 59.6486 13.4756 59.8059 13.9187H59.8108ZM58.8571 14.9822C58.8473 14.6868 58.7785 14.4012 58.6605 14.1403C58.5278 13.8498 58.341 13.5888 58.11 13.3722C57.8789 13.1507 57.5987 12.9734 57.2841 12.8454C56.9646 12.7174 56.6254 12.6534 56.2715 12.6534C55.7455 12.6534 55.3031 12.7617 54.9541 12.9734C54.605 13.19 54.3199 13.4411 54.1184 13.7218C53.9119 14.0024 53.7645 14.2831 53.6809 14.544C53.6121 14.7606 53.5777 14.8985 53.5629 14.9822H58.8621H58.8571Z"/> <path d="M66.329 16.2672C66.5256 16.5479 66.6288 16.9319 66.6288 17.4193C66.6288 17.8034 66.5551 18.1529 66.4076 18.4631C66.2602 18.7733 66.0586 19.0392 65.8128 19.2509C65.567 19.4626 65.2672 19.6251 64.928 19.7383C64.5937 19.8516 64.23 19.9057 63.8465 19.9057C63.3402 19.9057 62.8535 19.8171 62.4013 19.6349C61.9441 19.4527 61.5705 19.1721 61.3002 18.793L61.2609 18.7388L62.244 17.892L62.2882 17.9609C62.4701 18.2366 62.7061 18.4385 62.9912 18.5714C63.4336 18.7733 63.9055 18.8373 64.3971 18.6896C64.5741 18.6354 64.7314 18.5567 64.8739 18.4533C65.0165 18.3499 65.1345 18.2169 65.2229 18.0692C65.3114 17.9215 65.3557 17.7443 65.3557 17.5424C65.3557 17.2618 65.2721 17.055 65.0951 16.9073C64.9132 16.7547 64.6773 16.6267 64.4069 16.5233C64.1218 16.4149 63.817 16.3115 63.4877 16.218C63.1485 16.1195 62.8339 15.9767 62.5439 15.7946C62.2538 15.6124 62.008 15.3662 61.8114 15.061C61.6148 14.7508 61.5116 14.3323 61.5116 13.8153C61.5116 13.579 61.5656 13.3279 61.6639 13.062C61.7672 12.7962 61.9294 12.55 62.1506 12.3334C62.3718 12.1118 62.652 11.9296 62.9912 11.7819C63.3304 11.6342 63.7482 11.5604 64.225 11.5604C64.6576 11.5604 65.0755 11.6194 65.4687 11.7376C65.8718 11.8607 66.2257 12.1069 66.5256 12.4761L66.5698 12.5303L65.5965 13.4165L65.5523 13.3427C65.4294 13.1507 65.2475 12.9882 65.0165 12.87C64.7854 12.7518 64.52 12.6928 64.225 12.6928C63.9301 12.6928 63.704 12.7272 63.5172 12.8011C63.3304 12.8749 63.1829 12.9685 63.0748 13.0817C62.9666 13.195 62.888 13.3181 62.8437 13.4461C62.7995 13.579 62.7749 13.6972 62.7749 13.8104C62.7749 14.1206 62.8634 14.3569 63.0354 14.5194C63.2173 14.6868 63.4484 14.8296 63.7236 14.933C63.9989 15.0413 64.3086 15.1398 64.6429 15.2284C64.9821 15.317 65.2967 15.445 65.5867 15.6026C65.8767 15.765 66.1225 15.9866 66.3191 16.2623L66.329 16.2672Z"/> <path d="M76.1164 15.7306C76.1164 18.0348 74.2484 19.9057 71.9478 19.9057C69.6473 19.9057 67.7793 18.0348 67.7793 15.7306C67.7793 13.4264 69.6473 11.5554 71.9478 11.5554C74.2484 11.5554 76.1164 13.4264 76.1164 15.7306ZM75.0103 15.7306C75.0103 14.0418 73.6389 12.6682 71.9478 12.6682C70.2568 12.6682 68.8853 14.0418 68.8853 15.7306C68.8853 17.4193 70.2568 18.7979 71.9478 18.7979C73.6389 18.7979 75.0103 17.4243 75.0103 15.7306Z"/> <path d="M78.466 19.7875H77.2715V15.5238C77.2715 15.0117 77.3305 14.5194 77.4485 14.0517C77.5665 13.5741 77.768 13.1507 78.0482 12.7814C78.3284 12.4121 78.702 12.1118 79.1542 11.8902C79.6065 11.6687 80.1669 11.5604 80.8207 11.5604C81.4745 11.5604 82.0349 11.6736 82.4871 11.8902C82.9394 12.1118 83.3129 12.4121 83.5931 12.7814C83.657 12.8651 83.716 12.9537 83.7701 13.0423C83.8242 12.9537 83.8832 12.8651 83.9471 12.7814C84.2273 12.4121 84.6009 12.1118 85.0531 11.8902C85.5054 11.6687 86.0658 11.5604 86.7196 11.5604C87.3733 11.5604 87.9337 11.6736 88.386 11.8902C88.8382 12.1118 89.2118 12.4121 89.492 12.7814C89.7722 13.1457 89.9738 13.5741 90.0917 14.0517C90.2097 14.5194 90.2687 15.0117 90.2687 15.5238V19.7875H89.0742V15.7453C89.0742 15.4253 89.0447 15.0757 88.9857 14.7065C88.9267 14.352 88.8137 14.0123 88.6416 13.707C88.4745 13.4067 88.2385 13.1605 87.9337 12.9636C87.6339 12.7715 87.2259 12.6731 86.7146 12.6731C86.2034 12.6731 85.7954 12.7715 85.4955 12.9636C85.1908 13.1556 84.9548 13.4067 84.7877 13.707C84.6156 14.0123 84.5026 14.3471 84.4436 14.7065C84.3895 15.0462 84.36 15.3712 84.3551 15.6764V19.7875H83.1606V15.6764C83.1606 15.3712 83.1311 15.0462 83.0721 14.7065C83.0131 14.352 82.9 14.0123 82.728 13.707C82.5608 13.4067 82.3249 13.1605 82.0201 12.9636C81.7203 12.7715 81.3122 12.6731 80.801 12.6731C80.2898 12.6731 79.8818 12.7715 79.5819 12.9636C79.2771 13.1556 79.0412 13.4067 78.874 13.707C78.7069 14.0123 78.5889 14.3471 78.5299 14.7065C78.471 15.0708 78.4415 15.4204 78.4415 15.7453V19.7875H78.466Z"/> <path d="M98.94 13.9187C99.0973 14.3618 99.1809 14.8197 99.1809 15.2776V16.0752H92.6774C92.6872 16.2672 92.7265 16.4986 92.7953 16.7744C92.874 17.0895 93.0264 17.4046 93.2427 17.7098C93.459 18.0102 93.749 18.2711 94.1127 18.4877C94.4716 18.6995 94.9435 18.8127 95.5137 18.8127C96.0102 18.8127 96.4969 18.6896 96.9639 18.4533C97.426 18.2169 97.7848 17.8871 98.0355 17.4784L98.0945 17.3849L98.9793 18.1332L98.9351 18.2022C98.5369 18.8078 98.0355 19.2509 97.4456 19.5118C96.8606 19.7728 96.2068 19.9057 95.5039 19.9057C94.8993 19.9057 94.3487 19.8023 93.8571 19.5955C93.3656 19.3887 92.9379 19.0983 92.584 18.7241C92.23 18.3499 91.9547 17.9068 91.7679 17.3996C91.5811 16.8925 91.4877 16.3263 91.4877 15.7109C91.4877 15.0954 91.5861 14.5637 91.7778 14.0664C91.9695 13.5642 92.2497 13.1211 92.6036 12.7519C92.9576 12.3826 93.3803 12.0872 93.8571 11.8755C94.3389 11.6638 94.8747 11.5554 95.4547 11.5554C96.0348 11.5554 96.6001 11.6638 97.0622 11.8755C97.5243 12.0872 97.9175 12.3727 98.2321 12.7223C98.5467 13.0719 98.7876 13.4756 98.9449 13.9187H98.94ZM97.9863 14.9822C97.9765 14.6868 97.9077 14.4012 97.7897 14.1403C97.657 13.8498 97.4702 13.5888 97.2392 13.3722C97.0081 13.1507 96.7328 12.9734 96.4133 12.8454C96.0938 12.7174 95.7546 12.6534 95.4007 12.6534C94.8747 12.6534 94.4323 12.7617 94.0833 12.9734C93.7342 13.19 93.4491 13.4411 93.2476 13.7218C93.0411 14.0024 92.8936 14.2831 92.8101 14.544C92.7363 14.7606 92.7068 14.8985 92.6921 14.9822H97.9913H97.9863Z"/> <path d="M29.6331 17.5424C29.4758 17.0993 29.3923 16.6414 29.3923 16.1835V15.3859H35.8958C35.886 15.1939 35.8466 14.9625 35.7778 14.6868C35.6992 14.3717 35.5468 14.0566 35.3305 13.7513C35.1142 13.451 34.8242 13.1901 34.4604 12.9734C34.1015 12.7617 33.6296 12.6485 33.0594 12.6485C32.5629 12.6485 32.0763 12.7716 31.6093 13.0079C31.1472 13.2442 30.7883 13.5741 30.5376 13.9827L30.4787 14.0763L29.5938 13.3279L29.6381 13.259C30.0362 12.6534 30.5376 12.2103 31.1275 11.9493C31.7125 11.6884 32.3663 11.5554 33.0692 11.5554C33.6739 11.5554 34.2244 11.6588 34.716 11.8656C35.2076 12.0724 35.6353 12.3629 35.9892 12.7371C36.3431 13.1113 36.6184 13.5544 36.8052 14.0615C36.992 14.5686 37.0854 15.1348 37.0854 15.7503C37.0854 16.3657 36.9871 16.8975 36.7954 17.3947C36.6037 17.8969 36.3235 18.34 35.9695 18.7093C35.6156 19.0786 35.1928 19.374 34.716 19.5857C34.2343 19.7974 33.6985 19.9057 33.1184 19.9057C32.5383 19.9057 31.973 19.7974 31.511 19.5857C31.0489 19.374 30.6556 19.0884 30.341 18.7388C30.0264 18.3893 29.7855 17.9855 29.6282 17.5424H29.6331ZM30.5868 16.479C30.5966 16.7744 30.6655 17.0599 30.7834 17.3209C30.9162 17.6114 31.103 17.8723 31.334 18.0889C31.565 18.3105 31.8403 18.4877 32.1598 18.6158C32.4794 18.7438 32.8185 18.8078 33.1725 18.8078C33.6985 18.8078 34.1409 18.6995 34.4899 18.4877C34.8389 18.2711 35.124 18.02 35.3256 17.7394C35.532 17.4587 35.6795 17.1781 35.7631 16.9171C35.8368 16.7005 35.8663 16.5627 35.881 16.479H30.5819H30.5868Z"/> </svg> </a> <p class="foot-message">Connecting people through photography.</p> </div> <div class="foot-logos foot-certifications"> <a href="https://www.onepercentfortheplanet.org/" target="_blank"> <svg width="53" height="22" viewBox="0 0 53 22" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_318_100)"> <path d="M15.931 9.35633C15.931 9.07719 15.704 8.85058 15.4253 8.85058C15.1466 8.85058 14.9195 9.07764 14.9195 9.35633C14.9195 9.63502 15.1466 9.86208 15.4253 9.86208C15.704 9.86208 15.931 9.63502 15.931 9.35633Z"/> <path d="M21.999 10.6545C21.997 10.5948 21.9951 10.5351 21.9921 10.4754C21.9906 10.4428 21.9887 10.4108 21.9872 10.3787C21.9842 10.323 21.9803 10.2667 21.9763 10.211C21.9739 10.1789 21.9719 10.1469 21.9694 10.1143C21.965 10.0556 21.9596 9.9969 21.9536 9.9387C21.9512 9.91107 21.9487 9.88296 21.9457 9.85533C21.9374 9.77295 21.928 9.69058 21.9176 9.6082C21.9176 9.60524 21.9171 9.60228 21.9166 9.59932C21.9058 9.51447 21.8939 9.43061 21.8811 9.34626C21.8767 9.31864 21.8722 9.29101 21.8678 9.2629C21.8589 9.20617 21.8496 9.14944 21.8397 9.09321C21.8343 9.06114 21.8283 9.02908 21.8224 8.99751C21.8126 8.94473 21.8027 8.89244 21.7923 8.83966C21.7859 8.8076 21.7795 8.77553 21.7726 8.74347C21.7613 8.68921 21.7494 8.63495 21.7371 8.58118C21.7307 8.55257 21.7243 8.52346 21.7179 8.49485C21.7006 8.42185 21.6828 8.34884 21.6646 8.27633C21.6616 8.264 21.6587 8.25166 21.6552 8.23983C21.6355 8.16337 21.6148 8.08691 21.5931 8.01094C21.5847 7.98184 21.5763 7.95273 21.5674 7.92363C21.5526 7.87233 21.5373 7.82152 21.522 7.77022C21.5122 7.73717 21.5013 7.70461 21.491 7.67156C21.4762 7.62421 21.4609 7.57734 21.4451 7.52999C21.4342 7.49694 21.4229 7.4634 21.4115 7.43035C21.3953 7.3825 21.3785 7.33514 21.3612 7.28729C21.3499 7.25622 21.339 7.22514 21.3277 7.19406C21.306 7.13487 21.2833 7.07567 21.2601 7.01648C21.2483 6.98639 21.2369 6.95679 21.2251 6.92719C21.2004 6.86504 21.1753 6.80289 21.1491 6.74172C21.1358 6.70966 21.1215 6.67759 21.1077 6.64602C21.0889 6.60261 21.0702 6.5592 21.0505 6.5158C21.0352 6.48127 21.0194 6.44674 21.0031 6.41221C20.9844 6.37176 20.9656 6.3318 20.9469 6.29184C20.9301 6.25682 20.9133 6.2218 20.8966 6.18678C20.8773 6.14731 20.8576 6.10785 20.8379 6.06888C20.8206 6.03435 20.8033 6.00031 20.7861 5.96628C20.7639 5.92336 20.7412 5.88045 20.718 5.83753C20.6894 5.78376 20.6608 5.73098 20.6312 5.67771C20.6075 5.63528 20.5843 5.59286 20.5602 5.55093C20.5395 5.51492 20.5182 5.4794 20.4975 5.4434C20.4778 5.40936 20.4576 5.37532 20.4373 5.34178C20.4151 5.30478 20.3925 5.26779 20.3698 5.23128C20.35 5.19922 20.3303 5.16765 20.3101 5.13559C20.2864 5.0981 20.2627 5.0611 20.2391 5.0241C20.2193 4.99401 20.1996 4.96392 20.1799 4.93383C20.1547 4.89585 20.13 4.85836 20.1044 4.82087C20.0866 4.79473 20.0684 4.76858 20.0501 4.74244C19.9949 4.66253 19.9387 4.5836 19.8809 4.50517C19.8666 4.48593 19.8528 4.4662 19.8385 4.44696C19.8089 4.407 19.7783 4.36754 19.7483 4.32759C19.73 4.30391 19.7118 4.27974 19.6935 4.25606C19.6629 4.21709 19.6323 4.17812 19.6013 4.13964C19.5825 4.11646 19.5638 4.09328 19.545 4.07009C19.5135 4.03112 19.4814 3.99215 19.4488 3.95318C19.4316 3.93246 19.4138 3.91175 19.3966 3.89152C19.362 3.85058 19.3275 3.81013 19.2925 3.76968C19.2836 3.75932 19.2742 3.74946 19.2654 3.7391C19.1376 3.59358 19.0054 3.45151 18.8702 3.31339C18.8564 3.29909 18.8426 3.28478 18.8283 3.27048C18.7889 3.23052 18.7489 3.19056 18.7085 3.1511C18.6927 3.13581 18.6774 3.12052 18.6616 3.10523C18.6207 3.06527 18.5792 3.02581 18.5378 2.98684C18.5245 2.97451 18.5112 2.96217 18.4978 2.94984C18.3977 2.85661 18.2961 2.76535 18.1925 2.67558C18.0889 2.58629 17.9839 2.49849 17.8768 2.41265C17.8684 2.40624 17.8605 2.39934 17.8522 2.39292C17.8028 2.35395 17.7535 2.31498 17.7037 2.27651C17.6923 2.26763 17.6805 2.25875 17.6692 2.24987C17.6188 2.21139 17.568 2.17341 17.5172 2.13592C17.5088 2.13 17.501 2.12408 17.4926 2.11816C17.3628 2.02345 17.2311 1.9317 17.097 1.84242C16.9929 1.77286 16.8873 1.70479 16.7808 1.63869C16.7788 1.6377 16.7773 1.63672 16.7754 1.63524C16.7172 1.59923 16.658 1.56371 16.5988 1.52869C16.5914 1.52425 16.584 1.5203 16.5771 1.51586C16.5179 1.48133 16.4587 1.4468 16.399 1.41326C16.3956 1.41129 16.3921 1.40931 16.3886 1.40734C16.1908 1.29586 15.9886 1.19128 15.7834 1.09213C15.6596 1.03244 15.5348 0.973744 15.408 0.918496C15.4036 0.916523 15.3992 0.91455 15.3947 0.912576C15.3286 0.883966 15.2625 0.855355 15.1954 0.828225H15.1945C14.9661 0.733514 14.7333 0.647683 14.497 0.568264C14.3796 0.528801 14.2612 0.490818 14.1418 0.455302C14.1384 0.454315 14.1349 0.453329 14.1315 0.452342C14.0654 0.432611 13.9988 0.413866 13.9322 0.395614C13.9278 0.394134 13.9233 0.393148 13.9184 0.391668C12.9896 0.137133 12.0119 0 11.0022 0C9.39418 0 7.86704 0.346286 6.48985 0.966838H6.48838C6.46864 0.975224 6.44941 0.984596 6.42968 0.993475C6.37838 1.01666 6.32757 1.04083 6.27726 1.06451C6.25161 1.07684 6.22596 1.08917 6.20031 1.1015C6.13668 1.13258 6.07305 1.16366 6.0104 1.19572C5.98969 1.20608 5.96897 1.21743 5.94825 1.22779C5.89991 1.25294 5.85157 1.2781 5.80373 1.30424C5.77857 1.31756 5.75341 1.33138 5.72826 1.34519C5.6666 1.37873 5.60543 1.41326 5.54427 1.44828C5.52306 1.46062 5.50185 1.47295 5.48064 1.48528C5.43477 1.51192 5.38889 1.53905 5.34351 1.56667C5.31885 1.58147 5.29468 1.59627 5.27002 1.61107C5.21033 1.64757 5.15114 1.68407 5.09244 1.72156C5.07074 1.73538 5.04854 1.74968 5.02684 1.76399C4.98343 1.7921 4.94002 1.82071 4.89711 1.84932C4.87343 1.86511 4.84926 1.88139 4.82559 1.89717C4.76837 1.93614 4.71164 1.9756 4.65492 2.01556C4.63272 2.03135 4.61052 2.04762 4.58833 2.06341C4.54739 2.09301 4.50645 2.1226 4.466 2.15269C4.44282 2.16996 4.41914 2.18722 4.39596 2.20449C4.3412 2.24592 4.28694 2.28736 4.23269 2.32929C4.21 2.34705 4.1878 2.36481 4.16511 2.38256C4.12663 2.41315 4.08816 2.44422 4.05018 2.4753C4.02749 2.49405 4.0048 2.5123 3.98211 2.53104C3.92982 2.57445 3.87803 2.61835 3.82673 2.66275C3.80404 2.68248 3.78135 2.70221 3.75915 2.72194C3.72315 2.75351 3.68714 2.78508 3.65162 2.81715C3.62943 2.83737 3.60723 2.8571 3.58503 2.87733C3.53521 2.92271 3.48638 2.96859 3.43755 3.01446C3.41486 3.03617 3.39217 3.05787 3.36997 3.07958C3.33643 3.11213 3.30289 3.14469 3.26984 3.17725C3.24813 3.19846 3.22643 3.22016 3.20473 3.24187C3.15787 3.28873 3.1115 3.33658 3.06563 3.38443C3.04294 3.4081 3.02074 3.43178 2.99805 3.45546C2.96697 3.48851 2.93639 3.52156 2.90581 3.55461C2.8846 3.57779 2.86339 3.60048 2.84218 3.62367C2.79828 3.6725 2.75487 3.72134 2.71146 3.77067C2.68927 3.79632 2.66707 3.82246 2.64487 3.84811C2.61676 3.88116 2.58864 3.91471 2.56053 3.94776C2.53685 3.97637 2.51317 4.00448 2.4895 4.03309C2.45151 4.07946 2.41403 4.12633 2.37654 4.17319C2.35434 4.2013 2.33264 4.22942 2.31044 4.25754C2.28479 4.29059 2.25914 4.32364 2.23399 4.35718C2.20587 4.39418 2.17775 4.43167 2.15013 4.46916C2.12004 4.5101 2.08995 4.55104 2.06036 4.59248C2.03865 4.62257 2.01744 4.65266 1.99623 4.68324C1.97305 4.71629 1.94987 4.74934 1.92718 4.78289C1.89709 4.82679 1.867 4.87119 1.8374 4.91558C1.81274 4.95258 1.78857 4.98957 1.7644 5.02657C1.74319 5.05913 1.72247 5.09168 1.70176 5.12424C1.68104 5.1568 1.66081 5.18935 1.64059 5.2224C1.60952 5.27223 1.57943 5.32254 1.54884 5.37286C1.52862 5.40689 1.5084 5.44093 1.48867 5.47497C1.46844 5.5095 1.44822 5.54452 1.42849 5.57954C1.41073 5.61111 1.39297 5.64268 1.37522 5.67425C1.34414 5.72999 1.31405 5.78623 1.28396 5.84246C1.26719 5.87403 1.25042 5.90511 1.23414 5.93717C1.21491 5.97417 1.19567 6.01117 1.17692 6.04866C1.16163 6.07875 1.14684 6.10933 1.13154 6.13991C1.10146 6.20108 1.07186 6.26225 1.04276 6.32391C1.02895 6.35351 1.01513 6.38261 1.00132 6.4127C0.983072 6.45216 0.965315 6.49162 0.947557 6.53109C0.934732 6.5597 0.922401 6.5888 0.909576 6.61741C0.880967 6.68351 0.852851 6.75011 0.825228 6.8167C0.813883 6.84432 0.802538 6.87244 0.791193 6.90006C0.774422 6.9415 0.758144 6.98294 0.741867 7.02487C0.731508 7.0515 0.721643 7.07863 0.711285 7.10527C0.684155 7.1768 0.658012 7.24832 0.632363 7.32084C0.622991 7.34698 0.613619 7.37312 0.60474 7.39976C0.589449 7.44366 0.574651 7.48707 0.559853 7.53098C0.551961 7.55465 0.544562 7.57882 0.53667 7.6025C0.511513 7.67945 0.487343 7.7569 0.46416 7.83484C0.456761 7.86 0.449362 7.88466 0.441963 7.90982C0.428645 7.95569 0.415327 8.00157 0.402502 8.04744C0.397076 8.06767 0.39165 8.08789 0.386225 8.10763C0.363534 8.1905 0.341831 8.27435 0.321114 8.35821C0.315195 8.38238 0.309276 8.40656 0.303356 8.43122C0.292011 8.47907 0.280666 8.52642 0.269815 8.57427C0.266855 8.58858 0.263895 8.60288 0.260443 8.61669C0.240219 8.70795 0.221475 8.7997 0.203224 8.89195C0.198785 8.91513 0.194345 8.93881 0.189906 8.96199C0.180534 9.01132 0.171655 9.06065 0.162777 9.11047C0.162283 9.11442 0.161297 9.11886 0.160804 9.1228C0.143046 9.2259 0.126768 9.32949 0.111971 9.43357C0.108518 9.45676 0.105558 9.47945 0.102105 9.50263C0.0951997 9.55295 0.0887873 9.60277 0.0823748 9.65358C0.028116 10.0956 0 10.5449 0 11.0012C0 15.1137 2.25766 18.6989 5.60001 20.5862C5.61974 20.5976 5.63947 20.6084 5.6592 20.6193C5.72579 20.6563 5.79238 20.6928 5.85996 20.7283C5.8861 20.7421 5.91274 20.7564 5.93888 20.7702C5.97933 20.791 6.01928 20.8117 6.06022 20.8319C6.08538 20.8447 6.11054 20.8571 6.13619 20.8694C6.22053 20.9108 6.30488 20.9513 6.39022 20.9907C6.40156 20.9957 6.41241 21.0011 6.42326 21.006C6.46914 21.0272 6.51501 21.0475 6.56138 21.0677C6.58111 21.0766 6.60084 21.085 6.62057 21.0933C6.77348 21.1599 6.92837 21.2231 7.08473 21.2823C7.09607 21.2867 7.10742 21.2911 7.11926 21.2951C7.28845 21.3587 7.45912 21.4184 7.63225 21.4742H7.63324C7.8705 21.5506 8.11072 21.6187 8.35439 21.6789C9.20181 21.888 10.0872 22 10.9993 22C13.9993 22 16.7177 20.7989 18.702 18.8519H18.7025C18.7726 18.7823 18.8416 18.7128 18.9102 18.6422L18.9181 18.6343C18.9862 18.5638 19.0528 18.4927 19.1189 18.4207L19.1218 18.4173C19.2555 18.2708 19.3857 18.1208 19.5115 17.9674L19.5145 17.9639C19.5741 17.8909 19.6333 17.8169 19.691 17.7425C19.697 17.7351 19.7024 17.7277 19.7083 17.7203C19.764 17.6482 19.8188 17.5757 19.8726 17.5022C19.8795 17.4929 19.8864 17.483 19.8933 17.4736C19.9465 17.4001 19.9993 17.3261 20.0511 17.2516C20.0565 17.2437 20.062 17.2359 20.0674 17.228C20.1207 17.1505 20.1735 17.0721 20.2247 16.9932C20.2731 16.9187 20.3204 16.8442 20.3673 16.7687L20.3693 16.7658C20.4151 16.6913 20.46 16.6168 20.5039 16.5413C20.5054 16.5388 20.5064 16.5369 20.5079 16.5344C20.5513 16.4604 20.5937 16.3854 20.6351 16.3105C20.6371 16.307 20.6391 16.3031 20.6411 16.2996C20.682 16.2256 20.7215 16.1511 20.7604 16.0761C20.7629 16.0712 20.7659 16.0663 20.7683 16.0609C20.8063 15.9874 20.8438 15.9134 20.8803 15.8389C20.8837 15.832 20.8872 15.8256 20.8902 15.8187C20.9257 15.7461 20.9602 15.6726 20.9942 15.5991C20.9982 15.5908 21.0021 15.5819 21.0061 15.5735C21.0391 15.5015 21.0712 15.429 21.1028 15.3559C21.1072 15.3456 21.1116 15.3357 21.1161 15.3254C21.1467 15.2543 21.1763 15.1823 21.2054 15.1103C21.2103 15.098 21.2152 15.0861 21.2202 15.0738C21.2483 15.0033 21.2754 14.9322 21.302 14.8612C21.3075 14.8474 21.3129 14.8336 21.3178 14.8197C21.3435 14.7502 21.3681 14.6802 21.3928 14.6101C21.3982 14.5943 21.4041 14.5785 21.4096 14.5627C21.4332 14.4942 21.4554 14.4251 21.4776 14.3561C21.4836 14.3383 21.4895 14.3205 21.4949 14.3028C21.5161 14.2357 21.5363 14.1676 21.5561 14.1C21.562 14.0798 21.5679 14.0601 21.5738 14.0399C21.5926 13.9738 21.6108 13.9077 21.6281 13.8411C21.634 13.8189 21.6404 13.7967 21.6463 13.7745C21.6631 13.7099 21.6789 13.6443 21.6947 13.5791C21.7006 13.555 21.7065 13.5308 21.7124 13.5066C21.7272 13.443 21.741 13.3789 21.7548 13.3152C21.7603 13.2891 21.7667 13.2629 21.7721 13.2368C21.7849 13.1746 21.7968 13.1115 21.8086 13.0489C21.814 13.0207 21.8195 12.9926 21.8249 12.9645C21.8357 12.9033 21.8456 12.8417 21.856 12.78C21.8609 12.7499 21.8663 12.7198 21.8708 12.6897C21.8801 12.6296 21.888 12.5689 21.8964 12.5082C21.9009 12.4766 21.9058 12.4451 21.9097 12.413C21.9171 12.3533 21.924 12.2936 21.9305 12.234C21.9344 12.2009 21.9383 12.1679 21.9418 12.1343C21.9477 12.0751 21.9526 12.0154 21.9581 11.9557C21.961 11.9217 21.9645 11.8882 21.967 11.8541C21.9714 11.7934 21.9748 11.7318 21.9788 11.6706C21.9808 11.6376 21.9832 11.6045 21.9852 11.5715C21.9887 11.5054 21.9906 11.4393 21.9931 11.3727C21.9941 11.3441 21.9956 11.3159 21.9965 11.2873C21.999 11.1921 22 11.0969 22 11.0017C22 10.9139 21.9985 10.8261 21.9965 10.7388C21.9961 10.7107 21.9946 10.6826 21.9941 10.6549L21.999 10.6545ZM13.2239 19.5627H8.93002V6.27162L7.33037 6.25682L7.33432 5.63824L7.34369 4.10462L8.61828 2.96908L9.41539 2.25924H13.2239V19.5627ZM14.2992 9.28707C14.2992 8.60486 14.8546 8.04942 15.5368 8.04942C16.219 8.04942 16.7744 8.60436 16.7744 9.28707C16.7744 9.96977 16.219 10.5242 15.5368 10.5242C14.8546 10.5242 14.2992 9.96928 14.2992 9.28707ZM14.8008 13.297L18.6488 8.02623H19.5445L19.3388 8.3079L16.6718 11.9612L15.6966 13.297H14.8008ZM17.5246 12.0574C17.5246 11.3751 18.0796 10.8197 18.7617 10.8197C19.4439 10.8197 19.9988 11.3746 19.9988 12.0574C19.9988 12.7401 19.4439 13.295 18.7617 13.295C18.7257 13.295 18.6897 13.293 18.6542 13.2901C18.4559 13.2728 18.2704 13.2087 18.1096 13.1085C17.7584 12.89 17.5241 12.5008 17.5241 12.0574H17.5246Z"/> <path d="M19.2184 12.1379C19.2184 11.8588 18.9918 11.6322 18.7126 11.6322C18.4335 11.6322 18.2069 11.8592 18.2069 12.1379C18.2069 12.4166 18.434 12.6437 18.7126 12.6437C18.9913 12.6437 19.2184 12.4166 19.2184 12.1379Z"/> <path d="M25.2494 8.74227H27.3417V7.69523H25.2494V6.92158H27.5632V5.81609H24.023V10.3678H25.2494V8.74227Z"/> <path d="M30.5911 10.6207C32.0396 10.6207 33.1264 9.54485 33.1264 8.21864V8.20507C33.1264 6.87836 32.0529 5.81609 30.6043 5.81609C29.1558 5.81609 28.069 6.89194 28.069 8.21864V8.23172C28.069 9.55792 29.142 10.6207 30.5911 10.6207ZM29.4041 8.20507C29.4041 7.53845 29.8798 6.97087 30.5911 6.97087C31.3023 6.97087 31.7979 7.55152 31.7979 8.21814V8.23121C31.7979 8.89783 31.3217 9.46542 30.6043 9.46542C29.887 9.46542 29.4041 8.88476 29.4041 8.21814V8.20457V8.20507Z"/> <path d="M34.9272 8.98942H35.4946L36.4357 10.3678H37.931L36.8165 8.7814C37.3972 8.54069 37.7775 8.07908 37.7775 7.38369V7.37032C37.7775 6.92208 37.6372 6.57042 37.3636 6.31039C37.0499 5.99836 36.5562 5.81609 35.8419 5.81609H33.6322V10.3673H34.9272V8.98893V8.98942ZM34.9272 6.90871H35.7747C36.2084 6.90871 36.4754 7.09097 36.4754 7.44857V7.46145C36.4754 7.7933 36.2217 8.00132 35.7814 8.00132H34.9267V6.90871H34.9272Z"/> <path d="M40.7456 10.3678H41.9441V6.92158H43.2414V5.81609H39.4483V6.92158H40.7456V10.3678Z"/> <path d="M46.8137 7.5194H45.2322V5.81609H44V10.3678H45.2322V8.63826H46.8137V10.3678H48.046V5.81609H46.8137V7.5194Z"/> <path d="M50.0869 9.29502V8.57288H52.3307V7.57834H50.0869V6.88889H52.5641V5.81609H48.8046V10.3678H52.5977V9.29502H50.0869Z"/> <path d="M26.0769 11.3793H24.023V16.1839H25.351V14.811H26.0082C27.1995 14.811 28.069 14.214 28.069 13.0812V13.0676C28.069 12.0036 27.2881 11.3793 26.0764 11.3793H26.0769ZM26.7409 13.1432C26.7409 13.521 26.4532 13.7679 25.981 13.7679H25.351V12.498H25.9742C26.4532 12.498 26.7409 12.7176 26.7409 13.1295V13.1427V13.1432Z"/> <path d="M32.3678 15.0169H29.9556V11.3793H28.5747V16.1839H32.3678V15.0169Z"/> <path d="M34.6417 11.3793L32.6207 16.1839H34.0042L34.3432 15.3319H36.1743L36.5205 16.1839H37.931L35.9105 11.3793H34.6422H34.6417ZM34.7295 14.3031L35.2653 12.9471L35.7943 14.3031H34.7295Z"/> <path d="M41.6665 13.9188L39.6834 11.3793H38.4368V16.1839H39.7588V13.5483L41.8178 16.1839H42.9885V11.3793H41.6665V13.9188Z"/> <path d="M45.2824 14.2892H47.5253V13.2394H45.2824V12.5116H47.7594V11.3793H44V16.1839H47.7931V15.0511H45.2824V14.2892Z"/> <path d="M48.2989 12.5458H49.769V16.1839H51.1276V12.5458H52.5977V11.3793H48.2989V12.5458Z"/> <path d="M52.0741 15.5956C52.0741 15.4773 51.9794 15.4253 51.8464 15.4253H51.5862V15.931H51.7402V15.7802H51.805L51.9145 15.931H52.092L51.9622 15.7554C52.0303 15.7305 52.0741 15.6755 52.0741 15.5962V15.5956ZM51.8375 15.6672H51.7402V15.5466H51.8375C51.8909 15.5466 51.9202 15.5684 51.9202 15.6069C51.9202 15.6424 51.8909 15.6672 51.8375 15.6672Z"/> <path d="M51.8 15.2C51.5212 15.2 51.3 15.4285 51.3 15.6997V15.7026C51.3 15.9739 51.5183 16.2 51.8 16.2C52.0817 16.2 52.3 15.9715 52.3 15.7003V15.6974C52.3 15.4261 52.0817 15.2006 51.8 15.2006V15.2ZM52.2162 15.6997C52.2162 15.9282 52.0352 16.1184 51.8 16.1184C51.5649 16.1184 51.3838 15.9305 51.3838 15.702V15.6991C51.3838 15.4707 51.5649 15.2798 51.8 15.2798C52.0352 15.2798 52.2162 15.4678 52.2162 15.6962V15.6991V15.6997Z"/> </g> <defs> <clipPath id="clip0_318_100"> <rect width="53" height="22"/> </clipPath> </defs> </svg> </a> <a href="https://www.greatplacetowork.com/certified-company/7051750" target="_blank"> <svg width="19" height="32" viewBox="0 0 19 32" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_47_47)"> <path fill-rule="evenodd" clip-rule="evenodd" d="M1 26.3484L9.4 30.8646L17.8 26.3484V1H1V26.3484ZM18.8 0V26.9462L9.4 32L0 26.9462V0H18.8Z"/> <path d="M17.7362 28.5957H17.5524V28.9971H17.3844V28.5957H17.2022V28.434H17.7364V28.5957H17.7362ZM18.4825 28.9971H18.3145V28.765L18.1874 28.991H18.1119L17.9848 28.765V28.9971H17.8168V28.434H17.9596L18.1498 28.7744L18.3399 28.434H18.4828V28.9971H18.4825Z"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M0 0H18.8V18.7683H0V0ZM4.97459 3.56405V3.33208L4.97438 3.33251H3.46372V3.85663H4.37599C4.26829 4.21325 3.95848 4.42809 3.49805 4.42809C3.18824 4.42809 2.93872 4.3377 2.74927 4.15307C2.56411 3.96822 2.4695 3.73625 2.4695 3.44838C2.4695 3.16051 2.56004 2.92426 2.74498 2.73942C2.93014 2.55029 3.16679 2.45583 3.45514 2.45583C3.81237 2.45583 4.12218 2.62782 4.26421 2.87264L4.77206 2.58049C4.51395 2.15511 4.02327 1.88009 3.45943 1.88009C3.01188 1.88009 2.63749 2.03045 2.33197 2.33545C2.03074 2.64046 1.88012 3.01422 1.88012 3.44817C1.88012 3.88212 2.03074 4.25159 2.33626 4.5566C2.64178 4.85732 3.02904 5.00768 3.49398 5.00768C3.92866 5.00768 4.28588 4.87446 4.56137 4.608C4.83685 4.34177 4.97459 3.99371 4.97459 3.56405ZM5.86377 3.16884C5.96182 2.89382 6.20727 2.75631 6.48532 2.75631V3.3751C6.32591 3.35368 6.17873 3.38796 6.05193 3.47834C5.92513 3.56852 5.86377 3.71459 5.86377 3.92086V4.94768H5.3364V2.79936H5.86377V3.16884ZM7.98307 4.50512C7.6518 4.50512 7.44948 4.3719 7.37632 4.10116H8.99875C9.01162 4.01955 9.02021 3.94652 9.02021 3.87348C9.02021 3.55134 8.91701 3.28488 8.71039 3.06577C8.50807 2.84665 8.24546 2.73913 7.93136 2.73913C7.60009 2.73913 7.32461 2.84665 7.11371 3.06577C6.9028 3.2806 6.7951 3.54705 6.7951 3.87348C6.7951 4.1999 6.9028 4.47064 7.118 4.68547C7.33319 4.90009 7.61726 5.00761 7.97448 5.00761C8.38771 5.00761 8.70181 4.85296 8.91272 4.54796L8.46516 4.29029C8.35746 4.43208 8.19397 4.50512 7.98307 4.50512ZM7.93157 3.23755C8.18539 3.23755 8.40058 3.37934 8.46516 3.6715H7.36773C7.43231 3.39648 7.63464 3.23755 7.93157 3.23755ZM11.0219 2.79932H11.5771V4.94764H11.0219V4.69404C10.8541 4.90459 10.6218 5.00761 10.3203 5.00761C10.0189 5.00761 9.78672 4.90009 9.58011 4.68098C9.37778 4.46186 9.27459 4.19112 9.27459 3.87327C9.27459 3.55541 9.378 3.28896 9.58011 3.06984C9.78672 2.85073 10.0319 2.73892 10.3203 2.73892C10.6087 2.73892 10.8539 2.84195 11.0219 3.05249V2.79932ZM10.4237 4.47921C10.596 4.47921 10.7378 4.42331 10.8498 4.31171C10.9659 4.19562 11.0219 4.04955 11.0219 3.87348C11.0219 3.69742 10.9659 3.55134 10.8498 3.43953C10.7378 3.32344 10.596 3.26775 10.4237 3.26775C10.2514 3.26775 10.1096 3.32366 9.99762 3.43953C9.88563 3.55134 9.82984 3.69742 9.82984 3.87348C9.82984 4.04955 9.88584 4.19562 9.99762 4.31171C10.1094 4.42331 10.2514 4.47921 10.4237 4.47921ZM12.9113 3.33207H13.3976V2.79938H12.9113V2.19793L12.356 2.36543V2.79938H11.9816V3.33207H12.356V4.22566C12.356 4.81426 12.6358 5.03337 13.3976 4.94748V4.44478C13.079 4.46192 12.9113 4.45763 12.9113 4.22566V3.33207ZM3.39971 5.71749C3.68807 5.71749 3.9333 5.81623 4.13133 6.00964C4.32936 6.20306 4.42827 6.44359 4.42827 6.72718C4.42827 7.01077 4.32936 7.2513 4.13133 7.44471C3.9333 7.63813 3.68807 7.73687 3.39971 7.73687H2.87042V8.72514H2.27654V5.71749H3.39971ZM3.39971 7.18255C3.65353 7.18255 3.83869 6.98485 3.83869 6.72718C3.83869 6.46951 3.65374 6.27181 3.39971 6.27181H2.87042V7.18255H3.39971ZM4.83271 5.74536H5.38797V8.72516H4.83271V5.74536ZM7.61757 6.5768H8.17283V8.72491H7.61757V8.4713C7.44979 8.68185 7.21743 8.78488 6.91599 8.78488C6.61454 8.78488 6.3824 8.67735 6.17579 8.45845C5.97347 8.23934 5.87027 7.9686 5.87027 7.65074C5.87027 7.33289 5.97347 7.06644 6.17579 6.84732C6.3824 6.62821 6.62763 6.5164 6.91599 6.5164C7.20434 6.5164 7.44958 6.61942 7.61757 6.82997V6.5768ZM7.0194 8.25669C7.19169 8.25669 7.3335 8.20078 7.4455 8.08919C7.56157 7.9731 7.61757 7.82702 7.61757 7.65096C7.61757 7.4749 7.56157 7.32882 7.4455 7.21701C7.3335 7.10092 7.19169 7.04523 7.0194 7.04523C6.84712 7.04523 6.7053 7.10113 6.5933 7.21701C6.48131 7.32882 6.42553 7.4749 6.42553 7.65096C6.42553 7.82702 6.48152 7.9731 6.5933 8.08919C6.70509 8.20078 6.84733 8.25669 7.0194 8.25669ZM8.65063 7.65095C8.65063 7.97309 8.75833 8.23954 8.97353 8.45866L8.97374 8.45887C9.19323 8.67799 9.46442 8.78551 9.7871 8.78551C10.2044 8.78551 10.5704 8.5664 10.7597 8.22691L10.2776 7.95189C10.1915 8.12795 10.0064 8.23547 9.7826 8.23547C9.61461 8.23547 9.47686 8.17957 9.36937 8.07226C9.26188 7.96045 9.20589 7.81866 9.20589 7.65116C9.20589 7.30739 9.45133 7.06257 9.7826 7.06257C10.0021 7.06257 10.1872 7.17438 10.2733 7.35044L10.7509 7.07114C10.5745 6.73165 10.2044 6.51682 9.78689 6.51682C9.4642 6.51682 9.19301 6.62413 8.97353 6.84324C8.75833 7.06236 8.65063 7.32881 8.65063 7.65095ZM11.646 7.87864C11.7191 8.14937 11.9214 8.2826 12.2527 8.2826C12.4636 8.2826 12.6271 8.20956 12.7348 8.06777L13.1824 8.32544C12.9715 8.63044 12.6574 8.78509 12.2441 8.78509C11.8869 8.78509 11.6028 8.67756 11.3876 8.46295C11.1724 8.24811 11.0647 7.97738 11.0647 7.65095C11.0647 7.32453 11.1724 7.05808 11.3834 6.84325C11.5943 6.62413 11.8697 6.51661 12.201 6.51661C12.5151 6.51661 12.7777 6.62392 12.98 6.84325C13.1867 7.06236 13.2899 7.32881 13.2899 7.65095C13.2899 7.72399 13.2813 7.79703 13.2684 7.87864H11.646ZM12.7348 7.44897C12.6702 7.15682 12.455 7.01503 12.2012 7.01503C11.9043 7.01503 11.702 7.17395 11.6374 7.44897H12.7348ZM4.09665 10.1841V9.6452H1.88012V10.1841H2.68941V12.5025H3.28329V10.1841H4.09665ZM5.02193 12.5626C4.70354 12.5626 4.43235 12.455 4.21286 12.2359C3.99338 12.0168 3.88567 11.7461 3.88567 11.4282C3.88567 11.1104 3.99338 10.8439 4.21286 10.6248C4.43235 10.4057 4.70354 10.2939 5.02193 10.2939C5.34033 10.2939 5.61152 10.4055 5.831 10.6248C6.05049 10.8439 6.16249 11.1104 6.16249 11.4282C6.16249 11.7461 6.0507 12.0168 5.831 12.2359C5.61152 12.455 5.34033 12.5626 5.02193 12.5626ZM5.02193 12.0211C5.18971 12.0211 5.32745 11.9652 5.43945 11.8536C5.55123 11.7418 5.60723 11.6 5.60723 11.4282C5.60723 11.2564 5.55123 11.1146 5.43945 11.0028C5.32745 10.8912 5.18993 10.8353 5.02193 10.8353C4.85394 10.8353 4.71641 10.8912 4.60442 11.0028C4.49671 11.1146 4.44093 11.2562 4.44093 11.4282C4.44093 11.6002 4.49693 11.7418 4.60442 11.8536C4.7162 11.9652 4.85394 12.0211 5.02193 12.0211ZM1.96184 13.448L2.80545 16.4557H3.48107L4.0447 14.4706L4.61283 16.4557H5.28866L6.13206 13.448H5.50815L4.93144 15.678L4.29873 13.448H3.79088L3.16247 15.678L2.58575 13.448H1.96184ZM7.21689 16.5158C6.8985 16.5158 6.6273 16.4083 6.40782 16.1892C6.18833 15.9701 6.08063 15.6993 6.08063 15.3815C6.08063 15.0636 6.18833 14.7972 6.40782 14.5781C6.6273 14.3589 6.8985 14.2471 7.21689 14.2471C7.53528 14.2471 7.80648 14.3587 8.02596 14.5781C8.24545 14.7972 8.35744 15.0636 8.35744 15.3815C8.35744 15.6993 8.24566 15.9701 8.02596 16.1892C7.80648 16.4083 7.53528 16.5158 7.21689 16.5158ZM7.21689 15.9744C7.38467 15.9744 7.52241 15.9185 7.63441 15.8069C7.74619 15.6951 7.80218 15.5535 7.80218 15.3815C7.80218 15.2095 7.74619 15.0679 7.63441 14.9561C7.52241 14.8445 7.38488 14.7886 7.21689 14.7886C7.0489 14.7886 6.91137 14.8445 6.79937 14.9561C6.69167 15.0679 6.63589 15.2095 6.63589 15.3815C6.63589 15.5535 6.69188 15.6951 6.79937 15.8069C6.91115 15.9185 7.0489 15.9744 7.21689 15.9744ZM9.95832 14.2643C9.66568 14.2643 9.40736 14.4018 9.30416 14.6769H9.30394V14.3074H8.74868V16.4557H9.30394V15.4289C9.30394 15.2226 9.36852 15.0765 9.50197 14.9864C9.63542 14.896 9.79033 14.8617 9.95832 14.8831V14.2643ZM12.3514 16.4557H11.7058L10.9225 15.4803V16.4557H10.3675V13.448H10.9225V15.2526L11.6627 14.3074H12.3254L11.4606 15.3687L12.3514 16.4557ZM13.0406 15.5826C12.7688 15.5826 12.554 15.7992 12.554 16.0684C12.554 16.3419 12.7688 16.5499 13.0406 16.5499C13.3125 16.5499 13.5272 16.3355 13.5272 16.0663C13.5272 15.797 13.3125 15.5826 13.0406 15.5826ZM13.0406 15.6615C13.2728 15.6615 13.4395 15.8277 13.4395 16.0663C13.4395 16.3049 13.2644 16.4711 13.0406 16.4711C12.8169 16.4711 12.6416 16.3068 12.6416 16.0684C12.6416 15.83 12.8085 15.6615 13.0406 15.6615ZM13.0428 15.8212H12.8739V16.3004H12.9791V16.1145H13.0295L13.1458 16.3004H13.2554L13.1282 16.0969C13.1852 16.0793 13.2269 16.0399 13.2269 15.9678V15.9656C13.2269 15.8673 13.1546 15.8212 13.0428 15.8212ZM13.1239 15.9722C13.1239 16.0183 13.0953 16.0423 13.0406 16.0423H12.9793V15.9022H13.0406C13.0932 15.9022 13.1239 15.9198 13.1239 15.9701V15.9722Z"/> <path d="M2.05531 21.7337C2.05531 20.9727 2.62048 20.3824 3.40891 20.3824C3.88502 20.3824 4.3052 20.6238 4.52821 20.995L4.08571 21.2512C3.95928 21.021 3.70642 20.8798 3.40891 20.8798C2.89943 20.8798 2.56479 21.2324 2.56479 21.7337C2.56479 22.2351 2.89943 22.5839 3.40891 22.5839C3.70642 22.5839 3.96304 22.4429 4.08571 22.2163L4.52821 22.4725C4.30872 22.8439 3.88854 23.0851 3.40891 23.0851C2.62048 23.0851 2.05531 22.491 2.05531 21.7337Z"/> <path d="M5.6588 22.6506C5.84468 22.6506 5.99344 22.5727 6.07522 22.465L6.46203 22.6879C6.28719 22.9403 6.00824 23.0851 5.65128 23.0851C5.02641 23.0851 4.63232 22.6581 4.63232 22.1049C4.63232 21.5517 5.03017 21.1247 5.61415 21.1247C6.16452 21.1247 6.55509 21.5592 6.55509 22.1049C6.55509 22.1755 6.54757 22.2386 6.53652 22.3017H5.13451C5.20149 22.5469 5.40594 22.6508 5.6588 22.6508V22.6506ZM6.07522 21.9303C6.01576 21.6631 5.81484 21.5554 5.61415 21.5554C5.35753 21.5554 5.18269 21.6929 5.12699 21.9303H6.07522Z"/> <path d="M7.84195 21.1395V21.6741C7.59285 21.6443 7.27677 21.7558 7.27677 22.1457V23.033H6.79714V21.1765H7.27677V21.4958C7.37336 21.2434 7.60766 21.1395 7.84195 21.1395Z"/> <path d="M8.87195 21.6371V22.4094C8.87195 22.61 9.01695 22.6135 9.29214 22.5987V23.0332C8.6191 23.1076 8.39208 22.9107 8.39208 22.4094V21.6371H8.06849V21.1768H8.39208V20.8019L8.87172 20.6571V21.177H9.2919V21.6373H8.87172L8.87195 21.6371Z"/> <path d="M9.59341 20.6607C9.59341 20.5011 9.72736 20.3636 9.88716 20.3636C10.047 20.3636 10.1847 20.5011 10.1847 20.6607C10.1847 20.8202 10.0507 20.9539 9.88716 20.9539C9.7236 20.9539 9.59341 20.8202 9.59341 20.6607ZM9.6491 21.1768H10.1287V23.0332H9.6491V21.1768Z"/> <path d="M11.1813 21.1582V21.1768H11.5756V21.6371H11.1813V23.033H10.7017V21.6371H10.434V21.1768H10.7017V21.1582C10.7017 20.6459 10.9844 20.3451 11.5756 20.3824V20.8427C11.3265 20.8242 11.1813 20.9058 11.1813 21.1582Z"/> <path d="M11.821 20.6607C11.821 20.5011 11.9549 20.3636 12.1147 20.3636C12.2745 20.3636 12.4122 20.5011 12.4122 20.6607C12.4122 20.8202 12.2783 20.9539 12.1147 20.9539C11.9512 20.9539 11.821 20.8202 11.821 20.6607ZM11.8767 21.1768H12.3563V23.0332H11.8767V21.1768Z"/> <path d="M13.6803 22.6506C13.8662 22.6506 14.0149 22.5727 14.0967 22.465L14.4835 22.6879C14.3087 22.9403 14.0297 23.0851 13.6728 23.0851C13.0479 23.0851 12.6538 22.6581 12.6538 22.1049C12.6538 21.5517 13.0517 21.1247 13.6356 21.1247C14.186 21.1247 14.5766 21.5592 14.5766 22.1049C14.5766 22.1755 14.5691 22.2386 14.558 22.3017H13.156C13.223 22.5469 13.4274 22.6508 13.6803 22.6508V22.6506ZM14.0967 21.9303C14.0373 21.6631 13.8363 21.5554 13.6356 21.5554C13.379 21.5554 13.2042 21.6929 13.1485 21.9303H14.0967Z"/> <path d="M16.7447 20.4343V23.0332H16.2651V22.8141C16.1311 22.9849 15.9342 23.0851 15.6625 23.0851C15.1641 23.0851 14.7552 22.6581 14.7552 22.1049C14.7552 21.5517 15.1643 21.1247 15.6625 21.1247C15.9339 21.1247 16.1311 21.2249 16.2651 21.3957V20.434H16.7447V20.4343ZM16.2651 22.1049C16.2651 21.7931 16.0456 21.5815 15.7518 21.5815C15.4581 21.5815 15.2348 21.7931 15.2348 22.1049C15.2348 22.4167 15.4543 22.6283 15.7518 22.6283C16.0493 22.6283 16.2651 22.4167 16.2651 22.1049Z"/> <path d="M7.7807 27.6573H8.01846V28.294C8.01846 28.395 8.0214 28.4605 8.02729 28.4905C8.03747 28.5386 8.06156 28.5773 8.09958 28.6067C8.13814 28.6356 8.19061 28.65 8.25701 28.65C8.32448 28.65 8.37536 28.6364 8.40963 28.6091C8.4439 28.5813 8.46451 28.5474 8.47147 28.5073C8.47844 28.4672 8.48192 28.4006 8.48192 28.3076V27.6573H8.71967V28.2748C8.71967 28.4159 8.71324 28.5156 8.70039 28.5738C8.68754 28.6321 8.66371 28.6813 8.62891 28.7214C8.59463 28.7615 8.54858 28.7936 8.49075 28.8176C8.43292 28.8411 8.35742 28.8529 8.26424 28.8529C8.15179 28.8529 8.06638 28.8401 8.00801 28.8144C7.95018 28.7882 7.9044 28.7545 7.87066 28.7134C7.83693 28.6717 7.81471 28.6281 7.804 28.5827C7.78847 28.5153 7.7807 28.4159 7.7807 28.2844V27.6573Z"/> <path d="M8.91084 28.4504L9.14216 28.4279C9.15609 28.5054 9.1842 28.5624 9.2265 28.5987C9.26934 28.6351 9.32691 28.6532 9.3992 28.6532C9.47577 28.6532 9.53333 28.6372 9.57189 28.6051C9.61098 28.5725 9.63052 28.5346 9.63052 28.4913C9.63052 28.4635 9.62222 28.4399 9.60562 28.4207C9.58956 28.4009 9.56118 28.3838 9.52048 28.3694C9.49264 28.3598 9.42918 28.3426 9.33012 28.3181C9.20267 28.2865 9.11325 28.2478 9.06184 28.2018C8.98955 28.1371 8.95341 28.0582 8.95341 27.9652C8.95341 27.9054 8.97028 27.8495 9.00401 27.7976C9.03828 27.7453 9.08728 27.7054 9.151 27.6782C9.21526 27.6509 9.29264 27.6373 9.38313 27.6373C9.53092 27.6373 9.64204 27.6696 9.71647 27.7343C9.79144 27.799 9.83079 27.8853 9.83454 27.9933L9.59679 28.0037C9.58661 27.9433 9.56466 27.9 9.53092 27.8738C9.49772 27.8471 9.44766 27.8337 9.38072 27.8337C9.31164 27.8337 9.25756 27.8479 9.21847 27.8762C9.1933 27.8944 9.18072 27.9187 9.18072 27.9492C9.18072 27.977 9.1925 28.0008 9.21606 28.0206C9.24605 28.0457 9.31887 28.0719 9.43454 28.0991C9.5502 28.1264 9.63561 28.1547 9.69077 28.1841C9.74646 28.213 9.78983 28.2528 9.82089 28.3036C9.85248 28.3539 9.86828 28.4161 9.86828 28.4905C9.86828 28.5578 9.84954 28.6209 9.81205 28.6797C9.77457 28.7385 9.72156 28.7823 9.65301 28.8112C9.58447 28.8395 9.49906 28.8537 9.39679 28.8537C9.24792 28.8537 9.1336 28.8195 9.05381 28.7511C8.97402 28.6821 8.92637 28.5819 8.91084 28.4504Z"/> <path d="M11.1301 28.8329H10.8715L10.7687 28.5658H10.298L10.2008 28.8329H9.9486L10.4072 27.6573H10.6586L11.1301 28.8329ZM10.6924 28.3678L10.5301 27.9316L10.3711 28.3678H10.6924Z"/> <path d="M16.2673 25.6678L16.4924 25.6445C16.4989 25.6953 16.5179 25.7356 16.5495 25.7656C16.5811 25.7949 16.6176 25.8096 16.6588 25.8096C16.706 25.8096 16.7459 25.7907 16.7786 25.7527C16.8113 25.7142 16.8277 25.6565 16.8277 25.5796C16.8277 25.5074 16.8113 25.4535 16.7786 25.4177C16.7465 25.3813 16.7044 25.3631 16.6524 25.3631C16.5876 25.3631 16.5294 25.3917 16.478 25.4489L16.2947 25.4225L16.4104 24.8108H17.0077V25.0217H16.5817L16.5463 25.2213C16.5967 25.1961 16.6481 25.1836 16.7006 25.1836C16.8009 25.1836 16.8858 25.2199 16.9555 25.2926C17.0252 25.3653 17.06 25.4596 17.06 25.5756C17.06 25.6723 17.0319 25.7586 16.9756 25.8345C16.8989 25.9382 16.7926 25.99 16.6564 25.99C16.5476 25.99 16.4589 25.9609 16.3903 25.9026C16.3217 25.8444 16.2807 25.7661 16.2673 25.6678Z"/> <path d="M16.1106 25.7607V25.97H15.3187C15.3273 25.8909 15.353 25.8161 15.3959 25.7455C15.4387 25.6744 15.5234 25.5804 15.6499 25.4633C15.7517 25.3688 15.8142 25.3046 15.8372 25.271C15.8683 25.2245 15.8839 25.1785 15.8839 25.1331C15.8839 25.0829 15.8702 25.0444 15.8429 25.0177C15.8161 24.9904 15.7788 24.9768 15.7311 24.9768C15.6839 24.9768 15.6464 24.9909 15.6186 25.0193C15.5907 25.0476 15.5746 25.0946 15.5703 25.1603L15.3452 25.1379C15.3586 25.0139 15.4007 24.9249 15.4714 24.871C15.5422 24.817 15.6306 24.79 15.7367 24.79C15.853 24.79 15.9444 24.8213 16.0109 24.8838C16.0773 24.9463 16.1106 25.0241 16.1106 25.1171C16.1106 25.17 16.1009 25.2205 16.0816 25.2686C16.0629 25.3161 16.0328 25.3661 15.9916 25.4185C15.9642 25.4532 15.9149 25.5032 15.8437 25.5684C15.7724 25.6336 15.7271 25.6768 15.7078 25.6982C15.689 25.7196 15.6738 25.7404 15.662 25.7607H16.1106Z"/> <path d="M14.813 24.79C14.9272 24.79 15.0164 24.8306 15.0807 24.9118C15.1574 25.008 15.1957 25.1676 15.1957 25.3904C15.1957 25.6127 15.1571 25.7725 15.0799 25.8698C15.0161 25.9499 14.9272 25.99 14.813 25.99C14.6983 25.99 14.6059 25.9462 14.5357 25.8585C14.4655 25.7704 14.4304 25.6135 14.4304 25.388C14.4304 25.1668 14.4689 25.0075 14.5461 24.9102C14.6099 24.8301 14.6989 24.79 14.813 24.79ZM14.813 24.9768C14.7857 24.9768 14.7613 24.9856 14.7399 25.0032C14.7184 25.0203 14.7018 25.0513 14.69 25.0962C14.6745 25.1545 14.6667 25.2525 14.6667 25.3904C14.6667 25.5283 14.6737 25.6231 14.6876 25.675C14.7015 25.7263 14.719 25.7605 14.7399 25.7776C14.7613 25.7947 14.7857 25.8032 14.813 25.8032C14.8404 25.8032 14.8647 25.7947 14.8862 25.7776C14.9076 25.7599 14.9242 25.7287 14.936 25.6838C14.9516 25.6261 14.9593 25.5283 14.9593 25.3904C14.9593 25.2525 14.9524 25.1579 14.9384 25.1066C14.9245 25.0548 14.9068 25.0203 14.8854 25.0032C14.8645 24.9856 14.8404 24.9768 14.813 24.9768Z"/> <path d="M14.2776 25.7607V25.97H13.4857C13.4943 25.8909 13.52 25.8161 13.5629 25.7455C13.6058 25.6744 13.6905 25.5804 13.817 25.4633C13.9188 25.3688 13.9812 25.3046 14.0043 25.271C14.0354 25.2245 14.0509 25.1785 14.0509 25.1331C14.0509 25.0829 14.0372 25.0444 14.0099 25.0177C13.9831 24.9904 13.9459 24.9768 13.8982 24.9768C13.851 24.9768 13.8135 24.9909 13.7856 25.0193C13.7577 25.0476 13.7417 25.0946 13.7374 25.1603L13.5123 25.1379C13.5257 25.0139 13.5677 24.9249 13.6385 24.871C13.7092 24.817 13.7977 24.79 13.9038 24.79C14.0201 24.79 14.1115 24.8213 14.1779 24.8838C14.2444 24.9463 14.2776 25.0241 14.2776 25.1171C14.2776 25.17 14.268 25.2205 14.2487 25.2686C14.2299 25.3161 14.1999 25.3661 14.1586 25.4185C14.1313 25.4532 14.082 25.5032 14.0107 25.5684C13.9394 25.6336 13.8941 25.6768 13.8748 25.6982C13.8561 25.7196 13.8408 25.7404 13.829 25.7607H14.2776Z"/> <path d="M11.9189 25.9699V24.7947H12.1504L12.6328 25.5795V24.7947H12.8538V25.9699H12.6151L12.14 25.2035V25.9699H11.9189Z"/> <path d="M11.7895 25.9699H11.5306L11.4277 25.7029H10.9566L10.8593 25.9699H10.6069L11.0659 24.7947H11.3175L11.7895 25.9699ZM11.3513 25.5049L11.1889 25.0689L11.0297 25.5049H11.3513Z"/> <path d="M10.2355 24.7947H10.4726V25.5386C10.4726 25.6359 10.464 25.7107 10.4469 25.7631C10.4238 25.8315 10.382 25.8865 10.3215 25.9282C10.2609 25.9693 10.1811 25.9899 10.0819 25.9899C9.96561 25.9899 9.8761 25.9576 9.8134 25.8929C9.75069 25.8277 9.71907 25.7323 9.71853 25.6068L9.94283 25.5811C9.94551 25.6484 9.95542 25.696 9.97257 25.7238C9.9983 25.766 10.0374 25.7871 10.0899 25.7871C10.143 25.7871 10.1805 25.7721 10.2025 25.7422C10.2245 25.7118 10.2355 25.649 10.2355 25.5538V24.7947Z"/> <path d="M9.23457 25.6565V25.4313H9.67834V25.6565H9.23457Z"/> <path d="M8.73854 25.97V25.7335H8.25619V25.5363L8.76749 24.79H8.95721V25.5355H9.10353V25.7335H8.95721V25.97H8.73854ZM8.73854 25.5355V25.1339L8.46762 25.5355H8.73854Z"/> <path d="M8.14203 25.7607V25.97H7.35016C7.35874 25.8909 7.38446 25.8161 7.42734 25.7455C7.47021 25.6744 7.55489 25.5804 7.68138 25.4633C7.78321 25.3688 7.84565 25.3046 7.86869 25.271C7.89978 25.2245 7.91532 25.1785 7.91532 25.1331C7.91532 25.0829 7.90166 25.0444 7.87432 25.0177C7.84752 24.9904 7.81028 24.9768 7.76258 24.9768C7.71541 24.9768 7.6779 24.9909 7.65003 25.0193C7.62216 25.0476 7.60608 25.0946 7.60179 25.1603L7.37669 25.1379C7.39009 25.0139 7.43216 24.9249 7.50291 24.871C7.57365 24.817 7.66208 24.79 7.7682 24.79C7.8845 24.79 7.97588 24.8213 8.04234 24.8838C8.1088 24.9463 8.14203 25.0241 8.14203 25.1171C8.14203 25.17 8.13238 25.2205 8.11309 25.2686C8.09433 25.3161 8.06432 25.3661 8.02305 25.4185C7.99571 25.4532 7.94641 25.5032 7.87513 25.5684C7.80384 25.6336 7.75856 25.6768 7.73926 25.6982C7.7205 25.7196 7.70523 25.7404 7.69344 25.7607H8.14203Z"/> <path d="M6.84449 24.79C6.95865 24.79 7.04788 24.8306 7.1122 24.9118C7.18884 25.008 7.22716 25.1676 7.22716 25.3904C7.22716 25.6127 7.18857 25.7725 7.11139 25.8698C7.04762 25.9499 6.95865 25.99 6.84449 25.99C6.7298 25.99 6.63734 25.9462 6.56714 25.8585C6.49693 25.7704 6.46182 25.6135 6.46182 25.388C6.46182 25.1668 6.50041 25.0075 6.57759 24.9102C6.64136 24.8301 6.73033 24.79 6.84449 24.79ZM6.84449 24.9768C6.81716 24.9768 6.79277 24.9856 6.77133 25.0032C6.74989 25.0203 6.73328 25.0513 6.72149 25.0962C6.70595 25.1545 6.69818 25.2525 6.69818 25.3904C6.69818 25.5283 6.70514 25.6231 6.71908 25.675C6.73301 25.7263 6.75043 25.7605 6.77133 25.7776C6.79277 25.7947 6.81716 25.8032 6.84449 25.8032C6.87182 25.8032 6.89621 25.7947 6.91765 25.7776C6.93909 25.7599 6.9557 25.7287 6.96749 25.6838C6.98303 25.6261 6.99081 25.5283 6.99081 25.3904C6.99081 25.2525 6.98384 25.1579 6.9699 25.1066C6.95597 25.0548 6.93828 25.0203 6.91684 25.0032C6.89594 24.9856 6.87182 24.9768 6.84449 24.9768Z"/> <path d="M6.30907 25.7607V25.97H5.51721C5.52578 25.8909 5.55151 25.8161 5.59438 25.7455C5.63726 25.6744 5.72194 25.5804 5.84842 25.4633C5.95025 25.3688 6.01269 25.3046 6.03574 25.271C6.06682 25.2245 6.08237 25.1785 6.08237 25.1331C6.08237 25.0829 6.0687 25.0444 6.04137 25.0177C6.01457 24.9904 5.97732 24.9768 5.92962 24.9768C5.88246 24.9768 5.84494 24.9909 5.81707 25.0193C5.7892 25.0476 5.77312 25.0946 5.76883 25.1603L5.54374 25.1379C5.55713 25.0139 5.59921 24.9249 5.66995 24.871C5.7407 24.817 5.82913 24.79 5.93525 24.79C6.05155 24.79 6.14293 24.8213 6.20939 24.8838C6.27585 24.9463 6.30907 25.0241 6.30907 25.1171C6.30907 25.17 6.29943 25.2205 6.28013 25.2686C6.26137 25.3161 6.23136 25.3661 6.19009 25.4185C6.16276 25.4532 6.11345 25.5032 6.04217 25.5684C5.97089 25.6336 5.9256 25.6768 5.90631 25.6982C5.88755 25.7196 5.87227 25.7404 5.86048 25.7607H6.30907Z"/> <path d="M3.95035 25.9699V24.7947H4.18188L4.66424 25.5795V24.7947H4.88532V25.9699H4.64655L4.17143 25.2035V25.9699H3.95035Z"/> <path d="M3.82092 25.9699H3.56205L3.45915 25.7029H2.98805L2.89077 25.9699H2.63834L3.09738 24.7947H3.34901L3.82092 25.9699ZM3.38278 25.5049L3.22038 25.0689L3.06121 25.5049H3.38278Z"/> <path d="M2.26693 24.7947H2.50408V25.5386C2.50408 25.6359 2.49551 25.7107 2.47836 25.7631C2.45531 25.8315 2.41351 25.8865 2.35295 25.9282C2.29238 25.9693 2.21253 25.9899 2.11338 25.9899C1.99707 25.9899 1.90757 25.9576 1.84486 25.8929C1.78216 25.8277 1.75054 25.7323 1.75 25.6068L1.9743 25.5811C1.97698 25.6484 1.98689 25.696 2.00404 25.7238C2.02977 25.766 2.06889 25.7871 2.12141 25.7871C2.17447 25.7871 2.21199 25.7721 2.23396 25.7422C2.25594 25.7118 2.26693 25.649 2.26693 25.5538V24.7947Z"/> </g> <defs> <clipPath id="clip0_47_47"> <rect width="18.8" height="32"/> </clipPath> </defs> </svg> </a> <a href="https://www.climateneutral.org/brand/flickr" target="_blank"> <svg width="50" height="24" viewBox="0 0 50 24" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_47_77)"> <path d="M44.36 12.73V13.38H42.37V10.11H43.06V12.73H44.36Z" /> <path d="M41.07 5.76H43.45V6.39H41.81V7.05H43.42V7.68H41.81V8.4H43.45V9.03H41.07V5.76Z" /> <path d="M37.88 5.76H40.56V6.4H39.59V9.03H38.84V6.4H37.87L37.88 5.76Z" /> <path d="M32.62 10.75V10.11H35.11V10.75H34.22V13.38H33.52V10.75H32.62Z" /> <path d="M30.56 5.76H31.58V5.77L32.37 7.75L33.16 5.76H34.19V9.03H33.44V6.78L32.54 9.03H32.2V9.01L31.3 6.77V9.03H30.55L30.56 5.76Z" /> <path d="M30.66 12.79C31.1 12.79 31.35 12.52 31.35 12.05V10.11H32.05V12.06C32.05 12.93 31.54 13.43 30.66 13.43C29.78 13.43 29.26 12.93 29.26 12.07V10.11H29.96V12.04C29.96 12.52 30.21 12.78 30.66 12.78V12.79Z" /> <path d="M29.75 5.76H29V9.03H29.75V5.76Z" /> <path d="M26.4 5.76H27.15V8.39H28.55V9.03H26.4V5.76Z" /> <path d="M26.38 10.11H28.6V10.74H27.07V11.4H28.57V12.03H27.07V12.75H28.6V13.38H26.38V10.11Z" /> <path d="M19.6 8.01C19.71 8.28 19.71 8.57 19.6 8.84C19.49 9.11 19.27 9.32 19 9.43L16.52 10.43L16.49 10.37C16.38 10.1 16.38 9.81 16.49 9.54C16.6 9.27 16.82 9.06 17.09 8.95L19.57 7.95L19.6 8.01Z" /> <path d="M17.64 5.51L17.69 5.56C17.9 5.76 18.01 6.04 18.01 6.33C18.01 6.62 17.89 6.89 17.69 7.1L15.8 8.96L15.75 8.91C15.65 8.81 15.57 8.69 15.51 8.56C15.45 8.43 15.43 8.29 15.43 8.15C15.43 8.01 15.46 7.87 15.51 7.74C15.57 7.61 15.65 7.49 15.75 7.39L17.64 5.53V5.51Z" /> <path d="M13.92 6.45L14.95 4.02L15.02 4.05C15.29 4.16 15.5 4.37 15.61 4.64C15.72 4.91 15.72 5.2 15.61 5.47L14.58 7.9L14.52 7.87C14.25 7.76 14.04 7.55 13.92 7.28C13.81 7.01 13.81 6.72 13.92 6.45Z" /> <path d="M6.43 6.29C6.53 6.19 6.65 6.11 6.79 6.05C6.92 6 7.07 5.97 7.21 5.97C7.35 5.97 7.5 6 7.63 6.05C7.76 6.1 7.89 6.18 7.99 6.29L9.88 8.15L9.83 8.2C9.73 8.3 9.61 8.38 9.47 8.44C9.34 8.49 9.19 8.52 9.05 8.52C8.91 8.52 8.76 8.49 8.63 8.44C8.5 8.39 8.37 8.31 8.27 8.2L6.38 6.34L6.43 6.29Z" /> <path d="M4.88 8.91C4.94 8.78 5.02 8.66 5.12 8.56C5.22 8.46 5.34 8.38 5.48 8.33C5.61 8.28 5.76 8.25 5.9 8.25C6.04 8.25 6.19 8.28 6.32 8.33L8.8 9.34L8.77 9.4C8.71 9.53 8.63 9.65 8.53 9.75C8.43 9.85 8.31 9.93 8.17 9.98C8.04 10.03 7.89 10.06 7.75 10.06C7.6 10.06 7.46 10.03 7.32 9.98L4.85 8.97L4.87 8.91H4.88Z" /> <path d="M4.46 11.97C4.46 11.68 4.58 11.41 4.78 11.2C4.99 11 5.27 10.88 5.56 10.88H8.23V10.95C8.23 11.24 8.11 11.51 7.91 11.72C7.7 11.92 7.42 12.04 7.13 12.04H4.46V11.97Z" /> <path d="M5.26 14.92C5.15 14.65 5.15 14.36 5.26 14.09C5.37 13.82 5.59 13.61 5.86 13.5L8.34 12.5L8.37 12.56C8.48 12.83 8.48 13.12 8.37 13.39C8.26 13.66 8.04 13.87 7.77 13.98L5.29 14.96L5.26 14.91V14.92Z" /> <path d="M7.21 17.4L7.16 17.35C7.06 17.25 6.98 17.13 6.92 17C6.86 16.87 6.84 16.73 6.84 16.59C6.84 16.45 6.87 16.31 6.92 16.18C6.98 16.05 7.06 15.93 7.16 15.83L9.05 13.97L9.1 14.02C9.31 14.22 9.42 14.5 9.42 14.79C9.42 15.08 9.3 15.35 9.1 15.56L7.21 17.42V17.4Z" /> <path d="M10.93 16.48L9.9 18.9L9.84 18.87C9.71 18.82 9.58 18.74 9.48 18.63C9.38 18.53 9.3 18.41 9.24 18.28C9.18 18.15 9.16 18.01 9.16 17.86C9.16 17.72 9.19 17.58 9.25 17.45L10.28 15.02L10.34 15.05C10.61 15.16 10.82 15.37 10.94 15.64C11.05 15.91 11.05 16.2 10.94 16.47L10.93 16.48Z" /> <path d="M11.31 7.45C11.18 7.5 11.03 7.53 10.89 7.53C10.74 7.53 10.6 7.5 10.46 7.45C10.33 7.4 10.2 7.31 10.1 7.21C10 7.11 9.92 6.99 9.86 6.86L8.85 4.43L8.91 4.4C9.18 4.29 9.48 4.29 9.75 4.4C10.02 4.51 10.23 4.72 10.35 4.99L11.37 7.42L11.3 7.44L11.31 7.45Z" /> <path d="M13.01 19.28H12.94C12.65 19.28 12.37 19.17 12.16 18.96C11.95 18.76 11.84 18.48 11.84 18.19V15.56H11.91C12.2 15.56 12.48 15.67 12.69 15.88C12.9 16.08 13.01 16.36 13.01 16.65V19.28Z" /> <path d="M13.01 7.34H12.94C12.65 7.34 12.37 7.22 12.17 7.02C11.96 6.82 11.85 6.55 11.85 6.26V3.63H11.92C12.21 3.63 12.49 3.74 12.7 3.95C12.91 4.15 13.02 4.43 13.02 4.72V7.35L13.01 7.34Z" /> <path d="M15.93 18.5C15.8 18.55 15.65 18.58 15.51 18.58C15.36 18.58 15.22 18.55 15.09 18.5C14.96 18.45 14.83 18.37 14.73 18.27C14.63 18.17 14.55 18.05 14.49 17.92L13.49 15.48L13.55 15.45C13.68 15.4 13.83 15.37 13.97 15.37C14.11 15.37 14.26 15.4 14.39 15.46C14.52 15.52 14.64 15.6 14.75 15.7C14.85 15.8 14.93 15.92 14.99 16.05L16.01 18.48L15.93 18.5Z" /> <path d="M18.43 16.63C18.33 16.73 18.21 16.81 18.07 16.87C17.94 16.92 17.79 16.95 17.65 16.95C17.51 16.95 17.36 16.92 17.23 16.87C17.1 16.82 16.97 16.74 16.87 16.63L14.98 14.77L15.03 14.72C15.13 14.62 15.25 14.54 15.39 14.48C15.52 14.43 15.67 14.4 15.81 14.4C15.95 14.4 16.1 14.43 16.23 14.48C16.36 14.53 16.49 14.61 16.59 14.72L18.48 16.57L18.43 16.63Z" /> <path d="M19.98 14C19.9 14.2 19.75 14.37 19.57 14.49C19.39 14.61 19.18 14.67 18.96 14.67C18.82 14.67 18.68 14.64 18.55 14.59L16.07 13.58L16.1 13.52C16.21 13.25 16.43 13.04 16.7 12.94C16.97 12.83 17.27 12.83 17.54 12.94L20.01 13.95L19.98 14.01V14Z" /> <path d="M20.39 10.94C20.39 11.23 20.28 11.5 20.07 11.71C19.86 11.91 19.58 12.03 19.29 12.03H16.61V11.97C16.61 11.68 16.73 11.41 16.93 11.2C17.14 11 17.42 10.88 17.71 10.88H20.39V10.94Z" /> <path d="M24.39 5.71C24.68 5.7 24.97 5.77 25.22 5.91C25.47 6.05 25.68 6.26 25.82 6.51V6.53L25.18 6.84V6.82C25.1 6.68 24.99 6.56 24.85 6.48C24.71 6.4 24.55 6.36 24.39 6.36C24.25 6.36 24.12 6.39 24 6.44C23.88 6.49 23.76 6.57 23.67 6.67C23.58 6.77 23.5 6.88 23.46 7.01C23.41 7.14 23.39 7.27 23.4 7.4C23.4 7.53 23.41 7.67 23.46 7.79C23.51 7.92 23.58 8.03 23.67 8.13C23.76 8.23 23.88 8.31 24 8.36C24.12 8.41 24.26 8.44 24.4 8.44C24.56 8.44 24.72 8.4 24.86 8.32C25 8.24 25.11 8.12 25.19 7.98V7.96L25.83 8.26V8.28C25.68 8.53 25.48 8.74 25.22 8.88C24.97 9.02 24.68 9.09 24.39 9.08C24.16 9.08 23.93 9.05 23.71 8.97C23.49 8.89 23.3 8.76 23.13 8.61C22.97 8.45 22.84 8.26 22.75 8.05C22.66 7.84 22.62 7.61 22.63 7.39C22.63 7.16 22.67 6.94 22.75 6.73C22.84 6.52 22.97 6.33 23.13 6.17C23.3 6.01 23.49 5.89 23.71 5.81C23.93 5.73 24.16 5.69 24.39 5.7V5.71Z" /> <path d="M22.83 10.11H23.53L24.92 12.16V10.11H25.62V13.38H24.96L23.51 11.25V13.38H22.82L22.83 10.11Z" /> <path d="M24.7 18.3C24.63 18.41 24.53 18.51 24.41 18.57C24.29 18.63 24.15 18.67 24.02 18.66C23.78 18.66 23.56 18.57 23.39 18.4C23.22 18.24 23.13 18.01 23.13 17.78C23.13 17.55 23.22 17.32 23.39 17.16C23.56 17 23.79 16.9 24.02 16.9C24.16 16.9 24.29 16.93 24.41 16.99C24.53 17.05 24.63 17.15 24.7 17.26L24.74 17.32L24.43 17.48L24.4 17.43C24.36 17.37 24.3 17.32 24.24 17.28C24.17 17.24 24.1 17.23 24.03 17.23C23.9 17.25 23.77 17.31 23.68 17.41C23.59 17.51 23.54 17.64 23.54 17.77C23.54 17.9 23.59 18.03 23.68 18.13C23.77 18.23 23.89 18.3 24.03 18.31C24.1 18.31 24.18 18.29 24.24 18.26C24.31 18.22 24.36 18.17 24.4 18.11L24.43 18.06L24.74 18.23L24.7 18.27V18.3Z" /> <path d="M26.75 17.26H25.91V17.6H26.73V17.93H25.91V18.3H26.75V18.63H25.55V16.93H26.75V17.26Z" /> <path d="M31.07 17.26H30.57V18.63H30.21V17.26H29.71V16.93H31.07V17.26Z" /> <path d="M32.27 16.93H31.91V18.63H32.27V16.93Z" /> <path d="M34.43 17.26H33.59V17.6H34.41V17.93H33.59V18.63H33.23V16.93H34.43V17.26Z" /> <path d="M35.64 16.93H35.28V18.63H35.64V16.93Z" /> <path d="M37.79 17.26H36.96V17.6H37.78V17.93H36.96V18.3H37.79V18.63H36.6V16.93H37.79V17.26Z" /> <path d="M44.4 15.37H33.76H23.11V14.97H44.4V15.37Z" /> <path d="M35.93 5.76H36.84L38.14 9.03H37.33L37.12 8.48H35.66L35.45 9.03H34.63L35.92 5.76H35.93ZM36.39 6.43L35.86 7.84H36.91L36.39 6.43Z" /> <path d="M38.22 13.38H37.43L36.82 12.22H36.37V13.38H35.68V10.12H37.14C37.28 10.12 37.42 10.14 37.56 10.19C37.69 10.24 37.81 10.32 37.91 10.42C38.01 10.52 38.09 10.64 38.13 10.77C38.18 10.9 38.2 11.04 38.19 11.18C38.19 11.76 37.85 12.06 37.52 12.15L38.21 13.39L38.22 13.38ZM37.04 10.74H36.37V11.59H37.04C37.16 11.59 37.27 11.54 37.35 11.46C37.43 11.38 37.48 11.27 37.48 11.16C37.48 11.05 37.43 10.94 37.35 10.86C37.27 10.78 37.16 10.73 37.04 10.73V10.74Z" /> <path d="M40.66 10.13L41.86 13.38H41.11L40.92 12.83H39.57L39.38 13.38H38.63L39.83 10.12H40.66V10.13ZM40.71 12.2L40.23 10.79L39.74 12.2H40.71Z" /> <path d="M28.59 18.63L28.22 18.02H28.02V18.63H27.66V16.93H28.39C28.47 16.93 28.54 16.93 28.61 16.96C28.68 16.99 28.75 17.03 28.8 17.08C28.85 17.13 28.9 17.19 28.92 17.26C28.95 17.33 28.96 17.4 28.96 17.48C28.96 17.59 28.93 17.7 28.87 17.79C28.8 17.88 28.71 17.95 28.6 17.98L29.02 18.63H28.59ZM28.34 17.25H28V17.68H28.34C28.34 17.68 28.4 17.68 28.43 17.67C28.46 17.67 28.49 17.64 28.51 17.62C28.53 17.6 28.55 17.57 28.56 17.55C28.57 17.52 28.58 17.49 28.58 17.46C28.58 17.43 28.58 17.4 28.56 17.37C28.55 17.34 28.53 17.32 28.51 17.3C28.49 17.28 28.46 17.26 28.43 17.25C28.4 17.25 28.37 17.24 28.34 17.24V17.25Z" /> <path d="M39.32 18.63H38.69V16.93H39.32C39.55 16.93 39.77 17.02 39.93 17.18C40.09 17.34 40.18 17.56 40.18 17.78C40.18 18 40.09 18.22 39.93 18.38C39.77 18.54 39.55 18.63 39.32 18.63ZM39.32 17.26H39.05V18.3H39.32C39.39 18.3 39.46 18.3 39.53 18.27C39.6 18.24 39.65 18.21 39.7 18.16C39.75 18.11 39.79 18.05 39.81 17.99C39.83 17.93 39.85 17.86 39.84 17.79C39.84 17.72 39.84 17.65 39.81 17.59C39.79 17.52 39.75 17.47 39.7 17.42C39.65 17.37 39.59 17.33 39.53 17.31C39.46 17.29 39.39 17.27 39.32 17.28V17.26Z" /> <path d="M50 23.24H0V0H50V23.24ZM0.55 22.68H49.45V0.55H0.55V22.68Z" /> </g> <defs> <clipPath id="clip0_47_77"> <rect width="50" height="23.24" /> </clipPath> </defs> </svg> </a> <a href="https://www.conservationalliance.com/" target="_blank"> <svg width="60" height="22" viewBox="0 0 60 22" xmlns="http://www.w3.org/2000/svg"> <path d="M6.53461 15.8777C6.56429 15.874 6.54203 15.8703 6.53461 15.8777Z" /> <path d="M17.4647 11.8544L16.7552 10.6041L16.2762 9.76225V9.49715L15.6909 8.37583L15.8576 8.18238L15.7441 7.93161L15.8257 7.60202L15.4851 7.0539L15.4745 6.74222L15.3716 6.54161L15.1836 6.06514L14.9424 6.57743L14.9956 6.77447L14.6089 7.56619L14.655 7.89578L14.5166 8.24687L14.6798 8.4439L14.5166 8.80931L13.4914 7.63784L12.5832 6.70998L12.1185 6.46637L11.824 5.73555L11.4232 5.49552L11.0223 5.04413L10.5966 5.49552L10.3305 5.69972L9.1882 7.12913L8.94696 7.27601L8.49642 8.21821L8.33678 7.89936L8.46804 7.53395L8.22681 6.43771L8.32614 6.09021L8.06717 5.53135L8.01395 5.11936L7.85431 4.53542L7.47472 5.74271L7.54568 6.0723L7.26897 6.84612L7.40377 7.02524L7.21575 7.53753L7.29735 7.75607L7.03128 8.45107L7.11287 8.78065L6.8468 9.43983L6.59493 8.48689V8.04983L6.74038 7.79189L6.36788 6.65266L6.57009 6.62042L6.52398 6.36606L6.12665 5.15877L5.72577 6.58459L5.86058 6.6849L5.44906 8.08565L5.56613 8.22179L4.79276 10.6435L4.97724 10.7474L4.55862 11.704V11.8365C5.46325 11.7434 7.91107 11.5248 10.9336 11.5248C14.0271 11.5212 16.5813 11.7613 17.4647 11.8544Z" /> <path d="M16.7764 12.922C16.1024 12.8253 17.0922 12.1948 17.4221 11.9941C17.2412 11.9762 16.9893 11.9511 16.6807 11.9225C15.5064 11.8186 13.4701 11.6789 10.9371 11.6789C8.3013 11.6789 6.265 11.8222 5.16526 11.9225C4.89919 11.9476 4.68988 11.9691 4.53734 11.9834V12.098C4.53734 12.098 4.57636 12.1876 4.70407 12.3739C4.736 12.4169 4.76793 12.4634 4.8105 12.5172C4.84598 12.5638 4.88855 12.6175 4.93466 12.6712C5.01271 12.768 12.3987 12.6856 4.99852 12.8969C4.94176 12.8969 4.89209 13.0044 4.80695 13.0402C4.65795 13.1011 4.48767 13.1369 4.48412 13.2014C4.48412 13.2337 4.53024 13.2982 4.59765 13.377C4.6686 13.463 4.73245 13.6672 4.85307 13.6672C7.38958 13.6672 4.885 13.6994 5.03754 13.8893C5.11914 13.9932 5.14752 14.0756 5.06238 14.0827C4.25353 14.1365 5.07302 14.1723 5.22202 14.2798C5.28233 14.3227 5.34973 14.3693 5.41004 14.4159C5.59806 14.5556 5.74706 14.7132 5.5413 14.7097C4.49122 14.6882 5.33554 14.7598 5.42423 14.8135C5.44551 14.8279 5.47744 14.8924 5.51292 14.9855C5.5413 15.0607 5.89251 15.1718 5.22556 15.2614C5.15816 15.2721 6.16212 15.4154 5.67965 15.4978C5.26459 15.5695 4.65086 15.7235 5.52356 15.7665C5.63708 15.7737 6.88583 15.9277 5.84639 15.9277C5.80382 15.9277 5.66192 15.9456 5.60515 15.9492C5.43487 15.9599 5.69739 16.1856 5.5413 16.1856C4.94176 16.1856 5.86767 16.3827 5.80027 16.3898C5.69739 16.4042 5.87832 16.6549 5.79672 16.6872C5.78963 16.6908 5.6832 16.7445 5.67611 16.7445C5.48454 16.7696 6.00603 16.7373 5.87122 16.8771C5.82156 16.9272 5.51292 16.9917 5.89251 17.0096C5.93863 17.0132 5.56258 17.0669 5.64063 17.0669C5.65482 17.0669 5.99184 17.1708 6.00958 17.1708C6.14793 17.1708 5.8251 16.9523 6.07698 16.8914C6.1976 16.8627 6.10181 16.7123 6.17986 16.7015C6.44238 16.6585 6.54526 16.4651 6.47786 16.4507C5.77544 16.3182 6.46721 16.2286 6.51333 16.2C6.98516 15.8919 6.62685 15.9671 6.54881 15.9098C6.53107 15.8955 6.52752 15.8883 6.53107 15.8811C6.50978 15.8847 6.45657 15.8883 6.34305 15.8847C6.21888 15.8811 6.39981 15.6483 6.27564 15.6304C5.90315 15.5695 6.46012 15.4584 6.50978 15.3796C6.563 15.2972 6.38207 15.1646 6.45302 15.1431C6.65523 15.0894 6.89292 15.2112 6.90002 15.0679C6.90002 15.0572 6.71554 15.0464 6.71554 15.0321C6.71554 14.9318 6.26855 14.9819 6.24726 14.8637C6.24017 14.8243 6.45302 14.8494 6.40336 14.7741C6.29338 14.6058 6.06279 14.5735 6.27919 14.5305C6.3395 14.5198 6.43174 14.5126 6.56654 14.5126C7.00999 14.5198 6.90711 14.4517 6.7723 14.3872C6.66233 14.3335 6.52752 14.2833 6.64814 14.2833C6.75102 14.2833 6.79359 14.2153 6.81487 14.1293C6.8468 13.986 5.3852 13.8212 6.82197 13.7997C6.97806 13.7961 6.25791 13.9108 7.10932 13.9108C12.3739 13.9108 7.48891 13.9681 7.26187 14.0003C7.10932 14.0218 6.98871 14.0648 6.98516 14.1006C6.98161 14.158 7.14125 14.2332 7.29025 14.2762C7.39313 14.3084 7.41441 14.484 7.00644 14.5377C6.88228 14.5556 6.82906 14.6058 6.82197 14.6738C6.81487 14.7419 7.02418 14.7347 7.09513 14.8064C7.18382 14.8959 7.14835 15.0536 7.27606 15.0607C7.63791 15.1431 7.30089 15.1682 7.19446 15.2255C7.14125 15.2542 7.15189 15.4512 7.39313 15.4369C7.56696 15.4656 7.51729 15.5587 7.38248 15.6089C7.24413 15.659 7.58824 15.702 7.24768 15.7414C7.18737 15.7486 7.46053 15.8632 7.14125 15.8847C7.13416 15.9564 7.16608 16.0316 7.25477 16.0388C7.29734 16.0925 7.43215 16.1104 7.47472 16.157C7.53503 16.2215 7.52439 16.3218 7.52439 16.3218C7.52439 16.3218 7.95364 16.5009 7.645 16.5546C7.59889 16.5618 7.53858 16.569 7.45698 16.569C7.33991 16.569 7.12706 16.7553 7.45698 16.7553C7.66984 16.7553 7.55986 16.8663 7.5847 16.8878C7.74079 17.0204 7.67339 17.1601 7.52439 17.1601C7.04901 17.1601 7.46763 17.2317 7.73015 17.332C7.81884 17.3679 7.794 17.4682 7.84012 17.4717C7.93236 17.4789 7.97493 17.2066 8.07426 17.1995C8.26938 17.1851 8.19488 17.0813 7.99976 17.0311C7.61308 16.938 7.89333 16.7553 8.05298 16.723C8.13102 16.7051 6.97097 16.612 8.21616 16.5296C8.29776 16.526 8.24809 16.2215 8.29421 16.2C8.40773 16.1426 7.81884 15.9062 8.48933 15.9062C8.64542 15.9062 8.62413 15.788 8.22326 15.788C7.95364 15.788 7.94655 15.7235 8.14166 15.6984C8.3829 15.6698 7.90043 15.3008 8.37226 15.3187C8.46095 15.3223 8.68089 15.2721 8.54609 15.2614C8.0175 15.2184 8.46449 14.9927 8.32259 14.9497C8.18069 14.9067 6.87873 14.6523 8.48223 14.7097C9.67776 14.7526 8.63832 14.8709 8.93632 14.8852C9.4046 14.9103 10.1496 14.8888 10.1602 14.9282C10.1922 15.0464 8.87601 15.0894 8.73411 15.1001C8.50706 15.1181 8.8157 15.3258 8.95406 15.3688C9.08532 15.4118 10.327 15.4799 9.17755 15.5229C8.60994 15.5444 10.7278 15.9062 9.69905 16.0065C8.6667 16.1104 9.82321 16.2036 9.94383 16.2322C10.4192 16.3863 9.59617 16.5081 10.1283 16.5331C10.6959 16.5331 9.99704 16.6657 10.0928 16.6657C10.7704 16.6979 11.4977 16.6836 10.6959 16.8412C10.2063 16.938 10.2631 17.0275 10.5327 17.0311C10.9194 17.0383 10.9975 17.2496 11.0755 17.2604C11.1784 17.2747 11.1358 17.1242 11.1961 17.1063C11.4019 17.0419 11.2316 16.7982 11.4232 16.7445C11.4232 16.7445 12.4555 16.5976 11.824 16.5618C11.1926 16.526 13.683 16.0531 12.1185 16.0137C10.554 15.9743 12.5832 15.831 12.5832 15.831C12.5832 15.831 13.3779 15.6089 12.899 15.5909C8.28357 15.4082 13.463 15.4226 13.5411 15.3652C13.6262 15.2972 13.0302 15.2184 13.2324 15.1001C13.3034 15.0607 13.7184 15.0177 13.7929 15.0142C14.13 14.9927 14.2045 14.8565 13.9561 14.8386C13.4063 14.7956 13.5694 14.5879 14.0235 14.4625C14.1087 14.441 11.2174 14.3156 12.8493 14.2726C12.9202 14.269 12.5229 14.1078 13.0054 14.1078C13.832 14.1078 12.7819 14.2583 14.5237 14.2583C15.1907 14.2583 13.9561 14.4481 14.6869 14.5305C15.4177 14.6129 14.8182 14.5879 14.5237 14.6774C14.2293 14.767 14.4102 14.8959 14.6656 14.9425C14.9175 14.9891 14.7827 15.1718 14.6195 15.1897C14.4386 15.2112 14.8679 15.4763 14.7118 15.4691C14.4173 15.4548 14.953 15.7737 15.0062 15.7844C15.1091 15.8059 15.1588 15.9241 14.953 15.9313C14.8253 15.9349 14.9636 16.0961 15.0913 16.2179C15.1694 16.2931 15.1942 16.3791 15.2474 16.3576C15.3007 16.3361 15.0984 16.1606 15.1765 16.1606C15.3858 16.1606 15.1978 15.9635 15.3822 15.9599C15.7512 15.9528 15.2758 15.856 15.4851 15.8095C15.6944 15.7629 15.2794 15.5659 15.4958 15.5766C15.7122 15.5874 15.3397 15.2506 15.8363 15.1646C16.333 15.0787 15.7547 14.9174 15.7547 14.9174C15.7547 14.9174 13.2644 14.7276 15.8683 14.7276C16.1592 14.7276 15.5383 14.5843 15.7015 14.5843C16.3685 14.5699 15.3503 14.3944 15.9357 14.3944C16.1946 14.3944 16.2017 14.2905 16.262 14.2833C16.5742 14.2618 16.7268 14.1257 16.0208 14.1257C14.6514 14.1221 15.9711 13.7316 16.2904 13.7424C16.6097 13.7531 16.145 13.6636 16.2904 13.5454C16.3472 13.4988 2.3272 13.3089 16.7481 13.3089C17.0638 13.3125 17.2625 12.9901 16.7764 12.922Z" /> <path d="M20.6398 18.0306L20.246 19.3382H19.3839L20.8491 14.724H21.9133L23.3962 19.3382H22.5022L22.0872 18.0306H20.6398ZM21.9488 17.3929L21.5905 16.2573C21.5018 15.9779 21.4273 15.6626 21.3599 15.3939H21.3457C21.2783 15.659 21.2109 15.9814 21.1293 16.2573L20.7781 17.3929H21.9488Z" /> <path d="M24.613 14.4768H23.7722V19.3382H24.613V14.4768Z" /> <path d="M26.1598 14.4768H25.319V19.3382H26.1598V14.4768Z" /> <path d="M27.7526 15.0715C27.7526 15.3258 27.5681 15.5229 27.2772 15.5229C27.0005 15.5229 26.8161 15.3258 26.8161 15.0715C26.8161 14.81 27.0041 14.6129 27.2843 14.6129C27.5681 14.6129 27.7455 14.8135 27.7526 15.0715ZM26.8622 16.0029H27.7029V19.3382H26.8622V16.0029Z" /> <path d="M30.9632 18.5357C30.9632 18.8367 30.9774 19.1304 31.0093 19.3382H30.2572L30.204 18.9692H30.1827C29.9805 19.2307 29.6328 19.4135 29.2071 19.4135C28.5437 19.4135 28.1712 18.9262 28.1712 18.4211C28.1712 17.5792 28.9091 17.1565 30.1295 17.1601V17.1063C30.1295 16.8878 30.0408 16.526 29.459 16.526C29.1326 16.526 28.7956 16.6299 28.5721 16.7732L28.4089 16.225C28.6537 16.0746 29.0794 15.9313 29.6009 15.9313C30.6581 15.9313 30.9632 16.6084 30.9632 17.3356V18.5357ZM30.1508 17.7082C29.5619 17.6939 28.9978 17.8228 28.9978 18.3315C28.9978 18.6611 29.2071 18.8116 29.4732 18.8116C29.8067 18.8116 30.0479 18.5931 30.1224 18.353C30.1437 18.2921 30.1508 18.2241 30.1508 18.1667V17.7082Z" /> <path d="M31.6088 16.9953C31.6088 16.612 31.6017 16.2895 31.5804 16.0029H32.3112L32.3503 16.5045H32.3716C32.5135 16.243 32.8718 15.9277 33.4216 15.9277C33.9963 15.9277 34.5959 16.3039 34.5959 17.3571V19.3346H33.7622V17.4538C33.7622 16.9738 33.5848 16.612 33.1307 16.612C32.7973 16.612 32.5667 16.852 32.4815 17.1063C32.4531 17.1816 32.4461 17.2855 32.4461 17.3786V19.3346H31.6088V16.9953Z" /> <path d="M37.7142 19.2343C37.5368 19.3167 37.1927 19.4134 36.7776 19.4134C35.7488 19.4134 35.0748 18.7435 35.0748 17.7082C35.0748 16.7087 35.7524 15.9277 36.9124 15.9277C37.2175 15.9277 37.5297 15.9958 37.7177 16.0853L37.5687 16.7158C37.4339 16.6549 37.2353 16.5869 36.9373 16.5869C36.2987 16.5869 35.9191 17.0598 35.9262 17.6688C35.9262 18.353 36.3661 18.7435 36.9373 18.7435C37.2282 18.7435 37.4339 18.6826 37.5936 18.6146L37.7142 19.2343Z" /> <path d="M38.6649 17.9052C38.6862 18.5071 39.1545 18.7686 39.6831 18.7686C40.0698 18.7686 40.3465 18.7149 40.5984 18.6181L40.719 19.1985C40.4352 19.3131 40.0414 19.4099 39.566 19.4099C38.4947 19.4099 37.8632 18.7399 37.8632 17.7189C37.8632 16.7947 38.4202 15.9241 39.4773 15.9241C40.5558 15.9241 40.8999 16.8126 40.8999 17.547C40.8999 17.7046 40.8857 17.8264 40.8715 17.9016H38.6649V17.9052ZM40.1159 17.3177C40.123 17.0096 39.9882 16.5045 39.4312 16.5045C38.9168 16.5045 38.7004 16.9774 38.6649 17.3177H40.1159Z" /> <path d="M22.8997 13.1155C22.7046 13.2193 22.2682 13.3268 21.7219 13.3268C20.2709 13.3268 19.3911 12.4025 19.3911 10.9982C19.3911 9.47924 20.4341 8.56212 21.8319 8.56212C22.3817 8.56212 22.772 8.67676 22.9422 8.76632L22.7578 9.43625C22.5414 9.33952 22.2434 9.25712 21.8638 9.25712C20.9343 9.25712 20.2638 9.84465 20.2638 10.9552C20.2638 11.9691 20.8527 12.6175 21.8567 12.6175C22.1973 12.6175 22.5485 12.5494 22.7649 12.4455L22.8997 13.1155Z" /> <path d="M26.4081 11.5571C26.4081 12.7823 25.5531 13.3304 24.7124 13.3304C23.7758 13.3304 23.0592 12.6784 23.0592 11.6108C23.0592 10.5146 23.7722 9.84465 24.7656 9.84465C25.7518 9.84465 26.4081 10.5432 26.4081 11.5571ZM23.9212 11.5893C23.9212 12.2342 24.2334 12.7178 24.7407 12.7178C25.2161 12.7178 25.546 12.2449 25.546 11.575C25.546 11.0555 25.3154 10.4608 24.7478 10.4608C24.1589 10.4608 23.9212 11.0376 23.9212 11.5893Z" /> <path d="M26.8977 10.9122C26.8977 10.5289 26.8906 10.2065 26.8693 9.91988H27.6001L27.6391 10.4214H27.6604C27.8023 10.1599 28.1606 9.84465 28.7105 9.84465C29.2852 9.84465 29.8812 10.2208 29.8812 11.2741V13.2552H29.0475V11.3744C29.0475 10.8943 28.8701 10.5325 28.416 10.5325C28.0825 10.5325 27.852 10.7725 27.7668 11.0233C27.7384 11.0985 27.7313 11.2024 27.7313 11.2991V13.2552H26.8906V10.9122H26.8977Z" /> <path d="M30.502 12.4814C30.6936 12.596 31.0519 12.7214 31.3499 12.7214C31.7153 12.7214 31.8785 12.5709 31.8785 12.3524C31.8785 12.1267 31.7436 12.012 31.3357 11.8652C30.6936 11.6395 30.4204 11.2848 30.4275 10.8943C30.4275 10.3068 30.91 9.84823 31.6762 9.84823C32.0416 9.84823 32.3609 9.94496 32.5525 10.0453L32.3893 10.64C32.2474 10.5576 31.9813 10.4501 31.6904 10.4501C31.3924 10.4501 31.2292 10.5934 31.2292 10.7976C31.2292 11.009 31.3853 11.1128 31.804 11.2633C32.3999 11.4818 32.6767 11.7899 32.6837 12.2843C32.6837 12.8862 32.2155 13.3304 31.3428 13.3304C30.9419 13.3304 30.5836 13.2265 30.3388 13.0904L30.502 12.4814Z" /> <path d="M33.7622 11.8222C33.7835 12.424 34.2518 12.6856 34.7804 12.6856C35.167 12.6856 35.4437 12.6318 35.6956 12.5351L35.8162 13.1155C35.5324 13.2337 35.1387 13.3268 34.6633 13.3268C33.5919 13.3268 32.9604 12.6569 32.9604 11.6359C32.9604 10.7116 33.5174 9.84107 34.5746 9.84107C35.6531 9.84107 35.9972 10.7295 35.9972 11.4639C35.9972 11.6216 35.983 11.7434 35.9688 11.8186H33.7622V11.8222ZM35.2132 11.2347C35.2202 10.9266 35.0854 10.4214 34.5285 10.4214C34.0141 10.4214 33.7977 10.8943 33.7622 11.2347H35.2132Z" /> <path d="M36.4761 10.9946C36.4761 10.5432 36.469 10.2208 36.4477 9.91988H37.1714L37.1998 10.5576H37.2282C37.3914 10.0847 37.778 9.84465 38.1293 9.84465C38.2109 9.84465 38.257 9.85182 38.3244 9.86615V10.6615C38.257 10.6471 38.1825 10.6328 38.0796 10.6328C37.6787 10.6328 37.4091 10.8943 37.3346 11.2705C37.3204 11.3457 37.3062 11.4353 37.3062 11.532V13.2552H36.4725V10.9946H36.4761Z" /> <path d="M39.3674 9.91988L39.903 11.6108C39.9988 11.9046 40.0662 12.1733 40.1265 12.4455H40.1478C40.2081 12.1733 40.2826 11.9117 40.3713 11.6108L40.8928 9.91988H41.7726L40.5132 13.2552H39.6937L38.4663 9.92347H39.3674V9.91988Z" /> <path d="M44.6071 12.4527C44.6071 12.7536 44.6213 13.0474 44.6532 13.2516H43.9012L43.8479 12.8826H43.8267C43.6244 13.1441 43.2768 13.3268 42.8511 13.3268C42.1877 13.3268 41.8152 12.8396 41.8152 12.3345C41.8152 11.4926 42.5531 11.0699 43.7734 11.0734V11.0197C43.7734 10.8012 43.6848 10.4393 43.103 10.4393C42.7766 10.4393 42.4396 10.5432 42.2161 10.6865L42.0529 10.1384C42.2977 9.98795 42.7234 9.84465 43.2449 9.84465C44.302 9.84465 44.6071 10.5217 44.6071 11.249V12.4527ZM43.7947 11.6251C43.2058 11.6108 42.6418 11.7398 42.6418 12.2485C42.6418 12.5781 42.8511 12.7285 43.1171 12.7285C43.4506 12.7285 43.6918 12.51 43.7663 12.27C43.7876 12.2091 43.7947 12.141 43.7947 12.0837V11.6251Z" /> <path d="M46.1326 9.06367V9.91988H46.9272V10.5504H46.1326V12.0228C46.1326 12.4276 46.2426 12.639 46.5583 12.639C46.7144 12.639 46.7889 12.6247 46.8847 12.5996L46.8988 13.2444C46.7782 13.291 46.5618 13.334 46.2958 13.334C45.9907 13.334 45.7317 13.2229 45.5756 13.0546C45.3982 12.8611 45.3166 12.5602 45.3166 12.1231V10.5576H44.8413V9.92705H45.3166V9.31086L46.1326 9.06367Z" /> <path d="M48.2469 8.98844C48.2469 9.24279 48.0624 9.43983 47.7715 9.43983C47.4948 9.43983 47.3104 9.24279 47.3104 8.98844C47.3104 8.72692 47.5019 8.52988 47.7786 8.52988C48.066 8.52988 48.2398 8.7305 48.2469 8.98844ZM47.36 9.91988H48.2008V13.2552H47.36V9.91988Z" /> <path d="M52.0357 11.5571C52.0357 12.7823 51.1807 13.3304 50.34 13.3304C49.4034 13.3304 48.6868 12.6784 48.6868 11.6108C48.6868 10.5146 49.3999 9.84465 50.3967 9.84465C51.3794 9.84465 52.0357 10.5432 52.0357 11.5571ZM49.5489 11.5893C49.5489 12.2342 49.8611 12.7178 50.3684 12.7178C50.8437 12.7178 51.1737 12.2449 51.1737 11.575C51.1737 11.0555 50.9431 10.4608 50.3755 10.4608C49.7866 10.4608 49.5489 11.0376 49.5489 11.5893Z" /> <path d="M52.5253 10.9122C52.5253 10.5289 52.5182 10.2065 52.4969 9.91988H53.2277L53.2667 10.4214H53.288C53.4299 10.1599 53.7882 9.84465 54.3381 9.84465C54.9128 9.84465 55.5123 10.2208 55.5123 11.2741V13.2552H54.6787V11.3744C54.6787 10.8943 54.5013 10.5325 54.0472 10.5325C53.7137 10.5325 53.4831 10.7725 53.398 11.0233C53.3696 11.0985 53.3625 11.2024 53.3625 11.2991V13.2552H52.5217V10.9122H52.5253Z" /> <path d="M23.0734 2.59013H23.9141V4.57482H23.9283C24.0312 4.4172 24.1731 4.28106 24.3399 4.1915C24.503 4.09477 24.6982 4.04104 24.911 4.04104C25.4751 4.04104 26.064 4.4172 26.064 5.48477V7.44797H25.2303V5.57792C25.2303 5.0907 25.0529 4.72887 24.5917 4.72887C24.2654 4.72887 24.0348 4.9474 23.9461 5.20176C23.9177 5.26983 23.9106 5.35939 23.9106 5.45611V7.44797H23.0698V2.59013H23.0734Z" /> <path d="M27.3446 6.01856C27.3659 6.62042 27.8342 6.88194 28.3628 6.88194C28.7495 6.88194 29.0262 6.8282 29.2781 6.73148L29.3987 7.31184C29.1149 7.43006 28.7211 7.5232 28.2457 7.5232C27.1744 7.5232 26.5429 6.85328 26.5429 5.83228C26.5429 4.908 27.0999 4.03745 28.157 4.03745C29.2355 4.03745 29.5796 4.92591 29.5796 5.66032C29.5796 5.81795 29.5654 5.93975 29.5512 6.01498H27.3446V6.01856ZM28.7956 5.42745C28.8027 5.11936 28.6679 4.61423 28.1109 4.61423C27.5965 4.61423 27.3801 5.08712 27.3446 5.42745H28.7956Z" /> <path d="M20.6895 3.53949H19.3875V2.83374H22.8357V3.53949H21.5231V7.44797H20.6895V3.53949Z" /> </svg> </a> <a href="https://www.tugboatinstitute.com/certified-evergreen/" target="_blank"> <svg width="30" height="32" viewBox="0 0 30 32" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_47_76)"> <path d="M21.8463 25.7108H5.78874V6.17412H21.8463V25.7108ZM8.89855 9.51944V22.4993H18.7686V19.9568H11.6979V17.2806H17.9657V14.6043H11.6765V12.0619H18.7686V9.51944H8.89855Z" /> <path d="M3.79627 3.21686C3.55808 3.21686 3.33863 3.17672 3.13657 3.09777C2.93451 3.01748 2.76056 2.90508 2.61202 2.76056C2.46483 2.61604 2.34975 2.4461 2.26679 2.25073C2.18382 2.05536 2.14234 1.84126 2.14234 1.60977C2.14234 1.37827 2.18382 1.16417 2.26679 0.968805C2.34975 0.773438 2.46617 0.603496 2.6147 0.458978C2.76323 0.31446 2.93853 0.202057 3.14059 0.121769C3.34264 0.0414817 3.5621 0.00267601 3.80028 0.00267601C4.03847 0.00267601 4.24454 0.0414817 4.4466 0.117755C4.64866 0.194028 4.8186 0.309107 4.95643 0.462992L4.74366 0.675755C4.61386 0.54328 4.47069 0.446935 4.31412 0.389395C4.15756 0.330517 3.98896 0.301079 3.80831 0.301079C3.6183 0.301079 3.443 0.333194 3.27975 0.398762C3.1165 0.46433 2.976 0.555323 2.85556 0.674416C2.73513 0.79351 2.64146 0.931337 2.57322 1.09057C2.50497 1.24981 2.47152 1.42243 2.47152 1.61244C2.47152 1.80246 2.50497 1.97642 2.57322 2.13431C2.64146 2.29221 2.73513 2.43138 2.85556 2.55047C2.976 2.66957 3.11784 2.7619 3.27975 2.82613C3.443 2.89036 3.6183 2.92381 3.80831 2.92381C3.99833 2.92381 4.15756 2.89303 4.31412 2.83282C4.47069 2.7726 4.61386 2.67626 4.74366 2.54378L4.95643 2.75654C4.81726 2.91043 4.64732 3.02551 4.4466 3.10446C4.24454 3.18341 4.02776 3.22221 3.79627 3.22221V3.21686Z" /> <path d="M5.98277 2.89972H7.88425V3.18876H5.64824V0.026762H7.81601V0.315798H5.98143V2.89972H5.98277ZM5.94664 1.44116H7.61796V1.72618H5.94664V1.44116Z" /> <path d="M8.64832 3.18876V0.026762H9.83122C10.0988 0.026762 10.329 0.0695821 10.523 0.155222C10.7157 0.240863 10.8643 0.36397 10.9686 0.525884C11.073 0.686459 11.1239 0.881826 11.1239 1.11065C11.1239 1.33947 11.0717 1.52547 10.9686 1.68604C10.8643 1.84662 10.7157 1.97106 10.523 2.0567C10.3303 2.14234 10.1002 2.18516 9.83122 2.18516H8.83298L8.98151 2.03128V3.18742H8.64698L8.64832 3.18876ZM8.98285 2.05938L8.83432 1.90148H9.8232C10.139 1.90148 10.3799 1.8319 10.5431 1.69407C10.7077 1.5549 10.7893 1.36088 10.7893 1.11198C10.7893 0.863092 10.7077 0.663711 10.5431 0.524546C10.3785 0.386719 10.139 0.317136 9.8232 0.317136H8.83432L8.98285 0.159237V2.05938ZM10.8081 3.18876L9.99448 2.04198H10.3558L11.1734 3.18876H10.8081Z" /> <path d="M12.4607 3.18876V0.315798H11.35V0.026762H13.9072V0.315798H12.7965V3.18876H12.462H12.4607Z" /> <path d="M14.417 3.18876V0.026762H14.7515V3.18876H14.417Z" /> <path d="M16.0937 3.18876H15.7591V0.026762H17.9269V0.315798H16.0923V3.18876H16.0937ZM16.0575 1.55758H17.7289V1.84662H16.0575V1.55758Z" /> <path d="M18.596 3.18876V0.026762H18.9305V3.18876H18.596Z" /> <path d="M20.2713 2.89972H22.1728V3.18876H19.9368V0.026762H22.1045V0.315798H20.27V2.89972H20.2713ZM20.2352 1.44116H21.9065V1.72618H20.2352V1.44116Z" /> <path d="M22.9369 3.18876V0.026762H24.0903C24.4275 0.026762 24.7233 0.0936684 24.9775 0.227481C25.2317 0.361294 25.4298 0.547294 25.5716 0.785481C25.7135 1.02367 25.7844 1.29798 25.7844 1.60709C25.7844 1.9162 25.7135 2.19185 25.5716 2.4287C25.4298 2.66689 25.2317 2.85289 24.9775 2.9867C24.7233 3.12051 24.4275 3.18742 24.0903 3.18742H22.9369V3.18876ZM23.2714 2.89972H24.0729C24.3526 2.89972 24.5961 2.84486 24.8022 2.73513C25.0083 2.62541 25.1689 2.47286 25.2839 2.27883C25.3977 2.0848 25.4552 1.86134 25.4552 1.60843C25.4552 1.35552 25.3977 1.12804 25.2839 0.935351C25.1689 0.742661 25.0096 0.591452 24.8022 0.481726C24.5961 0.371999 24.3526 0.317136 24.0729 0.317136H23.2714V2.89972Z" /> <path d="M0.710546 31.3162H2.39257V31.8903H0V28.7992H2.33637V29.3733H0.710546V31.3162ZM0.657021 30.0396H2.14502V30.6003H0.658359V30.0396H0.657021Z" /> <path d="M3.83775 31.8903L2.49963 28.7992H3.27708L4.44259 31.537H3.98762L5.17053 28.7992H5.88108L4.54295 31.8903H3.83642H3.83775Z" /> <path d="M6.84052 31.3162H8.52254V31.8903H6.12863V28.7992H8.465V29.3733H6.84052V31.3162ZM6.78699 30.0396H8.27499V30.6003H6.78699V30.0396Z" /> <path d="M9.08321 31.8903V28.7992H10.4213C10.6983 28.7992 10.9365 28.8434 11.1372 28.9343C11.338 29.024 11.4918 29.1525 11.6002 29.3211C11.7086 29.4897 11.7635 29.6877 11.7635 29.9179C11.7635 30.148 11.7086 30.3501 11.6002 30.516C11.4918 30.6819 11.3366 30.8091 11.1372 30.896C10.9365 30.983 10.6983 31.0258 10.4213 31.0258H9.47662L9.80313 30.7167V31.8916H9.08321V31.8903ZM9.80313 30.7957L9.47662 30.4558H10.3825C10.6007 30.4558 10.7652 30.409 10.8776 30.314C10.99 30.2203 11.0449 30.0878 11.0449 29.9165C11.0449 29.7453 10.9887 29.6141 10.8776 29.5218C10.7652 29.4295 10.6007 29.3826 10.3825 29.3826H9.47662L9.80313 29.0427V30.7957ZM11.0529 31.8903L10.2755 30.7689H11.0436L11.821 31.8903H11.0529Z" /> <path d="M13.8122 31.9425C13.5673 31.9425 13.3425 31.9037 13.1364 31.8247C12.9303 31.7471 12.7524 31.636 12.6025 31.4915C12.4526 31.347 12.3349 31.1784 12.2519 30.9844C12.1676 30.7903 12.1261 30.5762 12.1261 30.3434C12.1261 30.1106 12.1676 29.8978 12.2519 29.7024C12.3362 29.5071 12.454 29.3385 12.6078 29.1953C12.7617 29.0521 12.941 28.9397 13.1471 28.8621C13.3532 28.7845 13.5793 28.7443 13.8269 28.7443C14.1012 28.7443 14.3474 28.7898 14.5669 28.8808C14.7863 28.9718 14.971 29.1043 15.1209 29.2782L14.6659 29.7024C14.5508 29.582 14.4277 29.4923 14.2952 29.4348C14.1628 29.3773 14.0169 29.3492 13.8577 29.3492C13.7105 29.3492 13.5753 29.3733 13.4509 29.4214C13.3264 29.4696 13.2207 29.5392 13.1311 29.6262C13.0414 29.7145 12.9718 29.8189 12.9236 29.9393C12.8755 30.0597 12.8514 30.1935 12.8514 30.3407C12.8514 30.4879 12.8755 30.6137 12.9236 30.7355C12.9718 30.8572 13.0414 30.963 13.1311 31.0513C13.2207 31.1396 13.3264 31.2092 13.4495 31.2587C13.5713 31.3082 13.7065 31.3336 13.8536 31.3336C14.0008 31.3336 14.132 31.3095 14.2671 31.2627C14.4009 31.2159 14.5307 31.1382 14.6579 31.0285L15.0647 31.545C14.8934 31.6748 14.698 31.7725 14.4772 31.8381C14.2564 31.905 14.0356 31.9371 13.8148 31.9371L13.8122 31.9425ZM15.062 30.128V31.5491L14.409 31.4433V30.6619H13.8911V30.1266H15.062V30.128Z" /> <path d="M15.715 31.8903V28.7992H17.0531C17.3301 28.7992 17.5683 28.8434 17.769 28.9343C17.9697 29.024 18.1236 29.1525 18.232 29.3211C18.3404 29.4883 18.3953 29.6877 18.3953 29.9179C18.3953 30.148 18.3404 30.3501 18.232 30.516C18.1236 30.6819 17.9684 30.8091 17.769 30.896C17.5683 30.983 17.3301 31.0258 17.0531 31.0258H16.1084L16.4349 30.7167V31.8916H15.715V31.8903ZM16.4349 30.7957L16.1084 30.4558H17.0143C17.2324 30.4558 17.397 30.409 17.5094 30.314C17.6218 30.2203 17.6767 30.0878 17.6767 29.9165C17.6767 29.7453 17.6205 29.6141 17.5094 29.5218C17.397 29.4295 17.2324 29.3826 17.0143 29.3826H16.1084L16.4349 29.0427V30.7957ZM17.6847 31.8903L16.9073 30.7689H17.6753L18.4528 31.8903H17.6847Z" /> <path d="M19.6638 31.3162H21.3458V31.8903H18.9519V28.7992H21.2883V29.3733H19.6638V31.3162ZM19.6103 30.0396H21.0983V30.6003H19.6103V30.0396Z" /> <path d="M22.617 31.3162H24.2991V31.8903H21.9052V28.7992H24.2415V29.3733H22.617V31.3162ZM22.5635 30.0396H24.0515V30.6003H22.5635V30.0396Z" /> <path d="M24.8611 31.8903V28.7992H25.4525L27.2764 31.0245H26.9887V28.7992H27.6952V31.8903H27.1038L25.2799 29.665H25.5663V31.8903H24.8597H24.8611Z" /> <path d="M28.4687 31.5986V30.9482H28.7644C28.8246 30.9482 28.8755 30.9576 28.9183 30.9777C28.9611 30.9977 28.9946 31.0245 29.0187 31.0606C29.0414 31.0968 29.0534 31.1396 29.0534 31.1891C29.0534 31.2386 29.0414 31.2814 29.0187 31.3176C28.9959 31.3523 28.9625 31.3804 28.9183 31.3992C28.8755 31.4179 28.8233 31.4273 28.7644 31.4273H28.569L28.652 31.3497V31.6012H28.4673L28.4687 31.5986ZM28.6533 31.3697L28.5704 31.2841H28.755C28.7938 31.2841 28.8219 31.2761 28.842 31.2587C28.8621 31.2413 28.8715 31.2185 28.8715 31.1878C28.8715 31.157 28.8621 31.1356 28.842 31.1182C28.8219 31.1008 28.7938 31.0927 28.755 31.0927H28.5704L28.6533 31.0084V31.3697ZM28.8701 31.5986L28.7082 31.3617H28.9036L29.0668 31.5986H28.8701Z" /> <path d="M28.7376 30.7288C29.0334 30.7288 29.2729 30.9683 29.2729 31.264C29.2729 31.5598 29.0334 31.7993 28.7376 31.7993C28.4419 31.7993 28.2024 31.5598 28.2024 31.264C28.2024 30.9683 28.4419 30.7288 28.7376 30.7288ZM28.7376 30.5281C28.3309 30.5281 28.0017 30.8572 28.0017 31.264C28.0017 31.6708 28.3309 32 28.7376 32C29.1444 32 29.4736 31.6708 29.4736 31.264C29.4736 30.8572 29.1444 30.5281 28.7376 30.5281Z" /> </g> <defs> <clipPath id="clip0_47_76"> <rect width="29.4736" height="32" /> </clipPath> </defs> </svg> </a> </div> </div> <div class="pure-u-1-8 foot-social foot-logos"> <a class="ft-icon" href="https://www.facebook.com/flickr"> <svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"> <path d="M22.0738 12.0367C22.0738 6.49369 17.5801 2 12.0367 2C6.49339 2 2 6.49369 2 12.0367C2 16.7439 5.24049 20.6935 9.61224 21.7781V15.1038H7.54244V12.0367H9.61224V10.7152C9.61224 7.29885 11.1581 5.71564 14.5121 5.71564C15.1481 5.71564 16.2453 5.84029 16.6939 5.96495V8.74536C16.457 8.72036 16.0456 8.70802 15.5344 8.70802C13.8885 8.70802 13.2526 9.33131 13.2526 10.9522V12.0367H16.531L15.968 15.1038H13.2529V22C18.2226 21.3999 22.0738 17.1682 22.0738 12.0367Z" /> </svg> </a> <a class="ft-icon" href="https://www.youtube.com/user/smugmug"> <svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M19.8153 5.41818C20.6763 5.64867 21.353 6.32532 21.5835 7.18637H21.5818C22 8.74547 22 12.0003 22 12.0003C22 12.0003 22 15.2552 21.5818 16.8143C21.3513 17.6753 20.6747 18.352 19.8136 18.5825C18.2545 19.0007 12 19.0007 12 19.0007C12 19.0007 5.74547 19.0007 4.18637 18.5825C3.32532 18.352 2.64867 17.6753 2.41818 16.8143C2 15.2552 2 12.0003 2 12.0003C2 12.0003 2 8.74547 2.41818 7.18637C2.64867 6.32532 3.32532 5.64867 4.18637 5.41818C5.74547 5 12 5 12 5C12 5 18.2545 5 19.8153 5.41818ZM15.1972 12.0003L9.99967 15V9.00066L15.1972 12.0003Z" fill="white"/> </svg> </a> <a class="ft-icon" href="https://www.instagram.com/flickr/"> <svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"> <path d="M7.85847 2.06918C6.79446 2.11938 6.06765 2.28978 5.43264 2.53858C4.77523 2.79478 4.21803 3.13838 3.66362 3.69498C3.10862 4.25198 2.76781 4.81018 2.51341 5.46818C2.26721 6.10478 2.10021 6.83198 2.05341 7.89657C2.0066 8.96337 1.996 9.30357 2.0012 12.0192C2.0064 14.7344 2.0184 15.0752 2.06921 16.1422C2.12001 17.206 2.28981 17.9324 2.53861 18.5678C2.79521 19.2252 3.13842 19.7822 3.69522 20.3368C4.25183 20.8914 4.81043 21.232 5.46884 21.4866C6.10485 21.7326 6.83226 21.9 7.89667 21.9466C8.96328 21.9936 9.30388 22.004 12.0187 21.9988C14.7347 21.9936 15.0753 21.9816 16.142 21.931C17.206 21.8802 17.932 21.7098 18.5678 21.4616C19.2252 21.2044 19.7824 20.8618 20.3368 20.305C20.8912 19.7484 21.232 19.1898 21.4864 18.5314C21.7326 17.8954 21.9002 17.168 21.9464 16.1042C21.993 15.037 22.004 14.696 21.9988 11.981C21.9936 9.26557 21.9814 8.92537 21.9308 7.85897C21.8802 6.79438 21.7098 6.06818 21.4614 5.43258C21.2044 4.77518 20.8616 4.21858 20.305 3.66358C19.7484 3.10918 19.1898 2.76778 18.5314 2.51398C17.895 2.26778 17.168 2.09998 16.1036 2.05398C15.0371 2.00638 14.6967 1.99598 11.9809 2.00118C9.26568 2.00638 8.92528 2.01798 7.85867 2.06918M7.97527 20.1468C7.00026 20.1044 6.47085 19.9424 6.11805 19.8066C5.65084 19.6258 5.31744 19.409 4.96644 19.0608C4.61623 18.7112 4.39883 18.3788 4.21643 17.9126C4.07943 17.5598 3.91443 17.031 3.86882 16.056C3.81922 15.002 3.80782 14.6858 3.80302 12.0156C3.79782 9.34617 3.80762 9.02977 3.85362 7.97497C3.89542 7.00078 4.05843 6.47058 4.19383 6.11818C4.37463 5.65038 4.59063 5.31758 4.93964 4.96658C5.28924 4.61578 5.62164 4.39898 6.08825 4.21658C6.44085 4.07878 6.96946 3.91518 7.94407 3.86898C8.99868 3.81898 9.31468 3.80838 11.9841 3.80318C14.6541 3.79798 14.9705 3.80738 16.0254 3.85378C16.9996 3.89618 17.5298 4.05758 17.882 4.19398C18.3496 4.37478 18.683 4.59018 19.0336 4.93978C19.3842 5.28938 19.6016 5.62118 19.784 6.08878C19.9216 6.44038 20.0854 6.96978 20.1314 7.94397C20.1816 8.99857 20.193 9.31477 20.1978 11.9844C20.203 14.6546 20.1932 14.9708 20.147 16.025C20.1046 17 19.9428 17.5296 19.8068 17.8828C19.626 18.3496 19.4098 18.683 19.0606 19.034C18.7114 19.3836 18.379 19.6016 17.912 19.784C17.5602 19.9214 17.0308 20.0854 16.0568 20.1316C15.0021 20.1812 14.6861 20.1926 12.0157 20.1974C9.34628 20.2026 9.03028 20.1926 7.97547 20.1468M16.1274 6.65458C16.1286 7.31678 16.6672 7.85297 17.3294 7.85177C17.992 7.85057 18.5282 7.31238 18.5272 6.64998C18.5258 5.98778 17.9874 5.45118 17.3248 5.45238C16.6622 5.45358 16.126 5.99218 16.1272 6.65438M6.86546 12.0098C6.87086 14.8458 9.17428 17.1398 12.0097 17.1342C14.8453 17.1286 17.1406 14.826 17.1352 11.99C17.1296 9.15497 14.8259 6.85978 11.9899 6.86518C9.15448 6.87078 6.85986 9.17437 6.86546 12.0098ZM8.66668 12.0062C8.66348 10.1656 10.1533 8.67017 11.9935 8.66697C13.8341 8.66337 15.3297 10.1526 15.3333 11.9936C15.3369 13.8346 13.8471 15.3296 12.0061 15.3332C10.1657 15.3368 8.67008 13.8474 8.66668 12.0064"/> </svg> </a> </div> </div> </div> </footer> </div> <div id="global-dialog-background"></div> <div id="page-gen"><!-- page generated by aws-www-live (in us-east-1) at 08:28:31 11/23/24 in 1732379311846ms --></div> <!--beacons: 0 --> <script type="x-mustache-template" id="camera_finder_model"> <div id="photo-list-holder" class="static loaded">{{>inc_photos_list}}</div> </script> <script type="x-mustache-template" id="inc_photos_list"> {{^deferred}}<style>.infinite-spinner.nope{display:none;}.infinite-spinner{position:fixed;bottom:10%;top:auto;left:50%;opacity:1;z-index:20;margin:0 0 0 -185px;width:338px;text-align:center;padding:8px 15px;background:#000;background:rgba(0,0,0,0.5);-moz-border-radius:13px;-webkit-border-radius:13px;border-radius:13px;*border:1px solid #999;-moz-box-shadow:0 0 6px rgba(0,0,0,0.5);-webkit-box-shadow:0 0 6px rgba(0,0,0,0.5);box-shadow:0 0 6px rgba(0,0,0,0.5)}.infinite-spinner span{padding-left:15px;color:#fff;font-size:14px;text-shadow:1px 1px 0 #000}.infinite-spinner .hballs{display:inline-block;position:relative;margin-bottom:-1px;height:12px;width:24px}@-webkit-keyframes bounce{0%{left:0;z-index:3}5%{left:0;z-index:3}25%{left:6px;z-index:3}50%{left:13px;z-index:3}75%{left:6px;z-index:2}95%{left:0}100%{left:0;z-index:2}}@-webkit-keyframes bounce-left{0%{left:13px}5%{left:13px}25%{left:6px}50%{left:0}75%{left:6px}95%{left:13px}100%{left:13px}}@-moz-keyframes bounce{0%{left:0;z-index:3}5%{left:0;z-index:3}25%{left:6px;z-index:3}50%{left:13px;z-index:3}75%{left:6px;z-index:2}95%{left:0}100%{left:0;z-index:2}}@-moz-keyframes bounce-left{0%{left:13px}5%{left:13px}25%{left:6px}50%{left:0}75%{left:6px}95%{left:13px}100%{left:13px}}@-ms-keyframes bounce{0%{left:0;z-index:3}5%{left:0;z-index:3}25%{left:6px;z-index:3}50%{left:13px;z-index:3}75%{left:6px;z-index:2}95%{left:0}100%{left:0;z-index:2}}@-ms-keyframes bounce-left{0%{left:13px}5%{left:13px}25%{left:6px}50%{left:0}75%{left:6px}95%{left:13px}100%{left:13px}}@keyframes bounce{0%{left:0;z-index:3}5%{left:0;z-index:3}25%{left:6px;z-index:3}50%{left:13px;z-index:3}75%{left:6px;z-index:2}95%{left:0}100%{left:0;z-index:2}}@keyframes bounce-left{0%{left:13px}5%{left:13px}25%{left:6px}50%{left:0}75%{left:6px}95%{left:13px}100%{left:13px}}.html5-balls{display:block;height:12px;width:24px;position:relative}.html5-balls .blueball,.html5-balls .pinkball{display:block;width:12px;height:12px;position:absolute;top:0;left:0;border-radius:30px;background:#ff0085;-webkit-animation:bounce 1.2s infinite;-webkit-animation-timing-function:linear;-moz-animation:bounce 1.2s infinite;-moz-animation-timing-function:linear;-ms-animation:bounce 1.2s infinite;-ms-animation-timing-function:linear;animation:bounce 1.2s infinite;animation-timing-function:linear;z-index:3}.html5-balls .blueball{left:13px;background:#0063dd;-webkit-animation:bounce-left 1.2s infinite;-webkit-animation-timing-function:linear;-moz-animation:bounce-left 1.2s infinite;-moz-animation-timing-function:linear;-ms-animation:bounce 1.2s infinite;-ms-animation-timing-function:linear;animation:bounce-left 1.2s infinite;animation-timing-function:linear}</style><div class="infinite-spinner {{^rows}}nope{{/rows}}"><span class="hballs"><div class="html5-balls"><div class="blueball"></div><div class="pinkball"></div></div></span><span class="spinner-msg">{{strings.loading}}</span></div>{{/deferred}}<div id="thumb-wrapper"><div id="thumbnails" class="{{container_class}} photo-display-container clearfix" {{#row_width}}style="width:{{row_width}}px; margin-left:{{margin_width}}px;"{{/row_width}}><div id="photo-display-container">{{#photos}}{{>photo_thumb}}{{/photos}}{{#rows}}{{^clip}}<div class="row row-{{rownum}}" {{#row_mask_width}}style="width:{{row_mask_width}}px; overflow:hidden;"{{/row_mask_width}}>{{#row}}{{>photo_thumb}}{{/row}}</div>{{/clip}}{{/rows}}</div></div></div>{{^omit_date_links}}<div class="paginator{{#fully_loaded}} fullyloaded{{/fully_loaded}}"><a data-track="yesterday-link" class="prev {{^yesterday_disabled}}Butt{{/yesterday_disabled}}{{#yesterday_disabled}}DisabledButt{{/yesterday_disabled}}" href="{{yesterday_link}}"><i>&#8592;</i>{{yesterday}}</a><strong id="options-when-bottom" data-date="09/20/2012"><span>{{flickrdate}}</span></strong><a data-track="tomorrow-link" class="next {{^tomorrow_disabled}}Butt{{/tomorrow_disabled}}{{#tomorrow_disabled}}DisabledButt{{/tomorrow_disabled}}" href="{{tomorrow_link}}">{{tomorrow}}<i>&#8594;</i></a></div>{{/omit_date_links}} </script> <script type="x-mustache-template" id="photo_thumb"> <div class="photo-display-item{{#removed}} removed{{/removed}}{{#scotched}} scotched{{/scotched}}{{#superscotched}} superscotch{{/superscotched}}{{#upscaled}} upscaled-item{{/upscaled}}{{#is_video}} is-video{{/is_video}}" id="photo_{{id}}" data-photo-id="{{id}}" data-comments-total-count="{{count_comments_num}}" data-ctx-pos="{{context_position}}" data-photo-owner="{{nsid}}" data-photo-media="photo" {{#node_width}}style="width:{{w}}"{{/node_width}}><div class="hover-target"><div class="thumb {{narrowness}}">{{{scotch}}}<span class="photo_container pc_{{size}}"{{#curation}} style="border: 8px solid {{status_color}};"{{/curation}}>{{^show_fuzzies}}{{^upscaled}}<a data-track="photo-click" href="{{photo_url}}" {{^justified}}title="{{name}}"{{/justified}} class="rapidnofollow photo-click"><img id="photo_img_{{id}}" {{#defer}}data-defer-src="{{src}}" src="{{img_url}}/spaceball.gif" {{/defer}}{{^defer}}src="{{src}}"{{/defer}}width="{{width}}" height="{{height}}" alt="{{name}}" class="pc_img {{#defer}}defer{{/defer}}" border="0"><div class="play"></div></a>{{/upscaled}}{{#upscaled}}<a data-track="photo-click" href="{{photo_url}}" {{^justified}}title="{{name}}"{{/justified}} class="rapidnofollow photo-click"><img style="background-image:url({{realsrc}})" {{#defer}}data-defer-src="{{src}}" src="{{img_url}}/spaceball.gif" {{/defer}}{{^defer}}src="{{img_url}}/spaceball.gif"{{/defer}}width="{{width}}" height="{{height}}" alt="{{name}}" class="pc_img {{#defer}}defer{{/defer}} upscaled" border="0"><div class="play"></div></a>{{/upscaled}}{{/show_fuzzies}}{{#show_fuzzies}}<a data-track="photo-click" href="{{photo_url}}" {{^justified}}title="{{name}}"{{/justified}} class="rapidnofollow photo-click"><img src="{{img_url}}/spaceball.gif" width="{{width}}" height="{{height}}" alt="{{name}}" class="pc_img {{#defer}}defer{{/defer}} fuzzy" border="0"><div class="play"></div></a>{{/show_fuzzies}}</span>{{^square}}<div class="meta{{#omit_icons}} single-line{{/omit_icons}}">{{^omit_title}}<div class="title"><a data-track="photo-click" href="{{photo_url}}" title="{{full_name}}" class="title">{{#is_3_megapixels}}<img src="{{img_url}}/3mp.gif"/>&nbsp;{{/is_3_megapixels}}{{name}}</a></div>{{/omit_title}}<div class="attribution-block{{#omit_icons}} full-width{{/omit_icons}}"><span class="attribution">{{^omit_attribution}}<span>{{strings.by}} </span><a data-track="owner" href="{{user_url}}" title="{{character_name}}" class="owner">{{#owner_is_usa}}<img src="{{img_url}}/american-flag-icon.png" />&nbsp;{{/owner_is_usa}}{{#owner_in_licensing}}<img src="{{img_url}}/curation_green_check.png" />&nbsp;{{/owner_in_licensing}}{{#licensing_owner_is_passed_over}}<img src="{{img_url}}/curation_red_x.png" />&nbsp;{{/licensing_owner_is_passed_over}}{{character_name}}</a>{{/omit_attribution}}</span></div>{{^omit_icons}}<span class="inline-icons">{{^omit_faves}}<a data-track="favorite" href="#" class="rapidnofollow fave-star-inline{{#is_fave}} fave-star-inline-faved{{/is_fave}}{{#canfave}} canfave{{/canfave}}" title="{{^is_fave}}{{strings.addtofaves}}{{/is_fave}}{{#is_fave}}REMOVE{{/is_fave}}"><img width="12" height="12" alt="[★]" src="{{img_url}}/spaceball.gif" class="img"><span class="fave-count count">{{#count_faves}}{{.}}{{/count_faves}}</span></a>{{/omit_faves}}{{^omit_comments}}<a title="{{strings.comments}}" href="{{^omit_inline_comments}}#{{/omit_inline_comments}}{{#omit_inline_comments}}{{photo_url}}#comments{{/omit_inline_comments}}" class="rapidnofollow comments-icon comments-inline-btn"><img width="12" height="12" alt="{{strings.comments}}" src="{{img_url}}/spaceball.gif"><span class="comment-count count">{{count_comments}}</span></a>{{/omit_comments}}{{^omit_lightbox}}<a href="#" data-track="lightbox" class="rapidnofollow lightbox-inline" title="{{strings.view_in_lightbox}}"><img width="12" height="12" alt="" src="{{img_url}}/spaceball.gif"></a>{{/omit_lightbox}}{{#include_share}}<a href="#" data-track="share" class="rapidnofollow inline-share-icon share-inline" title="share"><img width="12" height="12" alt="" src="{{img_url}}/spaceball.gif"></a>{{/include_share}}{{#enable_public_photostream_view}}{{^is_public_view}}{{#is_own}}<span class="privacy-change">{{#is_public}}<a data-track="privacy-change" href="#" class="rapidnofollow privacy-icon privacy-public-inline" title=""><img width="12" height="12" alt="Public" src="{{img_url}}/spaceball.gif" class="img"></a>{{/is_public}}{{^is_public}}{{#is_friend}}<a data-track="privacy-change" href="#" class="rapidnofollow privacy-icon privacy-semi-private-inline" title=""><img width="12" height="12" alt="Friend" src="{{img_url}}/spaceball.gif" class="img"></a>{{/is_friend}}{{^is_friend}}{{#is_family}}<a data-track="privacy-change" href="#" class="rapidnofollow privacy-icon privacy-semi-private-inline" title=""><img width="12" height="12" alt="Family" src="{{img_url}}/spaceball.gif" class="img"></a>{{/is_family}}{{^is_family}}<a data-track="privacy-change" href="#" class="rapidnofollow privacy-icon privacy-private-inline" title=""><img width="12" height="12" alt="Private" src="{{img_url}}/spaceball.gif" class="img"></a>{{/is_family}}{{/is_friend}}{{/is_public}}<span class="html5-balls"><span class="blueball"></span><span class="pinkball"></span></span><li class="privacy-control"><div class="ui-dropdown ui-dropdown-closed"><span class="ui-dialog-arrow"></span><ul><li data-action="set" data-value="public" data-id="{{id}}" data-text="Public"{{#is_public}} class="ui-dropdown-item-selected"{{/is_public}}>Public</li><li data-action="set" data-value="private" data-id="{{id}}" data-text="Private"{{^is_public}}{{^is_friend}}{{^is_family}} class="ui-dropdown-item-selected"{{/is_family}}{{/is_friend}}{{/is_public}}>Private</li><li data-action="set" data-value="friends" data-id="{{id}}" data-text="Friends"{{^is_family}}{{#is_friend}} class="ui-dropdown-item-selected"{{/is_friend}}{{/is_family}}>Friends</li><li data-action="set" data-value="family" data-id="{{id}}" data-text="Family"{{^is_friend}}{{#is_family}} class="ui-dropdown-item-selected"{{/is_family}}{{/is_friend}}>Family</li><li data-action="set" data-value="friendsAndFamily" data-id="{{id}}" data-text="Friends &amp; Family"{{#is_friend}}{{#is_family}} class="ui-dropdown-item-selected"{{/is_family}}{{/is_friend}}>Friends &amp; Family</li></ul></div></li></span>{{/is_own}}{{/is_public_view}}{{/enable_public_photostream_view}}</span>{{/omit_icons}}</div>{{/square}}</div></div></div> </script> <script nonce="77fa20dee62262cb15e616dbdd66f632"> (function() { F.intl = 'en-us'; var yconf = {"flickr":{"is_secure":true,"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_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,"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_2013_photo_page":true,"enable_2013_photo_page_extras":true,"enable_ken_burns_face":true,"enable_hermes_sihp_deferred_sidebar":true,"enable_refresh_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_n_to_ldrb_ads":true,"enable_follow_theme":true,"enable_group_post_beta":true,"enable_ads_on_login_page":1,"enable_playr":true,"enable_merch_from_organizr":true,"enable_set_to_album_change":true,"enable_https_api":true,"enable_client_fullpath_api":true,"enable_simple_client_side_utf8_escaping":true,"enable_global_nav_restyle":true,"enable_feed_reskin":true,"enable_global_nav_upload_icon":true,"show_pro_upsell_banner":true,"disable_bulk_license_changes":true,"enable_jubilee_urls":true,"enable_cookie_consent":true,"requires_cookie_consent":false,"row_banner_dismissed":"dcbn","enable_interstitial_post_upload_page":false},"formatting":{"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,"justified_row_height":330,"lang":"en-us","photo_root":"https:\/\/farm.staticflickr.com\/","site_root":"https:\/\/www.flickr.com","images_root":"https:\/\/combo.staticflickr.com\/pw\/images","intl_images_root":"https:\/\/combo.staticflickr.com\/pw\/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":{"textsearch_enabled":true,"search_scope":"all"},"view_mode":"ju","photos":[],"contact_limit":100000,"server_timestamp":1732379311,"magic_cookie":"24f69fde8226b31aa24bfe175fed88c7","filmstrips":{"preload_page_count":2,"photos_per_page":4,"container":"#sidebar"},"notes":{"can_add_note":false,"can_add_person":false,"ratio":"0.000000","count":"0.000000","max_count":100},"video_player_version":"2968162862","lightbox":{"enable":false,"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},"max_photo_ids_per_api_call":20,"flickr_api_uri_direct":"https:\/\/www.flickr.com\/services\/rest\/","host_ip":"127.0.0.1","radjax_endpoint":"https:\/\/y-flickr.yahoo.com\/ad","static_domain":"staticflickr.com","user":{"user_ok":false,"useragent_partially_supported":true,"useragent_reboot_supported":true},"printing":[],"sharing":[],"nav_selecta":{"additional_sections":[{"name":"Terms of Use","sectionType":"text","url":"\/help\/terms\/"},{"name":"Your Privacy","sectionType":"text","url":"\/help\/privacy\/"},{"name":"Copyright\/IP Policy","sectionType":"text","url":"\/help\/guidelines"}]},"people":{"api_url":"","can_only_add_self":true},"tags":{"api_url":""},"iphone_app_store_url":"https:\/\/itunes.apple.com\/app\/flickr\/id328407587"},"flickrAPI":{"flickr_api_uri":"\/services\/rest","api_key":"510d1bb3ab8baf5866838fea83d7725c","auth_hash":"24f69fde8226b31aa24bfe175fed88c7","auth_token":"","secret":"e09022801d7ee1ae"},"flickrMap":{"generatedInYconf":true,"protomaps_host":"https:\/\/maps.flickr.com","protomaps_build":"20240520","enable_alternate_tiles_plugin":1},"cookieConsent":{"cookie_level_buckets":{"required":["ccc","cookie_accid","cookie_epass","cookie_l10n","cookie_session","dcbn","ffs","ffs","flrb","flrbfd","flrbgdrp","flrbgmrp","flrbgrp","flrbp","flrbrst","flrbs","flrtags","flrbase","liqph","liqpw","localization","RT","rtna","sa","s_sq","vp","xb"],"functional":[],"advertising":[]},"consent_context_name":"ccc","row_banner_dismissed":"dcbn","consent_context_expiration_days":30,"allow_level":{"required":true,"functional":false,"advertising":false}},"yui2":"2.5.2","loadOptional":false,"combine":true,"root":"","base":"https:\/\/combo.staticflickr.com\/pw\/combo\/1\/3.11.0?","comboBase":"https:\/\/combo.staticflickr.com\/pw\/combo\/1\/3.11.0?","workerBase":"\/combo\/1\/3.11.0?","maxURLLength":1999,"dev":false,"debug":false,"modules":{"account-manage":{"path":"j\/.IR-manage.A.v4iwWf.78","requires":["flickr-dialog","io-base","sprintf","yui-base"],"ext":false},"account-order-transjax":{"path":"j\/.IR-.JM-.C-.F.A.v2PRwgd.78","requires":["transjax-base","yui-base"],"ext":false},"account-order-ywa-tracking":{"path":"j\/.IR-.JM-ywa-.BW.A.v5TmHmz.78","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.vqYDF2.78","requires":["event","datatype-date-format","yahoo-web-analytics","yui-base"],"ext":false},"account-rules":{"path":"j\/.IR-rules.A.v7vKkB2.78","requires":["dd-constrain","dd-drop","dd-proxy","event","flickr-dialog-confirmation","gallery-flickr-api","node","yui-base"],"ext":false},"actions-menu-css":{"path":"c\/c_.IS-.BB.BC.v4BYcLb.78","type":"css","ext":false},"ad-masker":{"path":"j\/ad-masker.A.v5inFXJ.78","requires":["node","page-context","yui-base"],"ext":false},"add-to-dialog-css":{"path":"c\/c_.KQ.W-.D.BC.vWK4Rn.78","type":"css","ext":false},"addressbook":{"path":"j\/.HE.A.v47oE1T.78","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.v5GDkpR.78","requires":["yui2-datasource","yui2-dom","yui2-event","yui2-yahoo"],"ext":false},"autosuggest":{"path":"j\/autosuggest.A.v7kQA5Z.78","requires":["promise","oop","base","querystring-stringify-simple","text-accentfold","template-base","handlebars-base","autocomplete","io","node","yui-base"],"ext":false},"batchr-photo-privacy":{"path":"j\/batchr-.B-privacy.A.v3bx26a.78","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.v4c984Z.78","requires":["transjax-base","yui-base"],"ext":false},"beehive-contact-suggestions":{"path":"j\/.IT-.FF-.IL.A.v7rm7s9.78","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.v6R6zDe.78","requires":["transjax-base","yui-base"],"ext":false},"better-throttle":{"path":"j\/.EH-.EB.A.v3dFsZT.78","requires":["yui-base","yui-later"],"ext":false},"bitmap-text":{"path":"j\/.Z-.DK-.D.A.v3EhfJR.78","requires":["yui-base"],"ext":false},"bitmap-type-silkscreen":{"path":"j\/.Z-.DJ-.BJ.A.v7pK5iT.78","requires":["yui-base"],"ext":false},"boomerang":{"path":"j\/.JK.A.vWzrBh.78","requires":["yui-base"],"ext":false},"box-host":{"path":"j\/box-.DG.A.v3Jk7wt.78","requires":["event-mousedrag","math","node","yui-base"],"ext":false},"bo-selecta":{"path":"j\/.HO-.D.A.v5MaJ9E.78","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.v48RZAm.78","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.v5BkTTN.78","type":"css","ext":false},"bo-selecta-3-css":{"path":"c\/c_.HO-3.BC.v6yaHJR.78","type":"css","ext":false},"bo-selecta-global-search-datasource":{"path":"j\/.HO-.X-.CA-.BYsource.A.v4k2G6F.78","requires":["bo-selecta-transjax","datasource-local","gallery-flickr-api","yui-base"],"ext":false},"bo-selecta-transjax":{"path":"j\/.HO-.C-.F.A.voRNLK.78","requires":["transjax-base","yui-base"],"ext":false},"cache-simple":{"path":"j\/.EJ-.GK.A.v748vUT.78","requires":["yui-base"],"ext":false},"circle-fill-graph":{"path":"j\/circle-fill-graph.A.vpF39.78","requires":["anim","event","node","page-context","yui-base"],"ext":false},"contact-changer":{"path":"j\/.FF-.FG-.D.A.v5LtNEG.78","requires":["contact-changer-css","contact-changer-transjax","refresh-sihp-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.v6ykU8G.78","type":"css","ext":false},"contact-changer-transjax":{"path":"j\/.FF-.FG-.C-.F.A.v5UxBPa.78","requires":["transjax-base","yui-base"],"ext":false},"context-data":{"path":"j\/.H-.BY.A.v2oXYfv.78","requires":["event-custom","gallery-flickr-api","photo-data","urls","yui-base"],"ext":false},"cookie-banner-reg":{"path":"j\/.CK-banner-reg.A.v2vQeSq.78","requires":["yui-base"],"ext":false},"cookie-catcher":{"path":"j\/.CK-catcher.A.v3BacGU.78","requires":["cookie"],"ext":false},"cookie-crusher":{"path":"j\/.CK-crusher.A.v3BbQ6B.78","requires":["cookie"],"ext":false},"css3pie":{"path":"j\/css3pie.A.v29WY5J.78","requires":["yui-base"],"ext":false},"dataview":{"path":"j\/.BY.JB.A.v2w7JsG.78","requires":["yui-base"],"ext":false},"date-widgets":{"path":"j\/.HB-.EZs.A.v6SUySQ.78","requires":["yui-base"],"optional":["datatype-date","event","gallery-calendar","node"],"ext":false},"defer-images":{"path":"j\/.GI-.GC.A.v5ewVDt.78","requires":["node-visibility","retry-image-on-error","yui-base"],"ext":false},"dejaview":{"path":"j\/.BZ-.D.A.v6xpj6D.78","requires":["cookie","yui-base"],"ext":false},"discussion-comments":{"path":"j\/discussion-.LGs.A.v67a5j8.78","requires":["event","node","yui-base"],"ext":false},"donut-progress-ui":{"path":"j\/donut.ID-ui.A.v6zpk8.78","requires":["yui-base"],"ext":false},"dynamic-messaging":{"path":"j\/dynamic-messaging.A.v57VzXc.78","requires":["io-form","gallery-flickr-api","message-primary-email-transjax","transjax-base","yui-base"],"ext":false},"editr":{"path":"j\/.GZr.A.v55BQKW.78","requires":["boomerang","editr-data-privileges","editr-edit-panel","editr-errors","editr-file-picker","editr-grid","editr-progress","editr-publish-dialog","editr-toolbar","editr-upload-queue","event-base","feature-tour","health-check","gallery-popover","page-context","polyfills-placeholder","yui-base"],"optional":["editr-photo-picker","flickr-dialog"],"ext":false},"editr-data-base":{"path":"j\/.KA.BL.A.v2CZadi.78","requires":["array-extras","event-custom","yui-base"],"ext":false},"editr-data-groups":{"path":"j\/.KA.DMs.A.v4piR9i.78","requires":["editr-data-photos","editr-data-base","type-cast","yui-base"],"ext":false},"editr-data-people":{"path":"j\/.KA.L.A.v6fsenS.78","requires":["editr-data-base","type-cast","yui-base"],"ext":false},"editr-data-photos":{"path":"j\/.KA.EC.A.v6x1SGh.78","requires":["editr-data-base","type-cast","yui-base"],"ext":false},"editr-data-privileges":{"path":"j\/.KAprivileges.A.v3NiN4A.78","requires":["editr-data-base","escape","type-cast","yui-base"],"ext":false},"editr-data-sets":{"path":"j\/.KA.KF.A.v5UHdgd.78","requires":["editr-data-photos","editr-data-base","escape","type-cast","yui-base"],"ext":false},"editr-edit-panel":{"path":"j\/.GZr-.GZ.IC.A.v5N8Zgb.78","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.v7uqRCA.78","requires":["event-base","keyboard-shortcut-manager","yui-base"],"ext":false},"editr-edit-panel-groups":{"path":"j\/.JZ.DMs.A.v4opN6L.78","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.v4G4KB1.78","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.v8AKg7.78","requires":["editr-data-photos","editr-data-privileges","editr-edit-panel-component","editr-edit-panel-transjax","yui-base"],"optional":["date-widgets"],"ext":false},"editr-edit-panel-people":{"path":"j\/.JZ.L.A.vwdVzw.78","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.v2iFPhY.78","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.v75mgtC.78","requires":["editr-data-photos","editr-edit-panel-transjax","event-base","event-mouseenter","event-mouseleave","tag-selecta","yui-base"],"ext":false},"editr-edit-panel-title-description":{"path":"j\/.JZ.KB-.KC.A.vB18kz.78","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.v5cgrEc.78","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.v2SNBpa.78","type":"css","ext":false},"editr-edit-panel-tooltip-transjax":{"path":"j\/.JZ.JT-.C-.F.A.v7pWS19.78","requires":["transjax-base","yui-base"],"ext":false},"editr-edit-panel-transjax":{"path":"j\/.JZ.C-.F.A.v66B782.78","requires":["transjax-base","yui-base"],"ext":false},"editr-errors":{"path":"j\/.GZr-.JPs.A.v44qKuA.78","requires":["editr-data-photos","yui-base"],"ext":false},"editr-exif":{"path":"j\/.GZr-.GO.A.v51a9Ys.78","requires":["editr-data-photos","exif-thumbnail-extractor","datatype-xml","worker","yui-base"],"ext":false},"editr-file-picker":{"path":"j\/.GZr-.KG.A.v4AKKZH.78","requires":["datatype","editr-data-photos","editr-exif","editr-file-picker-transjax","editr-progress","flickr-dialog","gallery-flickr-api","health-check","md5","rapid-tracker","string-filters","uploader","yui-base","murmurhash"],"ext":false},"editr-file-picker-transjax":{"path":"j\/.GZr-.KG-.C-.F.A.v2GnoQQ.78","requires":["transjax-base","yui-base"],"ext":false},"editr-grid":{"path":"j\/.KJ.A.v6EER7t.78","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.v6vKL96.78","requires":["editr-grid","yui-base"],"ext":false},"editr-grid-form-handler":{"path":"j\/.KJ-.KL.A.v4pRwj1.78","requires":["editr-grid","yui-base"],"ext":false},"editr-grid-item":{"path":"j\/.KJ-item.A.v52CxR4.78","requires":["editr-grid","yui-base"],"ext":false},"editr-grid-key-monitor":{"path":"j\/.KJ-.KM.A.v7krecv.78","requires":["editr-grid","keyboard-shortcut-manager","yui-base"],"ext":false},"editr-grid-marquee":{"path":"j\/.KJ-marquee.A.v6KD7Zj.78","requires":["editr-grid","yui-base"],"ext":false},"editr-grid-progress-handler":{"path":"j\/.KJ.ID-handler.A.v2uYNGH.78","requires":["editr-grid","editr-publish-dialog","transjax-base","yui-base"],"ext":false},"editr-grid-selection":{"path":"j\/.KJ-.KN.A.v4P1rA8.78","requires":["editr-grid","yui-base"],"ext":false},"editr-grid-selection-ui":{"path":"j\/.KJ-.KN-ui.A.v42T4nq.78","requires":["editr-grid","transjax-base","yui-base"],"ext":false},"editr-grid-transjax":{"path":"j\/.KJ-.C-.F.A.v6F98dU.78","requires":["transjax-base","yui-base"],"ext":false},"editr-grid-user-messaging":{"path":"j\/.KJ-.KO.A.vycz7f.78","requires":["editr-grid","editr-errors","yui-base"],"ext":false},"editr-photo-picker":{"path":"j\/.GZr-.B-picker.A.v2WTDvq.78","requires":["editr-data-photos","flickr-dialog-spinner","flickr-geo","gallery-flickr-api","yui-base"],"ext":false},"editr-progress":{"path":"j\/.GZr.ID.A.v71mswE.78","requires":["better-throttle","event-base","event-custom","yui-base"],"ext":false},"editr-publish-dialog":{"path":"j\/.GZr-.KE-.W.A.v6XwikQ.78","requires":["editr-progress","editr-publisher","editr-publisher-transjax","editr-upload-queue","event-base","event-custom","flickr-dialog","gallery-flickr-api","health-check","yui-base","querystring-parse-simple"],"optional":["flanal"],"ext":false},"editr-publisher":{"path":"j\/.GZr-.KEer.A.v7w6LVL.78","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.v23yciY.78","requires":["transjax-base","yui-base"],"ext":false},"editr-secret-about-box":{"path":"j\/.GZr-secret-about-box.A.v2RXVyS.78","requires":["event","node","page-context","yui-base"],"ext":false},"editr-toolbar":{"path":"j\/.GZr-.KP.A.v4w4Z25.78","requires":["editr-grid","menus","yui-base"],"ext":false},"editr-upload-queue":{"path":"j\/.GZr-.KI-.CT.A.v7gXJfW.78","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.v4r9RMh.78","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.vyrNJB.78","requires":["transjax-base","yui-base"],"ext":false},"exif-extractor":{"path":"j\/.KU.A.v782twS.78","requires":["exif-extractor-tags","xmp-extractor","yui-base"],"ext":false},"exif-extractor-tags":{"path":"j\/.KU-.KD.A.v4Gaagq.78","requires":["yui-base"],"ext":false},"exif-thumbnail-extractor":{"path":"j\/.GO-.IM-.IN.A.v6JCBPe.78","requires":["yui-base"],"ext":false},"event-annotations":{"path":"j\/.G-.BD.A.v6qsU7P.78","requires":["yui-base"],"ext":false},"event-mousedrag":{"path":"j\/.G-.BO.A.v6T8rd9.78","requires":["event-annotations","event-custom-complex","event-synthetic","node","yui-base","yui-throttle"],"ext":false},"excanvas":{"path":"j\/.BV.A.v7wy4jR.78","ext":false},"photo-list-model":{"path":"j\/.B-.CZ-.JA.A.v79onsC.78","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.v25YhS9.78","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.v7h6cBU.78","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.v4wkcc1.78","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.v4PbHae.78","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.v4K3qrD.78","requires":["anim","node","yui-base"],"ext":false},"farm_timing":{"path":"j\/farm_.FZ.A.v2r1AH5.78","requires":["node","yui-base","io","event"],"ext":false},"feature-tour":{"path":"j\/.KT-.DA.A.v6T2Eev.78","requires":["anim","cookie","dom","event","feature-tour-css","feature-tour-transjax","yui-base"],"ext":false},"feature-tour-css":{"path":"c\/c_.KT-.DA.BC.v2he3je.78","type":"css","ext":false},"feature-tour-transjax":{"path":"j\/.KT-.DA-.C-.F.A.v4BqwFn.78","requires":["transjax-base","yui-base"],"ext":false},"flanal":{"path":"j\/.IU.A.v59gCyS.78","requires":["yui-base"],"optional":["io"],"ext":false},"flapid":{"path":"j\/.JO.A.vNUtnb.78","requires":["gallery-flickr-api","yui-base"],"ext":false},"flickr":{"path":"j\/.J-.D.A.v6sbPNJ.78","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.v72zDwq.78","requires":["app-base","yui-base"],"ext":false},"flickr-app-photo":{"path":"j\/.J-app-.B.A.vrQbG9.78","requires":["context-data","flickr-app","photo-data","urls","yui-base"],"optional":["video"],"ext":false},"flickr-app-photostream":{"path":"j\/.J-app-.ECtream.A.v5mn3ah.78","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.v77zdC8.78","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.v3vGaS2.78","requires":["flickr-app","soup-hera-view","rapid-tracker","template-fetcher","urls","yui-base"],"ext":false},"group-model":{"path":"j\/.DM-.JA.A.vPDjAS.78","requires":["context-data","model","gallery-flickr-api","urls","yui-base"],"ext":false},"groups-model":{"path":"j\/.DMs-.JA.A.v2sh7A5.78","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.v5RofKs.78","requires":["context-data","model","group-model","gallery-flickr-api","urls","yui-base"],"ext":false},"groups-list-view":{"path":"j\/.DMs-.CZ-.JB.A.v7u6jUK.78","requires":["context-data","view","groups-model","handlebars","yui-base"],"ext":false},"groups-recent-view":{"path":"j\/.DMs-recent-.JB.A.v5kWQoe.78","requires":["context-data","view","groups-model","groups-page-model","handlebars","yui-base"],"ext":false},"group-subnav":{"path":"j\/.DM-subnav.A.v5VJRJC.78","requires":["flickr-dialog","yui-base"],"ext":false},"flickr-app-groups":{"path":"j\/.J-app-.DMs.A.vdKG6X.78","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.v5ornZu.78","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.v4XJR97.78","requires":["flickr-dialog-base","substitute","yui-base"],"ext":false},"flickr-dialog-base":{"path":"j\/.IZ-.BL.A.v2C5Fmf.78","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.v4Le69w.78","requires":["flickr-dialog-base","substitute","yui-base"],"ext":false},"flickr-dialog-css":{"path":"c\/c_.IZ.BC.v3aT27m.78","type":"css","ext":false},"flickr-dialog-destructive-confirmation":{"path":"j\/.IZ-.JS-.JR.A.v6KbBA5.78","requires":["flickr-dialog-base","yui-base"],"ext":false},"flickr-dialog-frame":{"path":"j\/.IZ-.JW.A.v2bT6ki.78","requires":["flickr-dialog-base","yui-base"],"ext":false},"flickr-dialog-geo-css":{"path":"c\/c_.IZ-geo.BC.vyXUBC.78","type":"css","ext":false},"flickr-dialog-geo":{"path":"j\/.IZ-geo.A.v2tmJQJ.78","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.v3cE63f.78","type":"css","ext":false},"flickr-dialog-infinite-spinner":{"path":"j\/.IZ-infinite-.JV.A.v6NoNnK.78","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.v4afJtE.78","requires":["flickr-dialog-base","substitute","yui-base"],"ext":false},"flickr-dialog-spinner":{"path":"j\/.IZ-.JV.A.v4V3q3D.78","requires":["flickr-dialog-base","yui-base"],"ext":false},"flickr-gallery-gallery-owner":{"path":"j\/.J-.FW-.FW-.BK.A.v717tS6.78","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.v3n2cBg.78","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.vgEc9s.78","requires":["transjax-base","yui-base"],"ext":false},"flickr-gallery-keyboard-shortcuts":{"path":"j\/.J-.FW-.HZs.A.v4yL7pi.78","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.v38A8T9.78","requires":["transjax-base","yui-base"],"ext":false},"flickr-gallery-photo-owner":{"path":"j\/.J-.FW-.B-.BK.A.v4kDHeP.78","requires":["event","flickr-gallery-photo-remover","node","yui-base"],"ext":false},"flickr-gallery-photo-remover":{"path":"j\/.J-.FW-.B-.IP.A.v3kmxW4.78","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.v6zJMy2.78","requires":["transjax-base","yui-base"],"ext":false},"flickr-geo":{"path":"j\/.J-geo.A.v2ZRYPQ.78","requires":["io","gallery-flickr-api","yui-base"],"ext":false},"flickr-leaflet-utils-css":{"path":"c\/c_.J-leaflet-utils.BC.v5rgLUD.78","type":"css","ext":false},"flickr-leaflet-utils":{"path":"j\/.J-leaflet-utils.A.v6p3Vhq.78","requires":["osm-places","flickr-leaflet-utils-css","yui-base"],"ext":false},"flickr-location-search":{"path":"j\/.J_.BR_.CA.A.v5vrpda.78","requires":["event","node","query-string-args","yui-base"],"ext":false},"flickr-map":{"path":"j\/.J-map.A.v5Bo99w.78","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.v6jHcoQ.78","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.v5Dxkqy.78","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.v7uu7Kf.78","requires":["bing_map","yui-base"],"ext":false},"flickr-map-provider-ovi":{"path":"j\/.J-.IK-ovi.A.v5nAtU.78","requires":["yui-base"],"ext":false},"flickr-map-provider-gmap":{"path":"j\/.J-.IK-gmap.A.v5frZH6.78","requires":["yui-base"],"ext":false},"flickr-map-provider-flickr_osm":{"path":"j\/.J-.IK-.J_osm.A.v4k34TG.78","requires":["yui-base"],"ext":false},"flickr-map-transjax":{"path":"j\/.J-map-.C-.F.A.v5iFmbB.78","requires":["transjax-base","yui-base"],"ext":false},"flickr-map-css":{"path":"c\/c_.J-map.BC.v54KH6m.78","type":"css","ext":false},"flickr-map-css-intl":{"path":"c\/c_.J-map-.F.BC.v5TLxx1.78","type":"css","ext":false},"flickr-nav":{"path":"j\/.J_nav.A.v46fjrT.78","requires":["event","node","page-context","yui-base"],"ext":false},"flickr-overlay-css":{"path":"c\/c_.J-overlay-.BL.BC.v6GRNkG.78","type":"css","ext":false},"flickr-overlay-base":{"path":"j\/.J-overlay-.BL.A.v75ohws.78","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.v25uHUF.78","requires":["event","node","yui-base"],"ext":false},"flickr-printing":{"path":"j\/.J_.FD.A.v6TzzvD.78","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.v7dMdaa.78","type":"css","ext":false},"flickr-printing-transjax":{"path":"j\/.J_.FD-.C-.F.A.vg2n1s.78","requires":["transjax-base","yui-base"],"ext":false},"flickr-tooltips":{"path":"j\/.J-.GA.A.v4shUW4.78","requires":["event","event-delegate","yui-base"],"ext":false},"focus-tracker":{"path":"j\/.CV-.CH.A.v5cyayP.78","requires":["event","node","yui-base"],"ext":false},"formatting-tips-css":{"path":"c\/c_.EN_.EQ_.D.BC.v2jhjxM.78","type":"css","ext":false},"gallery-boomr":{"path":"j\/.FW-boomr.A.v2k4KzL.78","requires":["lang","yui-base"],"ext":false},"gallery-calendar":{"path":"j\/.FW-.IO.A.vuJVo8.78","requires":["gallery-calendar-transjax","gallery-popover","node","yui-base"],"ext":false},"gallery-calendar-transjax":{"path":"j\/.FW-.IO-.C-.F.A.v4mRwAA.78","requires":["transjax-base","yui-base"],"ext":false},"gallery-flickr-api":{"path":"j\/.J_api.A.v6WvLAD.78","requires":["dump","event","io-xdr","json-parse","yui-base"],"ext":false},"gallery-history-lite":{"path":"j\/.FW-.CE-.GH.A.v6sCkn6.78","requires":["event-custom","event-custom-complex","node","yui-base"],"ext":false},"gallery-popover":{"path":"j\/.FW-.HN.A.v7gYqP3.78","requires":["event-custom","node","overlay","yui-base"],"ext":false},"gallery-popover-css":{"path":"c\/c_.FW-.HN.BC.v3r65SC.78","type":"css","ext":false},"gallery-storage-lite":{"path":"j\/.FW-.FX-.GH.A.v3T6ijV.78","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.v4xKXDo.78","requires":["transjax-base","yui-base"],"ext":false},"geofences-geopanel-css":{"path":"c\/c_.IA-.IB.BC.v4QJWPg.78","type":"css","ext":false},"geofences-geopanel-transjax":{"path":"j\/.IA-.IB-.C-.F.A.v3LoHEz.78","requires":["transjax-base","yui-base"],"ext":false},"geofences-geopanel":{"path":"j\/.IA-.IB.A.vmoiAJ.78","requires":["geofences-geopanel-transjax","geofences-geopanel-css","geopanel","global-dialog","map-pinwin","yui-base"],"ext":false},"geofences":{"path":"j\/.IA.A.vbWhnB.78","requires":["base","yui-base"],"optional":["gallery-flickr-api"],"ext":false},"geofences-apply-panel":{"path":"j\/.IA.IE.IC.A.v2hAe9w.78","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.vJjXkP.78","requires":["better-throttle","event-custom","gallery-flickr-api","geofences","yui-base"],"ext":false},"geofences-list-view":{"path":"j\/.IA-.CZ-.JB.A.v43SmQE.78","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.v4Su2cu.78","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.v2oRbKa.78","requires":["transjax-base","yui-base"],"ext":false},"geofences-transjax":{"path":"j\/.IA-.C-.F.A.v4mMJS9.78","requires":["transjax-base","yui-base"],"ext":false},"geopanel-css":{"path":"c\/c_.IB.BC.v6CjA5Y.78","type":"css","ext":false},"geopanel":{"path":"j\/.IB.A.v38xxhU.78","requires":["event","global-dialog","geopanel-css","yui-base"],"optional":["autocomplete-2-5-1","flickr-map","gallery-flickr-api"],"ext":false},"getty":{"path":"j\/.FI_new.A.v36ZeC3.78","requires":["anim","dom","event","gallery-flickr-api","node","yui-base"],"ext":false},"global-dialog":{"path":"j\/.X-.W-.D.A.v4QpoeT.78","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.v3r7zPb.78","type":"css","ext":false},"global-dialog-transjax":{"path":"j\/.X-.W-.C-.F.A.v5frjd.78","requires":["transjax-base","yui-base"],"ext":false},"global-nav":{"path":"j\/.JC.A.v6JmXuA.78","requires":["anim","event","menus","node","page-context","yui-base","circle-fill-graph"],"ext":false},"group-blast-insitu":{"path":"j\/.DM-blast-.DT.A.v3wNzGM.78","requires":["event","insitu","node","string-filters","yui-base"],"ext":false},"guestpass-hide":{"path":"j\/.DZ-.ET.A.v5QHWcF.78","requires":["anim","cookie","node","yui-base"],"ext":false},"grease":{"path":"j\/.HQ.A.vKf5Z7.78","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.v6Bkjaa.78","type":"css","ext":false},"health-check":{"path":"j\/.KH.A.v55StzQ.78","requires":["event-custom","gallery-flickr-api","yui-base"],"ext":false},"history-manager":{"path":"j\/.CE-.K.A.v2YR44m.78","requires":["event","urls","yui-base"],"ext":false},"html5-balls":{"path":"j\/.LI.A.v2EEyEb.78","requires":["event","urls","base","yui-base","html5-balls-css"],"ext":false},"html5-balls-css":{"path":"c\/c_.LI.BC.v2e2SKH.78","type":"css","ext":false},"image-fader":{"path":"j\/.CW-.CU.A.v4UALgx.78","requires":["anim","node","yui-base"],"ext":false},"infinite-scrolling-transjax":{"path":"j\/infinite-scrolling-.C-.F.A.v74ZZqo.78","requires":["transjax-base","yui-base"],"ext":false},"input-hint":{"path":"j\/.CN-.DD.A.v3tUrod.78","requires":["event-focus","focus-tracker","node","yui-base"],"ext":false},"input-counter":{"path":"j\/.CN-counter.A.v5dMoNS.78","requires":["event","node","yui-base"],"ext":false},"india-disclaimer":{"path":"j\/.IH.A.v76Kodn.78","requires":["event","global-dialog","io-base","node","yui-base"],"ext":false},"insitu":{"path":"j\/.DT-.D.A.v4a3FjA.78","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.v31Pw1V.78","requires":["transjax-base","yui-base"],"ext":false},"jfif-extractor":{"path":"j\/jfif-.IN.A.v61qF5P.78","requires":["yui-base"],"ext":false},"jobs":{"path":"j\/jobs.A.v3ZQVdK.78","requires":["event","flanal","flickr-page-timing","io","motion-blur","node","popup-login","rapid-tracker","transition","yui-base"],"ext":false},"justifier":{"path":"j\/.LA.A.v27cTiR.78","requires":["yui-base"],"ext":false},"ken-burns-transjax":{"path":"j\/.KY-.C-.F.A.v2Upw4H.78","requires":["transjax-base","yui-base"],"ext":false},"keyboard-shortcut-legend":{"path":"j\/.HZ-.HY.A.v5z7SAG.78","requires":["better-throttle","cookie","gallery-flickr-api","global-dialog","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.v6cufBw.78","type":"css","ext":false},"keyboard-shortcut-legend-layouts":{"path":"j\/.HZ-.HY-layouts.A.v2bqKzY.78","requires":["keyboard-shortcut-legend-transjax","yui-base"],"ext":false},"keyboard-shortcut-legend-transjax":{"path":"j\/.HZ-.HY-.C-.F.A.vjYgro.78","requires":["transjax-base","yui-base"],"ext":false},"keyboard-shortcut-manager":{"path":"j\/.HZ-.K.A.v7dR6FY.78","requires":["event-custom","event-focus","event-key","focus-tracker","keyboard-shortcut-legend","node","page-context","yui-base"],"ext":false},"konami":{"path":"j\/.LC.A.viSiTg.78","ext":false},"leaflet":{"path":"j\/leaflet.A.v4RCQnc.78","requires":["protomaps-leaflet","flickr-leaflet-utils","leaflet-css","leaflet-utils-css","yui-base"],"ext":false},"leaflet-css":{"path":"c\/c_leaflet.BC.v3hmxC3.78","type":"css","ext":false},"leaflet-utils-css":{"path":"c\/c_leaflet-utils.BC.v6nCHMS.78","type":"css","ext":false},"lightbox":{"path":"j\/.N.A.vExgvK.78","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","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":["global-dialog","photos-list-transjax"],"ext":false},"lightbox-transjax":{"path":"j\/.N-.C-.F.A.v5Jy3vw.78","requires":["transjax-base","yui-base"],"ext":false},"liquid-photo-resizer":{"path":"j\/.JL-.B.LB.A.v4oPso1.78","requires":["event"],"ext":false},"liquid-resizer":{"path":"j\/.JL.LB.A.v6UjYWf.78","requires":["event"],"ext":false},"location-picker-css":{"path":"c\/c_.BR-picker.BC.v3B77DV.78","type":"css","ext":false},"location-picker":{"path":"j\/.BR-picker.A.v3Zef7F.78","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.v7fiTKN.78","type":"css","ext":false},"location-selecta":{"path":"j\/.BR-.S.A.v6tuYHd.78","requires":["location-selecta-css","keyboard-shortcut-manager","flickr-geo","event","yui-base"],"ext":false},"make-a-book-css":{"path":"c\/c_make-a-book.BC.v3zdNCj.78","type":"css","ext":false},"make-a-book":{"path":"j\/make-a-book.A.v3fKcGq.78","requires":["template-fetcher","view","event","node","gallery-flickr-api","flickr-dialog-frame","flickr-dialog","html5-balls","make-a-book-css","yui-base","escape","rapid-tracker"],"ext":false},"mail-zeus":{"path":"j\/mail-.D.A.v6oCLcv.78","requires":["mail-zeus-transjax","flickr-dialog-confirmation","event","node","yui-base"],"ext":false},"mail-zeus-transjax":{"path":"j\/mail-.D-.C-.F.A.v2gSkab.78","requires":["transjax-base","yui-base"],"ext":false},"map-pinwin":{"path":"j\/map-.IV.A.v5NQGPh.78","requires":["map-pinwin-css","string-filters","yui-base"],"ext":false},"map-pinwin-css":{"path":"c\/c_map-.IV.BC.voUCe3.78","type":"css","ext":false},"math":{"path":"j\/.DL.A.v4AGMqt.78","requires":["yui-base"],"ext":false},"matrix-math":{"path":"j\/matrix-.DL.A.v21MhLH.78","requires":["yui-base"],"ext":false},"message-primary-email-transjax":{"path":"j\/.JU-primary-.HH-.C-.F.A.v3pM2rA.78","requires":["transjax-base","yui-base"],"ext":false},"md5":{"path":"j\/md5-.D.A.vKLY5B.78","ext":false},"menus":{"path":"j\/.BBs.A.v5rDfCr.78","requires":["base","event","event-custom","event-mouseenter","gallery-popover","keyboard-shortcut-manager","node","page-context","yui-base"],"ext":false},"momentjs":{"path":"j\/momentjs-wrapper.A.v6u4DPw.78","requires":[],"ext":false},"motion-blur":{"path":"j\/motion-blur.A.v7b2KLW.78","requires":["node","transition","yui-base"],"ext":false},"mrpinchy":{"path":"j\/mrpinchy.A.v56sFFP.78","requires":["node","event","event-custom","transition","urls","matrix-math","yui-base"],"ext":false},"murmurhash":{"path":"j\/.KZ3_gc.A.v5K2wW5.78","ext":false},"nav-selecta":{"path":"j\/.JQ.A.v6xRZkD.78","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.v3L8qN7.78","type":"css","ext":false},"nav-selecta-transjax":{"path":"j\/.JQ-.C-.F.A.v5HVUzV.78","requires":["transjax-base","yui-base"],"ext":false},"nav-selecta-rapid":{"path":"j\/.JQ-.IY.A.v4kFACr.78","requires":["event","rapid-tracker","yui-base"],"ext":false},"node-visibility":{"path":"j\/.CR-.DY.A.v4zVpAK.78","requires":["better-throttle","cache-simple","node","node-pluginhost","yui-base"],"optional":["anim","anim-scroll"],"ext":false},"note-data":{"path":"j\/note-.BY.A.v6hhV1S.78","requires":["base","person-data","yui-base"],"ext":false},"notification-base":{"path":"j\/notification-.BL.A.v3Go2Rh.78","requires":["attribute","notification-center"],"ext":false},"notification-center":{"path":"j\/notification-center.A.vfd9rB.78","requires":["attribute","cookie","event","event-custom","gallery-flickr-api"],"ext":false},"number":{"path":"j\/.Y.A.v5F4Bxp.78","requires":["number-transjax","yui-base"],"ext":false},"number-transjax":{"path":"j\/.Y-.C-.F.A.v69N6cZ.78","requires":["transjax-base","yui-base"],"ext":false},"occult":{"path":"j\/.CF.A.v3qRJRN.78","requires":["node","yui-base"],"ext":false},"osm-places":{"path":"j\/osm-places.A.vp6hk4.78","requires":["yui-base"],"ext":false},"page-context":{"path":"j\/.GF-.H.A.v3RcTFA.78","requires":["event-custom","yui-base"],"ext":false},"pagination-keyboard-shortcuts":{"path":"j\/.EG-.HZs.A.vcUVc.78","requires":["keyboard-shortcut-manager","node","pagination-keyboard-shortcuts-transjax","yui-base"],"ext":false},"pagination-keyboard-shortcuts-transjax":{"path":"j\/.EG-.HZs-.C-.F.A.v2SexMu.78","requires":["transjax-base","yui-base"],"ext":false},"person-data":{"path":"j\/.FK-.BY.A.v59tzLo.78","requires":["base","yui-base"],"ext":false},"personmenu":{"path":"j\/.CB-.D.A.v3KDSpf.78","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.v33GLFn.78","type":"css","ext":false},"personmenu-transjax":{"path":"j\/.CB-.C-.F.A.vdFdo9.78","requires":["transjax-base","yui-base"],"ext":false},"personmenu-rapid":{"path":"j\/.CB-.IY.A.v4AZYgx.78","requires":["event","rapid-tracker","yui-base"],"ext":false},"photo":{"path":"j\/.B-.D.A.v3jAj8R.78","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","global-dialog","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.v4rPCHF.78","requires":["add-to-dialog-css","context-data","event","event-custom","event-delegate","event-key","fave-star","flanal","focus-tracker","gallery-flickr-api","gallery-popover","global-dialog","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.v5upaKF.78","requires":["transjax-base","yui-base"],"ext":false},"photo-comments":{"path":"j\/.B-.LGs.A.v6Wjkoi.78","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.v6aX3sd.78","requires":["node","yui-base"],"ext":false},"photo-comments-transjax":{"path":"j\/.B-.LGs-.C-.F.A.v2iMw8p.78","requires":["transjax-base","yui-base"],"ext":false},"photo-context-menu":{"path":"j\/.B-.H-.BB.A.v7byKfm.78","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.v5KK4Y8.78","type":"css","ext":false},"photo-context-menu-transjax":{"path":"j\/.B-.H-.BB-.C-.F.A.v5rgAHQ.78","requires":["transjax-base","yui-base"],"ext":false},"photo-data":{"path":"j\/.B-.BY.A.v3J3A5i.78","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.v3PECDh.78","requires":["anim","base","better-throttle","context-data","event","event-custom","event-delegate","event-key","focus-tracker","global-dialog","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.v2ovPt1.78","requires":["transjax-base","yui-base"],"ext":false},"photo-geolocation":{"path":"j\/.B-.R.A.v4XZKCc.78","requires":["global-dialog","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.v4zFfMM.78","requires":["transjax-base","yui-base"],"ext":false},"photo-geolocation-css":{"path":"c\/c_.B-.R.BC.v4MVLZ.78","type":"css","ext":false},"photo-geopanel":{"path":"j\/.B-.IB.A.v2CSFBR.78","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.v24D3s4.78","requires":["base","event"],"ext":false},"flickr-leaflet":{"path":"j\/.J-leaflet.A.v2YMwJh.78","requires":["base","event","leaflet"],"ext":false},"geo-editor":{"path":"j\/geo-.GZor.A.v5LZMGv.78","requires":["flickr-geo","flickr-dialog","html5-balls","base","event"],"ext":false},"parallax":{"path":"j\/parallax.A.v2k1QbV.78","requires":["base","node-base"],"ext":false},"photo-group-invites":{"path":"j\/.B-.DM-.CO.A.v2t4wsT.78","requires":["context-data","gallery-flickr-api","global-dialog","node","photo","photo-group-invites-transjax","yui-base"],"ext":false},"photo-group-invites-transjax":{"path":"j\/.B-.DM-.CO-.C-.F.A.vSNPwZ.78","requires":["transjax-base","yui-base"],"ext":false},"photo-insitu":{"path":"j\/.B-.DT.A.v4aMjox.78","requires":["insitu","photo","photo-data","photo-transjax","yui-base"],"ext":false},"photo-keyboard-shortcuts":{"path":"j\/.B-.HZs.A.vcoSks.78","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.v4CLsRk.78","requires":["transjax-base","yui-base"],"ext":false},"photo-map-display-pinwin-css":{"path":"c\/c_.B-map-.IQ-.IV.BC.vJnsgQ.78","type":"css","ext":false},"photo-map-display-pinwin":{"path":"j\/.B-map-.IQ-.IV.A.v7skJ9n.78","requires":["flickr-geo","map-pinwin","base","photo-map-display-pinwin-css","yui-base"],"ext":false},"photo-notes":{"path":"j\/.B-.BE-.D.A.v7qnLr5.78","requires":["better-throttle","bo-selecta-3","bo-selecta-transjax","box-host","event","escape","event-annotations","event-delegate","focus-tracker","gallery-flickr-api","global-dialog","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.v62PMPK.78","requires":["transjax-base","yui-base"],"ext":false},"photo-owner-dialogs-css":{"path":"c\/c_.B-.BK-.EO-.D.BC.v4VETHH.78","type":"css","ext":false},"photo-people-controller":{"path":"j\/.HX-.BH.A.v58V69G.78","requires":["event","gallery-flickr-api","dejaview","photo-people-transjax","yui-base"],"ext":false},"photo-people-list":{"path":"j\/.HX-.CZ.A.v4kTtV9.78","requires":["anim","bo-selecta-3","event-delegate","global-dialog","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.v42mzUb.78","requires":["transjax-base","yui-base"],"ext":false},"photo-preloader":{"path":"j\/.B-.FJ.A.v3FaLoX.78","requires":["context-data","event","yui-base"],"ext":false},"photo-replace":{"path":"j\/.B-.GQ.A.v4NYTW.78","requires":["event","global-dialog","io","node","yui-base"],"optional":["flanal","worker"],"ext":false},"photo-rotate":{"path":"j\/.B-.GE.A.vR6i71.78","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.v4MWhaP.78","type":"css","ext":false},"photo-rotate-transjax":{"path":"j\/.B-.GE-.C-.F.A.v4tXGwH.78","requires":["transjax-base","yui-base"],"ext":false},"photo-sidebar":{"path":"j\/.HV.A.v2ipM58.78","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","contact-changer","contact-changer","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.v6jTLJz.78","requires":["transjax-base","yui-base"],"ext":false},"photo-sidebar-not-owner":{"path":"j\/.HV-.HW.A.v3pHMCa.78","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.v3mnXFo.78","requires":["photo-sidebar-owner-transjax","transjax-base","yui-base"],"ext":false},"photo-sidebar-owner":{"path":"j\/.HV-.BK.A.v5bZDrK.78","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.v4221ND.78","requires":["transjax-base","yui-base"],"ext":false},"photos-subnav-view":{"path":"j\/.EC-subnav-.JB.A.vxkivq.78","requires":["parallax","template-fetcher","view","yui-base"],"ext":false},"photo-tags":{"path":"j\/.B-.KD.A.v3YeUzG.78","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.v2fWVL8.78","requires":["transjax-base","yui-base"],"ext":false},"photo-tour":{"path":"j\/.B-.DA.A.v78bo4g.78","requires":["anim","cookie","dom","event","photo","photo-tour-transjax","yui-base"],"ext":false},"photo-tour-transjax":{"path":"j\/.B-.DA-.C-.F.A.v2wYiSx.78","requires":["transjax-base","yui-base"],"ext":false},"photo-transjax":{"path":"j\/.B-.C-.F.A.v6J9KHH.78","requires":["transjax-base","yui-base"],"ext":false},"photo-ywa-tracking":{"path":"j\/.B-ywa-.BW.A.v6onw7T.78","requires":["event","yahoo-web-analytics","yui-base"],"ext":false},"photogne-exif-fetcher":{"path":"j\/.Bgne-.GO-fetcher.A.v6MzZFS.78","requires":["gallery-flickr-api","yui-base"],"ext":false},"photos-display":{"path":"j\/.EC-.IQ.A.v6tytWu.78","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.v6innkS.78","requires":["transjax-base","yui-base"],"ext":false},"photos-display-css":{"path":"c\/c_.EC-.IQ.BC.v3qrKHZ.78","type":"css","ext":false},"photos-list":{"path":"j\/.EC-.CZ.A.v77gX.78","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.v7rQ8WY.78","requires":["refresh-sihp-comment","refresh-sihp-share","yui-base"],"ext":false},"photos-list-transjax":{"path":"j\/.EC-.CZ-.C-.F.A.v57ZeeC.78","requires":["transjax-base","yui-base"],"ext":false},"photostream-insitu":{"path":"j\/.ECtream-.DT.A.v5X7Cna.78","requires":["event","insitu","node","yui-base"],"ext":false},"photoset-transjax":{"path":"j\/.ECet-.C-.F.A.v5tbLz9.78","requires":["transjax-base","yui-base"],"ext":false},"picnik":{"path":"j\/.EY-.D.A.v52QFer.78","requires":["global-dialog","io-base","json","picnik-css","picnik-transjax","swfobject","yui-base"],"ext":false},"picnik-css":{"path":"c\/c_.EY-.D.BC.v5aWskr.78","type":"css","ext":false},"picnik-transjax":{"path":"j\/.EY-.C-.F.A.vQ1qB9.78","requires":["transjax-base","yui-base"],"ext":false},"places-map":{"path":"j\/places-map.A.vspatc.78","requires":["flickr-map"],"ext":false},"playr":{"path":"j\/playr.A.v381FBx.78","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","refresh-sihp-comment","swfobject","urls","view-count","yui-base"],"optional":["lightbox"],"ext":false},"polyfills-placeholder":{"path":"j\/.KR-.KS.A.v3yKHQ8.78","requires":["node","yui-base"],"ext":false},"popup-login":{"path":"j\/.HP.A.v3KaEzU.78","requires":["event","node","io-base","yui-base"],"ext":false},"post-message":{"path":"j\/post-.JU.A.v5Lm7So.78","requires":["event","node","yui-base"],"ext":false},"post-upload-sharing-ui":{"path":"j\/post-.KI-.EE-ui.A.v7ozvRN.78","requires":["event","node","yui-base"],"ext":false},"post-upload-sharing-owner-ui":{"path":"j\/post-.KI-.EE-.BK-ui.A.v5GshXp.78","requires":["event","node","yui-base","share-this-v3-menu","share-this-v3-dialog"],"ext":false},"protomaps-leaflet":{"path":"j\/protomaps-leaflet.A.v52DAhL.78","requires":[],"ext":false},"pro-upsell-bandwidth-limit-notification":{"path":"j\/pro-upsell-bandwidth-limit-notification.A.v6KgYb2.78","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.v65A6gB.78","requires":["flickr-dialog-confirmation","notification-base","pro-upsell-notification-transjax"],"ext":false},"pro-upsell-notification-transjax":{"path":"j\/pro-upsell-notification-.C-.F.A.v7gQpc3.78","requires":["transjax-base","yui-base"],"ext":false},"query-string-args":{"path":"j\/.CP-.U-.DE.A.v6sJgnG.78","requires":["yui-base"],"ext":false},"rapid-tracker-2":{"path":"j\/.IY-.CH-2.A.v7gnXp9.78","requires":["yui-base"],"ext":false},"rapid-tracker-3":{"path":"j\/.IY-.CH-3.A.v3SQpvY.78","requires":["yui-base"],"ext":false},"rapid-tracker":{"path":"j\/.IY-.CH-yui3-wrapper.A.vs6jwH.78","requires":["yui-base","querystring-parse-simple","querystring-stringify-simple","rapid-tracker-3"],"ext":false},"refresh-sihp":{"path":"j\/refresh-sihp.A.vucWRk.78","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.v3DTyQd.78","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.v4eKUDQ.78","requires":["yui-base"],"ext":false},"refresh-sihp-feed-ads":{"path":"j\/.LDfeed-ads.A.v3nNkDA.78","requires":["yui-base","event-custom","refresh-sihp-sidebar"],"ext":false},"refresh-sihp-friendfinder":{"path":"j\/.LD.LH.A.vedjf7.78","requires":["gallery-flickr-api","string-filters","yui-base"],"ext":false},"refresh-sihp-keyboard":{"path":"j\/.LD.Q.A.v6W2sui.78","requires":["anim-scroll","better-throttle","dom","keyboard-shortcut-manager","yui-base"],"ext":false},"refresh-sihp-muting":{"path":"j\/.LD.LE.A.vAuaCg.78","requires":["yui-base"],"ext":false},"refresh-sihp-recofeed":{"path":"j\/.LDrecofeed.A.v57Ui19.78","requires":["gallery-flickr-api","yui-base"],"ext":false},"refresh-sihp-share":{"path":"j\/.LD.DN.A.v6KzuMz.78","requires":["share-this-v3-menu","global-dialog","yui-base"],"ext":false},"fmodal-dialog":{"path":"j\/fmodal-.W.A.v3odAWT.78","requires":["yui-base","io","node","event","event-key","dom"],"ext":false},"fb_suggestions_v2":{"path":"j\/fb_.IL_v2.A.vGtTML.78","requires":["yui-base","node","cookie","event","dom","io","json","gallery-flickr-api","fb_suggestions_transjax","yui-array","rapid-tracker"],"ext":false},"fb_suggestions":{"path":"j\/fb_.IL.A.v3tv5JH.78","requires":["yui-base","node","cookie","event","dom","io","json","gallery-flickr-api","fb_suggestions_transjax","yui-array","rapid-tracker"],"ext":false},"fb_suggestions_transjax":{"path":"j\/fb_.IL_.C.A.v61gv5Z.78","ext":false},"fb_signup":{"path":"j\/fb_signup.A.v4PRUM7.78","requires":["yui-base","node","event","dom","io","json","event-focus","fb_signup_transjax","rapid-tracker","querystring-parse-simple"],"ext":false},"fb_signup_transjax":{"path":"j\/fb_signup_.C.A.vca3ZP.78","ext":false},"fb-reco":{"path":"j\/fb-reco.A.v48U8hz.78","requires":["yui-base","node","event","dom"],"ext":false},"fb-reco-transjax":{"path":"j\/fb-reco-.C-.F.A.v5dFsBr.78","ext":false},"signup-dialog":{"path":"j\/signup-.W.A.vGqphJ.78","requires":["yui-base","signup-dialog-transjax","io","node","event","dom","fmodal-dialog","fb-reco"],"ext":false},"signup-dialog-transjax":{"path":"j\/signup-.W-.C-.F.A.v7o1kVw.78","ext":false},"refresh-sihp-sidebar":{"path":"j\/.LD.I.A.v2gxvEv.78","requires":["yui-base","fb-reco","refresh-sihp-friendfinder","refresh-sihp-transjax","rapid-tracker"],"ext":false},"refresh-sihp-transjax":{"path":"j\/.LD.C-.F.A.v7t2DFH.78","requires":["transjax-base","yui-base"],"ext":false},"refresh-photo-page-description":{"path":"j\/refresh-.B-.GF-.KC.A.v72mR4i.78","requires":["yui-base"],"ext":false},"retry-image-on-error":{"path":"j\/retry-.CW-on-.JP.A.v63QCiu.78","requires":["event-base","yui-base","yui-later"],"optional":["flanal"],"ext":false},"rev-dan-map":{"path":"j\/rev-dan-map.A.v4m6Eos.78","requires":["event-base","yui-base"],"ext":false},"rushmore-settings":{"path":"j\/.FS-.FR.A.v3fQau4.78","requires":["event","event-delegate","global-dialog","io","node","yui-base"],"ext":false},"search-refer":{"path":"j\/.CA-.DX-.D.A.v6jQmEa.78","requires":["anim","cookie","node","yahoo-ult","yui-base"],"ext":false},"selector-circle-css":{"path":"c\/c_.GB-circle.BC.v3eGMAc.78","type":"css","ext":false},"selector-circle":{"path":"j\/.GB-circle.A.v4UYGk9.78","requires":["base","css3pie","event","selector-circle-css","yui-base"],"ext":false},"set-meta-insitu":{"path":"j\/set-meta-.DT.A.v46vn9H.78","requires":["event","insitu","node","yui-base"],"ext":false},"share-menu-transjax":{"path":"j\/.DN-.BB-.D-.C-.F.A.vfe7L7.78","requires":["transjax-base","yui-base"],"ext":false},"share-this-v3-account-settings":{"path":"j\/.HG-.IR-.FR.A.v3W86q4.78","requires":["dom","event","global-dialog","io","io-form","querystring-stringify-simple","yui-base"],"ext":false},"share-this-v3-css":{"path":"c\/c_.HG.BC.v49NfV2.78","type":"css","ext":false},"share-this-v3-dialog":{"path":"j\/.HG-.W.A.v4KN4kq.78","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.v6GWuqL.78","type":"css","ext":false},"share-this-v3-dialog-transjax":{"path":"j\/.HG-.W-.C-.F.A.v3ysU7g.78","requires":["transjax-base","yui-base"],"ext":false},"share-this-v3-menu":{"path":"j\/.HG-.BB.A.v5SMmQm.78","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.v4RfP3S.78","requires":["share-this-v3-services","yui-base"],"ext":false},"share-this-v3-service-email":{"path":"j\/.HF.HH.A.v34X2b5.78","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.v72BHuz.78","requires":["transjax-base","yui-base"],"ext":false},"share-this-v3-service-facebook":{"path":"j\/.HF.HL.A.vD2awp.78","requires":["share-this-v3-services","yui-base"],"ext":false},"share-this-v3-service-livejournal":{"path":"j\/.HF.HT.A.v79MhdW.78","requires":["share-this-v3-services","yui-base"],"ext":false},"share-this-v3-service-tumblr":{"path":"j\/.HF.HU.A.v4ZpZky.78","requires":["share-this-v3-services","yui-base"],"ext":false},"share-this-v3-service-twitter":{"path":"j\/.HF.HK.A.v2R2xZj.78","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.v7iQ5Cp.78","requires":["transjax-base","yui-base"],"ext":false},"share-this-v3-service-wordpress":{"path":"j\/.HF.HM.A.v48FjZ1.78","requires":["share-this-v3-services","yui-base"],"ext":false},"share-this-v3-service-yahoo-pulse":{"path":"j\/.HF.CM-.HI.A.v3NE4f1.78","requires":["share-this-v3-services","yui-base"],"ext":false},"share-this-v3-service-pinterest":{"path":"j\/.HFpinterest.A.v6AmLr7.78","requires":["share-this-v3-services","yui-base"],"ext":false},"share-this-v3-services":{"path":"j\/.HG-.HR.A.v4GfQr8.78","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.v6dV84.78","requires":["event","flanal","node","share-this-v3-dialog","yui-base"],"ext":false},"sprintf":{"path":"j\/.CC.A.v4bFUj1.78","requires":["yui-base"],"ext":false},"smartbanner-css":{"path":"c\/c_smartbanner.BC.v4HCMKS.78","type":"css","ext":false},"smartbanner":{"path":"j\/smartbanner.A.v4iLzaP.78","requires":["smartbanner-css","node","array-extras"],"ext":false},"snow-init":{"path":"j\/snow_init.A.v3nix2x.78","requires":["yui-base","snow-src"],"ext":false},"snow-src":{"path":"j\/snow_src.A.v3ouqY2.78","requires":["yui-base"],"ext":false},"soundmanager2":{"path":"j\/sound.K2.A.v5NQm24.78","requires":["yui-base"],"ext":false},"string-filters":{"path":"j\/.U-.CG.A.v3E6xbG.78","requires":["yui-base"],"ext":false},"soup":{"path":"j\/soup.A.v48efxL.78","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.v3AaP86.78","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.v2HSNfd.78","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.v5zLeKD.78","type":"css","ext":false},"tag-selecta-transjax":{"path":"j\/tag-.S-.C-.F.A.v5YTVnZ.78","requires":["transjax-base","yui-base"],"ext":false},"template-fetcher":{"path":"j\/.KW.A.v3Y39mK.78","requires":["handlebars"],"ext":false},"touch-lightbox":{"path":"j\/touch-.N.A.v766wCN.78","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.v6vF8kL.78","requires":["yui-base"],"ext":false},"transjax-base":{"path":"j\/.C-.BL.A.v29r71X.78","requires":["sprintf","yui-base"],"ext":false},"trustarc-consent":{"path":"j\/consent_init.A.v51nrNK.78","requires":["yui-base"],"ext":false},"trustarc-consent-manager":{"path":"j\/tru.CYc-consent-.K.A.v4EN819.78","requires":["yui-base"],"ext":false},"urls":{"path":"j\/urls.A.v68gVxQ.78","requires":["yui-base"],"ext":false},"user-refave":{"path":"j\/user-re.CX.A.v6LUrBt.78","requires":["event","gallery-flickr-api","node","yui-base"],"ext":false},"video":{"path":"j\/.DV-.D.A.v5oXpLf.78","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.v6oaiPC.78","requires":["node","page-context","yui-base"],"ext":false},"video-transjax":{"path":"j\/.DV-.D-.C-.F.A.v3sBrRf.78","requires":["transjax-base","yui-base"],"ext":false},"view-count":{"path":"j\/.JB-count.A.v6kb9cC.78","requires":["gallery-flickr-api","json","yui-base"],"ext":false},"view-count-on-visible":{"path":"j\/.JB-count-on-visible.A.v8pFoS.78","requires":["node-visibility","view-count","yui-base"],"ext":false},"whispers":{"path":"j\/whispers.A.vJEAJD.78","requires":["node","event","gallery-flickr-api","yui-base"],"ext":false},"woe-corrector-css":{"path":"c\/c_woe-corrector.BC.v4U2PfG.78","type":"css","ext":false},"woe-corrector":{"path":"j\/woe-corrector.A.v26sa8v.78","requires":["base","woe-corrector-css","keyboard-shortcut-manager","flickr-geo","event","yui-base"],"ext":false},"worker":{"path":"j\/.IW.A.v5X2Z1g.78","requires":["base","event","yui-base"],"ext":false},"xmp-extractor":{"path":"j\/xmp-.IN.A.v5Gt5se.78","requires":["yui-base"],"ext":false},"you-subnav-menu":{"path":"j\/you-subnav-.BB.A.v28zNjG.78","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.v4BTXxF.78","requires":["event","yahoo-web-analytics","yui-base"],"ext":false},"swfobject":{"path":"j\/.BM.A.v65aRhx.78","ext":false},"yahoo-ult":{"path":"j\/.CM-ult.A.v3XZXwN.78","ext":false},"yahoo-web-analytics":{"path":"j\/ywa.A.v5K9FXt.78","ext":false},"ymap":{"path":"j\/.FV.A.v2H8RP.78","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.vcv8FR.78","ext":false},"yui2_5-yahoo":{"path":"j\/.CM\/.CM_2.5.1.A.v6pEFyx.78","ext":false},"yui2_5-event":{"path":"j\/.CM\/.G_2.5.1.A.v28dYvG.78","requires":["yui2_5-yahoo"],"ext":false},"yui2_5-dom":{"path":"j\/.CM\/dom_2.5.1.A.v48tHLb.78","requires":["yui2_5-yahoo"],"ext":false},"yui2_5-dragdrop":{"path":"j\/.CM\/.FT_2.5.1.A.v69rxZ5.78","requires":["yui2_5-dom","yui2_5-event","yui2_5-yahoo"],"ext":false},"yui2_5-animation":{"path":"j\/.CM\/.FL_2.5.1.A.v5KbeHv.78","requires":["yui2_5-dom","yui2_5-event","yui2_5-yahoo"],"ext":false},"worker-echo":{"path":"j\/.IW-echo.A.v5inXRc.78","requires":["worker-yui-ready","yui-base"],"ext":false},"worker-exif-extractor":{"path":"j\/.IW-.KU.A.v4iFXq2.78","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.v5wXwfK.78","requires":["event","event-custom","yui-base"],"ext":false},"set-inline-comments-transjax":{"path":"j\/set-inline-.LGs-.C-.F.A.v78kCoc.78","ext":false}}}; F.config = F.util.clone(yconf); YUI(yconf).use(function (Y) { Y.use('global-nav', 'cookie-banner-reg', 'rapid-tracker', 'nav-selecta-rapid', 'cookie', function(Y) { Y.globalNav.init(); Y.CookieBannerReg.init(); function clientOnOffSwitch() { var enableRapid = true; return enableRapid; } var keys = { A_pn: '/cameras_model.gne' , joindate: '-1' , bx: '-1' , ispro: '0' }; YAHOO.i13n.YWA_ACTION_MAP = { }; var conf = { use_rapid: (true && clientOnOffSwitch()), keys: keys, lt_attr: 'data-track', client_only: 1, spaceid: '792600159', tracked_mods: [], track_lv: true, compr_on: true, webworker_file: '/javascript/rapidworker-1.1.js', use_sampling: false, nofollow_class: [] }; Y.config.flickr.rapidconf = conf; Y.rapidTracker.init(conf); Y.rapidTracker.stripQueryParams(['campaignID', 'linkID']); }); Y.use('nav-selecta', 'cookie', 'cookie-catcher', 'flickr', 'popup-login', 'liquid-resizer', 'snow-init', 'grease', function(Y) { if (document.getElementById('gn-search-field')) { var field_node = Y.one('#gn-search-field'); var nav_selecta = new Y.NavSelecta(field_node, {linkUsernameToPhotostream: 1,preloadText:field_node.get('value')}); } if(Y.Cookie.get('dpsaun') == 1 && document.getElementsByClassName('pro-hook-container').length) { document.getElementsByClassName('pro-hook-container')[0].style.display = 'none'; } if(document.getElementById('pro-hook-dismiss')) { document.getElementById('pro-hook-dismiss').addEventListener('click', close_pro_hook_banner); } function close_pro_hook_banner() { var proHook = document.getElementsByClassName('pro-hook-container'); var cookieCatcher = new Y.CookieCatcher(); var expireTime = new Date(); expireTime.setTime(expireTime.getTime() + (1000 * 60 * 60 * 24 * 365)); // 365 days if (proHook.length) { proHook[0].style.display = 'none'; cookieCatcher.setCookieIfAllowed('dpsaun', 1, { expires: expireTime, path: '/' }); } Y.SnowTracks.sendStructuredEvent({ category: 'upsell-priority-support', action: 'dismiss', label: 'user-account-card-view' }); } Y.flickr(); Y.popup_login.init(); Y.liquidResizer.init(); var contextHelper = { page: { module: '/cameras_model.gne', } }; Y.SnowTracks.init(contextHelper); Y.grease.init(0); }); }); })(); </script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10